Skip to content

Instantly share code, notes, and snippets.

@burkeholland
Created November 15, 2021 23:56
Show Gist options
  • Save burkeholland/84990a268689a3dc23734e606dce3f08 to your computer and use it in GitHub Desktop.
Save burkeholland/84990a268689a3dc23734e606dce3f08 to your computer and use it in GitHub Desktop.
Titanic Changes
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"tags": []
},
"source": [
"# Titanic Data Analysis\n",
"## Goal of Analysis: Use machine learning algorithms to get best accuracy of predictions for who survived the sinking of the Titanic given the attributes in the dataset. \n",
"\n",
"Some change"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": []
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"#Imports \n",
"import pandas as pd\n",
"import numpy as np\n",
"import pandas_profiling\n",
"from sklearn.model_selection import train_test_split \n",
"from sklearn import preprocessing\n",
"from sklearn.naive_bayes import GaussianNB\n",
"from sklearn.metrics import accuracy_score\n",
"from sklearn.tree import DecisionTreeClassifier \n",
"from sklearn.metrics import accuracy_score\n",
"from sklearn.metrics import confusion_matrix\n",
"from sklearn import metrics\n",
"import random\n",
"import matplotlib.pyplot as plt\n",
"from IPython.display import Image \n",
"from sklearn.tree import export_graphviz\n",
"import pydotplus\n",
"from sklearn import preprocessing\n",
"from io import StringIO\n",
"from sklearn.ensemble import RandomForestClassifier\n",
"from sklearn.preprocessing import StandardScaler\n",
"from sklearn.model_selection import GridSearchCV\n",
"from keras.wrappers.scikit_learn import KerasClassifier\n",
"from keras.models import Sequential\n",
"from keras.layers import Dense, Activation, Dropout\n",
"from numpy.random import seed"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Data Analysis"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"RangeIndex: 1309 entries, 0 to 1308\n",
"Data columns (total 11 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 Pclass 1309 non-null int64 \n",
" 1 Name 1309 non-null object \n",
" 2 Sex 1309 non-null object \n",
" 3 Age 1046 non-null float64\n",
" 4 SibSp 1309 non-null int64 \n",
" 5 Parch 1309 non-null int64 \n",
" 6 Ticket 1309 non-null object \n",
" 7 Fare 1308 non-null float64\n",
" 8 Cabin 295 non-null object \n",
" 9 Embarked 1307 non-null object \n",
" 10 Survived 1309 non-null int64 \n",
"dtypes: float64(2), int64(4), object(5)\n",
"memory usage: 112.6+ KB\n"
]
}
],
"source": [
"titanic_df = pd.read_csv(\"titanic_data.csv\")\n",
"titanic_df.info()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Data Exploration"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Pclass</th>\n",
" <th>Age</th>\n",
" <th>SibSp</th>\n",
" <th>Parch</th>\n",
" <th>Fare</th>\n",
" <th>Survived</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>count</th>\n",
" <td>1309.000000</td>\n",
" <td>1046.000000</td>\n",
" <td>1309.000000</td>\n",
" <td>1309.000000</td>\n",
" <td>1308.000000</td>\n",
" <td>1309.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mean</th>\n",
" <td>2.294882</td>\n",
" <td>29.897706</td>\n",
" <td>0.498854</td>\n",
" <td>0.385027</td>\n",
" <td>33.296261</td>\n",
" <td>0.381971</td>\n",
" </tr>\n",
" <tr>\n",
" <th>std</th>\n",
" <td>0.837836</td>\n",
" <td>14.414973</td>\n",
" <td>1.041658</td>\n",
" <td>0.865560</td>\n",
" <td>51.758691</td>\n",
" <td>0.486055</td>\n",
" </tr>\n",
" <tr>\n",
" <th>min</th>\n",
" <td>1.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>25%</th>\n",
" <td>2.000000</td>\n",
" <td>21.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>7.900000</td>\n",
" <td>0.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>50%</th>\n",
" <td>3.000000</td>\n",
" <td>28.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>14.450000</td>\n",
" <td>0.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>75%</th>\n",
" <td>3.000000</td>\n",
" <td>39.000000</td>\n",
" <td>1.000000</td>\n",
" <td>0.000000</td>\n",
" <td>31.280000</td>\n",
" <td>1.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>max</th>\n",
" <td>3.000000</td>\n",
" <td>80.000000</td>\n",
" <td>8.000000</td>\n",
" <td>9.000000</td>\n",
" <td>512.330000</td>\n",
" <td>1.000000</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Pclass Age SibSp Parch Fare \\\n",
"count 1309.000000 1046.000000 1309.000000 1309.000000 1308.000000 \n",
"mean 2.294882 29.897706 0.498854 0.385027 33.296261 \n",
"std 0.837836 14.414973 1.041658 0.865560 51.758691 \n",
"min 1.000000 0.000000 0.000000 0.000000 0.000000 \n",
"25% 2.000000 21.000000 0.000000 0.000000 7.900000 \n",
"50% 3.000000 28.000000 0.000000 0.000000 14.450000 \n",
"75% 3.000000 39.000000 1.000000 0.000000 31.280000 \n",
"max 3.000000 80.000000 8.000000 9.000000 512.330000 \n",
"\n",
" Survived \n",
"count 1309.000000 \n",
"mean 0.381971 \n",
"std 0.486055 \n",
"min 0.000000 \n",
"25% 0.000000 \n",
"50% 0.000000 \n",
"75% 1.000000 \n",
"max 1.000000 "
]
},
"execution_count": 37,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"titanic_df.describe()"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Summarize dataset: 100%|██████████| 24/24 [00:07<00:00, 3.02it/s, Completed]\n",
"Generate report structure: 100%|██████████| 1/1 [00:05<00:00, 5.29s/it]\n",
"Render HTML: 100%|██████████| 1/1 [00:01<00:00, 1.10s/it]\n"
]
},
{
"data": {
"text/html": [
"<iframe width=\"100%\" height=\"800px\" srcdoc=\"&lt;!doctype html&gt;&lt;html lang=en&gt;&lt;head&gt;&lt;meta charset=utf-8&gt;&lt;meta name=viewport content=&quot;width=device-width, initial-scale=1, shrink-to-fit=no&quot;&gt;&lt;meta name=description content=&quot;Profile report generated with the `pandas-profiling` Python package&quot;&gt;&lt;meta name=author content=&quot;Simon Brugman and the open source community.&quot;&gt;&lt;meta name=generator content=&quot;Pandas Profiling v3.0.0&quot;&gt;&lt;meta name=url content=https://github.com/pandas-profiling/pandas-profiling&gt;&lt;meta name=date content=&quot;2021-10-31 21:54:40.176271&quot;&gt;&lt;title&gt;Pandas Profiling Report&lt;/title&gt;&lt;style&gt;\n",
"/*!\n",
" * Bootstrap v3.3.7 (http://getbootstrap.com)\n",
" * Copyright 2011-2016 Twitter, Inc.\n",
" * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n",
" *//*! 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:&quot; (&quot; attr(href) &quot;)&quot;}abbr[title]:after{content:&quot; (&quot; attr(title) &quot;)&quot;}a[href^=&quot;javascript:&quot;]:after,a[href^=&quot;#&quot;]:after{content:&quot;&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&gt;.caret,.dropup&gt;.btn&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:&#x27;Glyphicons Halflings&#x27;;src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format(&#x27;embedded-opentype&#x27;),url(../fonts/glyphicons-halflings-regular.woff2) format(&#x27;woff2&#x27;),url(../fonts/glyphicons-halflings-regular.woff) format(&#x27;woff&#x27;),url(../fonts/glyphicons-halflings-regular.ttf) format(&#x27;truetype&#x27;),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format(&#x27;svg&#x27;)}.glyphicon{position:relative;top:1px;display:inline-block;font-family:&#x27;Glyphicons Halflings&#x27;;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:&quot;\\002a&quot;}.glyphicon-plus:before{content:&quot;\\002b&quot;}.glyphicon-eur:before,.glyphicon-euro:before{content:&quot;\\20ac&quot;}.glyphicon-minus:before{content:&quot;\\2212&quot;}.glyphicon-cloud:before{content:&quot;\\2601&quot;}.glyphicon-envelope:before{content:&quot;\\2709&quot;}.glyphicon-pencil:before{content:&quot;\\270f&quot;}.glyphicon-glass:before{content:&quot;\\e001&quot;}.glyphicon-music:before{content:&quot;\\e002&quot;}.glyphicon-search:before{content:&quot;\\e003&quot;}.glyphicon-heart:before{content:&quot;\\e005&quot;}.glyphicon-star:before{content:&quot;\\e006&quot;}.glyphicon-star-empty:before{content:&quot;\\e007&quot;}.glyphicon-user:before{content:&quot;\\e008&quot;}.glyphicon-film:before{content:&quot;\\e009&quot;}.glyphicon-th-large:before{content:&quot;\\e010&quot;}.glyphicon-th:before{content:&quot;\\e011&quot;}.glyphicon-th-list:before{content:&quot;\\e012&quot;}.glyphicon-ok:before{content:&quot;\\e013&quot;}.glyphicon-remove:before{content:&quot;\\e014&quot;}.glyphicon-zoom-in:before{content:&quot;\\e015&quot;}.glyphicon-zoom-out:before{content:&quot;\\e016&quot;}.glyphicon-off:before{content:&quot;\\e017&quot;}.glyphicon-signal:before{content:&quot;\\e018&quot;}.glyphicon-cog:before{content:&quot;\\e019&quot;}.glyphicon-trash:before{content:&quot;\\e020&quot;}.glyphicon-home:before{content:&quot;\\e021&quot;}.glyphicon-file:before{content:&quot;\\e022&quot;}.glyphicon-time:before{content:&quot;\\e023&quot;}.glyphicon-road:before{content:&quot;\\e024&quot;}.glyphicon-download-alt:before{content:&quot;\\e025&quot;}.glyphicon-download:before{content:&quot;\\e026&quot;}.glyphicon-upload:before{content:&quot;\\e027&quot;}.glyphicon-inbox:before{content:&quot;\\e028&quot;}.glyphicon-play-circle:before{content:&quot;\\e029&quot;}.glyphicon-repeat:before{content:&quot;\\e030&quot;}.glyphicon-refresh:before{content:&quot;\\e031&quot;}.glyphicon-list-alt:before{content:&quot;\\e032&quot;}.glyphicon-lock:before{content:&quot;\\e033&quot;}.glyphicon-flag:before{content:&quot;\\e034&quot;}.glyphicon-headphones:before{content:&quot;\\e035&quot;}.glyphicon-volume-off:before{content:&quot;\\e036&quot;}.glyphicon-volume-down:before{content:&quot;\\e037&quot;}.glyphicon-volume-up:before{content:&quot;\\e038&quot;}.glyphicon-qrcode:before{content:&quot;\\e039&quot;}.glyphicon-barcode:before{content:&quot;\\e040&quot;}.glyphicon-tag:before{content:&quot;\\e041&quot;}.glyphicon-tags:before{content:&quot;\\e042&quot;}.glyphicon-book:before{content:&quot;\\e043&quot;}.glyphicon-bookmark:before{content:&quot;\\e044&quot;}.glyphicon-print:before{content:&quot;\\e045&quot;}.glyphicon-camera:before{content:&quot;\\e046&quot;}.glyphicon-font:before{content:&quot;\\e047&quot;}.glyphicon-bold:before{content:&quot;\\e048&quot;}.glyphicon-italic:before{content:&quot;\\e049&quot;}.glyphicon-text-height:before{content:&quot;\\e050&quot;}.glyphicon-text-width:before{content:&quot;\\e051&quot;}.glyphicon-align-left:before{content:&quot;\\e052&quot;}.glyphicon-align-center:before{content:&quot;\\e053&quot;}.glyphicon-align-right:before{content:&quot;\\e054&quot;}.glyphicon-align-justify:before{content:&quot;\\e055&quot;}.glyphicon-list:before{content:&quot;\\e056&quot;}.glyphicon-indent-left:before{content:&quot;\\e057&quot;}.glyphicon-indent-right:before{content:&quot;\\e058&quot;}.glyphicon-facetime-video:before{content:&quot;\\e059&quot;}.glyphicon-picture:before{content:&quot;\\e060&quot;}.glyphicon-map-marker:before{content:&quot;\\e062&quot;}.glyphicon-adjust:before{content:&quot;\\e063&quot;}.glyphicon-tint:before{content:&quot;\\e064&quot;}.glyphicon-edit:before{content:&quot;\\e065&quot;}.glyphicon-share:before{content:&quot;\\e066&quot;}.glyphicon-check:before{content:&quot;\\e067&quot;}.glyphicon-move:before{content:&quot;\\e068&quot;}.glyphicon-step-backward:before{content:&quot;\\e069&quot;}.glyphicon-fast-backward:before{content:&quot;\\e070&quot;}.glyphicon-backward:before{content:&quot;\\e071&quot;}.glyphicon-play:before{content:&quot;\\e072&quot;}.glyphicon-pause:before{content:&quot;\\e073&quot;}.glyphicon-stop:before{content:&quot;\\e074&quot;}.glyphicon-forward:before{content:&quot;\\e075&quot;}.glyphicon-fast-forward:before{content:&quot;\\e076&quot;}.glyphicon-step-forward:before{content:&quot;\\e077&quot;}.glyphicon-eject:before{content:&quot;\\e078&quot;}.glyphicon-chevron-left:before{content:&quot;\\e079&quot;}.glyphicon-chevron-right:before{content:&quot;\\e080&quot;}.glyphicon-plus-sign:before{content:&quot;\\e081&quot;}.glyphicon-minus-sign:before{content:&quot;\\e082&quot;}.glyphicon-remove-sign:before{content:&quot;\\e083&quot;}.glyphicon-ok-sign:before{content:&quot;\\e084&quot;}.glyphicon-question-sign:before{content:&quot;\\e085&quot;}.glyphicon-info-sign:before{content:&quot;\\e086&quot;}.glyphicon-screenshot:before{content:&quot;\\e087&quot;}.glyphicon-remove-circle:before{content:&quot;\\e088&quot;}.glyphicon-ok-circle:before{content:&quot;\\e089&quot;}.glyphicon-ban-circle:before{content:&quot;\\e090&quot;}.glyphicon-arrow-left:before{content:&quot;\\e091&quot;}.glyphicon-arrow-right:before{content:&quot;\\e092&quot;}.glyphicon-arrow-up:before{content:&quot;\\e093&quot;}.glyphicon-arrow-down:before{content:&quot;\\e094&quot;}.glyphicon-share-alt:before{content:&quot;\\e095&quot;}.glyphicon-resize-full:before{content:&quot;\\e096&quot;}.glyphicon-resize-small:before{content:&quot;\\e097&quot;}.glyphicon-exclamation-sign:before{content:&quot;\\e101&quot;}.glyphicon-gift:before{content:&quot;\\e102&quot;}.glyphicon-leaf:before{content:&quot;\\e103&quot;}.glyphicon-fire:before{content:&quot;\\e104&quot;}.glyphicon-eye-open:before{content:&quot;\\e105&quot;}.glyphicon-eye-close:before{content:&quot;\\e106&quot;}.glyphicon-warning-sign:before{content:&quot;\\e107&quot;}.glyphicon-plane:before{content:&quot;\\e108&quot;}.glyphicon-calendar:before{content:&quot;\\e109&quot;}.glyphicon-random:before{content:&quot;\\e110&quot;}.glyphicon-comment:before{content:&quot;\\e111&quot;}.glyphicon-magnet:before{content:&quot;\\e112&quot;}.glyphicon-chevron-up:before{content:&quot;\\e113&quot;}.glyphicon-chevron-down:before{content:&quot;\\e114&quot;}.glyphicon-retweet:before{content:&quot;\\e115&quot;}.glyphicon-shopping-cart:before{content:&quot;\\e116&quot;}.glyphicon-folder-close:before{content:&quot;\\e117&quot;}.glyphicon-folder-open:before{content:&quot;\\e118&quot;}.glyphicon-resize-vertical:before{content:&quot;\\e119&quot;}.glyphicon-resize-horizontal:before{content:&quot;\\e120&quot;}.glyphicon-hdd:before{content:&quot;\\e121&quot;}.glyphicon-bullhorn:before{content:&quot;\\e122&quot;}.glyphicon-bell:before{content:&quot;\\e123&quot;}.glyphicon-certificate:before{content:&quot;\\e124&quot;}.glyphicon-thumbs-up:before{content:&quot;\\e125&quot;}.glyphicon-thumbs-down:before{content:&quot;\\e126&quot;}.glyphicon-hand-right:before{content:&quot;\\e127&quot;}.glyphicon-hand-left:before{content:&quot;\\e128&quot;}.glyphicon-hand-up:before{content:&quot;\\e129&quot;}.glyphicon-hand-down:before{content:&quot;\\e130&quot;}.glyphicon-circle-arrow-right:before{content:&quot;\\e131&quot;}.glyphicon-circle-arrow-left:before{content:&quot;\\e132&quot;}.glyphicon-circle-arrow-up:before{content:&quot;\\e133&quot;}.glyphicon-circle-arrow-down:before{content:&quot;\\e134&quot;}.glyphicon-globe:before{content:&quot;\\e135&quot;}.glyphicon-wrench:before{content:&quot;\\e136&quot;}.glyphicon-tasks:before{content:&quot;\\e137&quot;}.glyphicon-filter:before{content:&quot;\\e138&quot;}.glyphicon-briefcase:before{content:&quot;\\e139&quot;}.glyphicon-fullscreen:before{content:&quot;\\e140&quot;}.glyphicon-dashboard:before{content:&quot;\\e141&quot;}.glyphicon-paperclip:before{content:&quot;\\e142&quot;}.glyphicon-heart-empty:before{content:&quot;\\e143&quot;}.glyphicon-link:before{content:&quot;\\e144&quot;}.glyphicon-phone:before{content:&quot;\\e145&quot;}.glyphicon-pushpin:before{content:&quot;\\e146&quot;}.glyphicon-usd:before{content:&quot;\\e148&quot;}.glyphicon-gbp:before{content:&quot;\\e149&quot;}.glyphicon-sort:before{content:&quot;\\e150&quot;}.glyphicon-sort-by-alphabet:before{content:&quot;\\e151&quot;}.glyphicon-sort-by-alphabet-alt:before{content:&quot;\\e152&quot;}.glyphicon-sort-by-order:before{content:&quot;\\e153&quot;}.glyphicon-sort-by-order-alt:before{content:&quot;\\e154&quot;}.glyphicon-sort-by-attributes:before{content:&quot;\\e155&quot;}.glyphicon-sort-by-attributes-alt:before{content:&quot;\\e156&quot;}.glyphicon-unchecked:before{content:&quot;\\e157&quot;}.glyphicon-expand:before{content:&quot;\\e158&quot;}.glyphicon-collapse-down:before{content:&quot;\\e159&quot;}.glyphicon-collapse-up:before{content:&quot;\\e160&quot;}.glyphicon-log-in:before{content:&quot;\\e161&quot;}.glyphicon-flash:before{content:&quot;\\e162&quot;}.glyphicon-log-out:before{content:&quot;\\e163&quot;}.glyphicon-new-window:before{content:&quot;\\e164&quot;}.glyphicon-record:before{content:&quot;\\e165&quot;}.glyphicon-save:before{content:&quot;\\e166&quot;}.glyphicon-open:before{content:&quot;\\e167&quot;}.glyphicon-saved:before{content:&quot;\\e168&quot;}.glyphicon-import:before{content:&quot;\\e169&quot;}.glyphicon-export:before{content:&quot;\\e170&quot;}.glyphicon-send:before{content:&quot;\\e171&quot;}.glyphicon-floppy-disk:before{content:&quot;\\e172&quot;}.glyphicon-floppy-saved:before{content:&quot;\\e173&quot;}.glyphicon-floppy-remove:before{content:&quot;\\e174&quot;}.glyphicon-floppy-save:before{content:&quot;\\e175&quot;}.glyphicon-floppy-open:before{content:&quot;\\e176&quot;}.glyphicon-credit-card:before{content:&quot;\\e177&quot;}.glyphicon-transfer:before{content:&quot;\\e178&quot;}.glyphicon-cutlery:before{content:&quot;\\e179&quot;}.glyphicon-header:before{content:&quot;\\e180&quot;}.glyphicon-compressed:before{content:&quot;\\e181&quot;}.glyphicon-earphone:before{content:&quot;\\e182&quot;}.glyphicon-phone-alt:before{content:&quot;\\e183&quot;}.glyphicon-tower:before{content:&quot;\\e184&quot;}.glyphicon-stats:before{content:&quot;\\e185&quot;}.glyphicon-sd-video:before{content:&quot;\\e186&quot;}.glyphicon-hd-video:before{content:&quot;\\e187&quot;}.glyphicon-subtitles:before{content:&quot;\\e188&quot;}.glyphicon-sound-stereo:before{content:&quot;\\e189&quot;}.glyphicon-sound-dolby:before{content:&quot;\\e190&quot;}.glyphicon-sound-5-1:before{content:&quot;\\e191&quot;}.glyphicon-sound-6-1:before{content:&quot;\\e192&quot;}.glyphicon-sound-7-1:before{content:&quot;\\e193&quot;}.glyphicon-copyright-mark:before{content:&quot;\\e194&quot;}.glyphicon-registration-mark:before{content:&quot;\\e195&quot;}.glyphicon-cloud-download:before{content:&quot;\\e197&quot;}.glyphicon-cloud-upload:before{content:&quot;\\e198&quot;}.glyphicon-tree-conifer:before{content:&quot;\\e199&quot;}.glyphicon-tree-deciduous:before{content:&quot;\\e200&quot;}.glyphicon-cd:before{content:&quot;\\e201&quot;}.glyphicon-save-file:before{content:&quot;\\e202&quot;}.glyphicon-open-file:before{content:&quot;\\e203&quot;}.glyphicon-level-up:before{content:&quot;\\e204&quot;}.glyphicon-copy:before{content:&quot;\\e205&quot;}.glyphicon-paste:before{content:&quot;\\e206&quot;}.glyphicon-alert:before{content:&quot;\\e209&quot;}.glyphicon-equalizer:before{content:&quot;\\e210&quot;}.glyphicon-king:before{content:&quot;\\e211&quot;}.glyphicon-queen:before{content:&quot;\\e212&quot;}.glyphicon-pawn:before{content:&quot;\\e213&quot;}.glyphicon-bishop:before{content:&quot;\\e214&quot;}.glyphicon-knight:before{content:&quot;\\e215&quot;}.glyphicon-baby-formula:before{content:&quot;\\e216&quot;}.glyphicon-tent:before{content:&quot;\\26fa&quot;}.glyphicon-blackboard:before{content:&quot;\\e218&quot;}.glyphicon-bed:before{content:&quot;\\e219&quot;}.glyphicon-apple:before{content:&quot;\\f8ff&quot;}.glyphicon-erase:before{content:&quot;\\e221&quot;}.glyphicon-hourglass:before{content:&quot;\\231b&quot;}.glyphicon-lamp:before{content:&quot;\\e223&quot;}.glyphicon-duplicate:before{content:&quot;\\e224&quot;}.glyphicon-piggy-bank:before{content:&quot;\\e225&quot;}.glyphicon-scissors:before{content:&quot;\\e226&quot;}.glyphicon-bitcoin:before{content:&quot;\\e227&quot;}.glyphicon-btc:before{content:&quot;\\e227&quot;}.glyphicon-xbt:before{content:&quot;\\e227&quot;}.glyphicon-yen:before{content:&quot;\\00a5&quot;}.glyphicon-jpy:before{content:&quot;\\00a5&quot;}.glyphicon-ruble:before{content:&quot;\\20bd&quot;}.glyphicon-rub:before{content:&quot;\\20bd&quot;}.glyphicon-scale:before{content:&quot;\\e230&quot;}.glyphicon-ice-lolly:before{content:&quot;\\e231&quot;}.glyphicon-ice-lolly-tasted:before{content:&quot;\\e232&quot;}.glyphicon-education:before{content:&quot;\\e233&quot;}.glyphicon-option-horizontal:before{content:&quot;\\e234&quot;}.glyphicon-option-vertical:before{content:&quot;\\e235&quot;}.glyphicon-menu-hamburger:before{content:&quot;\\e236&quot;}.glyphicon-modal-window:before{content:&quot;\\e237&quot;}.glyphicon-oil:before{content:&quot;\\e238&quot;}.glyphicon-grain:before{content:&quot;\\e239&quot;}.glyphicon-sunglasses:before{content:&quot;\\e240&quot;}.glyphicon-text-size:before{content:&quot;\\e241&quot;}.glyphicon-text-color:before{content:&quot;\\e242&quot;}.glyphicon-text-background:before{content:&quot;\\e243&quot;}.glyphicon-object-align-top:before{content:&quot;\\e244&quot;}.glyphicon-object-align-bottom:before{content:&quot;\\e245&quot;}.glyphicon-object-align-horizontal:before{content:&quot;\\e246&quot;}.glyphicon-object-align-left:before{content:&quot;\\e247&quot;}.glyphicon-object-align-vertical:before{content:&quot;\\e248&quot;}.glyphicon-object-align-right:before{content:&quot;\\e249&quot;}.glyphicon-triangle-right:before{content:&quot;\\e250&quot;}.glyphicon-triangle-left:before{content:&quot;\\e251&quot;}.glyphicon-triangle-bottom:before{content:&quot;\\e252&quot;}.glyphicon-triangle-top:before{content:&quot;\\e253&quot;}.glyphicon-console:before{content:&quot;\\e254&quot;}.glyphicon-superscript:before{content:&quot;\\e255&quot;}.glyphicon-subscript:before{content:&quot;\\e256&quot;}.glyphicon-menu-left:before{content:&quot;\\e257&quot;}.glyphicon-menu-right:before{content:&quot;\\e258&quot;}.glyphicon-menu-down:before{content:&quot;\\e259&quot;}.glyphicon-menu-up:before{content:&quot;\\e260&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:&quot;Helvetica Neue&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&gt;.item&gt;a&gt;img,.carousel-inner&gt;.item&gt;img,.img-responsive,.thumbnail a&gt;img,.thumbnail&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&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:&#x27;\\2014 \\00A0&#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:&#x27;&#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:&#x27;\\00A0 \\2014&#x27;}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&quot;Courier New&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&gt;tbody&gt;tr&gt;td,.table&gt;tbody&gt;tr&gt;th,.table&gt;tfoot&gt;tr&gt;td,.table&gt;tfoot&gt;tr&gt;th,.table&gt;thead&gt;tr&gt;td,.table&gt;thead&gt;tr&gt;th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table&gt;thead&gt;tr&gt;th{vertical-align:bottom;border-bottom:2px solid #ddd}.table&gt;caption+thead&gt;tr:first-child&gt;td,.table&gt;caption+thead&gt;tr:first-child&gt;th,.table&gt;colgroup+thead&gt;tr:first-child&gt;td,.table&gt;colgroup+thead&gt;tr:first-child&gt;th,.table&gt;thead:first-child&gt;tr:first-child&gt;td,.table&gt;thead:first-child&gt;tr:first-child&gt;th{border-top:0}.table&gt;tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed&gt;tbody&gt;tr&gt;td,.table-condensed&gt;tbody&gt;tr&gt;th,.table-condensed&gt;tfoot&gt;tr&gt;td,.table-condensed&gt;tfoot&gt;tr&gt;th,.table-condensed&gt;thead&gt;tr&gt;td,.table-condensed&gt;thead&gt;tr&gt;th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered&gt;tbody&gt;tr&gt;td,.table-bordered&gt;tbody&gt;tr&gt;th,.table-bordered&gt;tfoot&gt;tr&gt;td,.table-bordered&gt;tfoot&gt;tr&gt;th,.table-bordered&gt;thead&gt;tr&gt;td,.table-bordered&gt;thead&gt;tr&gt;th{border:1px solid #ddd}.table-bordered&gt;thead&gt;tr&gt;td,.table-bordered&gt;thead&gt;tr&gt;th{border-bottom-width:2px}.table-striped&gt;tbody&gt;tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover&gt;tbody&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&gt;tbody&gt;tr.active&gt;td,.table&gt;tbody&gt;tr.active&gt;th,.table&gt;tbody&gt;tr&gt;td.active,.table&gt;tbody&gt;tr&gt;th.active,.table&gt;tfoot&gt;tr.active&gt;td,.table&gt;tfoot&gt;tr.active&gt;th,.table&gt;tfoot&gt;tr&gt;td.active,.table&gt;tfoot&gt;tr&gt;th.active,.table&gt;thead&gt;tr.active&gt;td,.table&gt;thead&gt;tr.active&gt;th,.table&gt;thead&gt;tr&gt;td.active,.table&gt;thead&gt;tr&gt;th.active{background-color:#f5f5f5}.table-hover&gt;tbody&gt;tr.active:hover&gt;td,.table-hover&gt;tbody&gt;tr.active:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.active,.table-hover&gt;tbody&gt;tr&gt;td.active:hover,.table-hover&gt;tbody&gt;tr&gt;th.active:hover{background-color:#e8e8e8}.table&gt;tbody&gt;tr.success&gt;td,.table&gt;tbody&gt;tr.success&gt;th,.table&gt;tbody&gt;tr&gt;td.success,.table&gt;tbody&gt;tr&gt;th.success,.table&gt;tfoot&gt;tr.success&gt;td,.table&gt;tfoot&gt;tr.success&gt;th,.table&gt;tfoot&gt;tr&gt;td.success,.table&gt;tfoot&gt;tr&gt;th.success,.table&gt;thead&gt;tr.success&gt;td,.table&gt;thead&gt;tr.success&gt;th,.table&gt;thead&gt;tr&gt;td.success,.table&gt;thead&gt;tr&gt;th.success{background-color:#dff0d8}.table-hover&gt;tbody&gt;tr.success:hover&gt;td,.table-hover&gt;tbody&gt;tr.success:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.success,.table-hover&gt;tbody&gt;tr&gt;td.success:hover,.table-hover&gt;tbody&gt;tr&gt;th.success:hover{background-color:#d0e9c6}.table&gt;tbody&gt;tr.info&gt;td,.table&gt;tbody&gt;tr.info&gt;th,.table&gt;tbody&gt;tr&gt;td.info,.table&gt;tbody&gt;tr&gt;th.info,.table&gt;tfoot&gt;tr.info&gt;td,.table&gt;tfoot&gt;tr.info&gt;th,.table&gt;tfoot&gt;tr&gt;td.info,.table&gt;tfoot&gt;tr&gt;th.info,.table&gt;thead&gt;tr.info&gt;td,.table&gt;thead&gt;tr.info&gt;th,.table&gt;thead&gt;tr&gt;td.info,.table&gt;thead&gt;tr&gt;th.info{background-color:#d9edf7}.table-hover&gt;tbody&gt;tr.info:hover&gt;td,.table-hover&gt;tbody&gt;tr.info:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.info,.table-hover&gt;tbody&gt;tr&gt;td.info:hover,.table-hover&gt;tbody&gt;tr&gt;th.info:hover{background-color:#c4e3f3}.table&gt;tbody&gt;tr.warning&gt;td,.table&gt;tbody&gt;tr.warning&gt;th,.table&gt;tbody&gt;tr&gt;td.warning,.table&gt;tbody&gt;tr&gt;th.warning,.table&gt;tfoot&gt;tr.warning&gt;td,.table&gt;tfoot&gt;tr.warning&gt;th,.table&gt;tfoot&gt;tr&gt;td.warning,.table&gt;tfoot&gt;tr&gt;th.warning,.table&gt;thead&gt;tr.warning&gt;td,.table&gt;thead&gt;tr.warning&gt;th,.table&gt;thead&gt;tr&gt;td.warning,.table&gt;thead&gt;tr&gt;th.warning{background-color:#fcf8e3}.table-hover&gt;tbody&gt;tr.warning:hover&gt;td,.table-hover&gt;tbody&gt;tr.warning:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.warning,.table-hover&gt;tbody&gt;tr&gt;td.warning:hover,.table-hover&gt;tbody&gt;tr&gt;th.warning:hover{background-color:#faf2cc}.table&gt;tbody&gt;tr.danger&gt;td,.table&gt;tbody&gt;tr.danger&gt;th,.table&gt;tbody&gt;tr&gt;td.danger,.table&gt;tbody&gt;tr&gt;th.danger,.table&gt;tfoot&gt;tr.danger&gt;td,.table&gt;tfoot&gt;tr.danger&gt;th,.table&gt;tfoot&gt;tr&gt;td.danger,.table&gt;tfoot&gt;tr&gt;th.danger,.table&gt;thead&gt;tr.danger&gt;td,.table&gt;thead&gt;tr.danger&gt;th,.table&gt;thead&gt;tr&gt;td.danger,.table&gt;thead&gt;tr&gt;th.danger{background-color:#f2dede}.table-hover&gt;tbody&gt;tr.danger:hover&gt;td,.table-hover&gt;tbody&gt;tr.danger:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.danger,.table-hover&gt;tbody&gt;tr&gt;td.danger:hover,.table-hover&gt;tbody&gt;tr&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&gt;.table{margin-bottom:0}.table-responsive&gt;.table&gt;tbody&gt;tr&gt;td,.table-responsive&gt;.table&gt;tbody&gt;tr&gt;th,.table-responsive&gt;.table&gt;tfoot&gt;tr&gt;td,.table-responsive&gt;.table&gt;tfoot&gt;tr&gt;th,.table-responsive&gt;.table&gt;thead&gt;tr&gt;td,.table-responsive&gt;.table&gt;thead&gt;tr&gt;th{white-space:nowrap}.table-responsive&gt;.table-bordered{border:0}.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:first-child,.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:first-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:first-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:first-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:first-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:first-child{border-left:0}.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:last-child,.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:last-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:last-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:last-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:last-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:last-child{border-right:0}.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;td,.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;th,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;td,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&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&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&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&gt;.dropdown-toggle.btn-default.focus,.open&gt;.dropdown-toggle.btn-default:focus,.open&gt;.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open&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&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&gt;.dropdown-toggle.btn-primary.focus,.open&gt;.dropdown-toggle.btn-primary:focus,.open&gt;.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open&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&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&gt;.dropdown-toggle.btn-success.focus,.open&gt;.dropdown-toggle.btn-success:focus,.open&gt;.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open&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&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&gt;.dropdown-toggle.btn-info.focus,.open&gt;.dropdown-toggle.btn-info:focus,.open&gt;.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open&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&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&gt;.dropdown-toggle.btn-warning.focus,.open&gt;.dropdown-toggle.btn-warning:focus,.open&gt;.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open&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&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&gt;.dropdown-toggle.btn-danger.focus,.open&gt;.dropdown-toggle.btn-danger:focus,.open&gt;.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open&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&gt;.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm&gt;.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs&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&gt;li&gt;a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu&gt;li&gt;a:focus,.dropdown-menu&gt;li&gt;a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu&gt;.active&gt;a,.dropdown-menu&gt;.active&gt;a:focus,.dropdown-menu&gt;.active&gt;a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu&gt;.disabled&gt;a,.dropdown-menu&gt;.disabled&gt;a:focus,.dropdown-menu&gt;.disabled&gt;a:hover{color:#777}.dropdown-menu&gt;.disabled&gt;a:focus,.dropdown-menu&gt;.disabled&gt;a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open&gt;.dropdown-menu{display:block}.open&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&gt;.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:&quot;&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&gt;.btn,.btn-group&gt;.btn{position:relative;float:left}.btn-group-vertical&gt;.btn.active,.btn-group-vertical&gt;.btn:active,.btn-group-vertical&gt;.btn:focus,.btn-group-vertical&gt;.btn:hover,.btn-group&gt;.btn.active,.btn-group&gt;.btn:active,.btn-group&gt;.btn:focus,.btn-group&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&gt;.btn,.btn-toolbar&gt;.btn-group,.btn-toolbar&gt;.input-group{margin-left:5px}.btn-group&gt;.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group&gt;.btn:first-child{margin-left:0}.btn-group&gt;.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group&gt;.btn:last-child:not(:first-child),.btn-group&gt;.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group&gt;.btn-group{float:left}.btn-group&gt;.btn-group:not(:first-child):not(:last-child)&gt;.btn{border-radius:0}.btn-group&gt;.btn-group:first-child:not(:last-child)&gt;.btn:last-child,.btn-group&gt;.btn-group:first-child:not(:last-child)&gt;.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group&gt;.btn-group:last-child:not(:first-child)&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&gt;.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group&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&gt;.btn,.btn-group-vertical&gt;.btn-group,.btn-group-vertical&gt;.btn-group&gt;.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical&gt;.btn-group&gt;.btn{float:none}.btn-group-vertical&gt;.btn+.btn,.btn-group-vertical&gt;.btn+.btn-group,.btn-group-vertical&gt;.btn-group+.btn,.btn-group-vertical&gt;.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical&gt;.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical&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&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&gt;.btn-group:not(:first-child):not(:last-child)&gt;.btn{border-radius:0}.btn-group-vertical&gt;.btn-group:first-child:not(:last-child)&gt;.btn:last-child,.btn-group-vertical&gt;.btn-group:first-child:not(:last-child)&gt;.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical&gt;.btn-group:last-child:not(:first-child)&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&gt;.btn,.btn-group-justified&gt;.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified&gt;.btn-group .btn{width:100%}.btn-group-justified&gt;.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]&gt;.btn input[type=checkbox],[data-toggle=buttons]&gt;.btn input[type=radio],[data-toggle=buttons]&gt;.btn-group&gt;.btn input[type=checkbox],[data-toggle=buttons]&gt;.btn-group&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&gt;.form-control,.input-group-lg&gt;.input-group-addon,.input-group-lg&gt;.input-group-btn&gt;.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg&gt;.form-control,select.input-group-lg&gt;.input-group-addon,select.input-group-lg&gt;.input-group-btn&gt;.btn{height:46px;line-height:46px}select[multiple].input-group-lg&gt;.form-control,select[multiple].input-group-lg&gt;.input-group-addon,select[multiple].input-group-lg&gt;.input-group-btn&gt;.btn,textarea.input-group-lg&gt;.form-control,textarea.input-group-lg&gt;.input-group-addon,textarea.input-group-lg&gt;.input-group-btn&gt;.btn{height:auto}.input-group-sm&gt;.form-control,.input-group-sm&gt;.input-group-addon,.input-group-sm&gt;.input-group-btn&gt;.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm&gt;.form-control,select.input-group-sm&gt;.input-group-addon,select.input-group-sm&gt;.input-group-btn&gt;.btn{height:30px;line-height:30px}select[multiple].input-group-sm&gt;.form-control,select[multiple].input-group-sm&gt;.input-group-addon,select[multiple].input-group-sm&gt;.input-group-btn&gt;.btn,textarea.input-group-sm&gt;.form-control,textarea.input-group-sm&gt;.input-group-addon,textarea.input-group-sm&gt;.input-group-btn&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&gt;.btn,.input-group-btn:first-child&gt;.btn-group&gt;.btn,.input-group-btn:first-child&gt;.dropdown-toggle,.input-group-btn:last-child&gt;.btn-group:not(:last-child)&gt;.btn,.input-group-btn:last-child&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&gt;.btn-group:not(:first-child)&gt;.btn,.input-group-btn:first-child&gt;.btn:not(:first-child),.input-group-btn:last-child&gt;.btn,.input-group-btn:last-child&gt;.btn-group&gt;.btn,.input-group-btn:last-child&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&gt;.btn{position:relative}.input-group-btn&gt;.btn+.btn{margin-left:-1px}.input-group-btn&gt;.btn:active,.input-group-btn&gt;.btn:focus,.input-group-btn&gt;.btn:hover{z-index:2}.input-group-btn:first-child&gt;.btn,.input-group-btn:first-child&gt;.btn-group{margin-right:-1px}.input-group-btn:last-child&gt;.btn,.input-group-btn:last-child&gt;.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav&gt;li{position:relative;display:block}.nav&gt;li&gt;a{position:relative;display:block;padding:10px 15px}.nav&gt;li&gt;a:focus,.nav&gt;li&gt;a:hover{text-decoration:none;background-color:#eee}.nav&gt;li.disabled&gt;a{color:#777}.nav&gt;li.disabled&gt;a:focus,.nav&gt;li.disabled&gt;a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open&gt;a,.nav .open&gt;a:focus,.nav .open&gt;a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav&gt;li&gt;a&gt;img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs&gt;li{float:left;margin-bottom:-1px}.nav-tabs&gt;li&gt;a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs&gt;li&gt;a:hover{border-color:#eee #eee #ddd}.nav-tabs&gt;li.active&gt;a,.nav-tabs&gt;li.active&gt;a:focus,.nav-tabs&gt;li.active&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&gt;li{float:none}.nav-tabs.nav-justified&gt;li&gt;a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified&gt;.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified&gt;li{display:table-cell;width:1%}.nav-tabs.nav-justified&gt;li&gt;a{margin-bottom:0}}.nav-tabs.nav-justified&gt;li&gt;a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified&gt;.active&gt;a,.nav-tabs.nav-justified&gt;.active&gt;a:focus,.nav-tabs.nav-justified&gt;.active&gt;a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified&gt;li&gt;a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified&gt;.active&gt;a,.nav-tabs.nav-justified&gt;.active&gt;a:focus,.nav-tabs.nav-justified&gt;.active&gt;a:hover{border-bottom-color:#fff}}.nav-pills&gt;li{float:left}.nav-pills&gt;li&gt;a{border-radius:4px}.nav-pills&gt;li+li{margin-left:2px}.nav-pills&gt;li.active&gt;a,.nav-pills&gt;li.active&gt;a:focus,.nav-pills&gt;li.active&gt;a:hover{color:#fff;background-color:#337ab7}.nav-stacked&gt;li{float:none}.nav-stacked&gt;li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified&gt;li{float:none}.nav-justified&gt;li&gt;a{margin-bottom:5px;text-align:center}.nav-justified&gt;.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified&gt;li{display:table-cell;width:1%}.nav-justified&gt;li&gt;a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified&gt;li&gt;a{margin-right:0;border-radius:4px}.nav-tabs-justified&gt;.active&gt;a,.nav-tabs-justified&gt;.active&gt;a:focus,.nav-tabs-justified&gt;.active&gt;a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified&gt;li&gt;a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified&gt;.active&gt;a,.nav-tabs-justified&gt;.active&gt;a:focus,.nav-tabs-justified&gt;.active&gt;a:hover{border-bottom-color:#fff}}.tab-content&gt;.tab-pane{display:none}.tab-content&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&gt;.navbar-collapse,.container-fluid&gt;.navbar-header,.container&gt;.navbar-collapse,.container&gt;.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid&gt;.navbar-collapse,.container-fluid&gt;.navbar-header,.container&gt;.navbar-collapse,.container&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&gt;img{display:block}@media (min-width:768px){.navbar&gt;.container .navbar-brand,.navbar&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&gt;li&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&gt;li&gt;a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu&gt;li&gt;a{line-height:20px}.navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,.navbar-nav .open .dropdown-menu&gt;li&gt;a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav&gt;li{float:left}.navbar-nav&gt;li&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&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&gt;li&gt;.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav&gt;li&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&gt;li&gt;a{color:#777}.navbar-default .navbar-nav&gt;li&gt;a:focus,.navbar-default .navbar-nav&gt;li&gt;a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav&gt;.active&gt;a,.navbar-default .navbar-nav&gt;.active&gt;a:focus,.navbar-default .navbar-nav&gt;.active&gt;a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav&gt;.disabled&gt;a,.navbar-default .navbar-nav&gt;.disabled&gt;a:focus,.navbar-default .navbar-nav&gt;.disabled&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&gt;.open&gt;a,.navbar-default .navbar-nav&gt;.open&gt;a:focus,.navbar-default .navbar-nav&gt;.open&gt;a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu&gt;li&gt;a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu&gt;.active&gt;a,.navbar-default .navbar-nav .open .dropdown-menu&gt;.active&gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&gt;.active&gt;a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a,.navbar-default .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&gt;.disabled&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&gt;li&gt;a{color:#9d9d9d}.navbar-inverse .navbar-nav&gt;li&gt;a:focus,.navbar-inverse .navbar-nav&gt;li&gt;a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav&gt;.active&gt;a,.navbar-inverse .navbar-nav&gt;.active&gt;a:focus,.navbar-inverse .navbar-nav&gt;.active&gt;a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav&gt;.disabled&gt;a,.navbar-inverse .navbar-nav&gt;.disabled&gt;a:focus,.navbar-inverse .navbar-nav&gt;.disabled&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&gt;.open&gt;a,.navbar-inverse .navbar-nav&gt;.open&gt;a:focus,.navbar-inverse .navbar-nav&gt;.open&gt;a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.active&gt;a,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.active&gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.active&gt;a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.disabled&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&gt;li{display:inline-block}.breadcrumb&gt;li+li:before{padding:0 5px;color:#ccc;content:&quot;/\\00a0&quot;}.breadcrumb&gt;.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination&gt;li{display:inline}.pagination&gt;li&gt;a,.pagination&gt;li&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&gt;li:first-child&gt;a,.pagination&gt;li:first-child&gt;span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination&gt;li:last-child&gt;a,.pagination&gt;li:last-child&gt;span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination&gt;li&gt;a:focus,.pagination&gt;li&gt;a:hover,.pagination&gt;li&gt;span:focus,.pagination&gt;li&gt;span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination&gt;.active&gt;a,.pagination&gt;.active&gt;a:focus,.pagination&gt;.active&gt;a:hover,.pagination&gt;.active&gt;span,.pagination&gt;.active&gt;span:focus,.pagination&gt;.active&gt;span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination&gt;.disabled&gt;a,.pagination&gt;.disabled&gt;a:focus,.pagination&gt;.disabled&gt;a:hover,.pagination&gt;.disabled&gt;span,.pagination&gt;.disabled&gt;span:focus,.pagination&gt;.disabled&gt;span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg&gt;li&gt;a,.pagination-lg&gt;li&gt;span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg&gt;li:first-child&gt;a,.pagination-lg&gt;li:first-child&gt;span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg&gt;li:last-child&gt;a,.pagination-lg&gt;li:last-child&gt;span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm&gt;li&gt;a,.pagination-sm&gt;li&gt;span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm&gt;li:first-child&gt;a,.pagination-sm&gt;li:first-child&gt;span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm&gt;li:last-child&gt;a,.pagination-sm&gt;li:last-child&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&gt;a,.pager li&gt;span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li&gt;a:focus,.pager li&gt;a:hover{text-decoration:none;background-color:#eee}.pager .next&gt;a,.pager .next&gt;span{float:right}.pager .previous&gt;a,.pager .previous&gt;span{float:left}.pager .disabled&gt;a,.pager .disabled&gt;a:focus,.pager .disabled&gt;a:hover,.pager .disabled&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&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&gt;.badge,.nav-pills&gt;.active&gt;a&gt;.badge{color:#337ab7;background-color:#fff}.list-group-item&gt;.badge{float:right}.list-group-item&gt;.badge+.badge{margin-right:5px}.nav-pills&gt;li&gt;a&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&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&gt;img,.thumbnail&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&gt;p,.alert&gt;ul{margin-bottom:0}.alert&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&gt;.pull-right{padding-left:10px}.media-left,.media&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&gt;.small,.list-group-item.active .list-group-item-heading&gt;small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading&gt;.small,.list-group-item.active:focus .list-group-item-heading&gt;small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading&gt;.small,.list-group-item.active:hover .list-group-item-heading&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&gt;.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title&gt;.small,.panel-title&gt;.small&gt;a,.panel-title&gt;a,.panel-title&gt;small,.panel-title&gt;small&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&gt;.list-group,.panel&gt;.panel-collapse&gt;.list-group{margin-bottom:0}.panel&gt;.list-group .list-group-item,.panel&gt;.panel-collapse&gt;.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel&gt;.list-group:first-child .list-group-item:first-child,.panel&gt;.panel-collapse&gt;.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel&gt;.list-group:last-child .list-group-item:last-child,.panel&gt;.panel-collapse&gt;.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.panel-heading+.panel-collapse&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&gt;.panel-collapse&gt;.table,.panel&gt;.table,.panel&gt;.table-responsive&gt;.table{margin-bottom:0}.panel&gt;.panel-collapse&gt;.table caption,.panel&gt;.table caption,.panel&gt;.table-responsive&gt;.table caption{padding-right:15px;padding-left:15px}.panel&gt;.table-responsive:first-child&gt;.table:first-child,.panel&gt;.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:first-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:first-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:first-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:first-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:first-child{border-top-left-radius:3px}.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:last-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:last-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:last-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:last-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:last-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:last-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:last-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:last-child{border-top-right-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child,.panel&gt;.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:first-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:first-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:first-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:first-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:first-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:first-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:first-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:first-child{border-bottom-left-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:last-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:last-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:last-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:last-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:last-child{border-bottom-right-radius:3px}.panel&gt;.panel-body+.table,.panel&gt;.panel-body+.table-responsive,.panel&gt;.table+.panel-body,.panel&gt;.table-responsive+.panel-body{border-top:1px solid #ddd}.panel&gt;.table&gt;tbody:first-child&gt;tr:first-child td,.panel&gt;.table&gt;tbody:first-child&gt;tr:first-child th{border-top:0}.panel&gt;.table-bordered,.panel&gt;.table-responsive&gt;.table-bordered{border:0}.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;td:first-child,.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;th:first-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:first-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:first-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;td:first-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;th:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:first-child{border-left:0}.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;td:last-child,.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;th:last-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:last-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:last-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;td:last-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;th:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:last-child{border-right:0}.panel&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;td,.panel&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;th,.panel&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;td,.panel&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;th{border-bottom:0}.panel&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;td,.panel&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;th,.panel&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;td,.panel&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;th{border-bottom:0}.panel&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&gt;.list-group,.panel-group .panel-heading+.panel-collapse&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&gt;.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#ddd}.panel-default&gt;.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary&gt;.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#337ab7}.panel-primary&gt;.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success&gt;.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#d6e9c6}.panel-success&gt;.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info&gt;.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#bce8f1}.panel-info&gt;.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning&gt;.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#faebcc}.panel-warning&gt;.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger&gt;.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#ebccd1}.panel-danger&gt;.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger&gt;.panel-footer+.panel-collapse&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:&quot;Helvetica Neue&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:&quot;Helvetica Neue&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&gt;.arrow,.popover&gt;.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover&gt;.arrow{border-width:11px}.popover&gt;.arrow:after{content:&quot;&quot;;border-width:10px}.popover.top&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&gt;.arrow:after{bottom:1px;margin-left:-10px;content:&quot; &quot;;border-top-color:#fff;border-bottom-width:0}.popover.right&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&gt;.arrow:after{bottom:-10px;left:1px;content:&quot; &quot;;border-right-color:#fff;border-left-width:0}.popover.bottom&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&gt;.arrow:after{top:1px;margin-left:-10px;content:&quot; &quot;;border-top-width:0;border-bottom-color:#fff}.popover.left&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&gt;.arrow:after{right:1px;bottom:-10px;content:&quot; &quot;;border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner&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&gt;.item&gt;a&gt;img,.carousel-inner&gt;.item&gt;img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner&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&gt;.item.active.right,.carousel-inner&gt;.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner&gt;.item.active.left,.carousel-inner&gt;.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner&gt;.item.active,.carousel-inner&gt;.item.next.left,.carousel-inner&gt;.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner&gt;.active,.carousel-inner&gt;.next,.carousel-inner&gt;.prev{display:block}.carousel-inner&gt;.active{left:0}.carousel-inner&gt;.next,.carousel-inner&gt;.prev{position:absolute;top:0;width:100%}.carousel-inner&gt;.next{left:100%}.carousel-inner&gt;.prev{left:-100%}.carousel-inner&gt;.next.left,.carousel-inner&gt;.prev.right{left:0}.carousel-inner&gt;.active.left{left:-100%}.carousel-inner&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=&#x27;#80000000&#x27;, endColorstr=&#x27;#00000000&#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=&#x27;#00000000&#x27;, endColorstr=&#x27;#80000000&#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:&#x27;\\2039&#x27;}.carousel-control .icon-next:before{content:&#x27;\\203a&#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&gt;.btn-group:after,.btn-group-vertical&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:&quot; &quot;}.btn-group-vertical&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}}\n",
"/*# sourceMappingURL=bootstrap.min.css.map *//*!\n",
" * Bootstrap v3.3.7 (http://getbootstrap.com)\n",
" * Copyright 2011-2016 Twitter, Inc.\n",
" * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n",
" */.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=&#x27;#ffffffff&#x27;, endColorstr=&#x27;#ffe0e0e0&#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=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff265a88&#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=&#x27;#ff5cb85c&#x27;, endColorstr=&#x27;#ff419641&#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=&#x27;#ff5bc0de&#x27;, endColorstr=&#x27;#ff2aabd2&#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=&#x27;#fff0ad4e&#x27;, endColorstr=&#x27;#ffeb9316&#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=&#x27;#ffd9534f&#x27;, endColorstr=&#x27;#ffc12e2a&#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&gt;li&gt;a:focus,.dropdown-menu&gt;li&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=&#x27;#fff5f5f5&#x27;, endColorstr=&#x27;#ffe8e8e8&#x27;, GradientType=0);background-repeat:repeat-x}.dropdown-menu&gt;.active&gt;a,.dropdown-menu&gt;.active&gt;a:focus,.dropdown-menu&gt;.active&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=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff2e6da4&#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=&#x27;#ffffffff&#x27;, endColorstr=&#x27;#fff8f8f8&#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&gt;.active&gt;a,.navbar-default .navbar-nav&gt;.open&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=&#x27;#ffdbdbdb&#x27;, endColorstr=&#x27;#ffe2e2e2&#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&gt;li&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=&#x27;#ff3c3c3c&#x27;, endColorstr=&#x27;#ff222222&#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav&gt;.active&gt;a,.navbar-inverse .navbar-nav&gt;.open&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=&#x27;#ff080808&#x27;, endColorstr=&#x27;#ff0f0f0f&#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&gt;li&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&gt;.active&gt;a,.navbar .navbar-nav .open .dropdown-menu&gt;.active&gt;a:focus,.navbar .navbar-nav .open .dropdown-menu&gt;.active&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=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff2e6da4&#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=&#x27;#ffdff0d8&#x27;, endColorstr=&#x27;#ffc8e5bc&#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=&#x27;#ffd9edf7&#x27;, endColorstr=&#x27;#ffb9def0&#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=&#x27;#fffcf8e3&#x27;, endColorstr=&#x27;#fff8efc0&#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=&#x27;#fff2dede&#x27;, endColorstr=&#x27;#ffe7c3c3&#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=&#x27;#ffebebeb&#x27;, endColorstr=&#x27;#fff5f5f5&#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=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff286090&#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=&#x27;#ff5cb85c&#x27;, endColorstr=&#x27;#ff449d44&#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=&#x27;#ff5bc0de&#x27;, endColorstr=&#x27;#ff31b0d5&#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=&#x27;#fff0ad4e&#x27;, endColorstr=&#x27;#ffec971f&#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=&#x27;#ffd9534f&#x27;, endColorstr=&#x27;#ffc9302c&#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=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff2b669a&#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&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=&#x27;#fff5f5f5&#x27;, endColorstr=&#x27;#ffe8e8e8&#x27;, GradientType=0);background-repeat:repeat-x}.panel-primary&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=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff2e6da4&#x27;, GradientType=0);background-repeat:repeat-x}.panel-success&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=&#x27;#ffdff0d8&#x27;, endColorstr=&#x27;#ffd0e9c6&#x27;, GradientType=0);background-repeat:repeat-x}.panel-info&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=&#x27;#ffd9edf7&#x27;, endColorstr=&#x27;#ffc4e3f3&#x27;, GradientType=0);background-repeat:repeat-x}.panel-warning&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=&#x27;#fffcf8e3&#x27;, endColorstr=&#x27;#fffaf2cc&#x27;, GradientType=0);background-repeat:repeat-x}.panel-danger&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=&#x27;#fff2dede&#x27;, endColorstr=&#x27;#ffebcccc&#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=&#x27;#ffe8e8e8&#x27;, endColorstr=&#x27;#fff5f5f5&#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)}\n",
"/*# sourceMappingURL=bootstrap-theme.min.css.map */ &lt;/style&gt;&lt;style&gt;body {\n",
" padding-top: 80px;\n",
"}\n",
".content .container-fluid{\n",
" margin-left: 20px !important;\n",
" margin-right: 20px !important;\n",
" margin-bottom: 20px;\n",
"}\n",
"\n",
".page-header{\n",
" border:0 !important;\n",
"}\n",
"\n",
".row.variable, .section-items &gt; .row {\n",
" border: 1px solid #e1e1e8;\n",
" border-top: hidden;\n",
"}\n",
"\n",
".row.spacing{\n",
" padding: 2em 1em;\n",
"}\n",
"\n",
".row.header {\n",
" border-bottom: 1px solid #e1e1e8;\n",
" /*background-color: #f5f5f5;*/\n",
" padding-left: 2em;\n",
"}\n",
"\n",
"\n",
".dl-horizontal dt {\n",
" text-align: left;\n",
" padding-right: 1em;\n",
" white-space: normal;\n",
"}\n",
"\n",
".dl-horizontal dd {\n",
" margin-left: 0;\n",
"}\n",
"\n",
".col-md-12 {\n",
" padding-left: 2em;\n",
"}\n",
"\n",
".indent {\n",
" margin-left: 1em;\n",
"}\n",
"\n",
".center-img {\n",
" margin-left: auto !important;\n",
" margin-right: auto !important;\n",
" display: block;\n",
"}\n",
"\n",
"/* Table example_values */\n",
"table.example_values {\n",
" border: 0;\n",
"}\n",
"\n",
".example_values th {\n",
" border: 0;\n",
" padding: 0;\n",
" color: #555;\n",
" font-weight: 600;\n",
"}\n",
"\n",
".example_values tr, .example_values td {\n",
" border: 0;\n",
" padding: 0;\n",
" color: #555;\n",
"}\n",
"\n",
"/* STATS */\n",
"table.stats, table.sample, table.duplicate{\n",
" border: 0;\n",
"}\n",
"\n",
".stats tr, .sample tr, .duplicate tr {\n",
" border: 0;\n",
"}\n",
"\n",
".stats th, .stats td{\n",
" color: #555;\n",
" border: 0;\n",
"}\n",
"\n",
".stats th {\n",
" padding: 0 2em 0 0;\n",
" font-weight: 600;\n",
"}\n",
"\n",
".stats td {\n",
" padding: 1px;\n",
"}\n",
"\n",
"\n",
"/* Sample table */\n",
"table.sample, table.duplicate{\n",
" margin-bottom: 2em;\n",
" margin-left: 1em;\n",
"}\n",
"\n",
".sample td, .sample th, .duplicate td, .duplicate th {\n",
" padding: 0.5em;\n",
" white-space: nowrap;\n",
" border: 0;\n",
"\n",
"}\n",
"\n",
".sample thead, .duplicate thead {\n",
" border-top: 0;\n",
" border-bottom: 2px solid #ddd;\n",
"}\n",
"\n",
".sample td, .duplicate td {\n",
" width: 100%;\n",
"}\n",
"\n",
"\n",
"/* There is no good solution available to make the divs equal height and then center ... */\n",
".histogram {\n",
" margin-top: 3em;\n",
"}\n",
"\n",
"/* Freq table */\n",
"table.freq {\n",
" margin-bottom: 2em;\n",
" border: 0;\n",
"}\n",
"\n",
"table.freq th, table.freq tr, table.freq td {\n",
" border: 0;\n",
" padding: 0;\n",
"}\n",
"\n",
".freq thead {\n",
" font-weight: 600;\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
"\n",
"}\n",
"\n",
"/* Freq mini */\n",
".freq.mini td {\n",
" width: 50%;\n",
" padding: 1px;\n",
" font-size: 12px;\n",
"\n",
"}\n",
"\n",
"table.freq.mini {\n",
" width: 100%;\n",
"}\n",
"\n",
".freq.mini th {\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" white-space: nowrap;\n",
" max-width: 5em;\n",
" font-weight: 400;\n",
" text-align: right;\n",
" padding-right: 0.5em;\n",
"}\n",
"\n",
"/* Message classes */\n",
".missing {\n",
" color: #a94442;\n",
"}\n",
"\n",
".alert, .alert &gt; th, .alert &gt; td {\n",
" color: #a94442;\n",
"}\n",
"\n",
".ignore {\n",
" opacity: 0.4;\n",
"}\n",
"\n",
"/* Bars in tables */\n",
".freq.table{\n",
" table-layout: fixed;\n",
"}\n",
"\n",
".freq:not(.mini) tr td:nth-child(1), .freq:not(.mini) tr th:nth-child(1){\n",
" width: auto;\n",
" max-width: none;\n",
"\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
"}\n",
"\n",
".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){\n",
" width: 100px;\n",
" text-align: right;\n",
"}\n",
".freq:not(.mini) tr td:nth-child(4), .freq:not(.mini) tr th:nth-child(4){\n",
" width:200px;\n",
"}\n",
"\n",
".freq .bar {\n",
" float: left;\n",
" width: 0;\n",
" height: 100%;\n",
" line-height: 20px;\n",
" color: #fff;\n",
" text-align: center;\n",
" background-color: #337ab7;\n",
" border-radius: 3px;\n",
" margin-right: 4px;\n",
"}\n",
"\n",
".other .bar {\n",
" background-color: #999;\n",
"}\n",
"\n",
".missing .bar {\n",
" background-color: #a94442;\n",
"}\n",
"\n",
".tooltip-inner {\n",
" width: 100%;\n",
" white-space: nowrap;\n",
" text-align: left;\n",
"}\n",
"\n",
".extrapadding {\n",
" padding: 2em;\n",
"}\n",
"\n",
".variable .h4 {\n",
" text-overflow: ellipsis;\n",
" display:inline-block;\n",
" width: calc(90%); /* The trick is here! */\n",
" overflow:hidden;\n",
"}\n",
"\n",
".variable.ignore .h4{\n",
" text-decoration: line-through;\n",
"}\n",
"\n",
".table-responsive{\n",
" overflow: scroll;\n",
" width: 100%;\n",
" overflow-y: hidden;\n",
"}\n",
".img-responsive{\n",
" max-width: 99%;\n",
"}\n",
".footer-text{\n",
" padding:20px;\n",
"}\n",
"\n",
"table.list-warnings td{\n",
" padding-right:10px;\n",
"}\n",
"\n",
"a.anchor-pos {\n",
" display: block;\n",
" position: relative;\n",
" top: -70px;\n",
" visibility: hidden;\n",
"}\n",
"\n",
"a.anchor-pos-variable{\n",
" /*top: -70px;*/\n",
"}\n",
"\n",
"#sample-container, #duplicate-container{\n",
" overflow: auto;\n",
" width: 100%;\n",
" overflow-y: hidden;\n",
"}\n",
"\n",
"#overview-content td, #overview-content th{\n",
" border-top: 0;\n",
" line-height: 1;\n",
"}\n",
"\n",
".variable-description{\n",
" color: #777;\n",
" font-size: 10pt;\n",
" margin-top: 10px;\n",
" font-style: italic;\n",
"}\n",
"\n",
"select.multiple{\n",
" width: 180px;\n",
" height: 500px;\n",
" margin: 10px 0;\n",
"}\n",
"\n",
".named-list-item{\n",
" padding: 1em;\n",
"}\n",
"\n",
"/* not printing tabs */\n",
"@media print {\n",
" .tab-content &gt; .tab-pane, .collapse {\n",
" display: block !important;\n",
" opacity: 1 !important;\n",
" visibility: visible !important;\n",
" /*page-break-after: always;*/\n",
" page-break-after: right;\n",
" page-break-before: avoid;\n",
" }\n",
"\n",
" .nav-pills, .nav-tabs, button[data-toggle=&quot;collapse&quot;], .mini, .col-sm-3 img {\n",
" display:none !important;\n",
" }\n",
"\n",
" a[download=&quot;config.yml&quot;]:after {\n",
" content: none !important;\n",
" }\n",
"\n",
" .row {\n",
" border: 0 !important;\n",
" }\n",
"}\n",
"\n",
".text-placeholder {\n",
" display: inline-block;\n",
" background-color: #444;\n",
" height: 12px;\n",
" border-radius: 100px;\n",
" margin: 5px 0;\n",
" min-width: 200px;\n",
" opacity: .1;\n",
"}&lt;/style&gt;&lt;/head&gt;&lt;body&gt;&lt;a class=anchor-pos id=top&gt;&lt;/a&gt;&lt;nav class=&quot;navbar navbar-default navbar-fixed-top&quot;&gt;&lt;div class=container-fluid&gt;&lt;div class=navbar-header&gt;&lt;button type=button class=&quot;navbar-toggle collapsed&quot; data-toggle=collapse data-target=#navbar aria-expanded=false aria-controls=navbar&gt;&lt;span class=sr-only&gt;Toggle navigation&lt;/span&gt;&lt;span class=icon-bar&gt;&lt;/span&gt;&lt;span class=icon-bar&gt;&lt;/span&gt;&lt;span class=icon-bar&gt;&lt;/span&gt;&lt;/button&gt;&lt;a class=&quot;navbar-brand anchor&quot; href=#top&gt;Pandas Profiling Report&lt;/a&gt;&lt;/div&gt;&lt;div id=navbar class=&quot;navbar-collapse collapse&quot;&gt;&lt;ul class=&quot;nav navbar-nav navbar-right&quot;&gt;&lt;li&gt;&lt;a class=anchor href=#overview&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#variables&gt;Variables&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#interactions&gt;Interactions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#correlations&gt;Correlations&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#missing&gt;Missing values&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#sample&gt;Sample&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/nav&gt;&lt;div class=content&gt;&lt;div class=container&gt;&lt;div class=&quot;row header&quot;&gt;&lt;a class=anchor-pos id=overview&gt;&lt;/a&gt;&lt;h1 class=page-header&gt;Overview&lt;/h1&gt;&lt;/div&gt;&lt;div class=section-items&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-pills&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#overview-dataset_overview aria-controls=overview-dataset_overview role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#overview-warnings aria-controls=overview-warnings role=tab data-toggle=tab&gt;Warnings &lt;span class=badge&gt;27&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#overview-reproduction aria-controls=overview-reproduction role=tab data-toggle=tab&gt;Reproduction&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content style=&quot;padding-top: 10px;&quot;&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=overview-dataset_overview&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Dataset statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Number of variables&lt;/th&gt;&lt;td&gt;11&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Number of observations&lt;/th&gt;&lt;td&gt;1309&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing cells&lt;/th&gt;&lt;td&gt;1280&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing cells (%)&lt;/th&gt;&lt;td&gt;8.9%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Duplicate rows&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Duplicate rows (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Total size in memory&lt;/th&gt;&lt;td&gt;112.6 KiB&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Average record size in memory&lt;/th&gt;&lt;td&gt;88.1 B&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Variable types&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Categorical&lt;/th&gt;&lt;td&gt;7&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Numeric&lt;/th&gt;&lt;td&gt;4&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=overview-warnings&gt;&lt;table class=&quot;table table-condensed list-warnings&quot;&gt;&lt;p class=h4&gt;Warnings&lt;/p&gt;&lt;tr style=border-top:0&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-1276153525278502340&gt;&lt;code&gt;Name&lt;/code&gt;&lt;/a&gt; has a high cardinality: 1307 distinct values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;High cardinality&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-7501723419757396541&gt;&lt;code&gt;Ticket&lt;/code&gt;&lt;/a&gt; has a high cardinality: 929 distinct values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;High cardinality&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-3539840473575887385&gt;&lt;code&gt;Cabin&lt;/code&gt;&lt;/a&gt; has a high cardinality: 186 distinct values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;High cardinality&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-8663163945155377422&gt;&lt;code&gt;Pclass&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Fare&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-8851767276089965644&gt;&lt;code&gt;Fare&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Pclass&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-8663163945155377422&gt;&lt;code&gt;Pclass&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Fare&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-8851767276089965644&gt;&lt;code&gt;Fare&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Pclass&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-8663163945155377422&gt;&lt;code&gt;Pclass&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;SibSp&lt;/code&gt; and &lt;abbr title=&quot;SibSp, Parch, Survived&quot;&gt;2 other fields&lt;/abbr&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_8181256235074731204&gt;&lt;code&gt;Age&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;SibSp&lt;/code&gt; and &lt;abbr title=&quot;SibSp, Parch, Survived&quot;&gt;2 other fields&lt;/abbr&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_4213468645413907098&gt;&lt;code&gt;SibSp&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Pclass&lt;/code&gt; and &lt;abbr title=&quot;Pclass, Age&quot;&gt;1 other fields&lt;/abbr&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-577434093074518742&gt;&lt;code&gt;Parch&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Pclass&lt;/code&gt; and &lt;abbr title=&quot;Pclass, Age&quot;&gt;1 other fields&lt;/abbr&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_1744995237285011741&gt;&lt;code&gt;Survived&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Pclass&lt;/code&gt; and &lt;abbr title=&quot;Pclass, Age&quot;&gt;1 other fields&lt;/abbr&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_312269295689398529&gt;&lt;code&gt;Sex&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Survived&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_1744995237285011741&gt;&lt;code&gt;Survived&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Sex&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-8663163945155377422&gt;&lt;code&gt;Pclass&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Fare&lt;/code&gt; and &lt;abbr title=&quot;Fare, Embarked&quot;&gt;1 other fields&lt;/abbr&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-8851767276089965644&gt;&lt;code&gt;Fare&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Pclass&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_3564229900655673117&gt;&lt;code&gt;Embarked&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Pclass&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_312269295689398529&gt;&lt;code&gt;Sex&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Survived&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_1744995237285011741&gt;&lt;code&gt;Survived&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;Sex&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_8181256235074731204&gt;&lt;code&gt;Age&lt;/code&gt;&lt;/a&gt; has 263 (20.1%) missing values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Missing&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-3539840473575887385&gt;&lt;code&gt;Cabin&lt;/code&gt;&lt;/a&gt; has 1014 (77.5%) missing values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Missing&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-1276153525278502340&gt;&lt;code&gt;Name&lt;/code&gt;&lt;/a&gt; is uniformly distributed &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;Uniform&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-7501723419757396541&gt;&lt;code&gt;Ticket&lt;/code&gt;&lt;/a&gt; is uniformly distributed &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;Uniform&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-3539840473575887385&gt;&lt;code&gt;Cabin&lt;/code&gt;&lt;/a&gt; is uniformly distributed &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;Uniform&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_4213468645413907098&gt;&lt;code&gt;SibSp&lt;/code&gt;&lt;/a&gt; has 891 (68.1%) zeros &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Zeros&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-577434093074518742&gt;&lt;code&gt;Parch&lt;/code&gt;&lt;/a&gt; has 1002 (76.5%) zeros &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Zeros&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-8851767276089965644&gt;&lt;code&gt;Fare&lt;/code&gt;&lt;/a&gt; has 17 (1.3%) zeros &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Zeros&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=overview-reproduction&gt;&lt;div class=col-sm-12&gt;&lt;p class=h4&gt;Reproduction&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Analysis started&lt;/th&gt;&lt;td&gt;2021-10-31 21:54:40.176271&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Analysis finished&lt;/th&gt;&lt;td&gt;2021-10-31 21:54:48.113782&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Duration&lt;/th&gt;&lt;td&gt;7.94 seconds&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Software version&lt;/th&gt;&lt;td&gt;&lt;a href=https://github.com/pandas-profiling/pandas-profiling&gt;pandas-profiling v3.0.0&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Download configuration&lt;/th&gt;&lt;td&gt;&lt;a download=config.json href=&quot;data:text/plain;charset=utf-8,%7B%22title%22%3A%20%22Pandas%20Profiling%20Report%22%2C%20%22dataset%22%3A%20%7B%22description%22%3A%20%22%22%2C%20%22creator%22%3A%20%22%22%2C%20%22author%22%3A%20%22%22%2C%20%22copyright_holder%22%3A%20%22%22%2C%20%22copyright_year%22%3A%20%22%22%2C%20%22url%22%3A%20%22%22%7D%2C%20%22variables%22%3A%20%7B%22descriptions%22%3A%20%7B%7D%7D%2C%20%22infer_dtypes%22%3A%20true%2C%20%22show_variable_description%22%3A%20true%2C%20%22pool_size%22%3A%200%2C%20%22progress_bar%22%3A%20true%2C%20%22vars%22%3A%20%7B%22num%22%3A%20%7B%22quantiles%22%3A%20%5B0.05%2C%200.25%2C%200.5%2C%200.75%2C%200.95%5D%2C%20%22skewness_threshold%22%3A%2020%2C%20%22low_categorical_threshold%22%3A%205%2C%20%22chi_squared_threshold%22%3A%200.999%7D%2C%20%22cat%22%3A%20%7B%22length%22%3A%20true%2C%20%22characters%22%3A%20true%2C%20%22words%22%3A%20true%2C%20%22cardinality_threshold%22%3A%2050%2C%20%22n_obs%22%3A%205%2C%20%22chi_squared_threshold%22%3A%200.999%2C%20%22coerce_str_to_date%22%3A%20false%2C%20%22redact%22%3A%20false%2C%20%22histogram_largest%22%3A%2050%7D%2C%20%22image%22%3A%20%7B%22active%22%3A%20false%2C%20%22exif%22%3A%20true%2C%20%22hash%22%3A%20true%7D%2C%20%22bool%22%3A%20%7B%22n_obs%22%3A%203%2C%20%22mappings%22%3A%20%7B%22t%22%3A%20true%2C%20%22f%22%3A%20false%2C%20%22yes%22%3A%20true%2C%20%22no%22%3A%20false%2C%20%22y%22%3A%20true%2C%20%22n%22%3A%20false%2C%20%22true%22%3A%20true%2C%20%22false%22%3A%20false%7D%7D%2C%20%22path%22%3A%20%7B%22active%22%3A%20false%7D%2C%20%22file%22%3A%20%7B%22active%22%3A%20false%7D%2C%20%22url%22%3A%20%7B%22active%22%3A%20false%7D%7D%2C%20%22sort%22%3A%20null%2C%20%22missing_diagrams%22%3A%20%7B%22bar%22%3A%20true%2C%20%22matrix%22%3A%20true%2C%20%22dendrogram%22%3A%20true%2C%20%22heatmap%22%3A%20true%7D%2C%20%22correlations%22%3A%20%7B%22spearman%22%3A%20%7B%22key%22%3A%20%22spearman%22%2C%20%22calculate%22%3A%20true%2C%20%22warn_high_correlations%22%3A%2010%2C%20%22threshold%22%3A%200.5%7D%2C%20%22pearson%22%3A%20%7B%22key%22%3A%20%22pearson%22%2C%20%22calculate%22%3A%20true%2C%20%22warn_high_correlations%22%3A%2010%2C%20%22threshold%22%3A%200.5%7D%2C%20%22kendall%22%3A%20%7B%22key%22%3A%20%22kendall%22%2C%20%22calculate%22%3A%20true%2C%20%22warn_high_correlations%22%3A%2010%2C%20%22threshold%22%3A%200.5%7D%2C%20%22cramers%22%3A%20%7B%22key%22%3A%20%22cramers%22%2C%20%22calculate%22%3A%20true%2C%20%22warn_high_correlations%22%3A%2010%2C%20%22threshold%22%3A%200.5%7D%2C%20%22phi_k%22%3A%20%7B%22key%22%3A%20%22phi_k%22%2C%20%22calculate%22%3A%20true%2C%20%22warn_high_correlations%22%3A%2010%2C%20%22threshold%22%3A%200.5%7D%7D%2C%20%22interactions%22%3A%20%7B%22continuous%22%3A%20true%2C%20%22targets%22%3A%20%5B%5D%7D%2C%20%22categorical_maximum_correlation_distinct%22%3A%20100%2C%20%22memory_deep%22%3A%20false%2C%20%22plot%22%3A%20%7B%22missing%22%3A%20%7B%22force_labels%22%3A%20true%2C%20%22cmap%22%3A%20%22RdBu%22%7D%2C%20%22image_format%22%3A%20%22svg%22%2C%20%22correlation%22%3A%20%7B%22cmap%22%3A%20%22RdBu%22%2C%20%22bad%22%3A%20%22%23000000%22%7D%2C%20%22dpi%22%3A%20800%2C%20%22histogram%22%3A%20%7B%22bins%22%3A%2050%2C%20%22max_bins%22%3A%20250%2C%20%22x_axis_labels%22%3A%20true%7D%2C%20%22scatter_threshold%22%3A%201000%2C%20%22pie%22%3A%20%7B%22max_unique%22%3A%2010%7D%7D%2C%20%22duplicates%22%3A%20%7B%22head%22%3A%2010%2C%20%22key%22%3A%20%22%23%20duplicates%22%7D%2C%20%22samples%22%3A%20%7B%22head%22%3A%2010%2C%20%22tail%22%3A%2010%2C%20%22random%22%3A%200%7D%2C%20%22reject_variables%22%3A%20true%2C%20%22n_obs_unique%22%3A%2010%2C%20%22n_freq_table_max%22%3A%2010%2C%20%22n_extreme_obs%22%3A%2010%2C%20%22report%22%3A%20%7B%22precision%22%3A%2010%7D%2C%20%22html%22%3A%20%7B%22style%22%3A%20%7B%22primary_color%22%3A%20%22%23337ab7%22%2C%20%22logo%22%3A%20%22%22%2C%20%22theme%22%3A%20null%7D%2C%20%22navbar_show%22%3A%20true%2C%20%22minify_html%22%3A%20true%2C%20%22use_local_assets%22%3A%20true%2C%20%22inline%22%3A%20true%2C%20%22assets_prefix%22%3A%20null%2C%20%22assets_path%22%3A%20null%2C%20%22full_width%22%3A%20false%7D%2C%20%22notebook%22%3A%20%7B%22iframe%22%3A%20%7B%22height%22%3A%20%22800px%22%2C%20%22width%22%3A%20%22100%25%22%2C%20%22attribute%22%3A%20%22srcdoc%22%7D%7D%7D&quot;&gt;config.json&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row header&quot;&gt;&lt;a class=anchor-pos id=variables&gt;&lt;/a&gt;&lt;h1 class=page-header&gt;Variables&lt;/h1&gt;&lt;/div&gt;&lt;div class=section-items&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-8663163945155377422&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Pclass&gt;&lt;a href=#pp_var_-8663163945155377422&gt;Pclass&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Fare&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Fare&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 3 fields: SibSp, Parch, Survived&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 2 fields: Fare, Embarked&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;0.2%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; 3 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 709&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; 1 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:45.6% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 323&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; 2 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:39.1% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 277&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--8663163945155377422, #minifreqtable-8663163945155377422&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--8663163945155377422 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-8663163945155377422bottom--8663163945155377422overview aria-controls=-8663163945155377422bottom--8663163945155377422overview role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8663163945155377422bottom--8663163945155377422string aria-controls=-8663163945155377422bottom--8663163945155377422string role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8663163945155377422bottom--8663163945155377422word aria-controls=-8663163945155377422bottom--8663163945155377422word role=tab data-toggle=tab&gt;Words&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8663163945155377422bottom--8663163945155377422characters aria-controls=-8663163945155377422bottom--8663163945155377422characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-8663163945155377422bottom--8663163945155377422overview&gt;&lt;div class=row&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Characters and Unicode&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Total characters&lt;/th&gt;&lt;td&gt;1309&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct characters&lt;/th&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct categories&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode categories (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_character_property#General_Category target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode categories (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct scripts&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode scripts (click for more information)&quot; href=https://en.wikipedia.org/wiki/Script_(Unicode)#List_of_scripts_in_Unicode target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode scripts (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct blocks&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode blocks (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_block target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode blocks (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; The Unicode Standard assigns character properties to each code point, which can be used to analyse textual variables. &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;0 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Sample&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;1st row&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;2nd row&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;3rd row&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;4th row&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5th row&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8663163945155377422bottom--8663163945155377422string&gt;&lt;div class=row&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Common Values&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;709&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 54.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;323&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:45.6%&gt; 24.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;277&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:39.1%&gt; &amp;nbsp; &lt;/div&gt; 21.2% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Length&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:48.385950&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 57.8 250.436544 \n",
"L 421.2 250.436544 \n",
"L 421.2 10.8 \n",
"L 57.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(104.268135 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-2e transform=scale(0.015625) d=&quot;M 581 0 \n",
"L 581 641 \n",
"L 1222 641 \n",
"L 1222 0 \n",
"L 581 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(170.340862 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(236.413589 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(302.486317 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(368.559044 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(41.739063 254.01545)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 219.145278)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 184.275105)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 149.404932)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 114.53476)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 79.664587)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 44.794414)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-32 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.741094 156.601475)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p94a97a17c3) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 74.318182 250.436544 \n",
"L 404.681818 250.436544 \n",
"L 404.681818 22.211264 \n",
"L 74.318182 22.211264 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path style=fill:none; d=&quot;M 57.8 250.436544 \n",
"L 57.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 421.2 250.436544 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 57.8 250.436544 \n",
"L 421.2 250.436544 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:none; d=&quot;M 57.8 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p94a97a17c3&gt;&lt;rect height=239.636544 width=363.4 x=57.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Pie chart&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=396pt version=1.1 viewbox=&quot;0 0 576 396&quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:48.473829&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 396 \n",
"L 576 396 \n",
"L 576 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=matplotlib.axis_1 /&gt;&lt;g id=matplotlib.axis_2 /&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 414.792 197.01 \n",
"C 414.792 179.988219 411.157881 163.160963 404.13326 147.656262 \n",
"C 397.108638 132.151562 386.854069 118.323793 374.056977 107.099914 \n",
"C 361.259885 95.876034 346.212761 87.512577 329.924302 82.570194 \n",
"C 313.635844 77.62781 296.47834 76.219465 279.60196 78.439567 \n",
"C 262.725581 80.659669 246.516053 86.457475 232.059996 95.444325 \n",
"C 217.60394 104.431175 205.231763 116.401664 195.772847 130.55334 \n",
"C 186.31393 144.705016 179.984467 160.714428 177.208759 177.50837 \n",
"C 174.433051 194.302312 175.27454 211.496941 179.676815 227.939599 \n",
"L 295.2 197.01 \n",
"L 414.792 197.01 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 179.676815 227.939599 \n",
"C 187.767645 258.159146 207.401627 284.029392 234.330144 299.952252 \n",
"C 261.258662 315.875111 293.388359 320.612779 323.766659 313.140067 \n",
"L 295.2 197.01 \n",
"L 179.676815 227.939599 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path style=fill:#2ca02c;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 323.766659 313.140067 \n",
"C 349.735547 306.75202 372.826038 291.834232 389.323832 270.786356 \n",
"C 405.821627 249.738479 414.792003 223.753031 414.792 197.009989 \n",
"L 295.2 197.01 \n",
"L 323.766659 313.140067 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_1&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(257.215395 128.45524)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-2e transform=scale(0.015625) d=&quot;M 581 0 \n",
"L 581 641 \n",
"L 1222 641 \n",
"L 1222 0 \n",
"L 581 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-25 transform=scale(0.015625) d=&quot;M 372 3481 \n",
"Q 372 3972 619 4315 \n",
"Q 866 4659 1334 4659 \n",
"Q 1766 4659 2048 4351 \n",
"Q 2331 4044 2331 3447 \n",
"Q 2331 2866 2045 2552 \n",
"Q 1759 2238 1341 2238 \n",
"Q 925 2238 648 2547 \n",
"Q 372 2856 372 3481 \n",
"z\n",
"M 1350 4272 \n",
"Q 1141 4272 1002 4090 \n",
"Q 863 3909 863 3425 \n",
"Q 863 2984 1003 2804 \n",
"Q 1144 2625 1350 2625 \n",
"Q 1563 2625 1702 2806 \n",
"Q 1841 2988 1841 3469 \n",
"Q 1841 3913 1700 4092 \n",
"Q 1559 4272 1350 4272 \n",
"z\n",
"M 1353 -169 \n",
"L 3859 4659 \n",
"L 4316 4659 \n",
"L 1819 -169 \n",
"L 1353 -169 \n",
"z\n",
"M 3334 1075 \n",
"Q 3334 1569 3581 1911 \n",
"Q 3828 2253 4300 2253 \n",
"Q 4731 2253 5014 1945 \n",
"Q 5297 1638 5297 1041 \n",
"Q 5297 459 5011 145 \n",
"Q 4725 -169 4303 -169 \n",
"Q 3888 -169 3611 142 \n",
"Q 3334 453 3334 1075 \n",
"z\n",
"M 4316 1866 \n",
"Q 4103 1866 3964 1684 \n",
"Q 3825 1503 3825 1019 \n",
"Q 3825 581 3965 400 \n",
"Q 4106 219 4313 219 \n",
"Q 4528 219 4667 400 \n",
"Q 4806 581 4806 1063 \n",
"Q 4806 1506 4665 1686 \n",
"Q 4525 1866 4316 1866 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-20 transform=scale(0.015625) /&gt;&lt;path id=ArialMT-28 transform=scale(0.015625) d=&quot;M 1497 -1347 \n",
"Q 1031 -759 709 28 \n",
"Q 388 816 388 1659 \n",
"Q 388 2403 628 3084 \n",
"Q 909 3875 1497 4659 \n",
"L 1900 4659 \n",
"Q 1522 4009 1400 3731 \n",
"Q 1209 3300 1100 2831 \n",
"Q 966 2247 966 1656 \n",
"Q 966 153 1900 -1347 \n",
"L 1497 -1347 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-37 transform=scale(0.015625) d=&quot;M 303 3981 \n",
"L 303 4522 \n",
"L 3269 4522 \n",
"L 3269 4084 \n",
"Q 2831 3619 2401 2847 \n",
"Q 1972 2075 1738 1259 \n",
"Q 1569 684 1522 0 \n",
"L 944 0 \n",
"Q 953 541 1156 1306 \n",
"Q 1359 2072 1739 2783 \n",
"Q 2119 3494 2547 3981 \n",
"L 303 3981 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-39 transform=scale(0.015625) d=&quot;M 350 1059 \n",
"L 891 1109 \n",
"Q 959 728 1153 556 \n",
"Q 1347 384 1650 384 \n",
"Q 1909 384 2104 503 \n",
"Q 2300 622 2425 820 \n",
"Q 2550 1019 2634 1356 \n",
"Q 2719 1694 2719 2044 \n",
"Q 2719 2081 2716 2156 \n",
"Q 2547 1888 2255 1720 \n",
"Q 1963 1553 1622 1553 \n",
"Q 1053 1553 659 1965 \n",
"Q 266 2378 266 3053 \n",
"Q 266 3750 677 4175 \n",
"Q 1088 4600 1706 4600 \n",
"Q 2153 4600 2523 4359 \n",
"Q 2894 4119 3086 3673 \n",
"Q 3278 3228 3278 2384 \n",
"Q 3278 1506 3087 986 \n",
"Q 2897 466 2520 194 \n",
"Q 2144 -78 1638 -78 \n",
"Q 1100 -78 759 220 \n",
"Q 419 519 350 1059 \n",
"z\n",
"M 2653 3081 \n",
"Q 2653 3566 2395 3850 \n",
"Q 2138 4134 1775 4134 \n",
"Q 1400 4134 1122 3828 \n",
"Q 844 3522 844 3034 \n",
"Q 844 2597 1108 2323 \n",
"Q 1372 2050 1759 2050 \n",
"Q 2150 2050 2401 2323 \n",
"Q 2653 2597 2653 3081 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-29 transform=scale(0.015625) d=&quot;M 791 -1347 \n",
"L 388 -1347 \n",
"Q 1322 153 1322 1656 \n",
"Q 1322 2244 1188 2822 \n",
"Q 1081 3291 891 3722 \n",
"Q 769 4003 388 4659 \n",
"L 791 4659 \n",
"Q 1378 3875 1659 3084 \n",
"Q 1900 2403 1900 1659 \n",
"Q 1900 816 1576 28 \n",
"Q 1253 -759 791 -1347 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-34 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-2e /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-32 /&gt;&lt;use x=194.628906 xlink:href=#ArialMT-25 /&gt;&lt;use x=283.544922 xlink:href=#ArialMT-20 /&gt;&lt;use x=311.328125 xlink:href=#ArialMT-20 /&gt;&lt;use x=339.111328 xlink:href=#ArialMT-28 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-37 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-30 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-39 /&gt;&lt;use x=539.257812 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_2&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(230.052305 261.362851)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-34 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-2e /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-37 /&gt;&lt;use x=194.628906 xlink:href=#ArialMT-25 /&gt;&lt;use x=283.544922 xlink:href=#ArialMT-20 /&gt;&lt;use x=311.328125 xlink:href=#ArialMT-20 /&gt;&lt;use x=339.111328 xlink:href=#ArialMT-28 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-33 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-32 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-33 /&gt;&lt;use x=539.257812 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_3&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(323.048518 243.863313)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-31 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-2e /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-32 /&gt;&lt;use x=194.628906 xlink:href=#ArialMT-25 /&gt;&lt;use x=283.544922 xlink:href=#ArialMT-20 /&gt;&lt;use x=311.328125 xlink:href=#ArialMT-20 /&gt;&lt;use x=339.111328 xlink:href=#ArialMT-28 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-32 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-37 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-37 /&gt;&lt;use x=539.257812 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=legend_1&gt;&lt;g id=patch_5&gt;&lt;path style=fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 400.129062 97.955938 \n",
"L 437.69 97.955938 \n",
"Q 439.69 97.955938 439.69 95.955938 \n",
"L 439.69 54.52 \n",
"Q 439.69 52.52 437.69 52.52 \n",
"L 400.129062 52.52 \n",
"Q 398.129062 52.52 398.129062 54.52 \n",
"L 398.129062 95.955938 \n",
"Q 398.129062 97.955938 400.129062 97.955938 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 402.129062 63.677813 \n",
"L 422.129062 63.677813 \n",
"L 422.129062 56.677813 \n",
"L 402.129062 56.677813 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(430.129062 63.677813)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 402.129062 77.823125 \n",
"L 422.129062 77.823125 \n",
"L 422.129062 70.823125 \n",
"L 402.129062 70.823125 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(430.129062 77.823125)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path style=fill:#2ca02c;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 402.129062 91.968437 \n",
"L 422.129062 91.968437 \n",
"L 422.129062 84.968437 \n",
"L 402.129062 84.968437 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(430.129062 91.968437)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8663163945155377422bottom--8663163945155377422word&gt;&lt;div class=col-sm-12&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;709&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 54.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;323&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:45.6%&gt; 24.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;277&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:39.1%&gt; &amp;nbsp; &lt;/div&gt; 21.2% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8663163945155377422bottom--8663163945155377422characters&gt;&lt;div class=col-sm-12&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-8663163945155377422unicode--8663163945155377422characters aria-controls=-8663163945155377422unicode--8663163945155377422characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8663163945155377422unicode--8663163945155377422categories aria-controls=-8663163945155377422unicode--8663163945155377422categories role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8663163945155377422unicode--8663163945155377422scripts aria-controls=-8663163945155377422unicode--8663163945155377422scripts role=tab data-toggle=tab&gt;Scripts&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8663163945155377422unicode--8663163945155377422blocks aria-controls=-8663163945155377422unicode--8663163945155377422blocks role=tab data-toggle=tab&gt;Blocks&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-8663163945155377422unicode--8663163945155377422characters&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring characters&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;709&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 54.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;323&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:45.6%&gt; 24.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;277&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:39.1%&gt; &amp;nbsp; &lt;/div&gt; 21.2% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8663163945155377422unicode--8663163945155377422categories&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring categories&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;Decimal Number&quot;&gt;Decimal Number&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per category&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Decimal Number&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;709&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 54.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;323&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:45.6%&gt; 24.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;277&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:39.1%&gt; &amp;nbsp; &lt;/div&gt; 21.2% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8663163945155377422unicode--8663163945155377422scripts&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring scripts&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=Common&gt;Common&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per script&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Common&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;709&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 54.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;323&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:45.6%&gt; 24.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;277&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:39.1%&gt; &amp;nbsp; &lt;/div&gt; 21.2% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8663163945155377422unicode--8663163945155377422blocks&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring blocks&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=ASCII&gt;ASCII&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per block&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;ASCII&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;709&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 54.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;323&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:45.6%&gt; 24.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;277&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:39.1%&gt; &amp;nbsp; &lt;/div&gt; 21.2% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-1276153525278502340&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Name&gt;&lt;a href=#pp_var_-1276153525278502340&gt;Name&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;HIGH CARDINALITY&lt;/code&gt;&lt;br&gt;&lt;code&gt;UNIFORM&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr class=alert&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;1307&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;99.8%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; Connolly, Miss. Kate &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.2% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 2 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Kelly, Mr. James &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.2% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 2 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Allen, Miss. Elisabeth Walton &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.1% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 1 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Ilmakangas, Miss. Ida Livija &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.1% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 1 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Ilieff, Mr. Ylio &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.1% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 1 &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;th width=50%&gt; Other values (1302) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 1302&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--1276153525278502340, #minifreqtable-1276153525278502340&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--1276153525278502340 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-1276153525278502340bottom--1276153525278502340overview aria-controls=-1276153525278502340bottom--1276153525278502340overview role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-1276153525278502340bottom--1276153525278502340string aria-controls=-1276153525278502340bottom--1276153525278502340string role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-1276153525278502340bottom--1276153525278502340word aria-controls=-1276153525278502340bottom--1276153525278502340word role=tab data-toggle=tab&gt;Words&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-1276153525278502340bottom--1276153525278502340characters aria-controls=-1276153525278502340bottom--1276153525278502340characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-1276153525278502340bottom--1276153525278502340overview&gt;&lt;div class=row&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;82&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;25&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;27.13063407&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;12&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Characters and Unicode&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Total characters&lt;/th&gt;&lt;td&gt;35514&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct characters&lt;/th&gt;&lt;td&gt;60&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct categories&lt;/th&gt;&lt;td&gt;7 &lt;a title=&quot;Unicode categories (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_character_property#General_Category target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode categories (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct scripts&lt;/th&gt;&lt;td&gt;2 &lt;a title=&quot;Unicode scripts (click for more information)&quot; href=https://en.wikipedia.org/wiki/Script_(Unicode)#List_of_scripts_in_Unicode target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode scripts (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct blocks&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode blocks (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_block target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode blocks (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; The Unicode Standard assigns character properties to each code point, which can be used to analyse textual variables. &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;1305 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;99.7%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Sample&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;1st row&lt;/th&gt;&lt;td&gt;Allen, Miss. Elisabeth Walton&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;2nd row&lt;/th&gt;&lt;td&gt;Allison, Master. Hudson Trevor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;3rd row&lt;/th&gt;&lt;td&gt;Allison, Miss. Helen Loraine&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;4th row&lt;/th&gt;&lt;td&gt;Allison, Mr. Hudson Joshua Creighton&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5th row&lt;/th&gt;&lt;td&gt;Allison, Mrs. Hudson J C (Bessie Waldo Daniels)&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-1276153525278502340bottom--1276153525278502340string&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h4&gt;Common Values&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;Connolly, Miss. Kate&quot;&gt;Connolly, Miss. Kate&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Kelly, Mr. James&quot;&gt;Kelly, Mr. James&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Allen, Miss. Elisabeth Walton&quot;&gt;Allen, Miss. Elisabeth Walton&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Ilmakangas, Miss. Ida Livija&quot;&gt;Ilmakangas, Miss. Ida Livija&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Ilieff, Mr. Ylio&quot;&gt;Ilieff, Mr. Ylio&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Ibrahim Shawah, Mr. Yousseff&quot;&gt;Ibrahim Shawah, Mr. Yousseff&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Hyman, Mr. Abraham&quot;&gt;Hyman, Mr. Abraham&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Humblen, Mr. Adolf Mathias Nicolai Olsen&quot;&gt;Humblen, Mr. Adolf Mathias Nicolai Olsen&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Howard, Miss. May Elizabeth&quot;&gt;Howard, Miss. May Elizabeth&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Horgan, Mr. John&quot;&gt;Horgan, Mr. John&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (1297)&quot;&gt;Other values (1297)&lt;/td&gt;&lt;td&gt;1297&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 99.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h4&gt;Length&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:48.809216&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 52.175 252.381088 \n",
"L 421.2 252.381088 \n",
"L 421.2 10.8 \n",
"L 52.175 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(57.259604 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(105.184928 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(153.110253 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(201.035578 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(248.960902 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(296.886227 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(344.811552 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-37 transform=scale(0.015625) d=&quot;M 303 3981 \n",
"L 303 4522 \n",
"L 3269 4522 \n",
"L 3269 4084 \n",
"Q 2831 3619 2401 2847 \n",
"Q 1972 2075 1738 1259 \n",
"Q 1569 684 1522 0 \n",
"L 944 0 \n",
"Q 953 541 1156 1306 \n",
"Q 1359 2072 1739 2783 \n",
"Q 2119 3494 2547 3981 \n",
"L 303 3981 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-37 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_8&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(392.736876 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(36.114063 255.959994)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.553125 224.868477)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.553125 193.77696)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.553125 162.685443)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.553125 131.593926)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_14&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 100.502409)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_15&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 69.410891)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-32 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_8&gt;&lt;g id=text_16&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 38.319374)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-34 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_17&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.677031 157.573747)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 68.948864 252.381088 \n",
"L 75.658409 252.381088 \n",
"L 75.658409 243.053633 \n",
"L 68.948864 243.053633 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 75.658409 252.381088 \n",
"L 82.367955 252.381088 \n",
"L 82.367955 246.162784 \n",
"L 75.658409 246.162784 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.367955 252.381088 \n",
"L 89.0775 252.381088 \n",
"L 89.0775 155.997385 \n",
"L 82.367955 155.997385 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 89.0775 252.381088 \n",
"L 95.787045 252.381088 \n",
"L 95.787045 154.442809 \n",
"L 89.0775 154.442809 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 95.787045 252.381088 \n",
"L 102.496591 252.381088 \n",
"L 102.496591 135.787899 \n",
"L 95.787045 135.787899 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 102.496591 252.381088 \n",
"L 109.206136 252.381088 \n",
"L 109.206136 22.303861 \n",
"L 102.496591 22.303861 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 109.206136 252.381088 \n",
"L 115.915682 252.381088 \n",
"L 115.915682 162.215688 \n",
"L 109.206136 162.215688 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.915682 252.381088 \n",
"L 122.625227 252.381088 \n",
"L 122.625227 84.486895 \n",
"L 115.915682 84.486895 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.625227 252.381088 \n",
"L 129.334773 252.381088 \n",
"L 129.334773 145.115354 \n",
"L 122.625227 145.115354 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.334773 252.381088 \n",
"L 136.044318 252.381088 \n",
"L 136.044318 123.351292 \n",
"L 129.334773 123.351292 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.044318 252.381088 \n",
"L 142.753864 252.381088 \n",
"L 142.753864 30.076741 \n",
"L 136.044318 30.076741 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 142.753864 252.381088 \n",
"L 149.463409 252.381088 \n",
"L 149.463409 151.333657 \n",
"L 142.753864 151.333657 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 149.463409 252.381088 \n",
"L 156.172955 252.381088 \n",
"L 156.172955 100.032654 \n",
"L 149.463409 100.032654 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 156.172955 252.381088 \n",
"L 162.8825 252.381088 \n",
"L 162.8825 190.198054 \n",
"L 156.172955 190.198054 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 162.8825 252.381088 \n",
"L 169.592045 252.381088 \n",
"L 169.592045 211.962115 \n",
"L 162.8825 211.962115 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 169.592045 252.381088 \n",
"L 176.301591 252.381088 \n",
"L 176.301591 199.525509 \n",
"L 169.592045 199.525509 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 176.301591 252.381088 \n",
"L 183.011136 252.381088 \n",
"L 183.011136 233.726177 \n",
"L 176.301591 233.726177 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 183.011136 252.381088 \n",
"L 189.720682 252.381088 \n",
"L 189.720682 202.63466 \n",
"L 183.011136 202.63466 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 189.720682 252.381088 \n",
"L 196.430227 252.381088 \n",
"L 196.430227 229.06245 \n",
"L 189.720682 229.06245 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 196.430227 252.381088 \n",
"L 203.139773 252.381088 \n",
"L 203.139773 230.617026 \n",
"L 196.430227 230.617026 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 203.139773 252.381088 \n",
"L 209.849318 252.381088 \n",
"L 209.849318 216.625843 \n",
"L 203.139773 216.625843 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 209.849318 252.381088 \n",
"L 216.558864 252.381088 \n",
"L 216.558864 239.944481 \n",
"L 209.849318 239.944481 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 216.558864 252.381088 \n",
"L 223.268409 252.381088 \n",
"L 223.268409 216.625843 \n",
"L 216.558864 216.625843 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 223.268409 252.381088 \n",
"L 229.977955 252.381088 \n",
"L 229.977955 233.726177 \n",
"L 223.268409 233.726177 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 229.977955 252.381088 \n",
"L 236.6875 252.381088 \n",
"L 236.6875 233.726177 \n",
"L 229.977955 233.726177 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 236.6875 252.381088 \n",
"L 243.397045 252.381088 \n",
"L 243.397045 215.071267 \n",
"L 236.6875 215.071267 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 243.397045 252.381088 \n",
"L 250.106591 252.381088 \n",
"L 250.106591 241.499057 \n",
"L 243.397045 241.499057 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 250.106591 252.381088 \n",
"L 256.816136 252.381088 \n",
"L 256.816136 230.617026 \n",
"L 250.106591 230.617026 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 256.816136 252.381088 \n",
"L 263.525682 252.381088 \n",
"L 263.525682 243.053633 \n",
"L 256.816136 243.053633 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 263.525682 252.381088 \n",
"L 270.235227 252.381088 \n",
"L 270.235227 246.162784 \n",
"L 263.525682 246.162784 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 270.235227 252.381088 \n",
"L 276.944773 252.381088 \n",
"L 276.944773 243.053633 \n",
"L 270.235227 243.053633 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 276.944773 252.381088 \n",
"L 283.654318 252.381088 \n",
"L 283.654318 247.71736 \n",
"L 276.944773 247.71736 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 283.654318 252.381088 \n",
"L 290.363864 252.381088 \n",
"L 290.363864 247.71736 \n",
"L 283.654318 247.71736 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 290.363864 252.381088 \n",
"L 297.073409 252.381088 \n",
"L 297.073409 249.271936 \n",
"L 290.363864 249.271936 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 297.073409 252.381088 \n",
"L 303.782955 252.381088 \n",
"L 303.782955 252.381088 \n",
"L 297.073409 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 303.782955 252.381088 \n",
"L 310.4925 252.381088 \n",
"L 310.4925 249.271936 \n",
"L 303.782955 249.271936 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 310.4925 252.381088 \n",
"L 317.202045 252.381088 \n",
"L 317.202045 249.271936 \n",
"L 310.4925 249.271936 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 317.202045 252.381088 \n",
"L 323.911591 252.381088 \n",
"L 323.911591 250.826512 \n",
"L 317.202045 250.826512 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 323.911591 252.381088 \n",
"L 330.621136 252.381088 \n",
"L 330.621136 252.381088 \n",
"L 323.911591 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 330.621136 252.381088 \n",
"L 337.330682 252.381088 \n",
"L 337.330682 250.826512 \n",
"L 330.621136 250.826512 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 337.330682 252.381088 \n",
"L 344.040227 252.381088 \n",
"L 344.040227 252.381088 \n",
"L 337.330682 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 344.040227 252.381088 \n",
"L 350.749773 252.381088 \n",
"L 350.749773 252.381088 \n",
"L 344.040227 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 350.749773 252.381088 \n",
"L 357.459318 252.381088 \n",
"L 357.459318 252.381088 \n",
"L 350.749773 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 357.459318 252.381088 \n",
"L 364.168864 252.381088 \n",
"L 364.168864 252.381088 \n",
"L 357.459318 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 364.168864 252.381088 \n",
"L 370.878409 252.381088 \n",
"L 370.878409 252.381088 \n",
"L 364.168864 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 370.878409 252.381088 \n",
"L 377.587955 252.381088 \n",
"L 377.587955 252.381088 \n",
"L 370.878409 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 377.587955 252.381088 \n",
"L 384.2975 252.381088 \n",
"L 384.2975 252.381088 \n",
"L 377.587955 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 384.2975 252.381088 \n",
"L 391.007045 252.381088 \n",
"L 391.007045 252.381088 \n",
"L 384.2975 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 391.007045 252.381088 \n",
"L 397.716591 252.381088 \n",
"L 397.716591 252.381088 \n",
"L 391.007045 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p70d4471ea9) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 397.716591 252.381088 \n",
"L 404.426136 252.381088 \n",
"L 404.426136 250.826512 \n",
"L 397.716591 250.826512 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 52.175 252.381088 \n",
"L 52.175 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 421.2 252.381088 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 52.175 252.381088 \n",
"L 421.2 252.381088 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 52.175 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p70d4471ea9&gt;&lt;rect height=241.581088 width=369.025 x=52.175 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-1276153525278502340bottom--1276153525278502340word&gt;&lt;div class=col-sm-12&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=mr&gt;mr&lt;/td&gt;&lt;td&gt;763&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.4%&gt; &amp;nbsp; &lt;/div&gt; 14.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=miss&gt;miss&lt;/td&gt;&lt;td&gt;260&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:6.9%&gt; &amp;nbsp; &lt;/div&gt; 4.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=mrs&gt;mrs&lt;/td&gt;&lt;td&gt;201&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.4%&gt; &amp;nbsp; &lt;/div&gt; 3.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=william&gt;william&lt;/td&gt;&lt;td&gt;87&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.3%&gt; &amp;nbsp; &lt;/div&gt; 1.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=john&gt;john&lt;/td&gt;&lt;td&gt;72&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.9%&gt; &amp;nbsp; &lt;/div&gt; 1.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=master&gt;master&lt;/td&gt;&lt;td&gt;61&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.6%&gt; &amp;nbsp; &lt;/div&gt; 1.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=henry&gt;henry&lt;/td&gt;&lt;td&gt;49&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.3%&gt; &amp;nbsp; &lt;/div&gt; 0.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=charles&gt;charles&lt;/td&gt;&lt;td&gt;39&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=james&gt;james&lt;/td&gt;&lt;td&gt;38&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=george&gt;george&lt;/td&gt;&lt;td&gt;37&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (1940)&quot;&gt;Other values (1940)&lt;/td&gt;&lt;td&gt;3742&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 70.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-1276153525278502340bottom--1276153525278502340characters&gt;&lt;div class=col-sm-12&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-1276153525278502340unicode--1276153525278502340characters aria-controls=-1276153525278502340unicode--1276153525278502340characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-1276153525278502340unicode--1276153525278502340categories aria-controls=-1276153525278502340unicode--1276153525278502340categories role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-1276153525278502340unicode--1276153525278502340scripts aria-controls=-1276153525278502340unicode--1276153525278502340scripts role=tab data-toggle=tab&gt;Scripts&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-1276153525278502340unicode--1276153525278502340blocks aria-controls=-1276153525278502340unicode--1276153525278502340blocks role=tab data-toggle=tab&gt;Blocks&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-1276153525278502340unicode--1276153525278502340characters&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring characters&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot; &quot;&gt;&lt;/td&gt;&lt;td&gt;4044&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:30.9%&gt; &amp;nbsp; &lt;/div&gt; 11.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=r&gt;r&lt;/td&gt;&lt;td&gt;2929&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:22.4%&gt; &amp;nbsp; &lt;/div&gt; 8.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=e&gt;e&lt;/td&gt;&lt;td&gt;2525&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:19.3%&gt; &amp;nbsp; &lt;/div&gt; 7.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=a&gt;a&lt;/td&gt;&lt;td&gt;2443&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:18.7%&gt; &amp;nbsp; &lt;/div&gt; 6.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=i&gt;i&lt;/td&gt;&lt;td&gt;1946&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:14.9%&gt; &amp;nbsp; &lt;/div&gt; 5.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=s&gt;s&lt;/td&gt;&lt;td&gt;1925&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:14.7%&gt; &amp;nbsp; &lt;/div&gt; 5.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=n&gt;n&lt;/td&gt;&lt;td&gt;1900&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:14.5%&gt; &amp;nbsp; &lt;/div&gt; 5.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=M&gt;M&lt;/td&gt;&lt;td&gt;1643&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:12.6%&gt; &amp;nbsp; &lt;/div&gt; 4.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=l&gt;l&lt;/td&gt;&lt;td&gt;1593&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:12.2%&gt; &amp;nbsp; &lt;/div&gt; 4.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=o&gt;o&lt;/td&gt;&lt;td&gt;1475&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.3%&gt; &amp;nbsp; &lt;/div&gt; 4.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (50)&quot;&gt;Other values (50)&lt;/td&gt;&lt;td&gt;13091&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 36.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-1276153525278502340unicode--1276153525278502340categories&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring categories&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;Lowercase Letter&quot;&gt;Lowercase Letter&lt;/td&gt;&lt;td&gt;22841&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 64.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Uppercase Letter&quot;&gt;Uppercase Letter&lt;/td&gt;&lt;td&gt;5383&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:23.6%&gt; &amp;nbsp; &lt;/div&gt; 15.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Space Separator&quot;&gt;Space Separator&lt;/td&gt;&lt;td&gt;4044&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.7%&gt; &amp;nbsp; &lt;/div&gt; 11.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Other Punctuation&quot;&gt;Other Punctuation&lt;/td&gt;&lt;td&gt;2783&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:12.2%&gt; &amp;nbsp; &lt;/div&gt; 7.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Open Punctuation&quot;&gt;Open Punctuation&lt;/td&gt;&lt;td&gt;222&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Close Punctuation&quot;&gt;Close Punctuation&lt;/td&gt;&lt;td&gt;222&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Dash Punctuation&quot;&gt;Dash Punctuation&lt;/td&gt;&lt;td&gt;19&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per category&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Lowercase Letter&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=r&gt;r&lt;/td&gt;&lt;td&gt;2929&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:67.2%&gt; 12.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=e&gt;e&lt;/td&gt;&lt;td&gt;2525&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:57.9%&gt; 11.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=a&gt;a&lt;/td&gt;&lt;td&gt;2443&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:56.0%&gt; 10.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=i&gt;i&lt;/td&gt;&lt;td&gt;1946&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:44.6%&gt; 8.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=s&gt;s&lt;/td&gt;&lt;td&gt;1925&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:44.1%&gt; 8.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=n&gt;n&lt;/td&gt;&lt;td&gt;1900&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:43.6%&gt; 8.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=l&gt;l&lt;/td&gt;&lt;td&gt;1593&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:36.5%&gt; &amp;nbsp; &lt;/div&gt; 7.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=o&gt;o&lt;/td&gt;&lt;td&gt;1475&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:33.8%&gt; &amp;nbsp; &lt;/div&gt; 6.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=t&gt;t&lt;/td&gt;&lt;td&gt;970&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:22.2%&gt; &amp;nbsp; &lt;/div&gt; 4.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=h&gt;h&lt;/td&gt;&lt;td&gt;774&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.7%&gt; &amp;nbsp; &lt;/div&gt; 3.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (16)&quot;&gt;Other values (16)&lt;/td&gt;&lt;td&gt;4361&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 19.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Uppercase Letter&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=M&gt;M&lt;/td&gt;&lt;td&gt;1643&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 30.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=A&gt;A&lt;/td&gt;&lt;td&gt;353&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:21.5%&gt; &amp;nbsp; &lt;/div&gt; 6.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=J&gt;J&lt;/td&gt;&lt;td&gt;327&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:19.9%&gt; &amp;nbsp; &lt;/div&gt; 6.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=H&gt;H&lt;/td&gt;&lt;td&gt;283&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.2%&gt; &amp;nbsp; &lt;/div&gt; 5.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;273&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:16.6%&gt; &amp;nbsp; &lt;/div&gt; 5.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=E&gt;E&lt;/td&gt;&lt;td&gt;261&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:15.9%&gt; &amp;nbsp; &lt;/div&gt; 4.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=S&gt;S&lt;/td&gt;&lt;td&gt;261&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:15.9%&gt; &amp;nbsp; &lt;/div&gt; 4.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=W&gt;W&lt;/td&gt;&lt;td&gt;219&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:13.3%&gt; &amp;nbsp; &lt;/div&gt; 4.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=B&gt;B&lt;/td&gt;&lt;td&gt;209&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:12.7%&gt; &amp;nbsp; &lt;/div&gt; 3.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=L&gt;L&lt;/td&gt;&lt;td&gt;190&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.6%&gt; &amp;nbsp; &lt;/div&gt; 3.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (15)&quot;&gt;Other values (15)&lt;/td&gt;&lt;td&gt;1364&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:83.0%&gt; 25.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Other Punctuation&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=.&gt;.&lt;/td&gt;&lt;td&gt;1310&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 47.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=,&gt;,&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:99.9%&gt; 47.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&#x27;&quot;&#x27;&gt;&amp;#34;&lt;/td&gt;&lt;td&gt;150&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.5%&gt; &amp;nbsp; &lt;/div&gt; 5.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;&#x27;&quot;&gt;&amp;#39;&lt;/td&gt;&lt;td&gt;13&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=/ &gt;/&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.1%&gt; &amp;nbsp; &lt;/div&gt;&lt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Space Separator&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot; &quot;&gt;&lt;/td&gt;&lt;td&gt;4044&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Open Punctuation&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=(&gt;(&lt;/td&gt;&lt;td&gt;222&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Close Punctuation&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=)&gt;)&lt;/td&gt;&lt;td&gt;222&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Dash Punctuation&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=-&gt;-&lt;/td&gt;&lt;td&gt;19&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-1276153525278502340unicode--1276153525278502340scripts&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring scripts&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=Latin&gt;Latin&lt;/td&gt;&lt;td&gt;28224&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 79.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Common&gt;Common&lt;/td&gt;&lt;td&gt;7290&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:25.8%&gt; &amp;nbsp; &lt;/div&gt; 20.5% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per script&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Latin&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=r&gt;r&lt;/td&gt;&lt;td&gt;2929&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:33.0%&gt; &amp;nbsp; &lt;/div&gt; 10.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=e&gt;e&lt;/td&gt;&lt;td&gt;2525&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:28.5%&gt; &amp;nbsp; &lt;/div&gt; 8.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=a&gt;a&lt;/td&gt;&lt;td&gt;2443&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:27.5%&gt; &amp;nbsp; &lt;/div&gt; 8.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=i&gt;i&lt;/td&gt;&lt;td&gt;1946&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:21.9%&gt; &amp;nbsp; &lt;/div&gt; 6.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=s&gt;s&lt;/td&gt;&lt;td&gt;1925&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:21.7%&gt; &amp;nbsp; &lt;/div&gt; 6.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=n&gt;n&lt;/td&gt;&lt;td&gt;1900&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:21.4%&gt; &amp;nbsp; &lt;/div&gt; 6.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=M&gt;M&lt;/td&gt;&lt;td&gt;1643&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:18.5%&gt; &amp;nbsp; &lt;/div&gt; 5.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=l&gt;l&lt;/td&gt;&lt;td&gt;1593&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.9%&gt; &amp;nbsp; &lt;/div&gt; 5.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=o&gt;o&lt;/td&gt;&lt;td&gt;1475&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:16.6%&gt; &amp;nbsp; &lt;/div&gt; 5.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=t&gt;t&lt;/td&gt;&lt;td&gt;970&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:10.9%&gt; &amp;nbsp; &lt;/div&gt; 3.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (41)&quot;&gt;Other values (41)&lt;/td&gt;&lt;td&gt;8875&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 31.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Common&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot; &quot;&gt;&lt;/td&gt;&lt;td&gt;4044&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 55.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=.&gt;.&lt;/td&gt;&lt;td&gt;1310&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:32.4%&gt; &amp;nbsp; &lt;/div&gt; 18.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=,&gt;,&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:32.4%&gt; &amp;nbsp; &lt;/div&gt; 18.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=(&gt;(&lt;/td&gt;&lt;td&gt;222&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.5%&gt; &amp;nbsp; &lt;/div&gt; 3.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=)&gt;)&lt;/td&gt;&lt;td&gt;222&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.5%&gt; &amp;nbsp; &lt;/div&gt; 3.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&#x27;&quot;&#x27;&gt;&amp;#34;&lt;/td&gt;&lt;td&gt;150&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:3.7%&gt; &amp;nbsp; &lt;/div&gt; 2.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-&gt;-&lt;/td&gt;&lt;td&gt;19&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.5%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;&#x27;&quot;&gt;&amp;#39;&lt;/td&gt;&lt;td&gt;13&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=/ &gt;/&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt; &amp;nbsp; &lt;/div&gt;&lt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-1276153525278502340unicode--1276153525278502340blocks&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring blocks&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=ASCII&gt;ASCII&lt;/td&gt;&lt;td&gt;35514&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per block&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;ASCII&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot; &quot;&gt;&lt;/td&gt;&lt;td&gt;4044&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:30.9%&gt; &amp;nbsp; &lt;/div&gt; 11.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=r&gt;r&lt;/td&gt;&lt;td&gt;2929&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:22.4%&gt; &amp;nbsp; &lt;/div&gt; 8.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=e&gt;e&lt;/td&gt;&lt;td&gt;2525&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:19.3%&gt; &amp;nbsp; &lt;/div&gt; 7.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=a&gt;a&lt;/td&gt;&lt;td&gt;2443&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:18.7%&gt; &amp;nbsp; &lt;/div&gt; 6.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=i&gt;i&lt;/td&gt;&lt;td&gt;1946&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:14.9%&gt; &amp;nbsp; &lt;/div&gt; 5.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=s&gt;s&lt;/td&gt;&lt;td&gt;1925&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:14.7%&gt; &amp;nbsp; &lt;/div&gt; 5.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=n&gt;n&lt;/td&gt;&lt;td&gt;1900&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:14.5%&gt; &amp;nbsp; &lt;/div&gt; 5.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=M&gt;M&lt;/td&gt;&lt;td&gt;1643&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:12.6%&gt; &amp;nbsp; &lt;/div&gt; 4.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=l&gt;l&lt;/td&gt;&lt;td&gt;1593&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:12.2%&gt; &amp;nbsp; &lt;/div&gt; 4.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=o&gt;o&lt;/td&gt;&lt;td&gt;1475&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.3%&gt; &amp;nbsp; &lt;/div&gt; 4.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (50)&quot;&gt;Other values (50)&lt;/td&gt;&lt;td&gt;13091&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 36.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_312269295689398529&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Sex&gt;&lt;a href=#pp_var_312269295689398529&gt;Sex&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Survived&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Survived&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;0.2%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; male &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 843&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; female &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:55.3% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 466&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom-312269295689398529, #minifreqtable312269295689398529&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom-312269295689398529 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#312269295689398529bottom-312269295689398529overview aria-controls=312269295689398529bottom-312269295689398529overview role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#312269295689398529bottom-312269295689398529string aria-controls=312269295689398529bottom-312269295689398529string role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#312269295689398529bottom-312269295689398529word aria-controls=312269295689398529bottom-312269295689398529word role=tab data-toggle=tab&gt;Words&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#312269295689398529bottom-312269295689398529characters aria-controls=312269295689398529bottom-312269295689398529characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=312269295689398529bottom-312269295689398529overview&gt;&lt;div class=row&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;4.711993888&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;4&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Characters and Unicode&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Total characters&lt;/th&gt;&lt;td&gt;6168&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct characters&lt;/th&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct categories&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode categories (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_character_property#General_Category target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode categories (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct scripts&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode scripts (click for more information)&quot; href=https://en.wikipedia.org/wiki/Script_(Unicode)#List_of_scripts_in_Unicode target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode scripts (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct blocks&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode blocks (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_block target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode blocks (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; The Unicode Standard assigns character properties to each code point, which can be used to analyse textual variables. &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;0 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Sample&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;1st row&lt;/th&gt;&lt;td&gt;female&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;2nd row&lt;/th&gt;&lt;td&gt;male&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;3rd row&lt;/th&gt;&lt;td&gt;female&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;4th row&lt;/th&gt;&lt;td&gt;male&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5th row&lt;/th&gt;&lt;td&gt;female&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=312269295689398529bottom-312269295689398529string&gt;&lt;div class=row&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Common Values&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=male&gt;male&lt;/td&gt;&lt;td&gt;843&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 64.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=female&gt;female&lt;/td&gt;&lt;td&gt;466&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:55.3%&gt; 35.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Length&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:49.163572&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 52.175 246.459068 \n",
"L 421.2 246.459068 \n",
"L 421.2 10.8 \n",
"L 52.175 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(63.896365 275.781367)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-2e transform=scale(0.015625) d=&quot;M 581 0 \n",
"L 581 641 \n",
"L 1222 641 \n",
"L 1222 0 \n",
"L 581 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-30 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(105.831024 275.781367)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-32 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-35 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(147.765683 275.781367)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-35 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(189.700342 275.781367)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-37 transform=scale(0.015625) d=&quot;M 303 3981 \n",
"L 303 4522 \n",
"L 3269 4522 \n",
"L 3269 4084 \n",
"Q 2831 3619 2401 2847 \n",
"Q 1972 2075 1738 1259 \n",
"Q 1569 684 1522 0 \n",
"L 944 0 \n",
"Q 953 541 1156 1306 \n",
"Q 1359 2072 1739 2783 \n",
"Q 2119 3494 2547 3981 \n",
"L 303 3981 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-37 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-35 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(231.635001 275.781367)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-30 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(273.56966 275.781367)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-32 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-35 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(315.504319 275.781367)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-35 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_8&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(357.438978 275.781367)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-37 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-35 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_9&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(399.373637 275.781367)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-30 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(36.114063 250.037975)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 223.414344)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 196.790713)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 170.167082)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_14&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 143.543451)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_15&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 116.91982)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_16&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 90.29619)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_8&gt;&lt;g id=text_17&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 63.672559)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-37 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_9&gt;&lt;g id=text_18&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 37.048928)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_19&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.677031 154.612737)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p22e93c5800) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 68.948864 246.459068 \n",
"L 236.6875 246.459068 \n",
"L 236.6875 22.02186 \n",
"L 68.948864 22.02186 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p22e93c5800) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 236.6875 246.459068 \n",
"L 404.426136 246.459068 \n",
"L 404.426136 122.392949 \n",
"L 236.6875 122.392949 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 52.175 246.459068 \n",
"L 52.175 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 421.2 246.459068 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:none; d=&quot;M 52.175 246.459068 \n",
"L 421.2 246.459068 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path style=fill:none; d=&quot;M 52.175 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p22e93c5800&gt;&lt;rect height=235.659068 width=369.025 x=52.175 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Pie chart&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=396pt version=1.1 viewbox=&quot;0 0 576 396&quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:49.298328&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 396 \n",
"L 576 396 \n",
"L 576 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=matplotlib.axis_1 /&gt;&lt;g id=matplotlib.axis_2 /&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 414.792 197.01 \n",
"C 414.792 176.739991 409.638563 156.798868 399.817614 139.066914 \n",
"C 389.996666 121.334959 375.826901 106.387582 358.64441 95.634198 \n",
"C 341.46192 84.880813 321.824285 78.670374 301.583169 77.588471 \n",
"C 281.342054 76.506568 261.154294 80.588311 242.923426 89.448825 \n",
"C 224.692558 98.30934 209.010184 111.661097 197.35502 128.245138 \n",
"C 185.699856 144.829178 178.450119 164.107342 176.289398 184.261859 \n",
"C 174.128677 204.416375 177.127089 224.793221 185.001908 243.471027 \n",
"C 192.876728 262.148834 205.372413 278.521499 221.310726 291.045215 \n",
"L 295.2 197.01 \n",
"L 414.792 197.01 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 221.310726 291.045215 \n",
"C 238.952225 304.90723 260.1436 313.528983 282.451853 315.920602 \n",
"C 304.760106 318.312221 327.297522 314.378537 347.476564 304.57118 \n",
"C 367.655606 294.763822 384.673286 279.473056 396.575793 260.454425 \n",
"C 408.4783 241.435794 414.791996 219.446109 414.792 197.010022 \n",
"L 295.2 197.01 \n",
"L 221.310726 291.045215 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_1&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(235.208274 135.060795)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-2e transform=scale(0.015625) d=&quot;M 581 0 \n",
"L 581 641 \n",
"L 1222 641 \n",
"L 1222 0 \n",
"L 581 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-25 transform=scale(0.015625) d=&quot;M 372 3481 \n",
"Q 372 3972 619 4315 \n",
"Q 866 4659 1334 4659 \n",
"Q 1766 4659 2048 4351 \n",
"Q 2331 4044 2331 3447 \n",
"Q 2331 2866 2045 2552 \n",
"Q 1759 2238 1341 2238 \n",
"Q 925 2238 648 2547 \n",
"Q 372 2856 372 3481 \n",
"z\n",
"M 1350 4272 \n",
"Q 1141 4272 1002 4090 \n",
"Q 863 3909 863 3425 \n",
"Q 863 2984 1003 2804 \n",
"Q 1144 2625 1350 2625 \n",
"Q 1563 2625 1702 2806 \n",
"Q 1841 2988 1841 3469 \n",
"Q 1841 3913 1700 4092 \n",
"Q 1559 4272 1350 4272 \n",
"z\n",
"M 1353 -169 \n",
"L 3859 4659 \n",
"L 4316 4659 \n",
"L 1819 -169 \n",
"L 1353 -169 \n",
"z\n",
"M 3334 1075 \n",
"Q 3334 1569 3581 1911 \n",
"Q 3828 2253 4300 2253 \n",
"Q 4731 2253 5014 1945 \n",
"Q 5297 1638 5297 1041 \n",
"Q 5297 459 5011 145 \n",
"Q 4725 -169 4303 -169 \n",
"Q 3888 -169 3611 142 \n",
"Q 3334 453 3334 1075 \n",
"z\n",
"M 4316 1866 \n",
"Q 4103 1866 3964 1684 \n",
"Q 3825 1503 3825 1019 \n",
"Q 3825 581 3965 400 \n",
"Q 4106 219 4313 219 \n",
"Q 4528 219 4667 400 \n",
"Q 4806 581 4806 1063 \n",
"Q 4806 1506 4665 1686 \n",
"Q 4525 1866 4316 1866 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-20 transform=scale(0.015625) /&gt;&lt;path id=ArialMT-28 transform=scale(0.015625) d=&quot;M 1497 -1347 \n",
"Q 1031 -759 709 28 \n",
"Q 388 816 388 1659 \n",
"Q 388 2403 628 3084 \n",
"Q 909 3875 1497 4659 \n",
"L 1900 4659 \n",
"Q 1522 4009 1400 3731 \n",
"Q 1209 3300 1100 2831 \n",
"Q 966 2247 966 1656 \n",
"Q 966 153 1900 -1347 \n",
"L 1497 -1347 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-29 transform=scale(0.015625) d=&quot;M 791 -1347 \n",
"L 388 -1347 \n",
"Q 1322 153 1322 1656 \n",
"Q 1322 2244 1188 2822 \n",
"Q 1081 3291 891 3722 \n",
"Q 769 4003 388 4659 \n",
"L 791 4659 \n",
"Q 1378 3875 1659 3084 \n",
"Q 1900 2403 1900 1659 \n",
"Q 1900 816 1576 28 \n",
"Q 1253 -759 791 -1347 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-34 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-2e /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-34 /&gt;&lt;use x=194.628906 xlink:href=#ArialMT-25 /&gt;&lt;use x=283.544922 xlink:href=#ArialMT-20 /&gt;&lt;use x=311.328125 xlink:href=#ArialMT-20 /&gt;&lt;use x=339.111328 xlink:href=#ArialMT-28 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-38 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-34 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-33 /&gt;&lt;use x=539.257812 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_2&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(297.940157 264.134208)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-35 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-2e /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-36 /&gt;&lt;use x=194.628906 xlink:href=#ArialMT-25 /&gt;&lt;use x=283.544922 xlink:href=#ArialMT-20 /&gt;&lt;use x=311.328125 xlink:href=#ArialMT-20 /&gt;&lt;use x=339.111328 xlink:href=#ArialMT-28 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-34 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-36 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-36 /&gt;&lt;use x=539.257812 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=legend_1&gt;&lt;g id=patch_4&gt;&lt;path style=fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 375.6775 83.810625 \n",
"L 437.69 83.810625 \n",
"Q 439.69 83.810625 439.69 81.810625 \n",
"L 439.69 54.52 \n",
"Q 439.69 52.52 437.69 52.52 \n",
"L 375.6775 52.52 \n",
"Q 373.6775 52.52 373.6775 54.52 \n",
"L 373.6775 81.810625 \n",
"Q 373.6775 83.810625 375.6775 83.810625 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 377.6775 63.677812 \n",
"L 397.6775 63.677812 \n",
"L 397.6775 56.677812 \n",
"L 377.6775 56.677812 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(405.6775 63.677812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-6d transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 925 3319 \n",
"L 925 2853 \n",
"Q 1081 3097 1340 3245 \n",
"Q 1600 3394 1931 3394 \n",
"Q 2300 3394 2536 3241 \n",
"Q 2772 3088 2869 2813 \n",
"Q 3263 3394 3894 3394 \n",
"Q 4388 3394 4653 3120 \n",
"Q 4919 2847 4919 2278 \n",
"L 4919 0 \n",
"L 4359 0 \n",
"L 4359 2091 \n",
"Q 4359 2428 4304 2576 \n",
"Q 4250 2725 4106 2815 \n",
"Q 3963 2906 3769 2906 \n",
"Q 3419 2906 3187 2673 \n",
"Q 2956 2441 2956 1928 \n",
"L 2956 0 \n",
"L 2394 0 \n",
"L 2394 2156 \n",
"Q 2394 2531 2256 2718 \n",
"Q 2119 2906 1806 2906 \n",
"Q 1569 2906 1367 2781 \n",
"Q 1166 2656 1075 2415 \n",
"Q 984 2175 984 1722 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-61 transform=scale(0.015625) d=&quot;M 2588 409 \n",
"Q 2275 144 1986 34 \n",
"Q 1697 -75 1366 -75 \n",
"Q 819 -75 525 192 \n",
"Q 231 459 231 875 \n",
"Q 231 1119 342 1320 \n",
"Q 453 1522 633 1644 \n",
"Q 813 1766 1038 1828 \n",
"Q 1203 1872 1538 1913 \n",
"Q 2219 1994 2541 2106 \n",
"Q 2544 2222 2544 2253 \n",
"Q 2544 2597 2384 2738 \n",
"Q 2169 2928 1744 2928 \n",
"Q 1347 2928 1158 2789 \n",
"Q 969 2650 878 2297 \n",
"L 328 2372 \n",
"Q 403 2725 575 2942 \n",
"Q 747 3159 1072 3276 \n",
"Q 1397 3394 1825 3394 \n",
"Q 2250 3394 2515 3294 \n",
"Q 2781 3194 2906 3042 \n",
"Q 3031 2891 3081 2659 \n",
"Q 3109 2516 3109 2141 \n",
"L 3109 1391 \n",
"Q 3109 606 3145 398 \n",
"Q 3181 191 3288 0 \n",
"L 2700 0 \n",
"Q 2613 175 2588 409 \n",
"z\n",
"M 2541 1666 \n",
"Q 2234 1541 1622 1453 \n",
"Q 1275 1403 1131 1340 \n",
"Q 988 1278 909 1158 \n",
"Q 831 1038 831 891 \n",
"Q 831 666 1001 516 \n",
"Q 1172 366 1500 366 \n",
"Q 1825 366 2078 508 \n",
"Q 2331 650 2450 897 \n",
"Q 2541 1088 2541 1459 \n",
"L 2541 1666 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6c transform=scale(0.015625) d=&quot;M 409 0 \n",
"L 409 4581 \n",
"L 972 4581 \n",
"L 972 0 \n",
"L 409 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-6d /&gt;&lt;use x=83.300781 xlink:href=#ArialMT-61 /&gt;&lt;use x=138.916016 xlink:href=#ArialMT-6c /&gt;&lt;use x=161.132812 xlink:href=#ArialMT-65 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 377.6775 77.823125 \n",
"L 397.6775 77.823125 \n",
"L 397.6775 70.823125 \n",
"L 377.6775 70.823125 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(405.6775 77.823125)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-66 transform=scale(0.015625) d=&quot;M 556 0 \n",
"L 556 2881 \n",
"L 59 2881 \n",
"L 59 3319 \n",
"L 556 3319 \n",
"L 556 3672 \n",
"Q 556 4006 616 4169 \n",
"Q 697 4388 901 4523 \n",
"Q 1106 4659 1475 4659 \n",
"Q 1713 4659 2000 4603 \n",
"L 1916 4113 \n",
"Q 1741 4144 1584 4144 \n",
"Q 1328 4144 1222 4034 \n",
"Q 1116 3925 1116 3625 \n",
"L 1116 3319 \n",
"L 1763 3319 \n",
"L 1763 2881 \n",
"L 1116 2881 \n",
"L 1116 0 \n",
"L 556 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-66 /&gt;&lt;use x=27.783203 xlink:href=#ArialMT-65 /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-6d /&gt;&lt;use x=166.699219 xlink:href=#ArialMT-61 /&gt;&lt;use x=222.314453 xlink:href=#ArialMT-6c /&gt;&lt;use x=244.53125 xlink:href=#ArialMT-65 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=312269295689398529bottom-312269295689398529word&gt;&lt;div class=col-sm-12&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=male&gt;male&lt;/td&gt;&lt;td&gt;843&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 64.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=female&gt;female&lt;/td&gt;&lt;td&gt;466&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:55.3%&gt; 35.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=312269295689398529bottom-312269295689398529characters&gt;&lt;div class=col-sm-12&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#312269295689398529unicode-312269295689398529characters aria-controls=312269295689398529unicode-312269295689398529characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#312269295689398529unicode-312269295689398529categories aria-controls=312269295689398529unicode-312269295689398529categories role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#312269295689398529unicode-312269295689398529scripts aria-controls=312269295689398529unicode-312269295689398529scripts role=tab data-toggle=tab&gt;Scripts&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#312269295689398529unicode-312269295689398529blocks aria-controls=312269295689398529unicode-312269295689398529blocks role=tab data-toggle=tab&gt;Blocks&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=312269295689398529unicode-312269295689398529characters&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring characters&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=e&gt;e&lt;/td&gt;&lt;td&gt;1775&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 28.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=m&gt;m&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=a&gt;a&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=l&gt;l&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=f&gt;f&lt;/td&gt;&lt;td&gt;466&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:26.3%&gt; &amp;nbsp; &lt;/div&gt; 7.6% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=312269295689398529unicode-312269295689398529categories&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring categories&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;Lowercase Letter&quot;&gt;Lowercase Letter&lt;/td&gt;&lt;td&gt;6168&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per category&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Lowercase Letter&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=e&gt;e&lt;/td&gt;&lt;td&gt;1775&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 28.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=m&gt;m&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=a&gt;a&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=l&gt;l&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=f&gt;f&lt;/td&gt;&lt;td&gt;466&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:26.3%&gt; &amp;nbsp; &lt;/div&gt; 7.6% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=312269295689398529unicode-312269295689398529scripts&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring scripts&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=Latin&gt;Latin&lt;/td&gt;&lt;td&gt;6168&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per script&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Latin&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=e&gt;e&lt;/td&gt;&lt;td&gt;1775&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 28.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=m&gt;m&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=a&gt;a&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=l&gt;l&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=f&gt;f&lt;/td&gt;&lt;td&gt;466&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:26.3%&gt; &amp;nbsp; &lt;/div&gt; 7.6% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=312269295689398529unicode-312269295689398529blocks&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring blocks&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=ASCII&gt;ASCII&lt;/td&gt;&lt;td&gt;6168&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per block&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;ASCII&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=e&gt;e&lt;/td&gt;&lt;td&gt;1775&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 28.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=m&gt;m&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=a&gt;a&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=l&gt;l&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:73.7%&gt; 21.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=f&gt;f&lt;/td&gt;&lt;td&gt;466&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:26.3%&gt; &amp;nbsp; &lt;/div&gt; 7.6% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_8181256235074731204&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Age&gt;&lt;a href=#pp_var_8181256235074731204&gt;Age&lt;/a&gt;&lt;br&gt;&lt;small&gt;Real number (&amp;Ropf;&lt;sub&gt;&amp;ge;0&lt;/sub&gt;)&lt;/small&gt;&lt;/p&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 3 fields: SibSp, Parch, Survived&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;MISSING&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;73&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;7.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;263&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;20.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;29.89770554&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;80&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Zeros&lt;/th&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Zeros (%)&lt;/th&gt;&lt;td&gt;0.2%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Negative&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Negative (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=162pt version=1.1 viewbox=&quot;0 0 216 162&quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:49.523349&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 162 \n",
"L 216 162 \n",
"L 216 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 10.8 130.093398 \n",
"L 205.2 130.093398 \n",
"L 205.2 10.8 \n",
"L 10.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(19.525878 147.78821)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(62.134826 150.933951)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(106.316644 150.933951)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(150.498462 150.933951)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(194.68028 150.933951)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 19.636364 130.093398 \n",
"L 23.170909 130.093398 \n",
"L 23.170909 100.687743 \n",
"L 19.636364 100.687743 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 23.170909 130.093398 \n",
"L 26.705455 130.093398 \n",
"L 26.705455 104.697605 \n",
"L 23.170909 104.697605 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 26.705455 130.093398 \n",
"L 30.24 130.093398 \n",
"L 30.24 116.727191 \n",
"L 26.705455 116.727191 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 30.24 130.093398 \n",
"L 33.774545 130.093398 \n",
"L 33.774545 115.39057 \n",
"L 30.24 115.39057 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 33.774545 130.093398 \n",
"L 37.309091 130.093398 \n",
"L 37.309091 124.746915 \n",
"L 33.774545 124.746915 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 37.309091 130.093398 \n",
"L 40.843636 130.093398 \n",
"L 40.843636 108.707467 \n",
"L 37.309091 108.707467 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 40.843636 130.093398 \n",
"L 44.378182 130.093398 \n",
"L 44.378182 119.400433 \n",
"L 40.843636 119.400433 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 44.378182 130.093398 \n",
"L 47.912727 130.093398 \n",
"L 47.912727 124.746915 \n",
"L 44.378182 124.746915 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 47.912727 130.093398 \n",
"L 51.447273 130.093398 \n",
"L 51.447273 112.717329 \n",
"L 47.912727 112.717329 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 51.447273 130.093398 \n",
"L 54.981818 130.093398 \n",
"L 54.981818 119.400433 \n",
"L 51.447273 119.400433 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 54.981818 130.093398 \n",
"L 58.516364 130.093398 \n",
"L 58.516364 77.965191 \n",
"L 54.981818 77.965191 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 58.516364 130.093398 \n",
"L 62.050909 130.093398 \n",
"L 62.050909 35.193328 \n",
"L 58.516364 35.193328 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 62.050909 130.093398 \n",
"L 65.585455 130.093398 \n",
"L 65.585455 99.351122 \n",
"L 62.050909 99.351122 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 65.585455 130.093398 \n",
"L 69.12 130.093398 \n",
"L 69.12 16.480638 \n",
"L 65.585455 16.480638 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 69.12 130.093398 \n",
"L 72.654545 130.093398 \n",
"L 72.654545 94.004639 \n",
"L 69.12 94.004639 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 72.654545 130.093398 \n",
"L 76.189091 130.093398 \n",
"L 76.189091 19.153879 \n",
"L 72.654545 19.153879 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 76.189091 130.093398 \n",
"L 79.723636 130.093398 \n",
"L 79.723636 48.559535 \n",
"L 76.189091 48.559535 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 79.723636 130.093398 \n",
"L 83.258182 130.093398 \n",
"L 83.258182 87.321536 \n",
"L 79.723636 87.321536 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 83.258182 130.093398 \n",
"L 86.792727 130.093398 \n",
"L 86.792727 32.520087 \n",
"L 83.258182 32.520087 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 86.792727 130.093398 \n",
"L 90.327273 130.093398 \n",
"L 90.327273 96.677881 \n",
"L 86.792727 96.677881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 90.327273 130.093398 \n",
"L 93.861818 130.093398 \n",
"L 93.861818 64.598984 \n",
"L 90.327273 64.598984 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 93.861818 130.093398 \n",
"L 97.396364 130.093398 \n",
"L 97.396364 75.291949 \n",
"L 93.861818 75.291949 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 97.396364 130.093398 \n",
"L 100.930909 130.093398 \n",
"L 100.930909 88.658156 \n",
"L 97.396364 88.658156 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 100.930909 130.093398 \n",
"L 104.465455 130.093398 \n",
"L 104.465455 96.677881 \n",
"L 100.930909 96.677881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 104.465455 130.093398 \n",
"L 108 130.093398 \n",
"L 108 102.024363 \n",
"L 104.465455 102.024363 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108 130.093398 \n",
"L 111.534545 130.093398 \n",
"L 111.534545 87.321536 \n",
"L 108 87.321536 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 111.534545 130.093398 \n",
"L 115.069091 130.093398 \n",
"L 115.069091 94.004639 \n",
"L 111.534545 94.004639 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.069091 130.093398 \n",
"L 118.603636 130.093398 \n",
"L 118.603636 116.727191 \n",
"L 115.069091 116.727191 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 118.603636 130.093398 \n",
"L 122.138182 130.093398 \n",
"L 122.138182 91.331398 \n",
"L 118.603636 91.331398 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.138182 130.093398 \n",
"L 125.672727 130.093398 \n",
"L 125.672727 111.380708 \n",
"L 122.138182 111.380708 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 125.672727 130.093398 \n",
"L 129.207273 130.093398 \n",
"L 129.207273 99.351122 \n",
"L 125.672727 99.351122 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.207273 130.093398 \n",
"L 132.741818 130.093398 \n",
"L 132.741818 99.351122 \n",
"L 129.207273 99.351122 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 132.741818 130.093398 \n",
"L 136.276364 130.093398 \n",
"L 136.276364 122.073674 \n",
"L 132.741818 122.073674 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.276364 130.093398 \n",
"L 139.810909 130.093398 \n",
"L 139.810909 111.380708 \n",
"L 136.276364 111.380708 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 139.810909 130.093398 \n",
"L 143.345455 130.093398 \n",
"L 143.345455 119.400433 \n",
"L 139.810909 119.400433 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 143.345455 130.093398 \n",
"L 146.88 130.093398 \n",
"L 146.88 116.727191 \n",
"L 143.345455 116.727191 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 146.88 130.093398 \n",
"L 150.414545 130.093398 \n",
"L 150.414545 118.063812 \n",
"L 146.88 118.063812 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 150.414545 130.093398 \n",
"L 153.949091 130.093398 \n",
"L 153.949091 120.737053 \n",
"L 150.414545 120.737053 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.949091 130.093398 \n",
"L 157.483636 130.093398 \n",
"L 157.483636 115.39057 \n",
"L 153.949091 115.39057 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 157.483636 130.093398 \n",
"L 161.018182 130.093398 \n",
"L 161.018182 124.746915 \n",
"L 157.483636 124.746915 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 161.018182 130.093398 \n",
"L 164.552727 130.093398 \n",
"L 164.552727 119.400433 \n",
"L 161.018182 119.400433 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 164.552727 130.093398 \n",
"L 168.087273 130.093398 \n",
"L 168.087273 127.420157 \n",
"L 164.552727 127.420157 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 168.087273 130.093398 \n",
"L 171.621818 130.093398 \n",
"L 171.621818 130.093398 \n",
"L 168.087273 130.093398 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 171.621818 130.093398 \n",
"L 175.156364 130.093398 \n",
"L 175.156364 127.420157 \n",
"L 171.621818 127.420157 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 175.156364 130.093398 \n",
"L 178.690909 130.093398 \n",
"L 178.690909 126.083536 \n",
"L 175.156364 126.083536 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 178.690909 130.093398 \n",
"L 182.225455 130.093398 \n",
"L 182.225455 130.093398 \n",
"L 178.690909 130.093398 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 182.225455 130.093398 \n",
"L 185.76 130.093398 \n",
"L 185.76 128.756778 \n",
"L 182.225455 128.756778 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 185.76 130.093398 \n",
"L 189.294545 130.093398 \n",
"L 189.294545 128.756778 \n",
"L 185.76 128.756778 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 189.294545 130.093398 \n",
"L 192.829091 130.093398 \n",
"L 192.829091 130.093398 \n",
"L 189.294545 130.093398 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#pc49a474442) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.829091 130.093398 \n",
"L 196.363636 130.093398 \n",
"L 196.363636 128.756778 \n",
"L 192.829091 128.756778 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 10.8 130.093398 \n",
"L 10.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 205.2 130.093398 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 10.8 130.093398 \n",
"L 205.2 130.093398 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 10.8 10.8 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pc49a474442&gt;&lt;rect height=119.293398 width=194.4 x=10.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom-8181256235074731204, #minifreqtable8181256235074731204&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom-8181256235074731204 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#8181256235074731204bottom-8181256235074731204statistics aria-controls=8181256235074731204bottom-8181256235074731204statistics role=tab data-toggle=tab&gt;Statistics&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#8181256235074731204bottom-8181256235074731204histogram aria-controls=8181256235074731204bottom-8181256235074731204histogram role=tab data-toggle=tab&gt;Histogram&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#8181256235074731204bottom-8181256235074731204common_values aria-controls=8181256235074731204bottom-8181256235074731204common_values role=tab data-toggle=tab&gt;Common values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#8181256235074731204bottom-8181256235074731204extreme_values aria-controls=8181256235074731204bottom-8181256235074731204extreme_values role=tab data-toggle=tab&gt;Extreme values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=8181256235074731204bottom-8181256235074731204statistics&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Quantile statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5-th percentile&lt;/th&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q1&lt;/th&gt;&lt;td&gt;21&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;median&lt;/th&gt;&lt;td&gt;28&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q3&lt;/th&gt;&lt;td&gt;39&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;95-th percentile&lt;/th&gt;&lt;td&gt;57&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;80&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Range&lt;/th&gt;&lt;td&gt;80&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Interquartile range (IQR)&lt;/th&gt;&lt;td&gt;18&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Descriptive statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Standard deviation&lt;/th&gt;&lt;td&gt;14.41497276&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Coefficient of variation (CV)&lt;/th&gt;&lt;td&gt;0.4821431109&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Kurtosis&lt;/th&gt;&lt;td&gt;0.1470137975&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;29.89770554&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median Absolute Deviation (MAD)&lt;/th&gt;&lt;td&gt;8&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Skewness&lt;/th&gt;&lt;td&gt;0.4075005761&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Sum&lt;/th&gt;&lt;td&gt;31273&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Variance&lt;/th&gt;&lt;td&gt;207.7914397&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Monotonicity&lt;/th&gt;&lt;td&gt;Not monotonic&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=8181256235074731204bottom-8181256235074731204histogram&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:49.854862&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 46.55 252.381088 \n",
"L 421.2 252.381088 \n",
"L 421.2 10.8 \n",
"L 46.55 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(63.441439 271.874602)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(104.049214 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(146.623078 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(189.196941 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(231.770805 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(274.344669 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(316.918532 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_8&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(359.492396 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-37 transform=scale(0.015625) d=&quot;M 303 3981 \n",
"L 303 4522 \n",
"L 3269 4522 \n",
"L 3269 4084 \n",
"Q 2831 3619 2401 2847 \n",
"Q 1972 2075 1738 1259 \n",
"Q 1569 684 1522 0 \n",
"L 944 0 \n",
"Q 953 541 1156 1306 \n",
"Q 1359 2072 1739 2783 \n",
"Q 2119 3494 2547 3981 \n",
"L 303 3981 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-37 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_9&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(402.066259 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.489062 255.959994)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.928125 228.892085)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.928125 201.824176)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.928125 174.756267)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_14&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.928125 147.688358)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_15&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.928125 120.620449)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_16&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.928125 93.55254)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_8&gt;&lt;g id=text_17&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.928125 66.484631)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-37 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_9&gt;&lt;g id=text_18&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.928125 39.416722)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_19&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.612969 157.573747)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 63.579545 252.381088 \n",
"L 70.391364 252.381088 \n",
"L 70.391364 192.831688 \n",
"L 63.579545 192.831688 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 70.391364 252.381088 \n",
"L 77.203182 252.381088 \n",
"L 77.203182 200.952061 \n",
"L 70.391364 200.952061 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 77.203182 252.381088 \n",
"L 84.015 252.381088 \n",
"L 84.015 225.313179 \n",
"L 77.203182 225.313179 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 84.015 252.381088 \n",
"L 90.826818 252.381088 \n",
"L 90.826818 222.606388 \n",
"L 84.015 222.606388 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 90.826818 252.381088 \n",
"L 97.638636 252.381088 \n",
"L 97.638636 241.553924 \n",
"L 90.826818 241.553924 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 97.638636 252.381088 \n",
"L 104.450455 252.381088 \n",
"L 104.450455 209.072433 \n",
"L 97.638636 209.072433 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 104.450455 252.381088 \n",
"L 111.262273 252.381088 \n",
"L 111.262273 230.72676 \n",
"L 104.450455 230.72676 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 111.262273 252.381088 \n",
"L 118.074091 252.381088 \n",
"L 118.074091 241.553924 \n",
"L 111.262273 241.553924 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 118.074091 252.381088 \n",
"L 124.885909 252.381088 \n",
"L 124.885909 217.192806 \n",
"L 118.074091 217.192806 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 124.885909 252.381088 \n",
"L 131.697727 252.381088 \n",
"L 131.697727 230.72676 \n",
"L 124.885909 230.72676 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 131.697727 252.381088 \n",
"L 138.509545 252.381088 \n",
"L 138.509545 146.816243 \n",
"L 131.697727 146.816243 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 138.509545 252.381088 \n",
"L 145.321364 252.381088 \n",
"L 145.321364 60.198934 \n",
"L 138.509545 60.198934 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 145.321364 252.381088 \n",
"L 152.133182 252.381088 \n",
"L 152.133182 190.124897 \n",
"L 145.321364 190.124897 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 152.133182 252.381088 \n",
"L 158.945 252.381088 \n",
"L 158.945 22.303861 \n",
"L 152.133182 22.303861 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 158.945 252.381088 \n",
"L 165.756818 252.381088 \n",
"L 165.756818 179.297733 \n",
"L 158.945 179.297733 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 165.756818 252.381088 \n",
"L 172.568636 252.381088 \n",
"L 172.568636 27.717443 \n",
"L 165.756818 27.717443 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 172.568636 252.381088 \n",
"L 179.380455 252.381088 \n",
"L 179.380455 87.266843 \n",
"L 172.568636 87.266843 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 179.380455 252.381088 \n",
"L 186.192273 252.381088 \n",
"L 186.192273 165.763779 \n",
"L 179.380455 165.763779 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 186.192273 252.381088 \n",
"L 193.004091 252.381088 \n",
"L 193.004091 54.785352 \n",
"L 186.192273 54.785352 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 193.004091 252.381088 \n",
"L 199.815909 252.381088 \n",
"L 199.815909 184.711315 \n",
"L 193.004091 184.711315 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 199.815909 252.381088 \n",
"L 206.627727 252.381088 \n",
"L 206.627727 119.748334 \n",
"L 199.815909 119.748334 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 206.627727 252.381088 \n",
"L 213.439545 252.381088 \n",
"L 213.439545 141.402661 \n",
"L 206.627727 141.402661 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 213.439545 252.381088 \n",
"L 220.251364 252.381088 \n",
"L 220.251364 168.47057 \n",
"L 213.439545 168.47057 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 220.251364 252.381088 \n",
"L 227.063182 252.381088 \n",
"L 227.063182 184.711315 \n",
"L 220.251364 184.711315 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 227.063182 252.381088 \n",
"L 233.875 252.381088 \n",
"L 233.875 195.538479 \n",
"L 227.063182 195.538479 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 233.875 252.381088 \n",
"L 240.686818 252.381088 \n",
"L 240.686818 165.763779 \n",
"L 233.875 165.763779 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 240.686818 252.381088 \n",
"L 247.498636 252.381088 \n",
"L 247.498636 179.297733 \n",
"L 240.686818 179.297733 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 247.498636 252.381088 \n",
"L 254.310455 252.381088 \n",
"L 254.310455 225.313179 \n",
"L 247.498636 225.313179 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 254.310455 252.381088 \n",
"L 261.122273 252.381088 \n",
"L 261.122273 173.884152 \n",
"L 254.310455 173.884152 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 261.122273 252.381088 \n",
"L 267.934091 252.381088 \n",
"L 267.934091 214.486015 \n",
"L 261.122273 214.486015 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 267.934091 252.381088 \n",
"L 274.745909 252.381088 \n",
"L 274.745909 190.124897 \n",
"L 267.934091 190.124897 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 274.745909 252.381088 \n",
"L 281.557727 252.381088 \n",
"L 281.557727 190.124897 \n",
"L 274.745909 190.124897 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 281.557727 252.381088 \n",
"L 288.369545 252.381088 \n",
"L 288.369545 236.140342 \n",
"L 281.557727 236.140342 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 288.369545 252.381088 \n",
"L 295.181364 252.381088 \n",
"L 295.181364 214.486015 \n",
"L 288.369545 214.486015 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 295.181364 252.381088 \n",
"L 301.993182 252.381088 \n",
"L 301.993182 230.72676 \n",
"L 295.181364 230.72676 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 301.993182 252.381088 \n",
"L 308.805 252.381088 \n",
"L 308.805 225.313179 \n",
"L 301.993182 225.313179 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 308.805 252.381088 \n",
"L 315.616818 252.381088 \n",
"L 315.616818 228.01997 \n",
"L 308.805 228.01997 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 315.616818 252.381088 \n",
"L 322.428636 252.381088 \n",
"L 322.428636 233.433551 \n",
"L 315.616818 233.433551 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 322.428636 252.381088 \n",
"L 329.240455 252.381088 \n",
"L 329.240455 222.606388 \n",
"L 322.428636 222.606388 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 329.240455 252.381088 \n",
"L 336.052273 252.381088 \n",
"L 336.052273 241.553924 \n",
"L 329.240455 241.553924 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 336.052273 252.381088 \n",
"L 342.864091 252.381088 \n",
"L 342.864091 230.72676 \n",
"L 336.052273 230.72676 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 342.864091 252.381088 \n",
"L 349.675909 252.381088 \n",
"L 349.675909 246.967506 \n",
"L 342.864091 246.967506 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 349.675909 252.381088 \n",
"L 356.487727 252.381088 \n",
"L 356.487727 252.381088 \n",
"L 349.675909 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 356.487727 252.381088 \n",
"L 363.299545 252.381088 \n",
"L 363.299545 246.967506 \n",
"L 356.487727 246.967506 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 363.299545 252.381088 \n",
"L 370.111364 252.381088 \n",
"L 370.111364 244.260715 \n",
"L 363.299545 244.260715 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 370.111364 252.381088 \n",
"L 376.923182 252.381088 \n",
"L 376.923182 252.381088 \n",
"L 370.111364 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 376.923182 252.381088 \n",
"L 383.735 252.381088 \n",
"L 383.735 249.674297 \n",
"L 376.923182 249.674297 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 383.735 252.381088 \n",
"L 390.546818 252.381088 \n",
"L 390.546818 249.674297 \n",
"L 383.735 249.674297 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 390.546818 252.381088 \n",
"L 397.358636 252.381088 \n",
"L 397.358636 252.381088 \n",
"L 390.546818 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p45305dc285) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 397.358636 252.381088 \n",
"L 404.170455 252.381088 \n",
"L 404.170455 249.674297 \n",
"L 397.358636 249.674297 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 46.55 252.381088 \n",
"L 46.55 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 421.2 252.381088 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 46.55 252.381088 \n",
"L 421.2 252.381088 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 46.55 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p45305dc285&gt;&lt;rect height=241.581088 width=374.65 x=46.55 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt;&lt;strong&gt;Histogram with fixed size bins&lt;/strong&gt; (bins=50) &lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=8181256235074731204bottom-8181256235074731204common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=24&gt;24&lt;/td&gt;&lt;td&gt;48&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:7.2%&gt; &amp;nbsp; &lt;/div&gt; 3.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=22&gt;22&lt;/td&gt;&lt;td&gt;43&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:6.4%&gt; &amp;nbsp; &lt;/div&gt; 3.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=21&gt;21&lt;/td&gt;&lt;td&gt;42&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:6.3%&gt; &amp;nbsp; &lt;/div&gt; 3.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=30&gt;30&lt;/td&gt;&lt;td&gt;40&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:6.0%&gt; &amp;nbsp; &lt;/div&gt; 3.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=18&gt;18&lt;/td&gt;&lt;td&gt;39&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.8%&gt; &amp;nbsp; &lt;/div&gt; 3.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=25&gt;25&lt;/td&gt;&lt;td&gt;35&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.2%&gt; &amp;nbsp; &lt;/div&gt; 2.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=29&gt;29&lt;/td&gt;&lt;td&gt;33&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.9%&gt; &amp;nbsp; &lt;/div&gt; 2.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=19&gt;19&lt;/td&gt;&lt;td&gt;32&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.8%&gt; &amp;nbsp; &lt;/div&gt; 2.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=28&gt;28&lt;/td&gt;&lt;td&gt;32&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.8%&gt; &amp;nbsp; &lt;/div&gt; 2.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=36&gt;36&lt;/td&gt;&lt;td&gt;31&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.6%&gt; &amp;nbsp; &lt;/div&gt; 2.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (63)&quot;&gt;Other values (63)&lt;/td&gt;&lt;td&gt;671&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 51.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=missing&gt;&lt;td title=(Missing)&gt;(Missing)&lt;/td&gt;&lt;td&gt;263&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:39.2%&gt; &amp;nbsp; &lt;/div&gt; 20.1% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=8181256235074731204bottom-8181256235074731204extreme_values&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#8181256235074731204extreme_values-8181256235074731204firstn aria-controls=8181256235074731204extreme_values-8181256235074731204firstn role=tab data-toggle=tab&gt;Minimum 5 values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#8181256235074731204extreme_values-8181256235074731204lastn aria-controls=8181256235074731204extreme_values-8181256235074731204lastn role=tab data-toggle=tab&gt;Maximum 5 values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=8181256235074731204extreme_values-8181256235074731204firstn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:15.8%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;19&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 1.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;12&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:63.2%&gt; 0.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:36.8%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;10&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:52.6%&gt; 0.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:26.3%&gt; &amp;nbsp; &lt;/div&gt; 0.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:31.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7&gt;7&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:21.1%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:31.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=9&gt;9&lt;/td&gt;&lt;td&gt;10&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:52.6%&gt; 0.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=8181256235074731204extreme_values-8181256235074731204lastn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=80&gt;80&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.0%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=76&gt;76&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.0%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=74&gt;74&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.0%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=71&gt;71&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:60.0%&gt; 0.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=70&gt;70&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:40.0%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=67&gt;67&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.0%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=66&gt;66&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.0%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=65&gt;65&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:60.0%&gt; 0.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=64&gt;64&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 0.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=63&gt;63&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:80.0%&gt; 0.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_4213468645413907098&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=SibSp&gt;&lt;a href=#pp_var_4213468645413907098&gt;SibSp&lt;/a&gt;&lt;br&gt;&lt;small&gt;Real number (&amp;Ropf;&lt;sub&gt;&amp;ge;0&lt;/sub&gt;)&lt;/small&gt;&lt;/p&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 2 fields: Pclass, Age&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;ZEROS&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;7&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;0.5%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;0.4988540871&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;8&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros&lt;/th&gt;&lt;td&gt;891&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros (%)&lt;/th&gt;&lt;td&gt;68.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Negative&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Negative (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=162pt version=1.1 viewbox=&quot;0 0 216 162&quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:50.005183&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 162 \n",
"L 216 162 \n",
"L 216 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 10.8 133.275379 \n",
"L 205.2 133.275379 \n",
"L 205.2 10.8 \n",
"L 10.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(19.525878 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(63.707696 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(107.889515 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(152.071333 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(196.253151 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p13d1547317) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 19.636364 133.275379 \n",
"L 44.883117 133.275379 \n",
"L 44.883117 16.632161 \n",
"L 19.636364 16.632161 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p13d1547317) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 44.883117 133.275379 \n",
"L 70.12987 133.275379 \n",
"L 70.12987 129.226606 \n",
"L 44.883117 129.226606 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p13d1547317) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 70.12987 133.275379 \n",
"L 95.376623 133.275379 \n",
"L 95.376623 131.347392 \n",
"L 70.12987 131.347392 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p13d1547317) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 95.376623 133.275379 \n",
"L 120.623377 133.275379 \n",
"L 120.623377 131.154593 \n",
"L 95.376623 131.154593 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p13d1547317) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 120.623377 133.275379 \n",
"L 145.87013 133.275379 \n",
"L 145.87013 132.696983 \n",
"L 120.623377 132.696983 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p13d1547317) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 145.87013 133.275379 \n",
"L 171.116883 133.275379 \n",
"L 171.116883 133.275379 \n",
"L 145.87013 133.275379 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p13d1547317) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 171.116883 133.275379 \n",
"L 196.363636 133.275379 \n",
"L 196.363636 132.407785 \n",
"L 171.116883 132.407785 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path style=fill:none; d=&quot;M 10.8 133.275379 \n",
"L 10.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path style=fill:none; d=&quot;M 205.2 133.275379 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path style=fill:none; d=&quot;M 10.8 133.275379 \n",
"L 205.2 133.275379 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path style=fill:none; d=&quot;M 10.8 10.8 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p13d1547317&gt;&lt;rect height=122.475379 width=194.4 x=10.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom-4213468645413907098, #minifreqtable4213468645413907098&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom-4213468645413907098 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#4213468645413907098bottom-4213468645413907098statistics aria-controls=4213468645413907098bottom-4213468645413907098statistics role=tab data-toggle=tab&gt;Statistics&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#4213468645413907098bottom-4213468645413907098histogram aria-controls=4213468645413907098bottom-4213468645413907098histogram role=tab data-toggle=tab&gt;Histogram&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#4213468645413907098bottom-4213468645413907098common_values aria-controls=4213468645413907098bottom-4213468645413907098common_values role=tab data-toggle=tab&gt;Common values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#4213468645413907098bottom-4213468645413907098extreme_values aria-controls=4213468645413907098bottom-4213468645413907098extreme_values role=tab data-toggle=tab&gt;Extreme values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=4213468645413907098bottom-4213468645413907098statistics&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Quantile statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5-th percentile&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q1&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;median&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q3&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;95-th percentile&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;8&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Range&lt;/th&gt;&lt;td&gt;8&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Interquartile range (IQR)&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Descriptive statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Standard deviation&lt;/th&gt;&lt;td&gt;1.041658391&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Coefficient of variation (CV)&lt;/th&gt;&lt;td&gt;2.088102348&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Kurtosis&lt;/th&gt;&lt;td&gt;20.0432515&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;0.4988540871&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median Absolute Deviation (MAD)&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Skewness&lt;/th&gt;&lt;td&gt;3.844220343&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Sum&lt;/th&gt;&lt;td&gt;653&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Variance&lt;/th&gt;&lt;td&gt;1.085052203&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Monotonicity&lt;/th&gt;&lt;td&gt;Not monotonic&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=4213468645413907098bottom-4213468645413907098histogram&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:50.125781&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 57.8 256.358563 \n",
"L 421.2 256.358563 \n",
"L 421.2 10.8 \n",
"L 57.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(74.180075 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(115.47553 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(156.770984 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(198.066439 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(239.361893 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(280.657348 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(321.952802 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_8&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(363.248257 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-37 transform=scale(0.015625) d=&quot;M 303 3981 \n",
"L 303 4522 \n",
"L 3269 4522 \n",
"L 3269 4084 \n",
"Q 2831 3619 2401 2847 \n",
"Q 1972 2075 1738 1259 \n",
"Q 1569 684 1522 0 \n",
"L 944 0 \n",
"Q 953 541 1156 1306 \n",
"Q 1359 2072 1739 2783 \n",
"Q 2119 3494 2547 3981 \n",
"L 303 3981 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-37 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_9&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(404.543711 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(41.739063 259.93747)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 221.282048)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 182.626627)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 143.971206)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_14&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 105.315785)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_15&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 66.660363)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_16&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 28.004942)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-32 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_17&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.741094 159.562485)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pf01b5b3557) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 74.318182 256.358563 \n",
"L 121.512987 256.358563 \n",
"L 121.512987 22.493265 \n",
"L 74.318182 22.493265 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pf01b5b3557) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 121.512987 256.358563 \n",
"L 168.707792 256.358563 \n",
"L 168.707792 248.240925 \n",
"L 121.512987 248.240925 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pf01b5b3557) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 168.707792 256.358563 \n",
"L 215.902597 256.358563 \n",
"L 215.902597 252.493021 \n",
"L 168.707792 252.493021 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pf01b5b3557) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 215.902597 256.358563 \n",
"L 263.097403 256.358563 \n",
"L 263.097403 252.106467 \n",
"L 215.902597 252.106467 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pf01b5b3557) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 263.097403 256.358563 \n",
"L 310.292208 256.358563 \n",
"L 310.292208 255.198901 \n",
"L 263.097403 255.198901 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pf01b5b3557) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 310.292208 256.358563 \n",
"L 357.487013 256.358563 \n",
"L 357.487013 256.358563 \n",
"L 310.292208 256.358563 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pf01b5b3557) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 357.487013 256.358563 \n",
"L 404.681818 256.358563 \n",
"L 404.681818 254.619069 \n",
"L 357.487013 254.619069 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path style=fill:none; d=&quot;M 57.8 256.358563 \n",
"L 57.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path style=fill:none; d=&quot;M 421.2 256.358563 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path style=fill:none; d=&quot;M 57.8 256.358563 \n",
"L 421.2 256.358563 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path style=fill:none; d=&quot;M 57.8 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pf01b5b3557&gt;&lt;rect height=245.558563 width=363.4 x=57.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt;&lt;strong&gt;Histogram with fixed size bins&lt;/strong&gt; (bins=7) &lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=4213468645413907098bottom-4213468645413907098common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;891&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 68.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;319&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:35.8%&gt; &amp;nbsp; &lt;/div&gt; 24.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;42&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.7%&gt; &amp;nbsp; &lt;/div&gt; 3.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.5%&gt; &amp;nbsp; &lt;/div&gt; 1.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;20&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.2%&gt; &amp;nbsp; &lt;/div&gt; 1.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.7%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=4213468645413907098bottom-4213468645413907098extreme_values&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#4213468645413907098extreme_values-4213468645413907098firstn aria-controls=4213468645413907098extreme_values-4213468645413907098firstn role=tab data-toggle=tab&gt;Minimum 5 values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#4213468645413907098extreme_values-4213468645413907098lastn aria-controls=4213468645413907098extreme_values-4213468645413907098lastn role=tab data-toggle=tab&gt;Maximum 5 values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=4213468645413907098extreme_values-4213468645413907098firstn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;891&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 68.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;319&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:35.8%&gt; &amp;nbsp; &lt;/div&gt; 24.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;42&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.7%&gt; &amp;nbsp; &lt;/div&gt; 3.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;20&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.2%&gt; &amp;nbsp; &lt;/div&gt; 1.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.5%&gt; &amp;nbsp; &lt;/div&gt; 1.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.7%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.7% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=4213468645413907098extreme_values-4213468645413907098lastn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.7%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.5%&gt; &amp;nbsp; &lt;/div&gt; 1.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;20&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.2%&gt; &amp;nbsp; &lt;/div&gt; 1.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;42&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.7%&gt; &amp;nbsp; &lt;/div&gt; 3.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;319&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:35.8%&gt; &amp;nbsp; &lt;/div&gt; 24.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;891&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 68.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-577434093074518742&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Parch&gt;&lt;a href=#pp_var_-577434093074518742&gt;Parch&lt;/a&gt;&lt;br&gt;&lt;small&gt;Real number (&amp;Ropf;&lt;sub&gt;&amp;ge;0&lt;/sub&gt;)&lt;/small&gt;&lt;/p&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 2 fields: Pclass, Age&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;ZEROS&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;8&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;0.6%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;0.385026738&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;9&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros&lt;/th&gt;&lt;td&gt;1002&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros (%)&lt;/th&gt;&lt;td&gt;76.5%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Negative&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Negative (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=162pt version=1.1 viewbox=&quot;0 0 216 162&quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:50.247724&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 162 \n",
"L 216 162 \n",
"L 216 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 10.8 133.275379 \n",
"L 205.2 133.275379 \n",
"L 205.2 10.8 \n",
"L 10.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(19.525878 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(58.798605 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(98.071333 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(137.34406 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(176.616787 150.97019)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p1aedc0c2a7) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 19.636364 133.275379 \n",
"L 41.727273 133.275379 \n",
"L 41.727273 16.632161 \n",
"L 19.636364 16.632161 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p1aedc0c2a7) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 41.727273 133.275379 \n",
"L 63.818182 133.275379 \n",
"L 63.818182 122.029062 \n",
"L 41.727273 122.029062 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p1aedc0c2a7) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 63.818182 133.275379 \n",
"L 85.909091 133.275379 \n",
"L 85.909091 132.479179 \n",
"L 63.818182 132.479179 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p1aedc0c2a7) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 85.909091 133.275379 \n",
"L 108 133.275379 \n",
"L 108 132.678229 \n",
"L 85.909091 132.678229 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p1aedc0c2a7) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108 133.275379 \n",
"L 130.090909 133.275379 \n",
"L 130.090909 132.678229 \n",
"L 108 132.678229 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p1aedc0c2a7) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 130.090909 133.275379 \n",
"L 152.181818 133.275379 \n",
"L 152.181818 133.076329 \n",
"L 130.090909 133.076329 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p1aedc0c2a7) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 152.181818 133.275379 \n",
"L 174.272727 133.275379 \n",
"L 174.272727 133.275379 \n",
"L 152.181818 133.275379 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p1aedc0c2a7) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 174.272727 133.275379 \n",
"L 196.363636 133.275379 \n",
"L 196.363636 133.076329 \n",
"L 174.272727 133.076329 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path style=fill:none; d=&quot;M 10.8 133.275379 \n",
"L 10.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path style=fill:none; d=&quot;M 205.2 133.275379 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path style=fill:none; d=&quot;M 10.8 133.275379 \n",
"L 205.2 133.275379 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path style=fill:none; d=&quot;M 10.8 10.8 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p1aedc0c2a7&gt;&lt;rect height=122.475379 width=194.4 x=10.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--577434093074518742, #minifreqtable-577434093074518742&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--577434093074518742 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-577434093074518742bottom--577434093074518742statistics aria-controls=-577434093074518742bottom--577434093074518742statistics role=tab data-toggle=tab&gt;Statistics&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-577434093074518742bottom--577434093074518742histogram aria-controls=-577434093074518742bottom--577434093074518742histogram role=tab data-toggle=tab&gt;Histogram&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-577434093074518742bottom--577434093074518742common_values aria-controls=-577434093074518742bottom--577434093074518742common_values role=tab data-toggle=tab&gt;Common values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-577434093074518742bottom--577434093074518742extreme_values aria-controls=-577434093074518742bottom--577434093074518742extreme_values role=tab data-toggle=tab&gt;Extreme values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-577434093074518742bottom--577434093074518742statistics&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Quantile statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5-th percentile&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q1&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;median&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q3&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;95-th percentile&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;9&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Range&lt;/th&gt;&lt;td&gt;9&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Interquartile range (IQR)&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Descriptive statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Standard deviation&lt;/th&gt;&lt;td&gt;0.8655602753&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Coefficient of variation (CV)&lt;/th&gt;&lt;td&gt;2.248052382&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Kurtosis&lt;/th&gt;&lt;td&gt;21.54107887&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;0.385026738&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median Absolute Deviation (MAD)&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Skewness&lt;/th&gt;&lt;td&gt;3.669078204&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Sum&lt;/th&gt;&lt;td&gt;504&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Variance&lt;/th&gt;&lt;td&gt;0.7491945903&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Monotonicity&lt;/th&gt;&lt;td&gt;Not monotonic&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-577434093074518742bottom--577434093074518742histogram&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:50.694622&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 57.8 256.358563 \n",
"L 421.2 256.358563 \n",
"L 421.2 10.8 \n",
"L 57.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(74.180075 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(147.594216 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(221.008358 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(294.422499 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(367.836641 275.852078)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(41.739063 259.93747)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 220.028716)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 180.119962)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 140.211208)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 100.302454)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 60.3937)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 20.484946)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-32 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.741094 159.562485)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pafe6a52736) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 74.318182 256.358563 \n",
"L 115.613636 256.358563 \n",
"L 115.613636 22.493265 \n",
"L 74.318182 22.493265 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pafe6a52736) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.613636 256.358563 \n",
"L 156.909091 256.358563 \n",
"L 156.909091 233.810117 \n",
"L 115.613636 233.810117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pafe6a52736) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 156.909091 256.358563 \n",
"L 198.204545 256.358563 \n",
"L 198.204545 254.762213 \n",
"L 156.909091 254.762213 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pafe6a52736) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 198.204545 256.358563 \n",
"L 239.5 256.358563 \n",
"L 239.5 255.161301 \n",
"L 198.204545 255.161301 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pafe6a52736) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 239.5 256.358563 \n",
"L 280.795455 256.358563 \n",
"L 280.795455 255.161301 \n",
"L 239.5 255.161301 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pafe6a52736) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 280.795455 256.358563 \n",
"L 322.090909 256.358563 \n",
"L 322.090909 255.959476 \n",
"L 280.795455 255.959476 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pafe6a52736) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 322.090909 256.358563 \n",
"L 363.386364 256.358563 \n",
"L 363.386364 256.358563 \n",
"L 322.090909 256.358563 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#pafe6a52736) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 363.386364 256.358563 \n",
"L 404.681818 256.358563 \n",
"L 404.681818 255.959476 \n",
"L 363.386364 255.959476 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path style=fill:none; d=&quot;M 57.8 256.358563 \n",
"L 57.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path style=fill:none; d=&quot;M 421.2 256.358563 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path style=fill:none; d=&quot;M 57.8 256.358563 \n",
"L 421.2 256.358563 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path style=fill:none; d=&quot;M 57.8 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pafe6a52736&gt;&lt;rect height=245.558563 width=363.4 x=57.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt;&lt;strong&gt;Histogram with fixed size bins&lt;/strong&gt; (bins=8) &lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-577434093074518742bottom--577434093074518742common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;1002&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 76.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;170&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.0%&gt; &amp;nbsp; &lt;/div&gt; 13.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;113&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.3%&gt; &amp;nbsp; &lt;/div&gt; 8.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.8%&gt; &amp;nbsp; &lt;/div&gt; 0.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=9&gt;9&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-577434093074518742bottom--577434093074518742extreme_values&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-577434093074518742extreme_values--577434093074518742firstn aria-controls=-577434093074518742extreme_values--577434093074518742firstn role=tab data-toggle=tab&gt;Minimum 5 values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-577434093074518742extreme_values--577434093074518742lastn aria-controls=-577434093074518742extreme_values--577434093074518742lastn role=tab data-toggle=tab&gt;Maximum 5 values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-577434093074518742extreme_values--577434093074518742firstn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;1002&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 76.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;170&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.0%&gt; &amp;nbsp; &lt;/div&gt; 13.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;113&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.3%&gt; &amp;nbsp; &lt;/div&gt; 8.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.8%&gt; &amp;nbsp; &lt;/div&gt; 0.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=9&gt;9&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-577434093074518742extreme_values--577434093074518742lastn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=9&gt;9&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.8%&gt; &amp;nbsp; &lt;/div&gt; 0.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;113&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.3%&gt; &amp;nbsp; &lt;/div&gt; 8.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;170&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.0%&gt; &amp;nbsp; &lt;/div&gt; 13.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;1002&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 76.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-7501723419757396541&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Ticket&gt;&lt;a href=#pp_var_-7501723419757396541&gt;Ticket&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;HIGH CARDINALITY&lt;/code&gt;&lt;br&gt;&lt;code&gt;UNIFORM&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr class=alert&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;929&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;71.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; CA. 2343 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.9% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 11 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; 1601 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.6% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 8 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; CA 2144 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.6% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 8 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; PC 17608 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.6% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 7 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; 347077 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.6% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 7 &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;th width=50%&gt; Other values (924) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 1268&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--7501723419757396541, #minifreqtable-7501723419757396541&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--7501723419757396541 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-7501723419757396541bottom--7501723419757396541overview aria-controls=-7501723419757396541bottom--7501723419757396541overview role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7501723419757396541bottom--7501723419757396541string aria-controls=-7501723419757396541bottom--7501723419757396541string role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7501723419757396541bottom--7501723419757396541word aria-controls=-7501723419757396541bottom--7501723419757396541word role=tab data-toggle=tab&gt;Words&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7501723419757396541bottom--7501723419757396541characters aria-controls=-7501723419757396541bottom--7501723419757396541characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-7501723419757396541bottom--7501723419757396541overview&gt;&lt;div class=row&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;18&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;6.790679908&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Characters and Unicode&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Total characters&lt;/th&gt;&lt;td&gt;8889&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct characters&lt;/th&gt;&lt;td&gt;35&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct categories&lt;/th&gt;&lt;td&gt;5 &lt;a title=&quot;Unicode categories (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_character_property#General_Category target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode categories (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct scripts&lt;/th&gt;&lt;td&gt;2 &lt;a title=&quot;Unicode scripts (click for more information)&quot; href=https://en.wikipedia.org/wiki/Script_(Unicode)#List_of_scripts_in_Unicode target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode scripts (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct blocks&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode blocks (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_block target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode blocks (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; The Unicode Standard assigns character properties to each code point, which can be used to analyse textual variables. &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;713 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;54.5%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Sample&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;1st row&lt;/th&gt;&lt;td&gt;24160&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;2nd row&lt;/th&gt;&lt;td&gt;113781&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;3rd row&lt;/th&gt;&lt;td&gt;113781&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;4th row&lt;/th&gt;&lt;td&gt;113781&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5th row&lt;/th&gt;&lt;td&gt;113781&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7501723419757396541bottom--7501723419757396541string&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h4&gt;Common Values&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;CA. 2343&quot;&gt;CA. 2343&lt;/td&gt;&lt;td&gt;11&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.9%&gt; &amp;nbsp; &lt;/div&gt; 0.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1601&gt;1601&lt;/td&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;CA 2144&quot;&gt;CA 2144&lt;/td&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;PC 17608&quot;&gt;PC 17608&lt;/td&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=347077&gt;347077&lt;/td&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=347082&gt;347082&lt;/td&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3101295&gt;3101295&lt;/td&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;S.O.C. 14879&quot;&gt;S.O.C. 14879&lt;/td&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=113781&gt;113781&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.5%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=19950&gt;19950&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.5%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (919)&quot;&gt;Other values (919)&lt;/td&gt;&lt;td&gt;1235&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 94.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h4&gt;Length&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:51.080397&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 52.175 252.381088 \n",
"L 421.2 252.381088 \n",
"L 421.2 10.8 \n",
"L 52.175 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(91.175908 271.874602)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(135.906211 271.874602)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(180.636514 271.874602)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(223.400729 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(268.131032 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(312.861335 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(357.591638 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_8&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(402.321941 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(36.114063 255.959994)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 217.741186)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 179.522377)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 141.303569)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 103.08476)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_14&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 64.865952)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_15&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 26.647144)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_16&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.677031 157.573747)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 68.948864 252.381088 \n",
"L 91.314015 252.381088 \n",
"L 91.314015 250.852335 \n",
"L 68.948864 250.852335 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 91.314015 252.381088 \n",
"L 113.679167 252.381088 \n",
"L 113.679167 195.817251 \n",
"L 91.314015 195.817251 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 113.679167 252.381088 \n",
"L 136.044318 252.381088 \n",
"L 136.044318 178.618788 \n",
"L 113.679167 178.618788 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.044318 252.381088 \n",
"L 158.40947 252.381088 \n",
"L 158.40947 22.303861 \n",
"L 136.044318 22.303861 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 158.40947 252.381088 \n",
"L 180.774621 252.381088 \n",
"L 180.774621 238.622317 \n",
"L 158.40947 238.622317 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 180.774621 252.381088 \n",
"L 203.139773 252.381088 \n",
"L 203.139773 207.282894 \n",
"L 180.774621 207.282894 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 203.139773 252.381088 \n",
"L 225.504924 252.381088 \n",
"L 225.504924 238.240129 \n",
"L 203.139773 238.240129 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 225.504924 252.381088 \n",
"L 247.870076 252.381088 \n",
"L 247.870076 228.303238 \n",
"L 225.504924 228.303238 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 247.870076 252.381088 \n",
"L 270.235227 252.381088 \n",
"L 270.235227 245.501702 \n",
"L 247.870076 245.501702 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 270.235227 252.381088 \n",
"L 292.600379 252.381088 \n",
"L 292.600379 246.266078 \n",
"L 270.235227 246.266078 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 292.600379 252.381088 \n",
"L 314.96553 252.381088 \n",
"L 314.96553 245.119514 \n",
"L 292.600379 245.119514 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 314.96553 252.381088 \n",
"L 337.330682 252.381088 \n",
"L 337.330682 252.381088 \n",
"L 314.96553 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 337.330682 252.381088 \n",
"L 359.695833 252.381088 \n",
"L 359.695833 247.794831 \n",
"L 337.330682 247.794831 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 359.695833 252.381088 \n",
"L 382.060985 252.381088 \n",
"L 382.060985 247.412643 \n",
"L 359.695833 247.412643 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#pca1c184470) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 382.060985 252.381088 \n",
"L 404.426136 252.381088 \n",
"L 404.426136 240.915445 \n",
"L 382.060985 240.915445 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path style=fill:none; d=&quot;M 52.175 252.381088 \n",
"L 52.175 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path style=fill:none; d=&quot;M 421.2 252.381088 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path style=fill:none; d=&quot;M 52.175 252.381088 \n",
"L 421.2 252.381088 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path style=fill:none; d=&quot;M 52.175 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pca1c184470&gt;&lt;rect height=241.581088 width=369.025 x=52.175 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7501723419757396541bottom--7501723419757396541word&gt;&lt;div class=col-sm-12&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=pc&gt;pc&lt;/td&gt;&lt;td&gt;92&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:6.6%&gt; &amp;nbsp; &lt;/div&gt; 5.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=c.a&gt;c.a&lt;/td&gt;&lt;td&gt;46&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:3.3%&gt; &amp;nbsp; &lt;/div&gt; 2.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=a/5&gt;a/5&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.6%&gt; &amp;nbsp; &lt;/div&gt; 1.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=ca&gt;ca&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.6%&gt; &amp;nbsp; &lt;/div&gt; 1.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;17&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.2%&gt; &amp;nbsp; &lt;/div&gt; 1.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=soton/o.q&gt;soton/o.q&lt;/td&gt;&lt;td&gt;16&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.1%&gt; &amp;nbsp; &lt;/div&gt; 1.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=sc/paris&gt;sc/paris&lt;/td&gt;&lt;td&gt;16&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.1%&gt; &amp;nbsp; &lt;/div&gt; 1.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=w./c&gt;w./c&lt;/td&gt;&lt;td&gt;14&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=ston/o&gt;ston/o&lt;/td&gt;&lt;td&gt;14&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.0%&gt; &amp;nbsp; &lt;/div&gt; 0.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2343&gt;2343&lt;/td&gt;&lt;td&gt;11&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.8%&gt; &amp;nbsp; &lt;/div&gt; 0.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (960)&quot;&gt;Other values (960)&lt;/td&gt;&lt;td&gt;1403&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 83.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7501723419757396541bottom--7501723419757396541characters&gt;&lt;div class=col-sm-12&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-7501723419757396541unicode--7501723419757396541characters aria-controls=-7501723419757396541unicode--7501723419757396541characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7501723419757396541unicode--7501723419757396541categories aria-controls=-7501723419757396541unicode--7501723419757396541categories role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7501723419757396541unicode--7501723419757396541scripts aria-controls=-7501723419757396541unicode--7501723419757396541scripts role=tab data-toggle=tab&gt;Scripts&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7501723419757396541unicode--7501723419757396541blocks aria-controls=-7501723419757396541unicode--7501723419757396541blocks role=tab data-toggle=tab&gt;Blocks&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-7501723419757396541unicode--7501723419757396541characters&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring characters&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;1110&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:59.8%&gt; 12.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;1000&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:53.9%&gt; 11.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;862&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:46.4%&gt; 9.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7&gt;7&lt;/td&gt;&lt;td&gt;697&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:37.5%&gt; &amp;nbsp; &lt;/div&gt; 7.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;652&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:35.1%&gt; &amp;nbsp; &lt;/div&gt; 7.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;628&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:33.8%&gt; &amp;nbsp; &lt;/div&gt; 7.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;610&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:32.8%&gt; &amp;nbsp; &lt;/div&gt; 6.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;582&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:31.3%&gt; &amp;nbsp; &lt;/div&gt; 6.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=9&gt;9&lt;/td&gt;&lt;td&gt;465&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:25.0%&gt; &amp;nbsp; &lt;/div&gt; 5.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;426&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:22.9%&gt; &amp;nbsp; &lt;/div&gt; 4.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (25)&quot;&gt;Other values (25)&lt;/td&gt;&lt;td&gt;1857&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 20.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7501723419757396541unicode--7501723419757396541categories&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring categories&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;Decimal Number&quot;&gt;Decimal Number&lt;/td&gt;&lt;td&gt;7032&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 79.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Uppercase Letter&quot;&gt;Uppercase Letter&lt;/td&gt;&lt;td&gt;1001&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:14.2%&gt; &amp;nbsp; &lt;/div&gt; 11.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Other Punctuation&quot;&gt;Other Punctuation&lt;/td&gt;&lt;td&gt;467&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:6.6%&gt; &amp;nbsp; &lt;/div&gt; 5.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Space Separator&quot;&gt;Space Separator&lt;/td&gt;&lt;td&gt;364&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.2%&gt; &amp;nbsp; &lt;/div&gt; 4.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Lowercase Letter&quot;&gt;Lowercase Letter&lt;/td&gt;&lt;td&gt;25&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.4%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per category&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Uppercase Letter&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;243&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 24.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=P&gt;P&lt;/td&gt;&lt;td&gt;150&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:61.7%&gt; 15.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=O&gt;O&lt;/td&gt;&lt;td&gt;144&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:59.3%&gt; 14.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=A&gt;A&lt;/td&gt;&lt;td&gt;133&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:54.7%&gt; 13.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=S&gt;S&lt;/td&gt;&lt;td&gt;114&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:46.9%&gt; 11.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=N&gt;N&lt;/td&gt;&lt;td&gt;54&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:22.2%&gt; &amp;nbsp; &lt;/div&gt; 5.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=T&gt;T&lt;/td&gt;&lt;td&gt;50&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.6%&gt; &amp;nbsp; &lt;/div&gt; 5.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Q&gt;Q&lt;/td&gt;&lt;td&gt;27&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.1%&gt; &amp;nbsp; &lt;/div&gt; 2.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=W&gt;W&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:9.1%&gt; &amp;nbsp; &lt;/div&gt; 2.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=I&gt;I&lt;/td&gt;&lt;td&gt;18&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:7.4%&gt; &amp;nbsp; &lt;/div&gt; 1.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (6)&quot;&gt;Other values (6)&lt;/td&gt;&lt;td&gt;46&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:18.9%&gt; &amp;nbsp; &lt;/div&gt; 4.6% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Decimal Number&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;1110&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 15.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;1000&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:90.1%&gt; 14.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;862&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:77.7%&gt; 12.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7&gt;7&lt;/td&gt;&lt;td&gt;697&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:62.8%&gt; 9.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;652&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:58.7%&gt; 9.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;628&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:56.6%&gt; 8.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;610&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:55.0%&gt; 8.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;582&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:52.4%&gt; 8.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=9&gt;9&lt;/td&gt;&lt;td&gt;465&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:41.9%&gt; 6.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;426&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:38.4%&gt; &amp;nbsp; &lt;/div&gt; 6.1% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Lowercase Letter&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=a&gt;a&lt;/td&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 28.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=s&gt;s&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:85.7%&gt; 24.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=r&gt;r&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:71.4%&gt; 20.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=i&gt;i&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:71.4%&gt; 20.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=l&gt;l&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:14.3%&gt; &amp;nbsp; &lt;/div&gt; 4.0% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=e&gt;e&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:14.3%&gt; &amp;nbsp; &lt;/div&gt; 4.0% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Other Punctuation&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=.&gt;.&lt;/td&gt;&lt;td&gt;323&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 69.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=/ &gt;/&lt;/td&gt;&lt;td&gt;144&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:44.6%&gt; 30.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Space Separator&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot; &quot;&gt;&lt;/td&gt;&lt;td&gt;364&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7501723419757396541unicode--7501723419757396541scripts&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring scripts&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=Common&gt;Common&lt;/td&gt;&lt;td&gt;7863&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 88.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Latin&gt;Latin&lt;/td&gt;&lt;td&gt;1026&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:13.0%&gt; &amp;nbsp; &lt;/div&gt; 11.5% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per script&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Latin&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;243&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 23.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=P&gt;P&lt;/td&gt;&lt;td&gt;150&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:61.7%&gt; 14.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=O&gt;O&lt;/td&gt;&lt;td&gt;144&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:59.3%&gt; 14.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=A&gt;A&lt;/td&gt;&lt;td&gt;133&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:54.7%&gt; 13.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=S&gt;S&lt;/td&gt;&lt;td&gt;114&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:46.9%&gt; 11.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=N&gt;N&lt;/td&gt;&lt;td&gt;54&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:22.2%&gt; &amp;nbsp; &lt;/div&gt; 5.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=T&gt;T&lt;/td&gt;&lt;td&gt;50&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.6%&gt; &amp;nbsp; &lt;/div&gt; 4.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Q&gt;Q&lt;/td&gt;&lt;td&gt;27&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.1%&gt; &amp;nbsp; &lt;/div&gt; 2.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=W&gt;W&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:9.1%&gt; &amp;nbsp; &lt;/div&gt; 2.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=I&gt;I&lt;/td&gt;&lt;td&gt;18&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:7.4%&gt; &amp;nbsp; &lt;/div&gt; 1.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (12)&quot;&gt;Other values (12)&lt;/td&gt;&lt;td&gt;71&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:29.2%&gt; &amp;nbsp; &lt;/div&gt; 6.9% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Common&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;1110&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 14.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;1000&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:90.1%&gt; 12.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;862&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:77.7%&gt; 11.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7&gt;7&lt;/td&gt;&lt;td&gt;697&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:62.8%&gt; 8.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;652&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:58.7%&gt; 8.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;628&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:56.6%&gt; 8.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;610&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:55.0%&gt; 7.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;582&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:52.4%&gt; 7.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=9&gt;9&lt;/td&gt;&lt;td&gt;465&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:41.9%&gt; 5.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;426&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:38.4%&gt; &amp;nbsp; &lt;/div&gt; 5.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (3)&quot;&gt;Other values (3)&lt;/td&gt;&lt;td&gt;831&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:74.9%&gt; 10.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7501723419757396541unicode--7501723419757396541blocks&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring blocks&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=ASCII&gt;ASCII&lt;/td&gt;&lt;td&gt;8889&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per block&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;ASCII&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;1110&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:59.8%&gt; 12.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;1000&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:53.9%&gt; 11.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;862&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:46.4%&gt; 9.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7&gt;7&lt;/td&gt;&lt;td&gt;697&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:37.5%&gt; &amp;nbsp; &lt;/div&gt; 7.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;652&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:35.1%&gt; &amp;nbsp; &lt;/div&gt; 7.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;628&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:33.8%&gt; &amp;nbsp; &lt;/div&gt; 7.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;610&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:32.8%&gt; &amp;nbsp; &lt;/div&gt; 6.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;582&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:31.3%&gt; &amp;nbsp; &lt;/div&gt; 6.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=9&gt;9&lt;/td&gt;&lt;td&gt;465&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:25.0%&gt; &amp;nbsp; &lt;/div&gt; 5.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;426&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:22.9%&gt; &amp;nbsp; &lt;/div&gt; 4.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (25)&quot;&gt;Other values (25)&lt;/td&gt;&lt;td&gt;1857&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 20.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-8851767276089965644&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Fare&gt;&lt;a href=#pp_var_-8851767276089965644&gt;Fare&lt;/a&gt;&lt;br&gt;&lt;small&gt;Real number (&amp;Ropf;&lt;sub&gt;&amp;ge;0&lt;/sub&gt;)&lt;/small&gt;&lt;/p&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Pclass&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Pclass&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Pclass&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;ZEROS&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;263&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;20.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;33.29626147&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;512.33&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros&lt;/th&gt;&lt;td&gt;17&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros (%)&lt;/th&gt;&lt;td&gt;1.3%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Negative&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Negative (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=162pt version=1.1 viewbox=&quot;0 0 216 162&quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:51.235713&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 162 \n",
"L 216 162 \n",
"L 216 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 10.8 126.911418 \n",
"L 205.2 126.911418 \n",
"L 205.2 10.8 \n",
"L 10.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(19.525878 144.606229)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(50.874949 150.897712)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(85.369762 150.897712)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(119.864574 150.897712)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(154.359387 150.897712)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(188.854199 150.897712)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 19.636364 126.911418 \n",
"L 23.170909 126.911418 \n",
"L 23.170909 16.329115 \n",
"L 19.636364 16.329115 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 23.170909 126.911418 \n",
"L 26.705455 126.911418 \n",
"L 26.705455 67.125051 \n",
"L 23.170909 67.125051 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 26.705455 126.911418 \n",
"L 30.24 126.911418 \n",
"L 30.24 78.138329 \n",
"L 26.705455 78.138329 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 30.24 126.911418 \n",
"L 33.774545 126.911418 \n",
"L 33.774545 111.178163 \n",
"L 30.24 111.178163 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 33.774545 126.911418 \n",
"L 37.309091 126.911418 \n",
"L 37.309091 121.292398 \n",
"L 33.774545 121.292398 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 37.309091 126.911418 \n",
"L 40.843636 126.911418 \n",
"L 40.843636 113.875293 \n",
"L 37.309091 113.875293 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 40.843636 126.911418 \n",
"L 44.378182 126.911418 \n",
"L 44.378182 120.618116 \n",
"L 40.843636 120.618116 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 44.378182 126.911418 \n",
"L 47.912727 126.911418 \n",
"L 47.912727 117.920987 \n",
"L 44.378182 117.920987 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 47.912727 126.911418 \n",
"L 51.447273 126.911418 \n",
"L 51.447273 121.517159 \n",
"L 47.912727 121.517159 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 51.447273 126.911418 \n",
"L 54.981818 126.911418 \n",
"L 54.981818 126.012375 \n",
"L 51.447273 126.012375 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 54.981818 126.911418 \n",
"L 58.516364 126.911418 \n",
"L 58.516364 124.66381 \n",
"L 54.981818 124.66381 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 58.516364 126.911418 \n",
"L 62.050909 126.911418 \n",
"L 62.050909 125.338092 \n",
"L 58.516364 125.338092 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 62.050909 126.911418 \n",
"L 65.585455 126.911418 \n",
"L 65.585455 126.911418 \n",
"L 62.050909 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 65.585455 126.911418 \n",
"L 69.12 126.911418 \n",
"L 69.12 123.989528 \n",
"L 65.585455 123.989528 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 69.12 126.911418 \n",
"L 72.654545 126.911418 \n",
"L 72.654545 124.214288 \n",
"L 69.12 124.214288 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 72.654545 126.911418 \n",
"L 76.189091 126.911418 \n",
"L 76.189091 126.911418 \n",
"L 72.654545 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 76.189091 126.911418 \n",
"L 79.723636 126.911418 \n",
"L 79.723636 126.012375 \n",
"L 76.189091 126.012375 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 79.723636 126.911418 \n",
"L 83.258182 126.911418 \n",
"L 83.258182 126.911418 \n",
"L 79.723636 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 83.258182 126.911418 \n",
"L 86.792727 126.911418 \n",
"L 86.792727 126.911418 \n",
"L 83.258182 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 86.792727 126.911418 \n",
"L 90.327273 126.911418 \n",
"L 90.327273 126.911418 \n",
"L 86.792727 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 90.327273 126.911418 \n",
"L 93.861818 126.911418 \n",
"L 93.861818 124.888571 \n",
"L 90.327273 124.888571 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 93.861818 126.911418 \n",
"L 97.396364 126.911418 \n",
"L 97.396364 126.012375 \n",
"L 93.861818 126.012375 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 97.396364 126.911418 \n",
"L 100.930909 126.911418 \n",
"L 100.930909 125.787614 \n",
"L 97.396364 125.787614 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 100.930909 126.911418 \n",
"L 104.465455 126.911418 \n",
"L 104.465455 126.911418 \n",
"L 100.930909 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 104.465455 126.911418 \n",
"L 108 126.911418 \n",
"L 108 126.237135 \n",
"L 104.465455 126.237135 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108 126.911418 \n",
"L 111.534545 126.911418 \n",
"L 111.534545 123.989528 \n",
"L 108 123.989528 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 111.534545 126.911418 \n",
"L 115.069091 126.911418 \n",
"L 115.069091 126.911418 \n",
"L 111.534545 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.069091 126.911418 \n",
"L 118.603636 126.911418 \n",
"L 118.603636 126.911418 \n",
"L 115.069091 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 118.603636 126.911418 \n",
"L 122.138182 126.911418 \n",
"L 122.138182 126.911418 \n",
"L 118.603636 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.138182 126.911418 \n",
"L 125.672727 126.911418 \n",
"L 125.672727 126.911418 \n",
"L 122.138182 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 125.672727 126.911418 \n",
"L 129.207273 126.911418 \n",
"L 129.207273 126.911418 \n",
"L 125.672727 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.207273 126.911418 \n",
"L 132.741818 126.911418 \n",
"L 132.741818 126.911418 \n",
"L 129.207273 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 132.741818 126.911418 \n",
"L 136.276364 126.911418 \n",
"L 136.276364 126.911418 \n",
"L 132.741818 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.276364 126.911418 \n",
"L 139.810909 126.911418 \n",
"L 139.810909 126.911418 \n",
"L 136.276364 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 139.810909 126.911418 \n",
"L 143.345455 126.911418 \n",
"L 143.345455 126.911418 \n",
"L 139.810909 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 143.345455 126.911418 \n",
"L 146.88 126.911418 \n",
"L 146.88 126.911418 \n",
"L 143.345455 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 146.88 126.911418 \n",
"L 150.414545 126.911418 \n",
"L 150.414545 126.911418 \n",
"L 146.88 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 150.414545 126.911418 \n",
"L 153.949091 126.911418 \n",
"L 153.949091 126.911418 \n",
"L 150.414545 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.949091 126.911418 \n",
"L 157.483636 126.911418 \n",
"L 157.483636 126.911418 \n",
"L 153.949091 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 157.483636 126.911418 \n",
"L 161.018182 126.911418 \n",
"L 161.018182 126.911418 \n",
"L 157.483636 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 161.018182 126.911418 \n",
"L 164.552727 126.911418 \n",
"L 164.552727 126.911418 \n",
"L 161.018182 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 164.552727 126.911418 \n",
"L 168.087273 126.911418 \n",
"L 168.087273 126.911418 \n",
"L 164.552727 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 168.087273 126.911418 \n",
"L 171.621818 126.911418 \n",
"L 171.621818 126.911418 \n",
"L 168.087273 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 171.621818 126.911418 \n",
"L 175.156364 126.911418 \n",
"L 175.156364 126.911418 \n",
"L 171.621818 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 175.156364 126.911418 \n",
"L 178.690909 126.911418 \n",
"L 178.690909 126.911418 \n",
"L 175.156364 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 178.690909 126.911418 \n",
"L 182.225455 126.911418 \n",
"L 182.225455 126.911418 \n",
"L 178.690909 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 182.225455 126.911418 \n",
"L 185.76 126.911418 \n",
"L 185.76 126.911418 \n",
"L 182.225455 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 185.76 126.911418 \n",
"L 189.294545 126.911418 \n",
"L 189.294545 126.911418 \n",
"L 185.76 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 189.294545 126.911418 \n",
"L 192.829091 126.911418 \n",
"L 192.829091 126.911418 \n",
"L 189.294545 126.911418 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#pd19f3a04e4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.829091 126.911418 \n",
"L 196.363636 126.911418 \n",
"L 196.363636 126.012375 \n",
"L 192.829091 126.012375 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 10.8 126.911418 \n",
"L 10.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 205.2 126.911418 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 10.8 126.911418 \n",
"L 205.2 126.911418 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 10.8 10.8 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pd19f3a04e4&gt;&lt;rect height=116.111418 width=194.4 x=10.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--8851767276089965644, #minifreqtable-8851767276089965644&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--8851767276089965644 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-8851767276089965644bottom--8851767276089965644statistics aria-controls=-8851767276089965644bottom--8851767276089965644statistics role=tab data-toggle=tab&gt;Statistics&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8851767276089965644bottom--8851767276089965644histogram aria-controls=-8851767276089965644bottom--8851767276089965644histogram role=tab data-toggle=tab&gt;Histogram&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8851767276089965644bottom--8851767276089965644common_values aria-controls=-8851767276089965644bottom--8851767276089965644common_values role=tab data-toggle=tab&gt;Common values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8851767276089965644bottom--8851767276089965644extreme_values aria-controls=-8851767276089965644bottom--8851767276089965644extreme_values role=tab data-toggle=tab&gt;Extreme values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-8851767276089965644bottom--8851767276089965644statistics&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Quantile statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5-th percentile&lt;/th&gt;&lt;td&gt;7.23&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q1&lt;/th&gt;&lt;td&gt;7.9&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;median&lt;/th&gt;&lt;td&gt;14.45&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q3&lt;/th&gt;&lt;td&gt;31.28&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;95-th percentile&lt;/th&gt;&lt;td&gt;133.65&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;512.33&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Range&lt;/th&gt;&lt;td&gt;512.33&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Interquartile range (IQR)&lt;/th&gt;&lt;td&gt;23.38&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Descriptive statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Standard deviation&lt;/th&gt;&lt;td&gt;51.75869082&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Coefficient of variation (CV)&lt;/th&gt;&lt;td&gt;1.554489559&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Kurtosis&lt;/th&gt;&lt;td&gt;27.02810271&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;33.29626147&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median Absolute Deviation (MAD)&lt;/th&gt;&lt;td&gt;6.9&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Skewness&lt;/th&gt;&lt;td&gt;4.367731137&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Sum&lt;/th&gt;&lt;td&gt;43551.51&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Variance&lt;/th&gt;&lt;td&gt;2678.962076&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Monotonicity&lt;/th&gt;&lt;td&gt;Not monotonic&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8851767276089965644bottom--8851767276089965644histogram&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:51.405305&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 52.175 248.403612 \n",
"L 421.2 248.403612 \n",
"L 421.2 10.8 \n",
"L 52.175 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(68.810757 267.897126)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(130.359281 275.76148)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(195.839981 275.76148)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(261.320682 275.76148)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(326.801382 275.76148)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(392.282083 275.76148)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(36.114063 251.982518)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 205.988788)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 159.995057)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 114.001327)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 68.007596)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 22.013866)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.677031 155.585009)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 68.948864 248.403612 \n",
"L 75.658409 248.403612 \n",
"L 75.658409 22.114458 \n",
"L 68.948864 22.114458 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 75.658409 248.403612 \n",
"L 82.367955 248.403612 \n",
"L 82.367955 126.060289 \n",
"L 75.658409 126.060289 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.367955 248.403612 \n",
"L 89.0775 248.403612 \n",
"L 89.0775 148.597217 \n",
"L 82.367955 148.597217 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 89.0775 248.403612 \n",
"L 95.787045 248.403612 \n",
"L 95.787045 216.208001 \n",
"L 89.0775 216.208001 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 95.787045 248.403612 \n",
"L 102.496591 248.403612 \n",
"L 102.496591 236.905179 \n",
"L 95.787045 236.905179 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 102.496591 248.403612 \n",
"L 109.206136 248.403612 \n",
"L 109.206136 221.727248 \n",
"L 102.496591 221.727248 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 109.206136 248.403612 \n",
"L 115.915682 248.403612 \n",
"L 115.915682 235.525367 \n",
"L 109.206136 235.525367 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.915682 248.403612 \n",
"L 122.625227 248.403612 \n",
"L 122.625227 230.00612 \n",
"L 115.915682 230.00612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.625227 248.403612 \n",
"L 129.334773 248.403612 \n",
"L 129.334773 237.365117 \n",
"L 122.625227 237.365117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.334773 248.403612 \n",
"L 136.044318 248.403612 \n",
"L 136.044318 246.563863 \n",
"L 129.334773 246.563863 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.044318 248.403612 \n",
"L 142.753864 248.403612 \n",
"L 142.753864 243.804239 \n",
"L 136.044318 243.804239 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 142.753864 248.403612 \n",
"L 149.463409 248.403612 \n",
"L 149.463409 245.184051 \n",
"L 142.753864 245.184051 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 149.463409 248.403612 \n",
"L 156.172955 248.403612 \n",
"L 156.172955 248.403612 \n",
"L 149.463409 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 156.172955 248.403612 \n",
"L 162.8825 248.403612 \n",
"L 162.8825 242.424427 \n",
"L 156.172955 242.424427 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 162.8825 248.403612 \n",
"L 169.592045 248.403612 \n",
"L 169.592045 242.884364 \n",
"L 162.8825 242.884364 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 169.592045 248.403612 \n",
"L 176.301591 248.403612 \n",
"L 176.301591 248.403612 \n",
"L 169.592045 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 176.301591 248.403612 \n",
"L 183.011136 248.403612 \n",
"L 183.011136 246.563863 \n",
"L 176.301591 246.563863 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 183.011136 248.403612 \n",
"L 189.720682 248.403612 \n",
"L 189.720682 248.403612 \n",
"L 183.011136 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 189.720682 248.403612 \n",
"L 196.430227 248.403612 \n",
"L 196.430227 248.403612 \n",
"L 189.720682 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 196.430227 248.403612 \n",
"L 203.139773 248.403612 \n",
"L 203.139773 248.403612 \n",
"L 196.430227 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 203.139773 248.403612 \n",
"L 209.849318 248.403612 \n",
"L 209.849318 244.264176 \n",
"L 203.139773 244.264176 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 209.849318 248.403612 \n",
"L 216.558864 248.403612 \n",
"L 216.558864 246.563863 \n",
"L 209.849318 246.563863 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 216.558864 248.403612 \n",
"L 223.268409 248.403612 \n",
"L 223.268409 246.103926 \n",
"L 216.558864 246.103926 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 223.268409 248.403612 \n",
"L 229.977955 248.403612 \n",
"L 229.977955 248.403612 \n",
"L 223.268409 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 229.977955 248.403612 \n",
"L 236.6875 248.403612 \n",
"L 236.6875 247.0238 \n",
"L 229.977955 247.0238 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 236.6875 248.403612 \n",
"L 243.397045 248.403612 \n",
"L 243.397045 242.424427 \n",
"L 236.6875 242.424427 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 243.397045 248.403612 \n",
"L 250.106591 248.403612 \n",
"L 250.106591 248.403612 \n",
"L 243.397045 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 250.106591 248.403612 \n",
"L 256.816136 248.403612 \n",
"L 256.816136 248.403612 \n",
"L 250.106591 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 256.816136 248.403612 \n",
"L 263.525682 248.403612 \n",
"L 263.525682 248.403612 \n",
"L 256.816136 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 263.525682 248.403612 \n",
"L 270.235227 248.403612 \n",
"L 270.235227 248.403612 \n",
"L 263.525682 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 270.235227 248.403612 \n",
"L 276.944773 248.403612 \n",
"L 276.944773 248.403612 \n",
"L 270.235227 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 276.944773 248.403612 \n",
"L 283.654318 248.403612 \n",
"L 283.654318 248.403612 \n",
"L 276.944773 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 283.654318 248.403612 \n",
"L 290.363864 248.403612 \n",
"L 290.363864 248.403612 \n",
"L 283.654318 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 290.363864 248.403612 \n",
"L 297.073409 248.403612 \n",
"L 297.073409 248.403612 \n",
"L 290.363864 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 297.073409 248.403612 \n",
"L 303.782955 248.403612 \n",
"L 303.782955 248.403612 \n",
"L 297.073409 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 303.782955 248.403612 \n",
"L 310.4925 248.403612 \n",
"L 310.4925 248.403612 \n",
"L 303.782955 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 310.4925 248.403612 \n",
"L 317.202045 248.403612 \n",
"L 317.202045 248.403612 \n",
"L 310.4925 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 317.202045 248.403612 \n",
"L 323.911591 248.403612 \n",
"L 323.911591 248.403612 \n",
"L 317.202045 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 323.911591 248.403612 \n",
"L 330.621136 248.403612 \n",
"L 330.621136 248.403612 \n",
"L 323.911591 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 330.621136 248.403612 \n",
"L 337.330682 248.403612 \n",
"L 337.330682 248.403612 \n",
"L 330.621136 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 337.330682 248.403612 \n",
"L 344.040227 248.403612 \n",
"L 344.040227 248.403612 \n",
"L 337.330682 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 344.040227 248.403612 \n",
"L 350.749773 248.403612 \n",
"L 350.749773 248.403612 \n",
"L 344.040227 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 350.749773 248.403612 \n",
"L 357.459318 248.403612 \n",
"L 357.459318 248.403612 \n",
"L 350.749773 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 357.459318 248.403612 \n",
"L 364.168864 248.403612 \n",
"L 364.168864 248.403612 \n",
"L 357.459318 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 364.168864 248.403612 \n",
"L 370.878409 248.403612 \n",
"L 370.878409 248.403612 \n",
"L 364.168864 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 370.878409 248.403612 \n",
"L 377.587955 248.403612 \n",
"L 377.587955 248.403612 \n",
"L 370.878409 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 377.587955 248.403612 \n",
"L 384.2975 248.403612 \n",
"L 384.2975 248.403612 \n",
"L 377.587955 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 384.2975 248.403612 \n",
"L 391.007045 248.403612 \n",
"L 391.007045 248.403612 \n",
"L 384.2975 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 391.007045 248.403612 \n",
"L 397.716591 248.403612 \n",
"L 397.716591 248.403612 \n",
"L 391.007045 248.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p06166131fd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 397.716591 248.403612 \n",
"L 404.426136 248.403612 \n",
"L 404.426136 246.563863 \n",
"L 397.716591 246.563863 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 52.175 248.403612 \n",
"L 52.175 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 421.2 248.403612 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 52.175 248.403612 \n",
"L 421.2 248.403612 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 52.175 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p06166131fd&gt;&lt;rect height=237.603612 width=369.025 x=52.175 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt;&lt;strong&gt;Histogram with fixed size bins&lt;/strong&gt; (bins=50) &lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8851767276089965644bottom--8851767276089965644common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=8.05&gt;8.05&lt;/td&gt;&lt;td&gt;60&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:6.8%&gt; &amp;nbsp; &lt;/div&gt; 4.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=13&gt;13&lt;/td&gt;&lt;td&gt;59&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:6.7%&gt; &amp;nbsp; &lt;/div&gt; 4.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7.75&gt;7.75&lt;/td&gt;&lt;td&gt;55&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:6.2%&gt; &amp;nbsp; &lt;/div&gt; 4.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=26&gt;26&lt;/td&gt;&lt;td&gt;50&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.7%&gt; &amp;nbsp; &lt;/div&gt; 3.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7.9&gt;7.9&lt;/td&gt;&lt;td&gt;49&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.5%&gt; &amp;nbsp; &lt;/div&gt; 3.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7.23&gt;7.23&lt;/td&gt;&lt;td&gt;45&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.1%&gt; &amp;nbsp; &lt;/div&gt; 3.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=10.5&gt;10.5&lt;/td&gt;&lt;td&gt;35&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.0%&gt; &amp;nbsp; &lt;/div&gt; 2.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7.78&gt;7.78&lt;/td&gt;&lt;td&gt;27&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:3.1%&gt; &amp;nbsp; &lt;/div&gt; 2.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7.93&gt;7.93&lt;/td&gt;&lt;td&gt;23&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.6%&gt; &amp;nbsp; &lt;/div&gt; 1.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7.85&gt;7.85&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.5%&gt; &amp;nbsp; &lt;/div&gt; 1.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (253)&quot;&gt;Other values (253)&lt;/td&gt;&lt;td&gt;883&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 67.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8851767276089965644bottom--8851767276089965644extreme_values&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-8851767276089965644extreme_values--8851767276089965644firstn aria-controls=-8851767276089965644extreme_values--8851767276089965644firstn role=tab data-toggle=tab&gt;Minimum 5 values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8851767276089965644extreme_values--8851767276089965644lastn aria-controls=-8851767276089965644extreme_values--8851767276089965644lastn role=tab data-toggle=tab&gt;Maximum 5 values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-8851767276089965644extreme_values--8851767276089965644firstn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;17&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 1.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3.17&gt;3.17&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.9%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4.01&gt;4.01&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.9%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.9%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6.24&gt;6.24&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.9%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6.44&gt;6.44&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.6%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6.45&gt;6.45&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.9%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6.5&gt;6.5&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.6%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6.75&gt;6.75&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:11.8%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6.86&gt;6.86&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.9%&gt; &amp;nbsp; &lt;/div&gt; 0.1% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8851767276089965644extreme_values--8851767276089965644lastn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=512.33&gt;512.33&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:57.1%&gt; 0.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=263&gt;263&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:85.7%&gt; 0.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=262.38&gt;262.38&lt;/td&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 0.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=247.52&gt;247.52&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:42.9%&gt; 0.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=227.53&gt;227.53&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:71.4%&gt; 0.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=221.78&gt;221.78&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:57.1%&gt; 0.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=211.5&gt;211.5&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:71.4%&gt; 0.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=211.34&gt;211.34&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:57.1%&gt; 0.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=164.87&gt;164.87&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:57.1%&gt; 0.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=153.46&gt;153.46&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:42.9%&gt; 0.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-3539840473575887385&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Cabin&gt;&lt;a href=#pp_var_-3539840473575887385&gt;Cabin&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;HIGH CARDINALITY&lt;/code&gt;&lt;br&gt;&lt;code&gt;MISSING&lt;/code&gt;&lt;br&gt;&lt;code&gt;UNIFORM&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr class=alert&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;186&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;63.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;1014&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;77.5%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; C23 C25 C27 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:2.2% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 6 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; G6 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:1.8% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 5 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; B57 B59 B63 B66 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:1.8% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 5 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; C22 C26 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:1.5% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 4 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; C78 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:1.5% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 4 &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;th width=50%&gt; Other values (181) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 271&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--3539840473575887385, #minifreqtable-3539840473575887385&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--3539840473575887385 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-3539840473575887385bottom--3539840473575887385overview aria-controls=-3539840473575887385bottom--3539840473575887385overview role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-3539840473575887385bottom--3539840473575887385string aria-controls=-3539840473575887385bottom--3539840473575887385string role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-3539840473575887385bottom--3539840473575887385word aria-controls=-3539840473575887385bottom--3539840473575887385word role=tab data-toggle=tab&gt;Words&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-3539840473575887385bottom--3539840473575887385characters aria-controls=-3539840473575887385bottom--3539840473575887385characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-3539840473575887385bottom--3539840473575887385overview&gt;&lt;div class=row&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;15&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;3.738983051&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Characters and Unicode&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Total characters&lt;/th&gt;&lt;td&gt;1103&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct characters&lt;/th&gt;&lt;td&gt;19&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct categories&lt;/th&gt;&lt;td&gt;3 &lt;a title=&quot;Unicode categories (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_character_property#General_Category target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode categories (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct scripts&lt;/th&gt;&lt;td&gt;2 &lt;a title=&quot;Unicode scripts (click for more information)&quot; href=https://en.wikipedia.org/wiki/Script_(Unicode)#List_of_scripts_in_Unicode target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode scripts (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct blocks&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode blocks (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_block target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode blocks (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; The Unicode Standard assigns character properties to each code point, which can be used to analyse textual variables. &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;107 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;36.3%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Sample&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;1st row&lt;/th&gt;&lt;td&gt;B5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;2nd row&lt;/th&gt;&lt;td&gt;C22 C26&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;3rd row&lt;/th&gt;&lt;td&gt;C22 C26&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;4th row&lt;/th&gt;&lt;td&gt;C22 C26&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5th row&lt;/th&gt;&lt;td&gt;C22 C26&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-3539840473575887385bottom--3539840473575887385string&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h4&gt;Common Values&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;C23 C25 C27&quot;&gt;C23 C25 C27&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.6%&gt; &amp;nbsp; &lt;/div&gt; 0.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=G6&gt;G6&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.5%&gt; &amp;nbsp; &lt;/div&gt; 0.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;B57 B59 B63 B66&quot;&gt;B57 B59 B63 B66&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.5%&gt; &amp;nbsp; &lt;/div&gt; 0.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;C22 C26&quot;&gt;C22 C26&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.4%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=C78&gt;C78&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.4%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=D&gt;D&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.4%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;B96 B98&quot;&gt;B96 B98&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.4%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=F4&gt;F4&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.4%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=F33&gt;F33&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.4%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=F2&gt;F2&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.4%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (176)&quot;&gt;Other values (176)&lt;/td&gt;&lt;td&gt;251&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:24.8%&gt; &amp;nbsp; &lt;/div&gt; 19.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=missing&gt;&lt;td title=(Missing)&gt;(Missing)&lt;/td&gt;&lt;td&gt;1014&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 77.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h4&gt;Length&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:51.854562&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 52.175 252.381088 \n",
"L 421.2 252.381088 \n",
"L 421.2 10.8 \n",
"L 52.175 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(92.773419 271.874602)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(140.698744 271.874602)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(188.624069 271.874602)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(236.549393 271.874602)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(282.50863 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(330.433954 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(378.359279 275.806779)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(36.114063 255.959994)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.553125 202.701377)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 149.44276)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 96.184142)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-35 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.992188 42.925525)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.677031 157.573747)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p42549bc2e2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 68.948864 252.381088 \n",
"L 110.883523 252.381088 \n",
"L 110.883523 211.904539 \n",
"L 68.948864 211.904539 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p42549bc2e2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 110.883523 252.381088 \n",
"L 152.818182 252.381088 \n",
"L 152.818182 22.303861 \n",
"L 110.883523 22.303861 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p42549bc2e2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 152.818182 252.381088 \n",
"L 194.752841 252.381088 \n",
"L 194.752841 244.924881 \n",
"L 152.818182 244.924881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p42549bc2e2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 194.752841 252.381088 \n",
"L 236.6875 252.381088 \n",
"L 236.6875 232.142813 \n",
"L 194.752841 232.142813 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p42549bc2e2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 236.6875 252.381088 \n",
"L 278.622159 252.381088 \n",
"L 278.622159 252.381088 \n",
"L 236.6875 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p42549bc2e2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 278.622159 252.381088 \n",
"L 320.556818 252.381088 \n",
"L 320.556818 241.729364 \n",
"L 278.622159 241.729364 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p42549bc2e2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 320.556818 252.381088 \n",
"L 362.491477 252.381088 \n",
"L 362.491477 252.381088 \n",
"L 320.556818 252.381088 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p42549bc2e2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 362.491477 252.381088 \n",
"L 404.426136 252.381088 \n",
"L 404.426136 247.055226 \n",
"L 362.491477 247.055226 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path style=fill:none; d=&quot;M 52.175 252.381088 \n",
"L 52.175 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path style=fill:none; d=&quot;M 421.2 252.381088 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path style=fill:none; d=&quot;M 52.175 252.381088 \n",
"L 421.2 252.381088 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path style=fill:none; d=&quot;M 52.175 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p42549bc2e2&gt;&lt;rect height=241.581088 width=369.025 x=52.175 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-3539840473575887385bottom--3539840473575887385word&gt;&lt;div class=col-sm-12&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=f&gt;f&lt;/td&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.7%&gt; &amp;nbsp; &lt;/div&gt; 2.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=c25&gt;c25&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.0%&gt; &amp;nbsp; &lt;/div&gt; 1.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=c23&gt;c23&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.0%&gt; &amp;nbsp; &lt;/div&gt; 1.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=c27&gt;c27&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.0%&gt; &amp;nbsp; &lt;/div&gt; 1.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=b63&gt;b63&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.7%&gt; &amp;nbsp; &lt;/div&gt; 1.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=b59&gt;b59&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.7%&gt; &amp;nbsp; &lt;/div&gt; 1.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=b57&gt;b57&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.7%&gt; &amp;nbsp; &lt;/div&gt; 1.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=g6&gt;g6&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.7%&gt; &amp;nbsp; &lt;/div&gt; 1.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=b66&gt;b66&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.7%&gt; &amp;nbsp; &lt;/div&gt; 1.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=c22&gt;c22&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.3%&gt; &amp;nbsp; &lt;/div&gt; 1.1% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (192)&quot;&gt;Other values (192)&lt;/td&gt;&lt;td&gt;301&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 84.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-3539840473575887385bottom--3539840473575887385characters&gt;&lt;div class=col-sm-12&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-3539840473575887385unicode--3539840473575887385characters aria-controls=-3539840473575887385unicode--3539840473575887385characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-3539840473575887385unicode--3539840473575887385categories aria-controls=-3539840473575887385unicode--3539840473575887385categories role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-3539840473575887385unicode--3539840473575887385scripts aria-controls=-3539840473575887385unicode--3539840473575887385scripts role=tab data-toggle=tab&gt;Scripts&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-3539840473575887385unicode--3539840473575887385blocks aria-controls=-3539840473575887385unicode--3539840473575887385blocks role=tab data-toggle=tab&gt;Blocks&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-3539840473575887385unicode--3539840473575887385characters&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring characters&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;114&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:40.0%&gt; &amp;nbsp; &lt;/div&gt; 10.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;97&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:34.0%&gt; &amp;nbsp; &lt;/div&gt; 8.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=B&gt;B&lt;/td&gt;&lt;td&gt;96&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:33.7%&gt; &amp;nbsp; &lt;/div&gt; 8.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;94&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:33.0%&gt; &amp;nbsp; &lt;/div&gt; 8.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;87&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:30.5%&gt; &amp;nbsp; &lt;/div&gt; 7.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;81&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:28.4%&gt; &amp;nbsp; &lt;/div&gt; 7.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;79&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:27.7%&gt; &amp;nbsp; &lt;/div&gt; 7.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot; &quot;&gt;&lt;/td&gt;&lt;td&gt;61&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:21.4%&gt; &amp;nbsp; &lt;/div&gt; 5.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;58&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.4%&gt; &amp;nbsp; &lt;/div&gt; 5.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;51&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.9%&gt; &amp;nbsp; &lt;/div&gt; 4.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (9)&quot;&gt;Other values (9)&lt;/td&gt;&lt;td&gt;285&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 25.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-3539840473575887385unicode--3539840473575887385categories&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring categories&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;Decimal Number&quot;&gt;Decimal Number&lt;/td&gt;&lt;td&gt;686&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 62.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Uppercase Letter&quot;&gt;Uppercase Letter&lt;/td&gt;&lt;td&gt;356&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:51.9%&gt; 32.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Space Separator&quot;&gt;Space Separator&lt;/td&gt;&lt;td&gt;61&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:8.9%&gt; &amp;nbsp; &lt;/div&gt; 5.5% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per category&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Decimal Number&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;97&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 14.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;94&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:96.9%&gt; 13.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;87&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:89.7%&gt; 12.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;81&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:83.5%&gt; 11.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;79&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:81.4%&gt; 11.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;58&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:59.8%&gt; 8.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;51&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:52.6%&gt; 7.4% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7&gt;7&lt;/td&gt;&lt;td&gt;49&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:50.5%&gt; 7.1% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;45&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:46.4%&gt; 6.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=9&gt;9&lt;/td&gt;&lt;td&gt;45&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:46.4%&gt; 6.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Uppercase Letter&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;114&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 32.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=B&gt;B&lt;/td&gt;&lt;td&gt;96&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:84.2%&gt; 27.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=D&gt;D&lt;/td&gt;&lt;td&gt;48&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:42.1%&gt; 13.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=E&gt;E&lt;/td&gt;&lt;td&gt;45&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:39.5%&gt; &amp;nbsp; &lt;/div&gt; 12.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=A&gt;A&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:19.3%&gt; &amp;nbsp; &lt;/div&gt; 6.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=F&gt;F&lt;/td&gt;&lt;td&gt;21&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:18.4%&gt; &amp;nbsp; &lt;/div&gt; 5.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=G&gt;G&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:7.9%&gt; &amp;nbsp; &lt;/div&gt; 2.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=T&gt;T&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.9%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Space Separator&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot; &quot;&gt;&lt;/td&gt;&lt;td&gt;61&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-3539840473575887385unicode--3539840473575887385scripts&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring scripts&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=Common&gt;Common&lt;/td&gt;&lt;td&gt;747&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 67.7% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Latin&gt;Latin&lt;/td&gt;&lt;td&gt;356&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:47.7%&gt; 32.3% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per script&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Common&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;97&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 13.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;94&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:96.9%&gt; 12.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;87&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:89.7%&gt; 11.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;81&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:83.5%&gt; 10.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;79&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:81.4%&gt; 10.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot; &quot;&gt;&lt;/td&gt;&lt;td&gt;61&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:62.9%&gt; 8.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;58&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:59.8%&gt; 7.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;51&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:52.6%&gt; 6.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=7&gt;7&lt;/td&gt;&lt;td&gt;49&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:50.5%&gt; 6.6% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;45&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:46.4%&gt; 6.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Latin&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;114&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 32.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=B&gt;B&lt;/td&gt;&lt;td&gt;96&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:84.2%&gt; 27.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=D&gt;D&lt;/td&gt;&lt;td&gt;48&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:42.1%&gt; 13.5% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=E&gt;E&lt;/td&gt;&lt;td&gt;45&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:39.5%&gt; &amp;nbsp; &lt;/div&gt; 12.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=A&gt;A&lt;/td&gt;&lt;td&gt;22&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:19.3%&gt; &amp;nbsp; &lt;/div&gt; 6.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=F&gt;F&lt;/td&gt;&lt;td&gt;21&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:18.4%&gt; &amp;nbsp; &lt;/div&gt; 5.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=G&gt;G&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:7.9%&gt; &amp;nbsp; &lt;/div&gt; 2.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=T&gt;T&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.9%&gt; &amp;nbsp; &lt;/div&gt; 0.3% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-3539840473575887385unicode--3539840473575887385blocks&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring blocks&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=ASCII&gt;ASCII&lt;/td&gt;&lt;td&gt;1103&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per block&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;ASCII&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;114&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:40.0%&gt; &amp;nbsp; &lt;/div&gt; 10.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;97&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:34.0%&gt; &amp;nbsp; &lt;/div&gt; 8.8% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=B&gt;B&lt;/td&gt;&lt;td&gt;96&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:33.7%&gt; &amp;nbsp; &lt;/div&gt; 8.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;94&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:33.0%&gt; &amp;nbsp; &lt;/div&gt; 8.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3&gt;3&lt;/td&gt;&lt;td&gt;87&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:30.5%&gt; &amp;nbsp; &lt;/div&gt; 7.9% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;81&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:28.4%&gt; &amp;nbsp; &lt;/div&gt; 7.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;79&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:27.7%&gt; &amp;nbsp; &lt;/div&gt; 7.2% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot; &quot;&gt;&lt;/td&gt;&lt;td&gt;61&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:21.4%&gt; &amp;nbsp; &lt;/div&gt; 5.5% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;58&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.4%&gt; &amp;nbsp; &lt;/div&gt; 5.3% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=8&gt;8&lt;/td&gt;&lt;td&gt;51&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:17.9%&gt; &amp;nbsp; &lt;/div&gt; 4.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (9)&quot;&gt;Other values (9)&lt;/td&gt;&lt;td&gt;285&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 25.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_3564229900655673117&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Embarked&gt;&lt;a href=#pp_var_3564229900655673117&gt;Embarked&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Pclass&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;0.2%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.2%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; S &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 914&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; C &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:29.5% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 270&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Q &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:13.5% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 123&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom-3564229900655673117, #minifreqtable3564229900655673117&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom-3564229900655673117 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#3564229900655673117bottom-3564229900655673117overview aria-controls=3564229900655673117bottom-3564229900655673117overview role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#3564229900655673117bottom-3564229900655673117string aria-controls=3564229900655673117bottom-3564229900655673117string role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#3564229900655673117bottom-3564229900655673117word aria-controls=3564229900655673117bottom-3564229900655673117word role=tab data-toggle=tab&gt;Words&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#3564229900655673117bottom-3564229900655673117characters aria-controls=3564229900655673117bottom-3564229900655673117characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=3564229900655673117bottom-3564229900655673117overview&gt;&lt;div class=row&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Characters and Unicode&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Total characters&lt;/th&gt;&lt;td&gt;1307&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct characters&lt;/th&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct categories&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode categories (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_character_property#General_Category target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode categories (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct scripts&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode scripts (click for more information)&quot; href=https://en.wikipedia.org/wiki/Script_(Unicode)#List_of_scripts_in_Unicode target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode scripts (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct blocks&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode blocks (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_block target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode blocks (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; The Unicode Standard assigns character properties to each code point, which can be used to analyse textual variables. &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;0 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Sample&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;1st row&lt;/th&gt;&lt;td&gt;S&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;2nd row&lt;/th&gt;&lt;td&gt;S&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;3rd row&lt;/th&gt;&lt;td&gt;S&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;4th row&lt;/th&gt;&lt;td&gt;S&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5th row&lt;/th&gt;&lt;td&gt;S&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=3564229900655673117bottom-3564229900655673117string&gt;&lt;div class=row&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Common Values&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=S&gt;S&lt;/td&gt;&lt;td&gt;914&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 69.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;270&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:29.5%&gt; &amp;nbsp; &lt;/div&gt; 20.6% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Q&gt;Q&lt;/td&gt;&lt;td&gt;123&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:13.5%&gt; &amp;nbsp; &lt;/div&gt; 9.4% &lt;/td&gt;&lt;/tr&gt;&lt;tr class=missing&gt;&lt;td title=(Missing)&gt;(Missing)&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt; &amp;nbsp; &lt;/div&gt; 0.2% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Length&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:52.170399&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 57.8 250.436544 \n",
"L 421.2 250.436544 \n",
"L 421.2 10.8 \n",
"L 57.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(104.268135 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-2e transform=scale(0.015625) d=&quot;M 581 0 \n",
"L 581 641 \n",
"L 1222 641 \n",
"L 1222 0 \n",
"L 581 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(170.340862 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(236.413589 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(302.486317 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(368.559044 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(41.739063 254.01545)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 219.091919)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 184.168387)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 149.244855)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 114.321323)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 79.397791)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 44.47426)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-32 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.741094 156.601475)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pd5986844ab) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 74.318182 250.436544 \n",
"L 404.681818 250.436544 \n",
"L 404.681818 22.211264 \n",
"L 74.318182 22.211264 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path style=fill:none; d=&quot;M 57.8 250.436544 \n",
"L 57.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 421.2 250.436544 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 57.8 250.436544 \n",
"L 421.2 250.436544 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:none; d=&quot;M 57.8 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pd5986844ab&gt;&lt;rect height=239.636544 width=363.4 x=57.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Pie chart&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=396pt version=1.1 viewbox=&quot;0 0 576 396&quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:52.250359&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 396 \n",
"L 576 396 \n",
"L 576 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=matplotlib.axis_1 /&gt;&lt;g id=matplotlib.axis_2 /&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 414.792 197.01 \n",
"C 414.792 174.978524 408.703976 153.369655 397.202723 134.57851 \n",
"C 385.70147 115.787366 369.22822 100.534848 349.608862 90.511539 \n",
"C 329.989503 80.48823 307.976712 76.078664 286.010376 77.771595 \n",
"C 264.04404 79.464526 242.966874 87.195006 225.115061 100.106193 \n",
"C 207.263249 113.01738 193.321657 130.613949 184.835564 150.945505 \n",
"C 176.349471 171.277061 173.644438 193.563605 177.020288 215.334907 \n",
"C 180.396139 237.106208 189.723363 257.527035 203.968135 274.33395 \n",
"C 218.212907 291.140866 236.828741 303.689092 257.752267 310.587787 \n",
"L 295.2 197.01 \n",
"L 414.792 197.01 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 257.752267 310.587787 \n",
"C 282.536057 318.759251 309.326179 318.598267 334.009976 310.129548 \n",
"C 358.693773 301.66083 379.940023 285.341105 394.487129 263.675677 \n",
"L 295.2 197.01 \n",
"L 257.752267 310.587787 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path style=fill:#2ca02c;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 394.487129 263.675677 \n",
"C 401.068995 253.873113 406.163021 243.149633 409.603216 231.854665 \n",
"C 413.043411 220.559697 414.791998 208.817271 414.792 197.010017 \n",
"L 295.2 197.01 \n",
"L 394.487129 263.675677 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_1&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(224.523256 141.455216)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-39 transform=scale(0.015625) d=&quot;M 350 1059 \n",
"L 891 1109 \n",
"Q 959 728 1153 556 \n",
"Q 1347 384 1650 384 \n",
"Q 1909 384 2104 503 \n",
"Q 2300 622 2425 820 \n",
"Q 2550 1019 2634 1356 \n",
"Q 2719 1694 2719 2044 \n",
"Q 2719 2081 2716 2156 \n",
"Q 2547 1888 2255 1720 \n",
"Q 1963 1553 1622 1553 \n",
"Q 1053 1553 659 1965 \n",
"Q 266 2378 266 3053 \n",
"Q 266 3750 677 4175 \n",
"Q 1088 4600 1706 4600 \n",
"Q 2153 4600 2523 4359 \n",
"Q 2894 4119 3086 3673 \n",
"Q 3278 3228 3278 2384 \n",
"Q 3278 1506 3087 986 \n",
"Q 2897 466 2520 194 \n",
"Q 2144 -78 1638 -78 \n",
"Q 1100 -78 759 220 \n",
"Q 419 519 350 1059 \n",
"z\n",
"M 2653 3081 \n",
"Q 2653 3566 2395 3850 \n",
"Q 2138 4134 1775 4134 \n",
"Q 1400 4134 1122 3828 \n",
"Q 844 3522 844 3034 \n",
"Q 844 2597 1108 2323 \n",
"Q 1372 2050 1759 2050 \n",
"Q 2150 2050 2401 2323 \n",
"Q 2653 2597 2653 3081 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-2e transform=scale(0.015625) d=&quot;M 581 0 \n",
"L 581 641 \n",
"L 1222 641 \n",
"L 1222 0 \n",
"L 581 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-25 transform=scale(0.015625) d=&quot;M 372 3481 \n",
"Q 372 3972 619 4315 \n",
"Q 866 4659 1334 4659 \n",
"Q 1766 4659 2048 4351 \n",
"Q 2331 4044 2331 3447 \n",
"Q 2331 2866 2045 2552 \n",
"Q 1759 2238 1341 2238 \n",
"Q 925 2238 648 2547 \n",
"Q 372 2856 372 3481 \n",
"z\n",
"M 1350 4272 \n",
"Q 1141 4272 1002 4090 \n",
"Q 863 3909 863 3425 \n",
"Q 863 2984 1003 2804 \n",
"Q 1144 2625 1350 2625 \n",
"Q 1563 2625 1702 2806 \n",
"Q 1841 2988 1841 3469 \n",
"Q 1841 3913 1700 4092 \n",
"Q 1559 4272 1350 4272 \n",
"z\n",
"M 1353 -169 \n",
"L 3859 4659 \n",
"L 4316 4659 \n",
"L 1819 -169 \n",
"L 1353 -169 \n",
"z\n",
"M 3334 1075 \n",
"Q 3334 1569 3581 1911 \n",
"Q 3828 2253 4300 2253 \n",
"Q 4731 2253 5014 1945 \n",
"Q 5297 1638 5297 1041 \n",
"Q 5297 459 5011 145 \n",
"Q 4725 -169 4303 -169 \n",
"Q 3888 -169 3611 142 \n",
"Q 3334 453 3334 1075 \n",
"z\n",
"M 4316 1866 \n",
"Q 4103 1866 3964 1684 \n",
"Q 3825 1503 3825 1019 \n",
"Q 3825 581 3965 400 \n",
"Q 4106 219 4313 219 \n",
"Q 4528 219 4667 400 \n",
"Q 4806 581 4806 1063 \n",
"Q 4806 1506 4665 1686 \n",
"Q 4525 1866 4316 1866 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-20 transform=scale(0.015625) /&gt;&lt;path id=ArialMT-28 transform=scale(0.015625) d=&quot;M 1497 -1347 \n",
"Q 1031 -759 709 28 \n",
"Q 388 816 388 1659 \n",
"Q 388 2403 628 3084 \n",
"Q 909 3875 1497 4659 \n",
"L 1900 4659 \n",
"Q 1522 4009 1400 3731 \n",
"Q 1209 3300 1100 2831 \n",
"Q 966 2247 966 1656 \n",
"Q 966 153 1900 -1347 \n",
"L 1497 -1347 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-29 transform=scale(0.015625) d=&quot;M 791 -1347 \n",
"L 388 -1347 \n",
"Q 1322 153 1322 1656 \n",
"Q 1322 2244 1188 2822 \n",
"Q 1081 3291 891 3722 \n",
"Q 769 4003 388 4659 \n",
"L 791 4659 \n",
"Q 1378 3875 1659 3084 \n",
"Q 1900 2403 1900 1659 \n",
"Q 1900 816 1576 28 \n",
"Q 1253 -759 791 -1347 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-39 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-2e /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-39 /&gt;&lt;use x=194.628906 xlink:href=#ArialMT-25 /&gt;&lt;use x=283.544922 xlink:href=#ArialMT-20 /&gt;&lt;use x=311.328125 xlink:href=#ArialMT-20 /&gt;&lt;use x=339.111328 xlink:href=#ArialMT-28 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-39 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-31 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-34 /&gt;&lt;use x=539.257812 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_2&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(289.860204 267.469229)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-37 transform=scale(0.015625) d=&quot;M 303 3981 \n",
"L 303 4522 \n",
"L 3269 4522 \n",
"L 3269 4084 \n",
"Q 2831 3619 2401 2847 \n",
"Q 1972 2075 1738 1259 \n",
"Q 1569 684 1522 0 \n",
"L 944 0 \n",
"Q 953 541 1156 1306 \n",
"Q 1359 2072 1739 2783 \n",
"Q 2119 3494 2547 3981 \n",
"L 303 3981 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-2e /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-37 /&gt;&lt;use x=194.628906 xlink:href=#ArialMT-25 /&gt;&lt;use x=283.544922 xlink:href=#ArialMT-20 /&gt;&lt;use x=311.328125 xlink:href=#ArialMT-20 /&gt;&lt;use x=339.111328 xlink:href=#ArialMT-28 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-32 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-37 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-30 /&gt;&lt;use x=539.257812 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_3&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(337.996617 220.504299)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-39 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-34 /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-25 /&gt;&lt;use x=227.929688 xlink:href=#ArialMT-20 /&gt;&lt;use x=255.712891 xlink:href=#ArialMT-20 /&gt;&lt;use x=283.496094 xlink:href=#ArialMT-28 /&gt;&lt;use x=316.796875 xlink:href=#ArialMT-31 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-32 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-33 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=legend_1&gt;&lt;g id=patch_5&gt;&lt;path style=fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 397.911875 97.955938 \n",
"L 437.69 97.955938 \n",
"Q 439.69 97.955938 439.69 95.955938 \n",
"L 439.69 54.52 \n",
"Q 439.69 52.52 437.69 52.52 \n",
"L 397.911875 52.52 \n",
"Q 395.911875 52.52 395.911875 54.52 \n",
"L 395.911875 95.955938 \n",
"Q 395.911875 97.955938 397.911875 97.955938 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 399.911875 63.677813 \n",
"L 419.911875 63.677813 \n",
"L 419.911875 56.677813 \n",
"L 399.911875 56.677813 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(427.911875 63.677813)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-53 transform=scale(0.015625) d=&quot;M 288 1472 \n",
"L 859 1522 \n",
"Q 900 1178 1048 958 \n",
"Q 1197 738 1509 602 \n",
"Q 1822 466 2213 466 \n",
"Q 2559 466 2825 569 \n",
"Q 3091 672 3220 851 \n",
"Q 3350 1031 3350 1244 \n",
"Q 3350 1459 3225 1620 \n",
"Q 3100 1781 2813 1891 \n",
"Q 2628 1963 1997 2114 \n",
"Q 1366 2266 1113 2400 \n",
"Q 784 2572 623 2826 \n",
"Q 463 3081 463 3397 \n",
"Q 463 3744 659 4045 \n",
"Q 856 4347 1234 4503 \n",
"Q 1613 4659 2075 4659 \n",
"Q 2584 4659 2973 4495 \n",
"Q 3363 4331 3572 4012 \n",
"Q 3781 3694 3797 3291 \n",
"L 3216 3247 \n",
"Q 3169 3681 2898 3903 \n",
"Q 2628 4125 2100 4125 \n",
"Q 1550 4125 1298 3923 \n",
"Q 1047 3722 1047 3438 \n",
"Q 1047 3191 1225 3031 \n",
"Q 1400 2872 2139 2705 \n",
"Q 2878 2538 3153 2413 \n",
"Q 3553 2228 3743 1945 \n",
"Q 3934 1663 3934 1294 \n",
"Q 3934 928 3725 604 \n",
"Q 3516 281 3123 101 \n",
"Q 2731 -78 2241 -78 \n",
"Q 1619 -78 1198 103 \n",
"Q 778 284 539 648 \n",
"Q 300 1013 288 1472 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 399.911875 77.823125 \n",
"L 419.911875 77.823125 \n",
"L 419.911875 70.823125 \n",
"L 399.911875 70.823125 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(427.911875 77.823125)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-43 transform=scale(0.015625) d=&quot;M 3763 1606 \n",
"L 4369 1453 \n",
"Q 4178 706 3683 314 \n",
"Q 3188 -78 2472 -78 \n",
"Q 1731 -78 1267 223 \n",
"Q 803 525 561 1097 \n",
"Q 319 1669 319 2325 \n",
"Q 319 3041 592 3573 \n",
"Q 866 4106 1370 4382 \n",
"Q 1875 4659 2481 4659 \n",
"Q 3169 4659 3637 4309 \n",
"Q 4106 3959 4291 3325 \n",
"L 3694 3184 \n",
"Q 3534 3684 3231 3912 \n",
"Q 2928 4141 2469 4141 \n",
"Q 1941 4141 1586 3887 \n",
"Q 1231 3634 1087 3207 \n",
"Q 944 2781 944 2328 \n",
"Q 944 1744 1114 1308 \n",
"Q 1284 872 1643 656 \n",
"Q 2003 441 2422 441 \n",
"Q 2931 441 3284 734 \n",
"Q 3638 1028 3763 1606 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-43 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path style=fill:#2ca02c;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 399.911875 91.968437 \n",
"L 419.911875 91.968437 \n",
"L 419.911875 84.968437 \n",
"L 399.911875 84.968437 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(427.911875 91.968437)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-51 transform=scale(0.015625) d=&quot;M 3966 491 \n",
"Q 4388 200 4744 66 \n",
"L 4566 -356 \n",
"Q 4072 -178 3581 206 \n",
"Q 3072 -78 2456 -78 \n",
"Q 1834 -78 1328 222 \n",
"Q 822 522 548 1065 \n",
"Q 275 1609 275 2291 \n",
"Q 275 2969 550 3525 \n",
"Q 825 4081 1333 4372 \n",
"Q 1841 4663 2469 4663 \n",
"Q 3103 4663 3612 4361 \n",
"Q 4122 4059 4389 3517 \n",
"Q 4656 2975 4656 2294 \n",
"Q 4656 1728 4484 1276 \n",
"Q 4313 825 3966 491 \n",
"z\n",
"M 2631 1266 \n",
"Q 3156 1119 3497 828 \n",
"Q 4031 1316 4031 2294 \n",
"Q 4031 2850 3842 3265 \n",
"Q 3653 3681 3289 3911 \n",
"Q 2925 4141 2472 4141 \n",
"Q 1794 4141 1347 3677 \n",
"Q 900 3213 900 2291 \n",
"Q 900 1397 1342 919 \n",
"Q 1784 441 2472 441 \n",
"Q 2797 441 3084 563 \n",
"Q 2800 747 2484 825 \n",
"L 2631 1266 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-51 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=3564229900655673117bottom-3564229900655673117word&gt;&lt;div class=col-sm-12&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=s&gt;s&lt;/td&gt;&lt;td&gt;914&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 69.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=c&gt;c&lt;/td&gt;&lt;td&gt;270&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:29.5%&gt; &amp;nbsp; &lt;/div&gt; 20.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=q&gt;q&lt;/td&gt;&lt;td&gt;123&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:13.5%&gt; &amp;nbsp; &lt;/div&gt; 9.4% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=3564229900655673117bottom-3564229900655673117characters&gt;&lt;div class=col-sm-12&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#3564229900655673117unicode-3564229900655673117characters aria-controls=3564229900655673117unicode-3564229900655673117characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#3564229900655673117unicode-3564229900655673117categories aria-controls=3564229900655673117unicode-3564229900655673117categories role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#3564229900655673117unicode-3564229900655673117scripts aria-controls=3564229900655673117unicode-3564229900655673117scripts role=tab data-toggle=tab&gt;Scripts&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#3564229900655673117unicode-3564229900655673117blocks aria-controls=3564229900655673117unicode-3564229900655673117blocks role=tab data-toggle=tab&gt;Blocks&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=3564229900655673117unicode-3564229900655673117characters&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring characters&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=S&gt;S&lt;/td&gt;&lt;td&gt;914&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 69.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;270&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:29.5%&gt; &amp;nbsp; &lt;/div&gt; 20.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Q&gt;Q&lt;/td&gt;&lt;td&gt;123&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:13.5%&gt; &amp;nbsp; &lt;/div&gt; 9.4% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=3564229900655673117unicode-3564229900655673117categories&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring categories&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;Uppercase Letter&quot;&gt;Uppercase Letter&lt;/td&gt;&lt;td&gt;1307&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per category&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Uppercase Letter&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=S&gt;S&lt;/td&gt;&lt;td&gt;914&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 69.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;270&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:29.5%&gt; &amp;nbsp; &lt;/div&gt; 20.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Q&gt;Q&lt;/td&gt;&lt;td&gt;123&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:13.5%&gt; &amp;nbsp; &lt;/div&gt; 9.4% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=3564229900655673117unicode-3564229900655673117scripts&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring scripts&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=Latin&gt;Latin&lt;/td&gt;&lt;td&gt;1307&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per script&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Latin&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=S&gt;S&lt;/td&gt;&lt;td&gt;914&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 69.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;270&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:29.5%&gt; &amp;nbsp; &lt;/div&gt; 20.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Q&gt;Q&lt;/td&gt;&lt;td&gt;123&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:13.5%&gt; &amp;nbsp; &lt;/div&gt; 9.4% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=3564229900655673117unicode-3564229900655673117blocks&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring blocks&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=ASCII&gt;ASCII&lt;/td&gt;&lt;td&gt;1307&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per block&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;ASCII&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=S&gt;S&lt;/td&gt;&lt;td&gt;914&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 69.9% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=C&gt;C&lt;/td&gt;&lt;td&gt;270&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:29.5%&gt; &amp;nbsp; &lt;/div&gt; 20.7% &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Q&gt;Q&lt;/td&gt;&lt;td&gt;123&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:13.5%&gt; &amp;nbsp; &lt;/div&gt; 9.4% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_1744995237285011741&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=Survived&gt;&lt;a href=#pp_var_1744995237285011741&gt;Survived&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 2 fields: Pclass, Age&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Sex&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: Sex&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;0.2%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;10.4 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; 0 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 809&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; 1 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:61.8% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 500&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom-1744995237285011741, #minifreqtable1744995237285011741&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom-1744995237285011741 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#1744995237285011741bottom-1744995237285011741overview aria-controls=1744995237285011741bottom-1744995237285011741overview role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#1744995237285011741bottom-1744995237285011741string aria-controls=1744995237285011741bottom-1744995237285011741string role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#1744995237285011741bottom-1744995237285011741word aria-controls=1744995237285011741bottom-1744995237285011741word role=tab data-toggle=tab&gt;Words&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#1744995237285011741bottom-1744995237285011741characters aria-controls=1744995237285011741bottom-1744995237285011741characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=1744995237285011741bottom-1744995237285011741overview&gt;&lt;div class=row&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Characters and Unicode&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Total characters&lt;/th&gt;&lt;td&gt;1309&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct characters&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct categories&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode categories (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_character_property#General_Category target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode categories (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct scripts&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode scripts (click for more information)&quot; href=https://en.wikipedia.org/wiki/Script_(Unicode)#List_of_scripts_in_Unicode target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode scripts (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct blocks&lt;/th&gt;&lt;td&gt;1 &lt;a title=&quot;Unicode blocks (click for more information)&quot; href=https://en.wikipedia.org/wiki/Unicode_block target=_blank&gt;&lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;Unicode blocks (click for more information)&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; The Unicode Standard assigns character properties to each code point, which can be used to analyse textual variables. &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;0 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4&gt;Sample&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;1st row&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;2nd row&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;3rd row&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;4th row&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5th row&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=1744995237285011741bottom-1744995237285011741string&gt;&lt;div class=row&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Common Values&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;809&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 61.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;500&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:61.8%&gt; 38.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Length&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:52.461599&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 57.8 250.436544 \n",
"L 421.2 250.436544 \n",
"L 421.2 10.8 \n",
"L 57.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(104.268135 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-2e transform=scale(0.015625) d=&quot;M 581 0 \n",
"L 581 641 \n",
"L 1222 641 \n",
"L 1222 0 \n",
"L 581 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(170.340862 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(236.413589 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(302.486317 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(368.559044 275.826666)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-2e /&gt;&lt;use x=83.398438 xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(41.739063 254.01545)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 219.145278)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 184.275105)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 149.404932)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.617188 114.53476)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 79.664587)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(25.05625 44.794414)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-32 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-30 /&gt;&lt;use x=166.845703 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.741094 156.601475)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-46 transform=scale(0.015625) d=&quot;M 525 0 \n",
"L 525 4581 \n",
"L 3616 4581 \n",
"L 3616 4041 \n",
"L 1131 4041 \n",
"L 1131 2622 \n",
"L 3281 2622 \n",
"L 3281 2081 \n",
"L 1131 2081 \n",
"L 1131 0 \n",
"L 525 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-72 transform=scale(0.015625) d=&quot;M 416 0 \n",
"L 416 3319 \n",
"L 922 3319 \n",
"L 922 2816 \n",
"Q 1116 3169 1280 3281 \n",
"Q 1444 3394 1641 3394 \n",
"Q 1925 3394 2219 3213 \n",
"L 2025 2691 \n",
"Q 1819 2813 1613 2813 \n",
"Q 1428 2813 1281 2702 \n",
"Q 1134 2591 1072 2394 \n",
"Q 978 2094 978 1738 \n",
"L 978 0 \n",
"L 416 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-71 transform=scale(0.015625) d=&quot;M 2538 -1272 \n",
"L 2538 353 \n",
"Q 2406 169 2170 47 \n",
"Q 1934 -75 1669 -75 \n",
"Q 1078 -75 651 397 \n",
"Q 225 869 225 1691 \n",
"Q 225 2191 398 2587 \n",
"Q 572 2984 901 3189 \n",
"Q 1231 3394 1625 3394 \n",
"Q 2241 3394 2594 2875 \n",
"L 2594 3319 \n",
"L 3100 3319 \n",
"L 3100 -1272 \n",
"L 2538 -1272 \n",
"z\n",
"M 803 1669 \n",
"Q 803 1028 1072 708 \n",
"Q 1341 388 1716 388 \n",
"Q 2075 388 2334 692 \n",
"Q 2594 997 2594 1619 \n",
"Q 2594 2281 2320 2615 \n",
"Q 2047 2950 1678 2950 \n",
"Q 1313 2950 1058 2639 \n",
"Q 803 2328 803 1669 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-75 transform=scale(0.015625) d=&quot;M 2597 0 \n",
"L 2597 488 \n",
"Q 2209 -75 1544 -75 \n",
"Q 1250 -75 995 37 \n",
"Q 741 150 617 320 \n",
"Q 494 491 444 738 \n",
"Q 409 903 409 1263 \n",
"L 409 3319 \n",
"L 972 3319 \n",
"L 972 1478 \n",
"Q 972 1038 1006 884 \n",
"Q 1059 663 1231 536 \n",
"Q 1403 409 1656 409 \n",
"Q 1909 409 2131 539 \n",
"Q 2353 669 2445 892 \n",
"Q 2538 1116 2538 1541 \n",
"L 2538 3319 \n",
"L 3100 3319 \n",
"L 3100 0 \n",
"L 2597 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-6e transform=scale(0.015625) d=&quot;M 422 0 \n",
"L 422 3319 \n",
"L 928 3319 \n",
"L 928 2847 \n",
"Q 1294 3394 1984 3394 \n",
"Q 2284 3394 2536 3286 \n",
"Q 2788 3178 2913 3003 \n",
"Q 3038 2828 3088 2588 \n",
"Q 3119 2431 3119 2041 \n",
"L 3119 0 \n",
"L 2556 0 \n",
"L 2556 2019 \n",
"Q 2556 2363 2490 2533 \n",
"Q 2425 2703 2258 2804 \n",
"Q 2091 2906 1866 2906 \n",
"Q 1506 2906 1245 2678 \n",
"Q 984 2450 984 1813 \n",
"L 984 0 \n",
"L 422 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-63 transform=scale(0.015625) d=&quot;M 2588 1216 \n",
"L 3141 1144 \n",
"Q 3050 572 2676 248 \n",
"Q 2303 -75 1759 -75 \n",
"Q 1078 -75 664 370 \n",
"Q 250 816 250 1647 \n",
"Q 250 2184 428 2587 \n",
"Q 606 2991 970 3192 \n",
"Q 1334 3394 1763 3394 \n",
"Q 2303 3394 2647 3120 \n",
"Q 2991 2847 3088 2344 \n",
"L 2541 2259 \n",
"Q 2463 2594 2264 2762 \n",
"Q 2066 2931 1784 2931 \n",
"Q 1359 2931 1093 2626 \n",
"Q 828 2322 828 1663 \n",
"Q 828 994 1084 691 \n",
"Q 1341 388 1753 388 \n",
"Q 2084 388 2306 591 \n",
"Q 2528 794 2588 1216 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-79 transform=scale(0.015625) d=&quot;M 397 -1278 \n",
"L 334 -750 \n",
"Q 519 -800 656 -800 \n",
"Q 844 -800 956 -737 \n",
"Q 1069 -675 1141 -563 \n",
"Q 1194 -478 1313 -144 \n",
"Q 1328 -97 1363 -6 \n",
"L 103 3319 \n",
"L 709 3319 \n",
"L 1400 1397 \n",
"Q 1534 1031 1641 628 \n",
"Q 1738 1016 1872 1384 \n",
"L 2581 3319 \n",
"L 3144 3319 \n",
"L 1881 -56 \n",
"Q 1678 -603 1566 -809 \n",
"Q 1416 -1088 1222 -1217 \n",
"Q 1028 -1347 759 -1347 \n",
"Q 597 -1347 397 -1278 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-46 /&gt;&lt;use x=61.083984 xlink:href=#ArialMT-72 /&gt;&lt;use x=94.384766 xlink:href=#ArialMT-65 /&gt;&lt;use x=150 xlink:href=#ArialMT-71 /&gt;&lt;use x=205.615234 xlink:href=#ArialMT-75 /&gt;&lt;use x=261.230469 xlink:href=#ArialMT-65 /&gt;&lt;use x=316.845703 xlink:href=#ArialMT-6e /&gt;&lt;use x=372.460938 xlink:href=#ArialMT-63 /&gt;&lt;use x=422.460938 xlink:href=#ArialMT-79 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p2261432df1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 74.318182 250.436544 \n",
"L 404.681818 250.436544 \n",
"L 404.681818 22.211264 \n",
"L 74.318182 22.211264 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path style=fill:none; d=&quot;M 57.8 250.436544 \n",
"L 57.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 421.2 250.436544 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 57.8 250.436544 \n",
"L 421.2 250.436544 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:none; d=&quot;M 57.8 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p2261432df1&gt;&lt;rect height=239.636544 width=363.4 x=57.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-4&gt;&lt;h4&gt;Pie chart&lt;/h4&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=396pt version=1.1 viewbox=&quot;0 0 576 396&quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:52.540137&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 396 \n",
"L 576 396 \n",
"L 576 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=matplotlib.axis_1 /&gt;&lt;g id=matplotlib.axis_2 /&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 414.792 197.01 \n",
"C 414.792 177.565582 410.049809 158.411384 400.977798 141.213012 \n",
"C 391.905787 124.01464 378.774766 109.285486 362.72658 98.306365 \n",
"C 346.678393 87.327244 328.192099 80.425896 308.875224 78.202447 \n",
"C 289.558349 75.978997 269.987526 78.499819 251.864589 85.545707 \n",
"C 233.741652 92.591595 217.607593 103.952221 204.865394 118.63969 \n",
"C 192.123195 133.32716 183.153226 150.903033 178.735496 169.838953 \n",
"C 174.317766 188.774872 174.584149 208.505577 179.511481 227.31533 \n",
"C 184.438813 246.125082 193.880007 263.452388 207.014078 277.790503 \n",
"L 295.2 197.01 \n",
"L 414.792 197.01 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 207.014078 277.790503 \n",
"C 223.290313 295.558835 244.562855 307.999889 268.028958 313.474505 \n",
"C 291.495061 318.949121 316.076798 317.20582 338.535422 308.474289 \n",
"C 360.994045 299.742758 380.297908 284.424083 393.903644 264.536566 \n",
"C 407.50938 244.649049 414.792005 221.106231 414.792 197.009978 \n",
"L 295.2 197.01 \n",
"L 207.014078 277.790503 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_1&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(240.572972 132.718924)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-2e transform=scale(0.015625) d=&quot;M 581 0 \n",
"L 581 641 \n",
"L 1222 641 \n",
"L 1222 0 \n",
"L 581 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-25 transform=scale(0.015625) d=&quot;M 372 3481 \n",
"Q 372 3972 619 4315 \n",
"Q 866 4659 1334 4659 \n",
"Q 1766 4659 2048 4351 \n",
"Q 2331 4044 2331 3447 \n",
"Q 2331 2866 2045 2552 \n",
"Q 1759 2238 1341 2238 \n",
"Q 925 2238 648 2547 \n",
"Q 372 2856 372 3481 \n",
"z\n",
"M 1350 4272 \n",
"Q 1141 4272 1002 4090 \n",
"Q 863 3909 863 3425 \n",
"Q 863 2984 1003 2804 \n",
"Q 1144 2625 1350 2625 \n",
"Q 1563 2625 1702 2806 \n",
"Q 1841 2988 1841 3469 \n",
"Q 1841 3913 1700 4092 \n",
"Q 1559 4272 1350 4272 \n",
"z\n",
"M 1353 -169 \n",
"L 3859 4659 \n",
"L 4316 4659 \n",
"L 1819 -169 \n",
"L 1353 -169 \n",
"z\n",
"M 3334 1075 \n",
"Q 3334 1569 3581 1911 \n",
"Q 3828 2253 4300 2253 \n",
"Q 4731 2253 5014 1945 \n",
"Q 5297 1638 5297 1041 \n",
"Q 5297 459 5011 145 \n",
"Q 4725 -169 4303 -169 \n",
"Q 3888 -169 3611 142 \n",
"Q 3334 453 3334 1075 \n",
"z\n",
"M 4316 1866 \n",
"Q 4103 1866 3964 1684 \n",
"Q 3825 1503 3825 1019 \n",
"Q 3825 581 3965 400 \n",
"Q 4106 219 4313 219 \n",
"Q 4528 219 4667 400 \n",
"Q 4806 581 4806 1063 \n",
"Q 4806 1506 4665 1686 \n",
"Q 4525 1866 4316 1866 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-20 transform=scale(0.015625) /&gt;&lt;path id=ArialMT-28 transform=scale(0.015625) d=&quot;M 1497 -1347 \n",
"Q 1031 -759 709 28 \n",
"Q 388 816 388 1659 \n",
"Q 388 2403 628 3084 \n",
"Q 909 3875 1497 4659 \n",
"L 1900 4659 \n",
"Q 1522 4009 1400 3731 \n",
"Q 1209 3300 1100 2831 \n",
"Q 966 2247 966 1656 \n",
"Q 966 153 1900 -1347 \n",
"L 1497 -1347 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-39 transform=scale(0.015625) d=&quot;M 350 1059 \n",
"L 891 1109 \n",
"Q 959 728 1153 556 \n",
"Q 1347 384 1650 384 \n",
"Q 1909 384 2104 503 \n",
"Q 2300 622 2425 820 \n",
"Q 2550 1019 2634 1356 \n",
"Q 2719 1694 2719 2044 \n",
"Q 2719 2081 2716 2156 \n",
"Q 2547 1888 2255 1720 \n",
"Q 1963 1553 1622 1553 \n",
"Q 1053 1553 659 1965 \n",
"Q 266 2378 266 3053 \n",
"Q 266 3750 677 4175 \n",
"Q 1088 4600 1706 4600 \n",
"Q 2153 4600 2523 4359 \n",
"Q 2894 4119 3086 3673 \n",
"Q 3278 3228 3278 2384 \n",
"Q 3278 1506 3087 986 \n",
"Q 2897 466 2520 194 \n",
"Q 2144 -78 1638 -78 \n",
"Q 1100 -78 759 220 \n",
"Q 419 519 350 1059 \n",
"z\n",
"M 2653 3081 \n",
"Q 2653 3566 2395 3850 \n",
"Q 2138 4134 1775 4134 \n",
"Q 1400 4134 1122 3828 \n",
"Q 844 3522 844 3034 \n",
"Q 844 2597 1108 2323 \n",
"Q 1372 2050 1759 2050 \n",
"Q 2150 2050 2401 2323 \n",
"Q 2653 2597 2653 3081 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-29 transform=scale(0.015625) d=&quot;M 791 -1347 \n",
"L 388 -1347 \n",
"Q 1322 153 1322 1656 \n",
"Q 1322 2244 1188 2822 \n",
"Q 1081 3291 891 3722 \n",
"Q 769 4003 388 4659 \n",
"L 791 4659 \n",
"Q 1378 3875 1659 3084 \n",
"Q 1900 2403 1900 1659 \n",
"Q 1900 816 1576 28 \n",
"Q 1253 -759 791 -1347 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-31 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-2e /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-38 /&gt;&lt;use x=194.628906 xlink:href=#ArialMT-25 /&gt;&lt;use x=283.544922 xlink:href=#ArialMT-20 /&gt;&lt;use x=311.328125 xlink:href=#ArialMT-20 /&gt;&lt;use x=339.111328 xlink:href=#ArialMT-28 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-38 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-30 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-39 /&gt;&lt;use x=539.257812 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_2&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(292.575472 266.476073)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-38 /&gt;&lt;use x=111.230469 xlink:href=#ArialMT-2e /&gt;&lt;use x=139.013672 xlink:href=#ArialMT-32 /&gt;&lt;use x=194.628906 xlink:href=#ArialMT-25 /&gt;&lt;use x=283.544922 xlink:href=#ArialMT-20 /&gt;&lt;use x=311.328125 xlink:href=#ArialMT-20 /&gt;&lt;use x=339.111328 xlink:href=#ArialMT-28 /&gt;&lt;use x=372.412109 xlink:href=#ArialMT-35 /&gt;&lt;use x=428.027344 xlink:href=#ArialMT-30 /&gt;&lt;use x=483.642578 xlink:href=#ArialMT-30 /&gt;&lt;use x=539.257812 xlink:href=#ArialMT-29 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=legend_1&gt;&lt;g id=patch_4&gt;&lt;path style=fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 400.129062 83.810625 \n",
"L 437.69 83.810625 \n",
"Q 439.69 83.810625 439.69 81.810625 \n",
"L 439.69 54.52 \n",
"Q 439.69 52.52 437.69 52.52 \n",
"L 400.129062 52.52 \n",
"Q 398.129062 52.52 398.129062 54.52 \n",
"L 398.129062 81.810625 \n",
"Q 398.129062 83.810625 400.129062 83.810625 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 402.129062 63.677812 \n",
"L 422.129062 63.677812 \n",
"L 422.129062 56.677812 \n",
"L 402.129062 56.677812 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(430.129062 63.677812)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 402.129062 77.823125 \n",
"L 422.129062 77.823125 \n",
"L 422.129062 70.823125 \n",
"L 402.129062 70.823125 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(430.129062 77.823125)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=1744995237285011741bottom-1744995237285011741word&gt;&lt;div class=col-sm-12&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;809&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 61.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;500&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:61.8%&gt; 38.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=1744995237285011741bottom-1744995237285011741characters&gt;&lt;div class=col-sm-12&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#1744995237285011741unicode-1744995237285011741characters aria-controls=1744995237285011741unicode-1744995237285011741characters role=tab data-toggle=tab&gt;Characters&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#1744995237285011741unicode-1744995237285011741categories aria-controls=1744995237285011741unicode-1744995237285011741categories role=tab data-toggle=tab&gt;Categories&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#1744995237285011741unicode-1744995237285011741scripts aria-controls=1744995237285011741unicode-1744995237285011741scripts role=tab data-toggle=tab&gt;Scripts&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#1744995237285011741unicode-1744995237285011741blocks aria-controls=1744995237285011741unicode-1744995237285011741blocks role=tab data-toggle=tab&gt;Blocks&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=1744995237285011741unicode-1744995237285011741characters&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring characters&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;809&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 61.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;500&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:61.8%&gt; 38.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=1744995237285011741unicode-1744995237285011741categories&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring categories&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;Decimal Number&quot;&gt;Decimal Number&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per category&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Decimal Number&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;809&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 61.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;500&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:61.8%&gt; 38.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=1744995237285011741unicode-1744995237285011741scripts&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring scripts&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=Common&gt;Common&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per script&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;Common&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;809&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 61.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;500&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:61.8%&gt; 38.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=1744995237285011741unicode-1744995237285011741blocks&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most occurring blocks&lt;/h4&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=ASCII&gt;ASCII&lt;/td&gt;&lt;td&gt;1309&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 100.0% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;row named-list-item&quot;&gt;&lt;h4&gt;Most frequent character per block&lt;/h4&gt;&lt;div class=row&gt;&lt;div class=col-sm-6&gt;&lt;h5&gt;&lt;em&gt;ASCII&lt;/em&gt;&lt;/h5&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;809&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt; 61.8% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;500&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:61.8%&gt; 38.2% &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row header&quot;&gt;&lt;a class=anchor-pos id=interactions&gt;&lt;/a&gt;&lt;h1 class=page-header&gt;Interactions&lt;/h1&gt;&lt;/div&gt;&lt;div class=section-items&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#interactions-interactions_age aria-controls=interactions-interactions_age role=tab data-toggle=tab&gt;Age&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#interactions-interactions_sibsp aria-controls=interactions-interactions_sibsp role=tab data-toggle=tab&gt;SibSp&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#interactions-interactions_parch aria-controls=interactions-interactions_parch role=tab data-toggle=tab&gt;Parch&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#interactions-interactions_fare aria-controls=interactions-interactions_fare role=tab data-toggle=tab&gt;Fare&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=interactions-interactions_age&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#interactions_age-interactions_age_age aria-controls=interactions_age-interactions_age_age role=tab data-toggle=tab&gt;Age&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#interactions_age-interactions_age_sibsp aria-controls=interactions_age-interactions_age_sibsp role=tab data-toggle=tab&gt;SibSp&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#interactions_age-interactions_age_parch aria-controls=interactions_age-interactions_age_parch role=tab data-toggle=tab&gt;Parch&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#interactions_age-interactions_age_fare aria-controls=interactions_age-interactions_age_fare role=tab data-toggle=tab&gt;Fare&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=interactions_age-interactions_age_age&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=396pt version=1.1 viewbox=&quot;0 0 576 396&quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:44.621372&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 396 \n",
"L 576 396 \n",
"L 576 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 72 346.5 \n",
"L 518.4 346.5 \n",
"L 518.4 47.52 \n",
"L 72 47.52 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(89.510441 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(137.457245 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(188.184517 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(238.91179 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(289.639062 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(340.366335 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(391.093608 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_8&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(441.82088 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-37 transform=scale(0.015625) d=&quot;M 303 3981 \n",
"L 303 4522 \n",
"L 3269 4522 \n",
"L 3269 4084 \n",
"Q 2831 3619 2401 2847 \n",
"Q 1972 2075 1738 1259 \n",
"Q 1569 684 1522 0 \n",
"L 944 0 \n",
"Q 953 541 1156 1306 \n",
"Q 1359 2072 1739 2783 \n",
"Q 2119 3494 2547 3981 \n",
"L 303 3981 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-37 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_9&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(492.548153 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(285.414297 378.018906)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-41 transform=scale(0.015625) d=&quot;M -9 0 \n",
"L 1750 4581 \n",
"L 2403 4581 \n",
"L 4278 0 \n",
"L 3588 0 \n",
"L 3053 1388 \n",
"L 1138 1388 \n",
"L 634 0 \n",
"L -9 0 \n",
"z\n",
"M 1313 1881 \n",
"L 2866 1881 \n",
"L 2388 3150 \n",
"Q 2169 3728 2063 4100 \n",
"Q 1975 3659 1816 3225 \n",
"L 1313 1881 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-67 transform=scale(0.015625) d=&quot;M 319 -275 \n",
"L 866 -356 \n",
"Q 900 -609 1056 -725 \n",
"Q 1266 -881 1628 -881 \n",
"Q 2019 -881 2231 -725 \n",
"Q 2444 -569 2519 -288 \n",
"Q 2563 -116 2559 434 \n",
"Q 2191 0 1641 0 \n",
"Q 956 0 581 494 \n",
"Q 206 988 206 1678 \n",
"Q 206 2153 378 2554 \n",
"Q 550 2956 876 3175 \n",
"Q 1203 3394 1644 3394 \n",
"Q 2231 3394 2613 2919 \n",
"L 2613 3319 \n",
"L 3131 3319 \n",
"L 3131 450 \n",
"Q 3131 -325 2973 -648 \n",
"Q 2816 -972 2473 -1159 \n",
"Q 2131 -1347 1631 -1347 \n",
"Q 1038 -1347 672 -1080 \n",
"Q 306 -813 319 -275 \n",
"z\n",
"M 784 1719 \n",
"Q 784 1066 1043 766 \n",
"Q 1303 466 1694 466 \n",
"Q 2081 466 2343 764 \n",
"Q 2606 1063 2606 1700 \n",
"Q 2606 2309 2336 2618 \n",
"Q 2066 2928 1684 2928 \n",
"Q 1309 2928 1046 2623 \n",
"Q 784 2319 784 1719 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-41 /&gt;&lt;use x=66.699219 xlink:href=#ArialMT-67 /&gt;&lt;use x=122.314453 xlink:href=#ArialMT-65 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 336.488906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(50.378125 302.513906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(50.378125 268.538906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_14&gt;&lt;g style=fill:#262626; transform=&quot;translate(50.378125 234.563906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_15&gt;&lt;g style=fill:#262626; transform=&quot;translate(50.378125 200.588906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_16&gt;&lt;g style=fill:#262626; transform=&quot;translate(50.378125 166.613906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_17&gt;&lt;g style=fill:#262626; transform=&quot;translate(50.378125 132.638906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_8&gt;&lt;g id=text_18&gt;&lt;g style=fill:#262626; transform=&quot;translate(50.378125 98.663906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-37 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_9&gt;&lt;g id=text_19&gt;&lt;g style=fill:#262626; transform=&quot;translate(50.378125 64.688906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_20&gt;&lt;g style=fill:#262626; transform=&quot;translate(44.062969 206.795703)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#ArialMT-41 /&gt;&lt;use x=66.699219 xlink:href=#ArialMT-67 /&gt;&lt;use x=122.314453 xlink:href=#ArialMT-65 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=PolyCollection_1&gt;&lt;defs&gt;&lt;path id=C0_0_a66cb480e9 d=&quot;M 105.818182 -57.4275 \n",
"L 105.818182 -68.7525 \n",
"L 92.290909 -74.415 \n",
"L 78.763637 -68.7525 \n",
"L 78.763637 -57.4275 \n",
"L 92.290909 -51.765 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=-0 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#d2dee9;stroke:#d2dee9; x=54.109091 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=81.163636 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#6e9fca;stroke:#6e9fca; x=135.272727 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#78a5cd;stroke:#78a5cd; x=162.327272 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#99bad7;stroke:#99bad7; x=189.381818 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#b9cee1;stroke:#b9cee1; x=216.436363 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=243.490909 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=270.545454 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#d2dee9;stroke:#d2dee9; x=297.6 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=324.654545 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=351.709091 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a66cb480e9 y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a66cb480e9 y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a66cb480e9 y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a66cb480e9 y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a66cb480e9 y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a66cb480e9 y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a66cb480e9 y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a66cb480e9 y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_a66cb480e9 y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#d2dee9;stroke:#d2dee9; x=13.527272 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#dae3ec;stroke:#dae3ec; x=40.581818 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#d4dfea;stroke:#d4dfea; x=67.636363 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=94.690909 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#337ab7;stroke:#337ab7; x=121.745454 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#6d9ec9;stroke:#6d9ec9; x=175.854545 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=229.963636 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#cad9e7;stroke:#cad9e7; x=284.072727 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=311.127272 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=338.181818 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=365.236363 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a66cb480e9 y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a66cb480e9 y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a66cb480e9 y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a66cb480e9 y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a66cb480e9 y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a66cb480e9 y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a66cb480e9 y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p6dd7be97fb)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=392.290909 xlink:href=#C0_0_a66cb480e9 y=141.1875 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path style=fill:none; d=&quot;M 72 346.5 \n",
"L 72 47.52 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path style=fill:none; d=&quot;M 518.4 346.5 \n",
"L 518.4 47.52 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 72 346.5 \n",
"L 518.4 346.5 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 72 47.52 \n",
"L 518.4 47.52 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p6dd7be97fb&gt;&lt;rect height=298.98 width=446.4 x=72 y=47.52 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=interactions_age-interactions_age_sibsp&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=396pt version=1.1 viewbox=&quot;0 0 576 396&quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:44.786836&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 396 \n",
"L 576 396 \n",
"L 576 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 72 346.5 \n",
"L 518.4 346.5 \n",
"L 518.4 47.52 \n",
"L 72 47.52 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(89.510441 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(137.457245 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(188.184517 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(238.91179 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(289.639062 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-34 transform=scale(0.015625) d=&quot;M 2069 0 \n",
"L 2069 1097 \n",
"L 81 1097 \n",
"L 81 1613 \n",
"L 2172 4581 \n",
"L 2631 4581 \n",
"L 2631 1613 \n",
"L 3250 1613 \n",
"L 3250 1097 \n",
"L 2631 1097 \n",
"L 2631 0 \n",
"L 2069 0 \n",
"z\n",
"M 2069 1613 \n",
"L 2069 3678 \n",
"L 634 1613 \n",
"L 2069 1613 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(340.366335 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-35 transform=scale(0.015625) d=&quot;M 266 1200 \n",
"L 856 1250 \n",
"Q 922 819 1161 601 \n",
"Q 1400 384 1738 384 \n",
"Q 2144 384 2425 690 \n",
"Q 2706 997 2706 1503 \n",
"Q 2706 1984 2436 2262 \n",
"Q 2166 2541 1728 2541 \n",
"Q 1456 2541 1237 2417 \n",
"Q 1019 2294 894 2097 \n",
"L 366 2166 \n",
"L 809 4519 \n",
"L 3088 4519 \n",
"L 3088 3981 \n",
"L 1259 3981 \n",
"L 1013 2750 \n",
"Q 1425 3038 1878 3038 \n",
"Q 2478 3038 2890 2622 \n",
"Q 3303 2206 3303 1553 \n",
"Q 3303 931 2941 478 \n",
"Q 2500 -78 1738 -78 \n",
"Q 1113 -78 717 272 \n",
"Q 322 622 266 1200 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(391.093608 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-36 transform=scale(0.015625) d=&quot;M 3184 3459 \n",
"L 2625 3416 \n",
"Q 2550 3747 2413 3897 \n",
"Q 2184 4138 1850 4138 \n",
"Q 1581 4138 1378 3988 \n",
"Q 1113 3794 959 3422 \n",
"Q 806 3050 800 2363 \n",
"Q 1003 2672 1297 2822 \n",
"Q 1591 2972 1913 2972 \n",
"Q 2475 2972 2870 2558 \n",
"Q 3266 2144 3266 1488 \n",
"Q 3266 1056 3080 686 \n",
"Q 2894 316 2569 119 \n",
"Q 2244 -78 1831 -78 \n",
"Q 1128 -78 684 439 \n",
"Q 241 956 241 2144 \n",
"Q 241 3472 731 4075 \n",
"Q 1159 4600 1884 4600 \n",
"Q 2425 4600 2770 4297 \n",
"Q 3116 3994 3184 3459 \n",
"z\n",
"M 888 1484 \n",
"Q 888 1194 1011 928 \n",
"Q 1134 663 1356 523 \n",
"Q 1578 384 1822 384 \n",
"Q 2178 384 2434 671 \n",
"Q 2691 959 2691 1453 \n",
"Q 2691 1928 2437 2201 \n",
"Q 2184 2475 1800 2475 \n",
"Q 1419 2475 1153 2201 \n",
"Q 888 1928 888 1484 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_8&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(441.82088 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-37 transform=scale(0.015625) d=&quot;M 303 3981 \n",
"L 303 4522 \n",
"L 3269 4522 \n",
"L 3269 4084 \n",
"Q 2831 3619 2401 2847 \n",
"Q 1972 2075 1738 1259 \n",
"Q 1569 684 1522 0 \n",
"L 944 0 \n",
"Q 953 541 1156 1306 \n",
"Q 1359 2072 1739 2783 \n",
"Q 2119 3494 2547 3981 \n",
"L 303 3981 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-37 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_9&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(492.548153 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-38 transform=scale(0.015625) d=&quot;M 1131 2484 \n",
"Q 781 2613 612 2850 \n",
"Q 444 3088 444 3419 \n",
"Q 444 3919 803 4259 \n",
"Q 1163 4600 1759 4600 \n",
"Q 2359 4600 2725 4251 \n",
"Q 3091 3903 3091 3403 \n",
"Q 3091 3084 2923 2848 \n",
"Q 2756 2613 2416 2484 \n",
"Q 2838 2347 3058 2040 \n",
"Q 3278 1734 3278 1309 \n",
"Q 3278 722 2862 322 \n",
"Q 2447 -78 1769 -78 \n",
"Q 1091 -78 675 323 \n",
"Q 259 725 259 1325 \n",
"Q 259 1772 486 2073 \n",
"Q 713 2375 1131 2484 \n",
"z\n",
"M 1019 3438 \n",
"Q 1019 3113 1228 2906 \n",
"Q 1438 2700 1772 2700 \n",
"Q 2097 2700 2305 2904 \n",
"Q 2513 3109 2513 3406 \n",
"Q 2513 3716 2298 3927 \n",
"Q 2084 4138 1766 4138 \n",
"Q 1444 4138 1231 3931 \n",
"Q 1019 3725 1019 3438 \n",
"z\n",
"M 838 1322 \n",
"Q 838 1081 952 856 \n",
"Q 1066 631 1291 507 \n",
"Q 1516 384 1775 384 \n",
"Q 2178 384 2440 643 \n",
"Q 2703 903 2703 1303 \n",
"Q 2703 1709 2433 1975 \n",
"Q 2163 2241 1756 2241 \n",
"Q 1359 2241 1098 1978 \n",
"Q 838 1716 838 1322 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(285.414297 378.018906)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-41 transform=scale(0.015625) d=&quot;M -9 0 \n",
"L 1750 4581 \n",
"L 2403 4581 \n",
"L 4278 0 \n",
"L 3588 0 \n",
"L 3053 1388 \n",
"L 1138 1388 \n",
"L 634 0 \n",
"L -9 0 \n",
"z\n",
"M 1313 1881 \n",
"L 2866 1881 \n",
"L 2388 3150 \n",
"Q 2169 3728 2063 4100 \n",
"Q 1975 3659 1816 3225 \n",
"L 1313 1881 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-67 transform=scale(0.015625) d=&quot;M 319 -275 \n",
"L 866 -356 \n",
"Q 900 -609 1056 -725 \n",
"Q 1266 -881 1628 -881 \n",
"Q 2019 -881 2231 -725 \n",
"Q 2444 -569 2519 -288 \n",
"Q 2563 -116 2559 434 \n",
"Q 2191 0 1641 0 \n",
"Q 956 0 581 494 \n",
"Q 206 988 206 1678 \n",
"Q 206 2153 378 2554 \n",
"Q 550 2956 876 3175 \n",
"Q 1203 3394 1644 3394 \n",
"Q 2231 3394 2613 2919 \n",
"L 2613 3319 \n",
"L 3131 3319 \n",
"L 3131 450 \n",
"Q 3131 -325 2973 -648 \n",
"Q 2816 -972 2473 -1159 \n",
"Q 2131 -1347 1631 -1347 \n",
"Q 1038 -1347 672 -1080 \n",
"Q 306 -813 319 -275 \n",
"z\n",
"M 784 1719 \n",
"Q 784 1066 1043 766 \n",
"Q 1303 466 1694 466 \n",
"Q 2081 466 2343 764 \n",
"Q 2606 1063 2606 1700 \n",
"Q 2606 2309 2336 2618 \n",
"Q 2066 2928 1684 2928 \n",
"Q 1309 2928 1046 2623 \n",
"Q 784 2319 784 1719 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-65 transform=scale(0.015625) d=&quot;M 2694 1069 \n",
"L 3275 997 \n",
"Q 3138 488 2766 206 \n",
"Q 2394 -75 1816 -75 \n",
"Q 1088 -75 661 373 \n",
"Q 234 822 234 1631 \n",
"Q 234 2469 665 2931 \n",
"Q 1097 3394 1784 3394 \n",
"Q 2450 3394 2872 2941 \n",
"Q 3294 2488 3294 1666 \n",
"Q 3294 1616 3291 1516 \n",
"L 816 1516 \n",
"Q 847 969 1125 678 \n",
"Q 1403 388 1819 388 \n",
"Q 2128 388 2347 550 \n",
"Q 2566 713 2694 1069 \n",
"z\n",
"M 847 1978 \n",
"L 2700 1978 \n",
"Q 2663 2397 2488 2606 \n",
"Q 2219 2931 1791 2931 \n",
"Q 1403 2931 1139 2672 \n",
"Q 875 2413 847 1978 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-41 /&gt;&lt;use x=66.699219 xlink:href=#ArialMT-67 /&gt;&lt;use x=122.314453 xlink:href=#ArialMT-65 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 336.488906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 302.513906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 268.538906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_14&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 234.563906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_15&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 200.588906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-34 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_16&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 166.613906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-35 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_17&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 132.638906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-36 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_8&gt;&lt;g id=text_18&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 98.663906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-37 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_9&gt;&lt;g id=text_19&gt;&lt;g style=fill:#262626; transform=&quot;translate(55.939062 64.688906)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#ArialMT-38 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_20&gt;&lt;g style=fill:#262626; transform=&quot;translate(49.752812 211.686406)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-53 transform=scale(0.015625) d=&quot;M 288 1472 \n",
"L 859 1522 \n",
"Q 900 1178 1048 958 \n",
"Q 1197 738 1509 602 \n",
"Q 1822 466 2213 466 \n",
"Q 2559 466 2825 569 \n",
"Q 3091 672 3220 851 \n",
"Q 3350 1031 3350 1244 \n",
"Q 3350 1459 3225 1620 \n",
"Q 3100 1781 2813 1891 \n",
"Q 2628 1963 1997 2114 \n",
"Q 1366 2266 1113 2400 \n",
"Q 784 2572 623 2826 \n",
"Q 463 3081 463 3397 \n",
"Q 463 3744 659 4045 \n",
"Q 856 4347 1234 4503 \n",
"Q 1613 4659 2075 4659 \n",
"Q 2584 4659 2973 4495 \n",
"Q 3363 4331 3572 4012 \n",
"Q 3781 3694 3797 3291 \n",
"L 3216 3247 \n",
"Q 3169 3681 2898 3903 \n",
"Q 2628 4125 2100 4125 \n",
"Q 1550 4125 1298 3923 \n",
"Q 1047 3722 1047 3438 \n",
"Q 1047 3191 1225 3031 \n",
"Q 1400 2872 2139 2705 \n",
"Q 2878 2538 3153 2413 \n",
"Q 3553 2228 3743 1945 \n",
"Q 3934 1663 3934 1294 \n",
"Q 3934 928 3725 604 \n",
"Q 3516 281 3123 101 \n",
"Q 2731 -78 2241 -78 \n",
"Q 1619 -78 1198 103 \n",
"Q 778 284 539 648 \n",
"Q 300 1013 288 1472 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-69 transform=scale(0.015625) d=&quot;M 425 3934 \n",
"L 425 4581 \n",
"L 988 4581 \n",
"L 988 3934 \n",
"L 425 3934 \n",
"z\n",
"M 425 0 \n",
"L 425 3319 \n",
"L 988 3319 \n",
"L 988 0 \n",
"L 425 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-62 transform=scale(0.015625) d=&quot;M 941 0 \n",
"L 419 0 \n",
"L 419 4581 \n",
"L 981 4581 \n",
"L 981 2947 \n",
"Q 1338 3394 1891 3394 \n",
"Q 2197 3394 2470 3270 \n",
"Q 2744 3147 2920 2923 \n",
"Q 3097 2700 3197 2384 \n",
"Q 3297 2069 3297 1709 \n",
"Q 3297 856 2875 390 \n",
"Q 2453 -75 1863 -75 \n",
"Q 1275 -75 941 416 \n",
"L 941 0 \n",
"z\n",
"M 934 1684 \n",
"Q 934 1088 1097 822 \n",
"Q 1363 388 1816 388 \n",
"Q 2184 388 2453 708 \n",
"Q 2722 1028 2722 1663 \n",
"Q 2722 2313 2464 2622 \n",
"Q 2206 2931 1841 2931 \n",
"Q 1472 2931 1203 2611 \n",
"Q 934 2291 934 1684 \n",
"z\n",
"&quot;/&gt;&lt;path id=ArialMT-70 transform=scale(0.015625) d=&quot;M 422 -1272 \n",
"L 422 3319 \n",
"L 934 3319 \n",
"L 934 2888 \n",
"Q 1116 3141 1344 3267 \n",
"Q 1572 3394 1897 3394 \n",
"Q 2322 3394 2647 3175 \n",
"Q 2972 2956 3137 2557 \n",
"Q 3303 2159 3303 1684 \n",
"Q 3303 1175 3120 767 \n",
"Q 2938 359 2589 142 \n",
"Q 2241 -75 1856 -75 \n",
"Q 1575 -75 1351 44 \n",
"Q 1128 163 984 344 \n",
"L 984 -1272 \n",
"L 422 -1272 \n",
"z\n",
"M 931 1641 \n",
"Q 931 1000 1190 694 \n",
"Q 1450 388 1819 388 \n",
"Q 2194 388 2461 705 \n",
"Q 2728 1022 2728 1688 \n",
"Q 2728 2322 2467 2637 \n",
"Q 2206 2953 1844 2953 \n",
"Q 1484 2953 1207 2617 \n",
"Q 931 2281 931 1641 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-53 /&gt;&lt;use x=66.699219 xlink:href=#ArialMT-69 /&gt;&lt;use x=88.916016 xlink:href=#ArialMT-62 /&gt;&lt;use x=144.53125 xlink:href=#ArialMT-53 /&gt;&lt;use x=211.230469 xlink:href=#ArialMT-70 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=PolyCollection_1&gt;&lt;defs&gt;&lt;path id=C0_0_52e1eaf1fd d=&quot;M 105.818182 -57.4275 \n",
"L 105.818182 -68.7525 \n",
"L 92.290909 -74.415 \n",
"L 78.763637 -68.7525 \n",
"L 78.763637 -57.4275 \n",
"L 92.290909 -51.765 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-0 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#dce4ec;stroke:#dce4ec; x=-0 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eceef1;stroke:#eceef1; x=-0 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-0 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e6ebef;stroke:#e6ebef; x=27.054545 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eceef1;stroke:#eceef1; x=27.054545 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e6ebef;stroke:#e6ebef; x=27.054545 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=54.109091 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e6ebef;stroke:#e6ebef; x=54.109091 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=54.109091 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#a3c0da;stroke:#a3c0da; x=81.163636 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#d2dee9;stroke:#d2dee9; x=81.163636 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#4686bd;stroke:#4686bd; x=108.218181 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#d0dde8;stroke:#d0dde8; x=108.218181 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e6ebef;stroke:#e6ebef; x=108.218181 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#337ab7;stroke:#337ab7; x=135.272727 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#adc7dd;stroke:#adc7dd; x=135.272727 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=135.272727 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eceef1;stroke:#eceef1; x=135.272727 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#77a5cc;stroke:#77a5cc; x=162.327272 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=162.327272 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eceef1;stroke:#eceef1; x=162.327272 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=189.381818 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#bed2e3;stroke:#bed2e3; x=189.381818 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=189.381818 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=189.381818 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#afc8de;stroke:#afc8de; x=216.436363 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=216.436363 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=243.490909 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#d0dde8;stroke:#d0dde8; x=243.490909 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#cedce8;stroke:#cedce8; x=270.545454 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=270.545454 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#edeff2;stroke:#edeff2; x=270.545454 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=297.6 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e6ebef;stroke:#e6ebef; x=297.6 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=297.6 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=324.654545 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=324.654545 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#ebeef1;stroke:#ebeef1; x=351.709091 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#edeff2;stroke:#edeff2; x=351.709091 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=378.763636 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=378.763636 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_52e1eaf1fd y=396 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_52e1eaf1fd y=362.025 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_52e1eaf1fd y=328.05 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_52e1eaf1fd y=294.075 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_52e1eaf1fd y=260.1 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_52e1eaf1fd y=226.125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_52e1eaf1fd y=192.15 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_52e1eaf1fd y=158.175 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_52e1eaf1fd y=124.2 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_52e1eaf1fd y=379.0125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_52e1eaf1fd y=345.0375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_52e1eaf1fd y=311.0625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_52e1eaf1fd y=277.0875 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_52e1eaf1fd y=243.1125 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_52e1eaf1fd y=209.1375 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_52e1eaf1fd y=175.1625 /&gt;&lt;/g&gt;&lt;g clip-path=url(#p4347659ac9)&gt;&lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_52e1eaf1fd y=141.1875 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path style=fill:none; d=&quot;M 72 346.5 \n",
"L 72 47.52 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path style=fill:none; d=&quot;M 518.4 346.5 \n",
"L 518.4 47.52 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 72 346.5 \n",
"L 518.4 346.5 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 72 47.52 \n",
"L 518.4 47.52 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p4347659ac9&gt;&lt;rect height=298.98 width=446.4 x=72 y=47.52 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=interactions_age-interactions_age_parch&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=396pt version=1.1 viewbox=&quot;0 0 576 396&quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;metadata&gt;&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#&gt;&lt;cc:work&gt;&lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&gt;&lt;dc:date&gt;2021-10-31T16:54:44.935977&lt;/dc:date&gt;&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;&lt;dc:creator&gt;&lt;cc:agent&gt;&lt;dc:title&gt;Matplotlib v3.4.3, https://matplotlib.org/&lt;/dc:title&gt;&lt;/cc:agent&gt;&lt;/dc:creator&gt;&lt;/cc:work&gt;&lt;/rdf:rdf&gt;&lt;/metadata&gt;&lt;defs&gt;&lt;style type=text/css&gt;*{stroke-linecap:butt;stroke-linejoin:round;}&lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 396 \n",
"L 576 396 \n",
"L 576 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 72 346.5 \n",
"L 518.4 346.5 \n",
"L 518.4 47.52 \n",
"L 72 47.52 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;g style=fill:#262626; transform=&quot;translate(89.510441 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-30 transform=scale(0.015625) d=&quot;M 266 2259 \n",
"Q 266 3072 433 3567 \n",
"Q 600 4063 929 4331 \n",
"Q 1259 4600 1759 4600 \n",
"Q 2128 4600 2406 4451 \n",
"Q 2684 4303 2865 4023 \n",
"Q 3047 3744 3150 3342 \n",
"Q 3253 2941 3253 2259 \n",
"Q 3253 1453 3087 958 \n",
"Q 2922 463 2592 192 \n",
"Q 2263 -78 1759 -78 \n",
"Q 1097 -78 719 397 \n",
"Q 266 969 266 2259 \n",
"z\n",
"M 844 2259 \n",
"Q 844 1131 1108 757 \n",
"Q 1372 384 1759 384 \n",
"Q 2147 384 2411 759 \n",
"Q 2675 1134 2675 2259 \n",
"Q 2675 3391 2411 3762 \n",
"Q 2147 4134 1753 4134 \n",
"Q 1366 4134 1134 3806 \n",
"Q 844 3388 844 2259 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(137.457245 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-31 transform=scale(0.015625) d=&quot;M 2384 0 \n",
"L 1822 0 \n",
"L 1822 3584 \n",
"Q 1619 3391 1289 3197 \n",
"Q 959 3003 697 2906 \n",
"L 697 3450 \n",
"Q 1169 3672 1522 3987 \n",
"Q 1875 4303 2022 4600 \n",
"L 2384 4600 \n",
"L 2384 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-31 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(188.184517 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-32 transform=scale(0.015625) d=&quot;M 3222 541 \n",
"L 3222 0 \n",
"L 194 0 \n",
"Q 188 203 259 391 \n",
"Q 375 700 629 1000 \n",
"Q 884 1300 1366 1694 \n",
"Q 2113 2306 2375 2664 \n",
"Q 2638 3022 2638 3341 \n",
"Q 2638 3675 2398 3904 \n",
"Q 2159 4134 1775 4134 \n",
"Q 1369 4134 1125 3890 \n",
"Q 881 3647 878 3216 \n",
"L 300 3275 \n",
"Q 359 3922 746 4261 \n",
"Q 1134 4600 1788 4600 \n",
"Q 2447 4600 2831 4234 \n",
"Q 3216 3869 3216 3328 \n",
"Q 3216 3053 3103 2787 \n",
"Q 2991 2522 2730 2228 \n",
"Q 2469 1934 1863 1422 \n",
"Q 1356 997 1212 845 \n",
"Q 1069 694 975 541 \n",
"L 3222 541 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-32 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(238.91179 364.157812)scale(0.1 -0.1)&quot;&gt;&lt;defs&gt;&lt;path id=ArialMT-33 transform=scale(0.015625) d=&quot;M 269 1209 \n",
"L 831 1284 \n",
"Q 928 806 1161 595 \n",
"Q 1394 384 1728 384 \n",
"Q 2125 384 2398 659 \n",
"Q 2672 934 2672 1341 \n",
"Q 2672 1728 2419 1979 \n",
"Q 2166 2231 1775 2231 \n",
"Q 1616 2231 1378 2169 \n",
"L 1441 2663 \n",
"Q 1497 2656 1531 2656 \n",
"Q 1891 2656 2178 2843 \n",
"Q 2466 3031 2466 3422 \n",
"Q 2466 3731 2256 3934 \n",
"Q 2047 4138 1716 4138 \n",
"Q 1388 4138 1169 3931 \n",
"Q 950 3725 888 3313 \n",
"L 325 3413 \n",
"Q 428 3978 793 4289 \n",
"Q 1159 4600 1703 4600 \n",
"Q 2078 4600 2393 4439 \n",
"Q 2709 4278 2876 4000 \n",
"Q 3044 3722 3044 3409 \n",
"Q 3044 3113 2884 2869 \n",
"Q 2725 2625 2413 2481 \n",
"Q 2819 2388 3044 2092 \n",
"Q 3269 1797 3269 1353 \n",
"Q 3269 753 2831 336 \n",
"Q 2394 -81 1725 -81 \n",
"Q 1122 -81 723 278 \n",
"Q 325 638 269 1209 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;use xlink:href=#ArialMT-33 /&gt;&lt;use x=55.615234 xlink:href=#ArialMT-30 /&gt;&lt;/g&gt;&lt;/g&gt;&
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment