HSG-MCS-HS21_Julia/Exam2/Exam2.ipynb

1148 lines
287 KiB
Plaintext
Raw Normal View History

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Load Packages"
]
},
{
"cell_type": "code",
"execution_count": 90,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"TaskLocalRNG()"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"using Printf, Statistics, StatsBase, Random, Distributions\n",
"include(\"jlFiles/printmat.jl\")\n",
"Random.seed!(678) #set the random number generator to this starting point"
]
},
{
"cell_type": "code",
"execution_count": 91,
"metadata": {},
"outputs": [],
"source": [
"using Plots\n",
"\n",
"gr(size=(480,320))\n",
"default(fmt = :svg)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Introduction\n",
"\n",
"This exam explores how autocorrelation ought to change how we test statistical hypotheses."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 1\n",
"\n",
"Code a function for simulating $T$ observations from an AR(1) series\n",
"\n",
"$\n",
"y_t = (1-\\rho)\\mu + \\rho y_{t-1} + \\varepsilon_t \\sigma\n",
"$\n",
"where $\\varepsilon_t$ is N(0,1).\n",
"\n",
"That is, generate $y_1,y_2,...,y_T$ from this formula.\n",
"\n",
"To make also the starting value ($y_0$) random, simulate $T+100$ data points, but then discard the first 100 values of $y_t$.\n",
"\n",
"Generate a single \"sample\" using `(T,ρ,σ,μ) = (500,0,3,2)`. Calculate and report the average (mean) and the first 5 autocorrelations (hint: `autocor()`) of this sample. Redo a 2nd time, but with `ρ=0.75`."
]
},
{
"cell_type": "code",
"execution_count": 92,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"SimAR1 (generic function with 1 method)"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"function SimAR1(T,ρ,σ,μ)\n",
" y = fill(NaN, T + 100)\n",
" e = rand(Normal(0, 1), T + 100)\n",
" y[1] = 1\n",
" for i = 2:T + 100\n",
" y[i] = (1-ρ)μ + ρ*y[i-1] + e[i]*σ\n",
" end\n",
" return y[101:end]\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 93,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"average from one sample with ρ=0 1.986\n",
"\n",
"autocorrelations with ρ=0\n",
"\n",
" 1 -0.016\n",
" 2 0.027\n",
" 3 0.004\n",
" 4 0.004\n",
" 5 0.008\n",
"\n"
]
}
],
"source": [
"y1 = SimAR1(500,0,3,2)\n",
"\n",
"printmat(\"average from one sample with ρ=0\", mean(y1))\n",
"\n",
"printmat(\"autocorrelations with ρ=0\")\n",
"printmat(1:5, autocor(y1)[2:6])"
]
},
{
"cell_type": "code",
"execution_count": 94,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"average from one sample with ρ=0.75 3.187\n",
"\n",
"autocorrelations with ρ=0.75\n",
"\n",
" 1 0.766\n",
" 2 0.580\n",
" 3 0.495\n",
" 4 0.441\n",
" 5 0.372\n",
"\n"
]
}
],
"source": [
"y2 = SimAR1(500,0.75,3,2)\n",
"\n",
"printmat(\"average from one sample with ρ=0.75\", mean(y2))\n",
"\n",
"printmat(\"autocorrelations with ρ=0.75\")\n",
"printmat(1:5, autocor(y2)[2:6])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 2\n",
"\n",
"Do a Monte Carlo simulation. Use the parameters `(T,ρ,σ,μ) = (500,0,3,2)`.\n",
"\n",
"1. Generate a sample with $T$ observations and calculate the average. Repeat $M=10,000$ times and store the estimated averages in a vector of length $M$. (The rest of the question uses the symbol $\\mu_i$ to denote the average from sample $i$.)\n",
"\n",
"2. What is average $\\mu_i$ across the $M$ estimates? (That is, what is $\\frac{1}{M}\\sum\\nolimits_{i=1}^{M}\\mu_i$?) _Report_ the result.\n",
"\n",
"3. What is the standard deviation of $\\mu_i$ across the $M$ estimates? Compare with the theoretical standard deviation (see below). _Report_ the result.\n",
"\n",
"4. Does the distribution of $\\mu_i$ look normal? _Plot_ a histogram and compare with the theoretical pdf (see below).\n",
"\n",
"\n",
"## ...basic stats (the theoretical results)\n",
"\n",
"says that the sample average of an iid (\"independently and identically distributed\") data series is normally distributed with a mean equal to the true (population) mean $\\mu$ and a standard deviation equal to $s=\\sigma_y/\\sqrt{T}$ where $\\sigma_y$ is the standard deviation of $y$.\n",
"\n",
"To compare with our simulation results, you could estimate $\\sigma_y$ from a single simulation with very many observations (say 10'000)."
]
},
{
"cell_type": "code",
"execution_count": 95,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Average across the simulations: 2.001\n",
"\n",
"Std across the samples (with ρ=0) and in theory:\n",
"simulations theory\n",
" 0.134 0.133\n",
"\n"
]
}
],
"source": [
"M = 10_000\n",
"\n",
"(T,ρ1,σ,μ) = (500,0,3,2)\n",
"\n",
"μi1 = fill(NaN, M)\n",
"σi1 = fill(NaN, M)\n",
"\n",
"# Monte Carlo simulation\n",
"for i = 1:M\n",
" y = SimAR1(T, ρ1, σ, μ)\n",
" μi1[i] = mean(y)\n",
" σi1[i] = std(y)\n",
"end\n",
"\n",
"# Theoretical results\n",
"y1 = SimAR1(10_000,ρ1,σ,μ)\n",
"σy1 = std(y1)\n",
"s1 = σy1/sqrt(T)\n",
"\n",
"printmat(\"Average across the simulations:\", mean(μi1))\n",
"println(\"Std across the samples (with ρ=0) and in theory:\")\n",
"printmat([\"simulations\", std(μi1)], [\"theory\", s1])"
]
},
{
"cell_type": "code",
"execution_count": 96,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n<defs>\n <clipPath id=\"clip500\">\n <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip500)\" d=\"\nM0 1280 L1920 1280 L1920 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip501\">\n <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip500)\" d=\"\nM106.081 1169.65 L1872.76 1169.65 L1872.76 123.472 L106.081 123.472 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip502\">\n <rect x=\"106\" y=\"123\" width=\"1768\" height=\"1047\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 203.251,1169.65 203.251,123.472 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 596.335,1169.65 596.335,123.472 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 989.418,1169.65 989.418,123.472 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1382.5,1169.65 1382.5,123.472 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1775.59,1169.65 1775.59,123.472 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 106.081,1169.65 1872.76,1169.65 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 203.251,1169.65 203.251,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 596.335,1169.65 596.335,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 989.418,1169.65 989.418,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1382.5,1169.65 1382.5,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1775.59,1169.65 1775.59,1150.75 \n \"/>\n<path clip-path=\"url(#clip500)\" d=\"M203.251 1196.73 Q199.64 1196.73 197.811 1200.29 Q196.006 1203.83 196.006 1210.96 Q196.006 1218.07 197.811 1221.63 Q199.64 1225.18 203.251 1225.18 Q206.885 1225.18 208.691 1221.63 Q210.52 1218.07 210.52 1210.96 Q210.52 1203.83 208.691 1200.29 Q206.885 1196.73 203.251 1196.73 M203.251 1193.02 Q209.061 1193.02 212.117 1197.63 Q215.196 1202.21 215.196 1210.96 Q215.196 1219.69 212.117 1224.3 Q209.061 1228.88 203.251 1228.88 Q197.441 1228.88 194.362 1224.3 Q191.307 1219.69 191.307 1210.96 Q191.307 1202.21 194.362 1197.63 Q197.441 1193.02 203.251 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M586.717 1224.27 L594.356 1224.27 L594.356 1197.91 L586.045 1199.57 L586.045 1195.31 L594.309 1193.65 L598.985 1193.65 L598.985 1224.27 L606.624 1224.27 L606.624 1228.21 L586.717 1228.21 L586.717 1224.27 Z\" fill=\"#
"text/html": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n",
"<defs>\n",
" <clipPath id=\"clip550\">\n",
" <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip550)\" d=\"\n",
"M0 1280 L1920 1280 L1920 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip551\">\n",
" <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip550)\" d=\"\n",
"M106.081 1169.65 L1872.76 1169.65 L1872.76 123.472 L106.081 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip552\">\n",
" <rect x=\"106\" y=\"123\" width=\"1768\" height=\"1047\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 203.251,1169.65 203.251,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 596.335,1169.65 596.335,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 989.418,1169.65 989.418,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1382.5,1169.65 1382.5,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1775.59,1169.65 1775.59,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,1169.65 1872.76,1169.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 203.251,1169.65 203.251,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 596.335,1169.65 596.335,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 989.418,1169.65 989.418,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1382.5,1169.65 1382.5,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1775.59,1169.65 1775.59,1150.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip550)\" d=\"M203.251 1196.73 Q199.64 1196.73 197.811 1200.29 Q196.006 1203.83 196.006 1210.96 Q196.006 1218.07 197.811 1221.63 Q199.64 1225.18 203.251 1225.18 Q206.885 1225.18 208.691 1221.63 Q210.52 1218.07 210.52 1210.96 Q210.52 1203.83 208.691 1200.29 Q206.885 1196.73 203.251 1196.73 M203.251 1193.02 Q209.061 1193.02 212.117 1197.63 Q215.196 1202.21 215.196 1210.96 Q215.196 1219.69 212.117 1224.3 Q209.061 1228.88 203.251 1228.88 Q197.441 1228.88 194.362 1224.3 Q191.307 1219.69 191.307 1210.96 Q191.307 1202.21 194.362 1197.63 Q197.441 1193.02 203.251 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M586.717 1224.27 L594.356 1224.27 L594.356 1197.91 L586.045 1199.57 L586.045 1195.31 L594.309 1193.65 L598.985 1193.65 L598.985 1224.27 L606.624 1224.27 L606.624 1228.21 L586.717 1228.21 L586.717 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M984.071 1224.27 L1000.39 1224.27 L1000.39 1228.21 L978.446 1228.21 L978.446 1224.27 Q981.108 1221.52 985.692 1216.89 Q990.298 1212.24 991.479 1210.89 Q993.724 1208.37 994.604 1206.63 Q995.506 1204.87 995.506 1203.18 Q995.506 1200.43 993.562 1198.69 Q991.641 1196.96 988.539 1196.96 Q986.34 1196.96 983.886 1197.72 Q981.455 1198.49 978.678 1200.04 L978.678 1195.31 Q981.502 1194.18 983.955 1193.6 Q986.409 1193.02 988.446 1193.02 Q993.817 1193.02 997.011 1195.71 Q1000.21 1198.39 1000.21 1202.88 Q1000.21 1205.01 999.395 1206.93 Q998.608 1208.83 996.502 1211.43 Q995.923 1212.1 992.821 1215.31 Q989.719 1218.51 984.071 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1386.75 1209.57 Q1390.11 1210.29 1391.98 1212.56 Q1393.88 1214.83 1393.88 1218.16 Q1393.88 1223.28 1390.36 1226.08 Q1386.84 1228.88 1380.36 1228.88 Q1378.18 1228.88 1375.87 1228.44 Q1373.58 1228.02 1371.12 1227.17 L1371.12 1222.65 Q1373.07 1223.79 1375.38 1224.37 Q1377.7 1224.94 1380.22 1224.94 Q1384.62 1224.94 1386.91 1223.21 Q1389.23 1221.47 1389.23 1218.16 Q1389.23 1215.11 1387.07 1213.39 Q1384.94 1211.66 1381.12 1211.66 L1377.1 1211.66 L1377.1 1207.81 L1381.31 1207.81 Q1384.76 1207.81 1386.59 1206.45 Q1388.42 1205.06 1388.42 1202.47 Q1388.42 1199.81 1386.52 1198.39 Q1384.64 1196.96 1381.12 1196.96 Q1379.2 1196.96 1377 1197.37 Q1374.81 1197.79 1372.17 1198.67 L1372.17 1194.5 Q1374.83 1193.76 1377.14 1193.39 Q1379.48 1193.02 1381.54 1193.02 Q1386.87 1193.02 1389.97 1195.45 Q1393.07 1197.86 1393.07 1201.98 Q1393.07 1204.85 1391.43 1206.84 Q1389.78 1208.81 1386.75 1209.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1778.59 1197.72 L1766.79 1216.17 L1778.59 1216.17 L1778.59 1197.72 M1777.37 1193.65 L1783.25 1193.65 L1783.25 1216.17 L1788.18 1216.17 L1788.18 1220.06 L1783.25 1220.06 L1783.25 1228.21 L1778.59 1228.21 L1778.59 1220.06 L1762.99 1220.06 L1762.99 1215.55 L1777.37 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 106.081,1140.04 1872.76,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 106.081,811.44 1872.76,811.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 106.081,482.84 1872.76,482.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 106.081,154.24 1872.76,154.24 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,1169.65 106.081,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,1140.04 124.979,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,811.44 124.979,811.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,482.84 124.979,482.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,154.24 124.979,154.24 \n",
" \"/>\n",
"<path clip-path=\"url(#clip550)\" d=\"M65.3365 1125.84 Q61.7254 1125.84 59.8967 1129.4 Q58.0912 1132.94 58.0912 1140.07 Q58.0912 1147.18 59.8967 1150.75 Q61.7254 1154.29 65.3365 1154.29 Q68.9707 1154.29 70.7763 1150.75 Q72.605 1147.18 72.605 1140.07 Q72.605 1132.94 70.7763 1129.4 Q68.9707 1125.84 65.3365 1125.84 M65.3365 1122.13 Q71.1467 1122.13 74.2022 1126.74 Q77.2809 1131.32 77.2809 1140.07 Q77.2809 1148.8 74.2022 1153.41 Q71.1467 1157.99 65.3365 1157.99 Q59.5264 1157.99 56.4477 1153.41 Q53.3921 1148.8 53.3921 1140.07 Q53.3921 1131.32 56.4477 1126.74 Q59.5264 1122.13 65.3365 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M57.3736 824.784 L65.0124 824.784 L65.0124 798.419 L56.7023 800.085 L56.7023 795.826 L64.9661 794.16 L69.642 794.16 L69.642 824.784 L77.2809 824.784 L77.2809 828.72 L57.3736 828.72 L57.3736 824.784 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M60.9615 496.185 L77.2809 496.185 L77.2809 500.12 L55.3366 500.12 L55.3366 496.185 Q57.9986 493.43 62.5819 488.801 Q67.1883 484.148 68.3689 482.805 Q70.6143 480.282 71.4939 478.546 Q72.3967 476.787 72.3967 475.097 Q72.3967 472.342 70.4522 470.606 Q68.5309 468.87 65.4291 468.87 Q63.23 468.87 60.7763 469.634 Q58.3458 470.398 55.568 471.949 L55.568 467.227 Q58.3921 466.092 60.8458 465.514 Q63.2995 464.935 65.3365 464.935 Q70.7068 464.935 73.9013 467.62 Q77.0957 470.305 77.0957 474.796 Q77.0957 476.926 76.2855 478.847 Q75.4985 480.745 73.392 483.338 Q72.8133 484.009 69.7115 487.226 Q66.6096 490.421 60.9615 496.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M70.1513 152.886 Q73.5078 153.604 75.3827 155.872 Q77.2809 158.141 77.2809 161.474 Q77.2809 166.59 73.7624 169.391 Q70.2439 172.192 63.7624 172.192 Q61.5865 172.192 59.2717 171.752 Q56.9801 171.335 54.5264 170.479 L54.5264 165.965 Q56.4708 167.099 58.7856 167.678 Q61.1004 168.256 63.6236 168.256 Q68.0217 168.256 70.3133 166.52 Q72.6281 164.784 72.6281 161.474 Q72.6281 158.418 70.4754 156.706 Q68.3457 154.969 64.5263 154.969 L60.4986 154.969 L60.4986 151.127 L64.7115 151.127 Q68.1606 151.127 69.9893 149.761 Q71.818 148.372 71.818 145.78 Q71.818 143.118 69.9198 141.706 Q68.0448 140.27 64.5263 140.27 Q62.605 140.27 60.406 140.687 Q58.2069 141.104 55.568 141.983 L55.568 137.817 Q58.2301 137.076 60.5449 136.706 Q62.8828 136.335 64.943 136.335 Q70.267 136.335 73.3689 138.766 Q76.4707 141.173 76.4707 145.294 Q76.4707 148.164 74.8272 150.155 Q73.1837 152.122 70.1513 152.886 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M176.28 12.096 L184.463 12.096 L184.463 36.8875 L214.197 36.8875 L214.197 12.096 L222.38 12.096 L222.38 72.576 L214.197 72.576 L214.197 43.7741 L184.463 43.7741 L184.463 72.576 L176.28 72.576 L176.28 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M238.34 27.2059 L245.794 27.2059 L245.794 72.576 L238.34 72.576 L238.34 27.2059 M238.34 9.54393 L245.794 9.54393 L245.794 18.9825 L238.34 18.9825 L238.34 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M290.313 28.5427 L290.313 35.5912 Q287.154 33.9709 283.751 33.1607 Q280.348 32.3505 276.702 32.3505 Q271.153 32.3505 268.357 34.0519 Q265.603 35.7533 265.603 39.156 Q265.603 41.7486 267.588 43.2475 Q269.573 44.7058 275.568 46.0426 L278.12 46.6097 Q286.06 48.3111 289.382 51.4303 Q292.744 54.509 292.744 60.0587 Q292.744 66.3781 287.721 70.0644 Q282.738 73.7508 273.988 73.7508 Q270.342 73.7508 266.373 73.0216 Q262.443 72.3329 258.068 70.9151 L258.068 63.2184 Q262.2 65.3654 266.21 66.4591 Q270.221 67.5124 274.15 67.5124 Q279.416 67.5124 282.252 65.73 Q285.088 63.9071 285.088 60.6258 Q285.088 57.5877 283.022 55.9673 Q280.996 54.3469 274.069 52.8481 L271.477 52.2405 Q264.55 50.7821 261.471 47.7845 Q258.392 44.7463 258.392 39.4801 Q258.392 33.0797 262.929 29.5959 Q267.466 26.1121 275.811 26.1121 Q279.943 26.1121 2
"M203.251 1140.04 L203.251 1140.04 L242.56 1140.04 L242.56 1140.04 L203.251 1140.04 L203.251 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 203.251,1140.04 203.251,1140.04 242.56,1140.04 203.251,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M242.56 1140.04 L242.56 1140.04 L281.868 1140.04 L281.868 1140.04 L242.56 1140.04 L242.56 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 242.56,1140.04 242.56,1140.04 281.868,1140.04 242.56,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M281.868 1140.04 L281.868 1140.04 L321.176 1140.04 L321.176 1140.04 L281.868 1140.04 L281.868 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 281.868,1140.04 281.868,1140.04 321.176,1140.04 281.868,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M321.176 1140.04 L321.176 1140.04 L360.485 1140.04 L360.485 1140.04 L321.176 1140.04 L321.176 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 321.176,1140.04 321.176,1140.04 360.485,1140.04 321.176,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M360.485 1140.04 L360.485 1140.04 L399.793 1140.04 L399.793 1140.04 L360.485 1140.04 L360.485 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 360.485,1140.04 360.485,1140.04 399.793,1140.04 360.485,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M399.793 1140.04 L399.793 1140.04 L439.101 1140.04 L439.101 1140.04 L399.793 1140.04 L399.793 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 399.793,1140.04 399.793,1140.04 439.101,1140.04 399.793,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M439.101 1140.04 L439.101 1140.04 L478.41 1140.04 L478.41 1140.04 L439.101 1140.04 L439.101 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 439.101,1140.04 439.101,1140.04 478.41,1140.04 439.101,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M478.41 1140.04 L478.41 1140.04 L517.718 1140.04 L517.718 1140.04 L478.41 1140.04 L478.41 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 478.41,1140.04 478.41,1140.04 517.718,1140.04 478.41,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M517.718 1140.04 L517.718 1140.04 L557.026 1140.04 L557.026 1140.04 L517.718 1140.04 L517.718 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 517.718,1140.04 517.718,1140.04 557.026,1140.04 517.718,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M557.026 1140.04 L557.026 1140.04 L596.335 1140.04 L596.335 1140.04 L557.026 1140.04 L557.026 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 557.026,1140.04 557.026,1140.04 596.335,1140.04 557.026,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M596.335 1140.04 L596.335 1140.04 L635.643 1140.04 L635.643 1140.04 L596.335 1140.04 L596.335 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 596.335,1140.04 596.335,1140.04 635.643,1140.04 596.335,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M635.643 1140.04 L635.643 1140.04 L674.952 1140.04 L674.952 1140.04 L635.643 1140.04 L635.643 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 635.643,1140.04 635.643,1140.04 674.952,1140.04 635.643,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M674.952 1140.04 L674.952 1140.04 L714.26 1140.04 L714.26 1140.04 L674.952 1140.04 L674.952 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 674.952,1140.04 674.952,1140.04 714.26,1140.04 674.952,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M714.26 1139.71 L714.26 1140.04 L753.568 1140.04 L753.568 1139.71 L714.26 1139.71 L714.26 1139.71 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 714.26,1139.71 714.26,1140.04 753.568,1140.04 753.568,1139.71 714.26,1139.71 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M753.568 1140.04 L753.568 1140.04 L792.877 1140.04 L792.877 1140.04 L753.568 1140.04 L753.568 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 753.568,1140.04 753.568,1140.04 792.877,1140.04 753.568,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M792.877 1135.11 L792.877 1140.04 L832.185 1140.04 L832.185 1135.11 L792.877 1135.11 L792.877 1135.11 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 792.877,1135.11 792.877,1140.04 832.185,1140.04 832.185,1135.11 792.877,1135.11 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M832.185 1099.62 L832.185 1140.04 L871.493 1140.04 L871.493 1099.62 L832.185 1099.62 L832.185 1099.62 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 832.185,1099.62 832.185,1140.04 871.493,1140.04 871.493,1099.62 832.185,1099.62 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M871.493 970.153 L871.493 1140.04 L910.802 1140.04 L910.802 970.153 L871.493 970.153 L871.493 970.153 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 871.493,970.153 871.493,1140.04 910.802,1140.04 910.802,970.153 871.493,970.153 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M910.802 610.665 L910.802 1140.04 L950.11 1140.04 L950.11 610.665 L910.802 610.665 L910.802 610.665 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 910.802,610.665 910.802,1140.04 950.11,1140.04 950.11,610.665 910.802,610.665 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M950.11 242.962 L950.11 1140.04 L989.418 1140.04 L989.418 242.962 L950.11 242.962 L950.11 242.962 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 950.11,242.962 950.11,1140.04 989.418,1140.04 989.418,242.962 950.11,242.962 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M989.418 258.078 L989.418 1140.04 L1028.73 1140.04 L1028.73 258.078 L989.418 258.078 L989.418 258.078 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 989.418,258.078 989.418,1140.04 1028.73,1140.04 1028.73,258.078 989.418,258.078 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1028.73 597.85 L1028.73 1140.04 L1068.04 1140.04 L1068.04 597.85 L1028.73 597.85 L1028.73 597.85 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1028.73,597.85 1028.73,1140.04 1068.04,1140.04 1068.04,597.85 1028.73,597.85 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1068.04 959.638 L1068.04 1140.04 L1107.34 1140.04 L1107.34 959.638 L1068.04 959.638 L1068.04 959.638 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1068.04,959.638 1068.04,1140.04 1107.34,1140.04 1107.34,959.638 1068.04,959.638 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1107.34 1104.22 L1107.34 1140.04 L1146.65 1140.04 L1146.65 1104.22 L1107.34 1104.22 L1107.34 1104.22 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1107.34,1104.22 1107.34,1140.04 1146.65,1140.04 1146.65,1104.22 1107.34,1104.22 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1146.65 1137.08 L1146.65 1140.04 L1185.96 1140.04 L1185.96 1137.08 L1146.65 1137.08 L1146.65 1137.08 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1146.65,1137.08 1146.65,1140.04 1185.96,1140.04 1185.96,1137.08 1146.65,1137.08 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1185.96 1139.71 L1185.96 1140.04 L1225.27 1140.04 L1225.27 1139.71 L1185.96 1139.71 L1185.96 1139.71 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1185.96,1139.71 1185.96,1140.04 1225.27,1140.04 1225.27,1139.71 1185.96,1139.71 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1225.27 1139.71 L1225.27 1140.04 L1264.58 1140.04 L1264.58 1139.71 L1225.27 1139.71 L1225.27 1139.71 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1225.27,1139.71 1225.27,1140.04 1264.58,1140.04 1264.58,1139.71 1225.27,1139.71 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1264.58 1140.04 L1264.58 1140.04 L1303.89 1140.04 L1303.89 1140.04 L1264.58 1140.04 L1264.58 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1264.58,1140.04 1264.58,1140.04 1303.89,1140.04 1264.58,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1303.89 1140.04 L1303.89 1140.04 L1343.19 1140.04 L1343.19 1140.04 L1303.89 1140.04 L1303.89 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1303.89,1140.04 1303.89,1140.04 1343.19,1140.04 1303.89,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1343.19 1140.04 L1343.19 1140.04 L1382.5 1140.04 L1382.5 1140.04 L1343.19 1140.04 L1343.19 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1343.19,1140.04 1343.19,1140.04 1382.5,1140.04 1343.19,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1382.5 1140.04 L1382.5 1140.04 L1421.81 1140.04 L1421.81 1140.04 L1382.5 1140.04 L1382.5 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1382.5,1140.04 1382.5,1140.04 1421.81,1140.04 1382.5,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1421.81 1140.04 L1421.81 1140.04 L1461.12 1140.04 L1461.12 1140.04 L1421.81 1140.04 L1421.81 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1421.81,1140.04 1421.81,1140.04 1461.12,1140.04 1421.81,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1461.12 1140.04 L1461.12 1140.04 L1500.43 1140.04 L1500.43 1140.04 L1461.12 1140.04 L1461.12 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1461.12,1140.04 1461.12,1140.04 1500.43,1140.04 1461.12,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1500.43 1140.04 L1500.43 1140.04 L1539.74 1140.04 L1539.74 1140.04 L1500.43 1140.04 L1500.43 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1500.43,1140.04 1500.43,1140.04 1539.74,1140.04 1500.43,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1539.74 1140.04 L1539.74 1140.04 L1579.04 1140.04 L1579.04 1140.04 L1539.74 1140.04 L1539.74 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1539.74,1140.04 1539.74,1140.04 1579.04,1140.04 1539.74,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1579.04 1140.04 L1579.04 1140.04 L1618.35 1140.04 L1618.35 1140.04 L1579.04 1140.04 L1579.04 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1579.04,1140.04 1579.04,1140.04 1618.35,1140.04 1579.04,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1618.35 1140.04 L1618.35 1140.04 L1657.66 1140.04 L1657.66 1140.04 L1618.35 1140.04 L1618.35 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1618.35,1140.04 1618.35,1140.04 1657.66,1140.04 1618.35,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1657.66 1140.04 L1657.66 1140.04 L1696.97 1140.04 L1696.97 1140.04 L1657.66 1140.04 L1657.66 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.66,1140.04 1657.66,1140.04 1696.97,1140.04 1657.66,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1696.97 1140.04 L1696.97 1140.04 L1736.28 1140.04 L1736.28 1140.04 L1696.97 1140.04 L1696.97 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1696.97,1140.04 1696.97,1140.04 1736.28,1140.04 1696.97,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1736.28 1140.04 L1736.28 1140.04 L1775.59 1140.04 L1775.59 1140.04 L1736.28 1140.04 L1736.28 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1736.28,1140.04 1736.28,1140.04 1775.59,1140.04 1736.28,1140.04 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"222.905\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"262.214\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"301.522\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"340.83\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"380.139\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"419.447\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"458.756\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"498.064\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"537.372\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"576.681\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"615.989\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"655.297\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"694.606\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"733.914\" cy=\"1139.71\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"773.222\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"812.531\" cy=\"1135.11\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"851.839\" cy=\"1099.62\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"891.147\" cy=\"970.153\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"930.456\" cy=\"610.665\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"969.764\" cy=\"242.962\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1009.07\" cy=\"258.078\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1048.38\" cy=\"597.85\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1087.69\" cy=\"959.638\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1127\" cy=\"1104.22\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1166.31\" cy=\"1137.08\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1205.61\" cy=\"1139.71\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1244.92\" cy=\"1139.71\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1284.23\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1323.54\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1362.85\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1402.16\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1441.46\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1480.77\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1520.08\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1559.39\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1598.7\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1638.01\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1677.31\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1716.62\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1755.93\" cy=\"1140.04\" r=\"2\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 156.081,1140.04 172.358,1140.04 322.857,1140.04 413.301,1140.04 489.77,1140.04 572.836,1140.04 649.417,1140.04 690.468,1140.04 731.519,1140.03 755.3,1140 \n",
" 779.08,1139.74 802.861,1138.38 826.642,1132.4 837.209,1125.97 847.776,1115.17 858.343,1097.84 868.909,1071.31 874.193,1053.66 879.476,1032.59 884.76,1007.74 \n",
" 890.043,978.805 895.326,945.545 900.61,907.815 905.893,865.591 911.177,818.996 920.443,727.692 929.709,626.849 938.975,521.153 948.241,416.837 952.874,367.442 \n",
" 957.507,321.149 962.14,278.893 966.773,241.561 971.406,209.966 976.039,184.813 980.673,166.678 985.306,155.98 990.357,153.081 995.408,159.398 1000.46,174.755 \n",
" 1005.51,198.727 1010.56,230.657 1015.61,269.693 1020.66,314.815 1025.72,364.89 1035.82,475.052 1045.92,590.529 1056.02,702.645 1066.13,804.684 1071.21,850.751 \n",
" 1076.29,892.844 1081.37,930.803 1086.45,964.604 1091.53,994.331 1096.61,1020.16 1101.7,1042.34 1106.78,1061.17 1116.94,1090.08 1127.1,1109.57 1137.26,1122.15 \n",
" 1147.43,1129.92 1169.9,1137.53 1192.37,1139.52 1214.84,1139.95 1237.32,1140.03 1280.08,1140.04 1322.84,1140.04 1411.77,1140.04 1486.63,1140.04 1578.02,1140.04 \n",
" 1663.93,1140.04 1801.57,1140.04 1822.76,1140.04 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"histogram(μi1,bins=0:0.1:4,normalize=true,legend=false,title=\"Histogram of 10000 averages with ρ=0\")\n",
"plot!(μi1->pdf(Normal(μ, s1), μi1))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 3\n",
"\n",
"Redo task 2, but now use `ρ=0.75` (the other parameters are unchanged)."
]
},
{
"cell_type": "code",
"execution_count": 97,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Average across the simulations: 1.989\n",
"\n",
"Std across the samples (with ρ=0.75) and in theory:\n",
"simulations theory\n",
" 0.534 0.206\n",
"\n"
]
}
],
"source": [
"M = 10_000\n",
"\n",
"(T,ρ2,σ,μ) = (500,0.75,3,2)\n",
"\n",
"μi2 = fill(NaN, M)\n",
"σi2 = fill(NaN, M)\n",
"\n",
"# Monte Carlo simulation\n",
"for i = 1:M\n",
" y = SimAR1(T, ρ2, σ, μ)\n",
" μi2[i] = mean(y)\n",
" σi2[i] = std(y)\n",
"end\n",
"\n",
"# Theoretical results\n",
"y2 = SimAR1(10_000,ρ2,σ,μ)\n",
"σy2 = std(y2)\n",
"s2 = σy2/sqrt(T)\n",
"\n",
"printmat(\"Average across the simulations:\", mean(μi2))\n",
"println(\"Std across the samples (with ρ=0.75) and in theory:\")\n",
"printmat([\"simulations\", std(μi2)], [\"theory\", s2])"
]
},
{
"cell_type": "code",
"execution_count": 98,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n<defs>\n <clipPath id=\"clip590\">\n <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip590)\" d=\"\nM0 1280 L1920 1280 L1920 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip591\">\n <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip590)\" d=\"\nM151.312 1169.65 L1872.76 1169.65 L1872.76 123.472 L151.312 123.472 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip592\">\n <rect x=\"151\" y=\"123\" width=\"1722\" height=\"1047\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 245.995,1169.65 245.995,123.472 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 629.014,1169.65 629.014,123.472 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1012.03,1169.65 1012.03,123.472 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1395.05,1169.65 1395.05,123.472 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1778.07,1169.65 1778.07,123.472 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 151.312,1169.65 1872.76,1169.65 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 245.995,1169.65 245.995,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 629.014,1169.65 629.014,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1012.03,1169.65 1012.03,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1395.05,1169.65 1395.05,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1778.07,1169.65 1778.07,1150.75 \n \"/>\n<path clip-path=\"url(#clip590)\" d=\"M245.995 1196.73 Q242.384 1196.73 240.555 1200.29 Q238.749 1203.83 238.749 1210.96 Q238.749 1218.07 240.555 1221.63 Q242.384 1225.18 245.995 1225.18 Q249.629 1225.18 251.434 1221.63 Q253.263 1218.07 253.263 1210.96 Q253.263 1203.83 251.434 1200.29 Q249.629 1196.73 245.995 1196.73 M245.995 1193.02 Q251.805 1193.02 254.86 1197.63 Q257.939 1202.21 257.939 1210.96 Q257.939 1219.69 254.86 1224.3 Q251.805 1228.88 245.995 1228.88 Q240.184 1228.88 237.106 1224.3 Q234.05 1219.69 234.05 1210.96 Q234.05 1202.21 237.106 1197.63 Q240.184 1193.02 245.995 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M619.396 1224.27 L627.035 1224.27 L627.035 1197.91 L618.725 1199.57 L618.725 1195.31 L626.989 1193.65 L631.665 1193.65 L631.665 1224.27 L639.304 1224.27 L639.304 1228.21 L619.396 1228.21 L619.396 1224.27 Z\" fill
"text/html": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n",
"<defs>\n",
" <clipPath id=\"clip640\">\n",
" <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip640)\" d=\"\n",
"M0 1280 L1920 1280 L1920 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip641\">\n",
" <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip640)\" d=\"\n",
"M151.312 1169.65 L1872.76 1169.65 L1872.76 123.472 L151.312 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip642\">\n",
" <rect x=\"151\" y=\"123\" width=\"1722\" height=\"1047\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 245.995,1169.65 245.995,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 629.014,1169.65 629.014,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1012.03,1169.65 1012.03,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1395.05,1169.65 1395.05,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.07,1169.65 1778.07,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,1169.65 1872.76,1169.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 245.995,1169.65 245.995,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 629.014,1169.65 629.014,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.03,1169.65 1012.03,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1395.05,1169.65 1395.05,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1778.07,1169.65 1778.07,1150.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip640)\" d=\"M245.995 1196.73 Q242.384 1196.73 240.555 1200.29 Q238.749 1203.83 238.749 1210.96 Q238.749 1218.07 240.555 1221.63 Q242.384 1225.18 245.995 1225.18 Q249.629 1225.18 251.434 1221.63 Q253.263 1218.07 253.263 1210.96 Q253.263 1203.83 251.434 1200.29 Q249.629 1196.73 245.995 1196.73 M245.995 1193.02 Q251.805 1193.02 254.86 1197.63 Q257.939 1202.21 257.939 1210.96 Q257.939 1219.69 254.86 1224.3 Q251.805 1228.88 245.995 1228.88 Q240.184 1228.88 237.106 1224.3 Q234.05 1219.69 234.05 1210.96 Q234.05 1202.21 237.106 1197.63 Q240.184 1193.02 245.995 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M619.396 1224.27 L627.035 1224.27 L627.035 1197.91 L618.725 1199.57 L618.725 1195.31 L626.989 1193.65 L631.665 1193.65 L631.665 1224.27 L639.304 1224.27 L639.304 1228.21 L619.396 1228.21 L619.396 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1006.69 1224.27 L1023.01 1224.27 L1023.01 1228.21 L1001.06 1228.21 L1001.06 1224.27 Q1003.72 1221.52 1008.31 1216.89 Q1012.91 1212.24 1014.09 1210.89 Q1016.34 1208.37 1017.22 1206.63 Q1018.12 1204.87 1018.12 1203.18 Q1018.12 1200.43 1016.18 1198.69 Q1014.26 1196.96 1011.15 1196.96 Q1008.96 1196.96 1006.5 1197.72 Q1004.07 1198.49 1001.29 1200.04 L1001.29 1195.31 Q1004.12 1194.18 1006.57 1193.6 Q1009.02 1193.02 1011.06 1193.02 Q1016.43 1193.02 1019.63 1195.71 Q1022.82 1198.39 1022.82 1202.88 Q1022.82 1205.01 1022.01 1206.93 Q1021.22 1208.83 1019.12 1211.43 Q1018.54 1212.1 1015.44 1215.31 Q1012.33 1218.51 1006.69 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1399.3 1209.57 Q1402.66 1210.29 1404.53 1212.56 Q1406.43 1214.83 1406.43 1218.16 Q1406.43 1223.28 1402.91 1226.08 Q1399.39 1228.88 1392.91 1228.88 Q1390.74 1228.88 1388.42 1228.44 Q1386.13 1228.02 1383.68 1227.17 L1383.68 1222.65 Q1385.62 1223.79 1387.94 1224.37 Q1390.25 1224.94 1392.77 1224.94 Q1397.17 1224.94 1399.46 1223.21 Q1401.78 1221.47 1401.78 1218.16 Q1401.78 1215.11 1399.63 1213.39 Q1397.5 1211.66 1393.68 1211.66 L1389.65 1211.66 L1389.65 1207.81 L1393.86 1207.81 Q1397.31 1207.81 1399.14 1206.45 Q1400.97 1205.06 1400.97 1202.47 Q1400.97 1199.81 1399.07 1198.39 Q1397.19 1196.96 1393.68 1196.96 Q1391.76 1196.96 1389.56 1197.37 Q1387.36 1197.79 1384.72 1198.67 L1384.72 1194.5 Q1387.38 1193.76 1389.69 1193.39 Q1392.03 1193.02 1394.09 1193.02 Q1399.42 1193.02 1402.52 1195.45 Q1405.62 1197.86 1405.62 1201.98 Q1405.62 1204.85 1403.98 1206.84 Q1402.33 1208.81 1399.3 1209.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1781.08 1197.72 L1769.28 1216.17 L1781.08 1216.17 L1781.08 1197.72 M1779.86 1193.65 L1785.74 1193.65 L1785.74 1216.17 L1790.67 1216.17 L1790.67 1220.06 L1785.74 1220.06 L1785.74 1228.21 L1781.08 1228.21 L1781.08 1220.06 L1765.48 1220.06 L1765.48 1215.55 L1779.86 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.312,1140.04 1872.76,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.312,885.048 1872.76,885.048 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.312,630.056 1872.76,630.056 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.312,375.065 1872.76,375.065 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,1169.65 151.312,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,1140.04 170.21,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,885.048 170.21,885.048 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,630.056 170.21,630.056 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,375.065 170.21,375.065 \n",
" \"/>\n",
"<path clip-path=\"url(#clip640)\" d=\"M65.3365 1125.84 Q61.7254 1125.84 59.8967 1129.4 Q58.0912 1132.94 58.0912 1140.07 Q58.0912 1147.18 59.8967 1150.75 Q61.7254 1154.29 65.3365 1154.29 Q68.9707 1154.29 70.7763 1150.75 Q72.605 1147.18 72.605 1140.07 Q72.605 1132.94 70.7763 1129.4 Q68.9707 1125.84 65.3365 1125.84 M65.3365 1122.13 Q71.1467 1122.13 74.2022 1126.74 Q77.2809 1131.32 77.2809 1140.07 Q77.2809 1148.8 74.2022 1153.41 Q71.1467 1157.99 65.3365 1157.99 Q59.5264 1157.99 56.4477 1153.41 Q53.3921 1148.8 53.3921 1140.07 Q53.3921 1131.32 56.4477 1126.74 Q59.5264 1122.13 65.3365 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M85.4984 1151.44 L90.3827 1151.44 L90.3827 1157.32 L85.4984 1157.32 L85.4984 1151.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M110.568 1125.84 Q106.957 1125.84 105.128 1129.4 Q103.322 1132.94 103.322 1140.07 Q103.322 1147.18 105.128 1150.75 Q106.957 1154.29 110.568 1154.29 Q114.202 1154.29 116.008 1150.75 Q117.836 1147.18 117.836 1140.07 Q117.836 1132.94 116.008 1129.4 Q114.202 1125.84 110.568 1125.84 M110.568 1122.13 Q116.378 1122.13 119.433 1126.74 Q122.512 1131.32 122.512 1140.07 Q122.512 1148.8 119.433 1153.41 Q116.378 1157.99 110.568 1157.99 Q104.758 1157.99 101.679 1153.41 Q98.6234 1148.8 98.6234 1140.07 Q98.6234 1131.32 101.679 1126.74 Q104.758 1122.13 110.568 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M66.3319 870.846 Q62.7208 870.846 60.8921 874.411 Q59.0865 877.953 59.0865 885.082 Q59.0865 892.189 60.8921 895.754 Q62.7208 899.295 66.3319 899.295 Q69.9661 899.295 71.7717 895.754 Q73.6004 892.189 73.6004 885.082 Q73.6004 877.953 71.7717 874.411 Q69.9661 870.846 66.3319 870.846 M66.3319 867.143 Q72.142 867.143 75.1976 871.749 Q78.2763 876.332 78.2763 885.082 Q78.2763 893.809 75.1976 898.416 Q72.142 902.999 66.3319 902.999 Q60.5217 902.999 57.443 898.416 Q54.3875 893.809 54.3875 885.082 Q54.3875 876.332 57.443 871.749 Q60.5217 867.143 66.3319 867.143 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M86.4938 896.448 L91.378 896.448 L91.378 902.328 L86.4938 902.328 L86.4938 896.448 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M101.609 867.768 L119.966 867.768 L119.966 871.703 L105.892 871.703 L105.892 880.175 Q106.91 879.828 107.929 879.666 Q108.947 879.481 109.966 879.481 Q115.753 879.481 119.133 882.652 Q122.512 885.823 122.512 891.24 Q122.512 896.818 119.04 899.92 Q115.568 902.999 109.248 902.999 Q107.072 902.999 104.804 902.629 Q102.559 902.258 100.151 901.517 L100.151 896.818 Q102.234 897.953 104.457 898.508 Q106.679 899.064 109.156 899.064 Q113.16 899.064 115.498 896.957 Q117.836 894.851 117.836 891.24 Q117.836 887.629 115.498 885.522 Q113.16 883.416 109.156 883.416 Q107.281 883.416 105.406 883.832 Q103.554 884.249 101.609 885.129 L101.609 867.768 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M56.1467 643.401 L63.7856 643.401 L63.7856 617.035 L55.4754 618.702 L55.4754 614.443 L63.7393 612.776 L68.4152 612.776 L68.4152 643.401 L76.054 643.401 L76.054 647.336 L56.1467 647.336 L56.1467 643.401 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M85.4984 641.457 L90.3827 641.457 L90.3827 647.336 L85.4984 647.336 L85.4984 641.457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M110.568 615.855 Q106.957 615.855 105.128 619.42 Q103.322 622.961 103.322 630.091 Q103.322 637.197 105.128 640.762 Q106.957 644.304 110.568 644.304 Q114.202 644.304 116.008 640.762 Q117.836 637.197 117.836 630.091 Q117.836 622.961 116.008 619.42 Q114.202 615.855 110.568 615.855 M110.568 612.151 Q116.378 612.151 119.433 616.758 Q122.512 621.341 122.512 630.091 Q122.512 638.818 119.433 643.424 Q116.378 648.007 110.568 648.007 Q104.758 648.007 101.679 643.424 Q98.62
"M245.995 1139.53 L245.995 1140.04 L284.297 1140.04 L284.297 1139.53 L245.995 1139.53 L245.995 1139.53 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 245.995,1139.53 245.995,1140.04 284.297,1140.04 284.297,1139.53 245.995,1139.53 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M284.297 1138.51 L284.297 1140.04 L322.599 1140.04 L322.599 1138.51 L284.297 1138.51 L284.297 1138.51 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.297,1138.51 284.297,1140.04 322.599,1140.04 322.599,1138.51 284.297,1138.51 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M322.599 1137.49 L322.599 1140.04 L360.901 1140.04 L360.901 1137.49 L322.599 1137.49 L322.599 1137.49 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 322.599,1137.49 322.599,1140.04 360.901,1140.04 360.901,1137.49 322.599,1137.49 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M360.901 1136.98 L360.901 1140.04 L399.202 1140.04 L399.202 1136.98 L360.901 1136.98 L360.901 1136.98 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 360.901,1136.98 360.901,1140.04 399.202,1140.04 399.202,1136.98 360.901,1136.98 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M399.202 1133.41 L399.202 1140.04 L437.504 1140.04 L437.504 1133.41 L399.202 1133.41 L399.202 1133.41 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 399.202,1133.41 399.202,1140.04 437.504,1140.04 437.504,1133.41 399.202,1133.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M437.504 1129.33 L437.504 1140.04 L475.806 1140.04 L475.806 1129.33 L437.504 1129.33 L437.504 1129.33 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 437.504,1129.33 437.504,1140.04 475.806,1140.04 475.806,1129.33 437.504,1129.33 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M475.806 1128.31 L475.806 1140.04 L514.108 1140.04 L514.108 1128.31 L475.806 1128.31 L475.806 1128.31 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 475.806,1128.31 475.806,1140.04 514.108,1140.04 514.108,1128.31 475.806,1128.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M514.108 1109.43 L514.108 1140.04 L552.41 1140.04 L552.41 1109.43 L514.108 1109.43 L514.108 1109.43 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 514.108,1109.43 514.108,1140.04 552.41,1140.04 552.41,1109.43 514.108,1109.43 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M552.41 1094.13 L552.41 1140.04 L590.712 1140.04 L590.712 1094.13 L552.41 1094.13 L552.41 1094.13 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 552.41,1094.13 552.41,1140.04 590.712,1140.04 590.712,1094.13 552.41,1094.13 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M590.712 1089.54 L590.712 1140.04 L629.014 1140.04 L629.014 1089.54 L590.712 1089.54 L590.712 1089.54 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 590.712,1089.54 590.712,1140.04 629.014,1140.04 629.014,1089.54 590.712,1089.54 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M629.014 1068.11 L629.014 1140.04 L667.316 1140.04 L667.316 1068.11 L629.014 1068.11 L629.014 1068.11 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 629.014,1068.11 629.014,1140.04 667.316,1140.04 667.316,1068.11 629.014,1068.11 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M667.316 1031.89 L667.316 1140.04 L705.618 1140.04 L705.618 1031.89 L667.316 1031.89 L667.316 1031.89 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 667.316,1031.89 667.316,1140.04 705.618,1140.04 705.618,1031.89 667.316,1031.89 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M705.618 992.1 L705.618 1140.04 L743.92 1140.04 L743.92 992.1 L705.618 992.1 L705.618 992.1 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 705.618,992.1 705.618,1140.04 743.92,1140.04 743.92,992.1 705.618,992.1 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M743.92 949.758 L743.92 1140.04 L782.222 1140.04 L782.222 949.758 L743.92 949.758 L743.92 949.758 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 743.92,949.758 743.92,1140.04 782.222,1140.04 782.222,949.758 743.92,949.758 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M782.222 919.15 L782.222 1140.04 L820.524 1140.04 L820.524 919.15 L782.222 919.15 L782.222 919.15 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 782.222,919.15 782.222,1140.04 820.524,1140.04 820.524,919.15 782.222,919.15 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M820.524 866.606 L820.524 1140.04 L858.826 1140.04 L858.826 866.606 L820.524 866.606 L820.524 866.606 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 820.524,866.606 820.524,1140.04 858.826,1140.04 858.826,866.606 820.524,866.606 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M858.826 834.978 L858.826 1140.04 L897.128 1140.04 L897.128 834.978 L858.826 834.978 L858.826 834.978 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 858.826,834.978 858.826,1140.04 897.128,1140.04 897.128,834.978 858.826,834.978 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M897.128 758.968 L897.128 1140.04 L935.43 1140.04 L935.43 758.968 L897.128 758.968 L897.128 758.968 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 897.128,758.968 897.128,1140.04 935.43,1140.04 935.43,758.968 897.128,758.968 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M935.43 792.126 L935.43 1140.04 L973.732 1140.04 L973.732 792.126 L935.43 792.126 L935.43 792.126 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 935.43,792.126 935.43,1140.04 973.732,1140.04 973.732,792.126 935.43,792.126 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M973.732 753.356 L973.732 1140.04 L1012.03 1140.04 L1012.03 753.356 L973.732 753.356 L973.732 753.356 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 973.732,753.356 973.732,1140.04 1012.03,1140.04 1012.03,753.356 973.732,753.356 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1012.03 757.947 L1012.03 1140.04 L1050.34 1140.04 L1050.34 757.947 L1012.03 757.947 L1012.03 757.947 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.03,757.947 1012.03,1140.04 1050.34,1140.04 1050.34,757.947 1012.03,757.947 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1050.34 789.576 L1050.34 1140.04 L1088.64 1140.04 L1088.64 789.576 L1050.34 789.576 L1050.34 789.576 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1050.34,789.576 1050.34,1140.04 1088.64,1140.04 1088.64,789.576 1050.34,789.576 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1088.64 806.41 L1088.64 1140.04 L1126.94 1140.04 L1126.94 806.41 L1088.64 806.41 L1088.64 806.41 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1088.64,806.41 1088.64,1140.04 1126.94,1140.04 1126.94,806.41 1088.64,806.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1126.94 848.241 L1126.94 1140.04 L1165.24 1140.04 L1165.24 848.241 L1126.94 848.241 L1126.94 848.241 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1126.94,848.241 1126.94,1140.04 1165.24,1140.04 1165.24,848.241 1126.94,848.241 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1165.24 858.954 L1165.24 1140.04 L1203.54 1140.04 L1203.54 858.954 L1165.24 858.954 L1165.24 858.954 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1165.24,858.954 1165.24,1140.04 1203.54,1140.04 1203.54,858.954 1165.24,858.954 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1203.54 927.823 L1203.54 1140.04 L1241.85 1140.04 L1241.85 927.823 L1203.54 927.823 L1203.54 927.823 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1203.54,927.823 1203.54,1140.04 1241.85,1140.04 1241.85,927.823 1203.54,927.823 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1241.85 949.758 L1241.85 1140.04 L1280.15 1140.04 L1280.15 949.758 L1241.85 949.758 L1241.85 949.758 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1241.85,949.758 1241.85,1140.04 1280.15,1140.04 1280.15,949.758 1241.85,949.758 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1280.15 1005.36 L1280.15 1140.04 L1318.45 1140.04 L1318.45 1005.36 L1280.15 1005.36 L1280.15 1005.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1280.15,1005.36 1280.15,1140.04 1318.45,1140.04 1318.45,1005.36 1280.15,1005.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1318.45 1044.13 L1318.45 1140.04 L1356.75 1140.04 L1356.75 1044.13 L1318.45 1044.13 L1318.45 1044.13 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1318.45,1044.13 1318.45,1140.04 1356.75,1140.04 1356.75,1044.13 1318.45,1044.13 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1356.75 1060.46 L1356.75 1140.04 L1395.05 1140.04 L1395.05 1060.46 L1356.75 1060.46 L1356.75 1060.46 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1356.75,1060.46 1356.75,1140.04 1395.05,1140.04 1395.05,1060.46 1356.75,1060.46 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1395.05 1083.41 L1395.05 1140.04 L1433.36 1140.04 L1433.36 1083.41 L1395.05 1083.41 L1395.05 1083.41 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1395.05,1083.41 1395.05,1140.04 1433.36,1140.04 1433.36,1083.41 1395.05,1083.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1433.36 1103.31 L1433.36 1140.04 L1471.66 1140.04 L1471.66 1103.31 L1433.36 1103.31 L1433.36 1103.31 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1433.36,1103.31 1433.36,1140.04 1471.66,1140.04 1471.66,1103.31 1433.36,1103.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1471.66 1114.02 L1471.66 1140.04 L1509.96 1140.04 L1509.96 1114.02 L1471.66 1114.02 L1471.66 1114.02 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1471.66,1114.02 1471.66,1140.04 1509.96,1140.04 1509.96,1114.02 1471.66,1114.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1509.96 1126.27 L1509.96 1140.04 L1548.26 1140.04 L1548.26 1126.27 L1509.96 1126.27 L1509.96 1126.27 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1509.96,1126.27 1509.96,1140.04 1548.26,1140.04 1548.26,1126.27 1509.96,1126.27 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1548.26 1130.86 L1548.26 1140.04 L1586.56 1140.04 L1586.56 1130.86 L1548.26 1130.86 L1548.26 1130.86 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1548.26,1130.86 1548.26,1140.04 1586.56,1140.04 1586.56,1130.86 1548.26,1130.86 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1586.56 1136.47 L1586.56 1140.04 L1624.87 1140.04 L1624.87 1136.47 L1586.56 1136.47 L1586.56 1136.47 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1586.56,1136.47 1586.56,1140.04 1624.87,1140.04 1624.87,1136.47 1586.56,1136.47 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1624.87 1137.49 L1624.87 1140.04 L1663.17 1140.04 L1663.17 1137.49 L1624.87 1137.49 L1624.87 1137.49 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1624.87,1137.49 1624.87,1140.04 1663.17,1140.04 1663.17,1137.49 1624.87,1137.49 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1663.17 1138.51 L1663.17 1140.04 L1701.47 1140.04 L1701.47 1138.51 L1663.17 1138.51 L1663.17 1138.51 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1663.17,1138.51 1663.17,1140.04 1701.47,1140.04 1701.47,1138.51 1663.17,1138.51 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1701.47 1139.53 L1701.47 1140.04 L1739.77 1140.04 L1739.77 1139.53 L1701.47 1139.53 L1701.47 1139.53 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1701.47,1139.53 1701.47,1140.04 1739.77,1140.04 1739.77,1139.53 1701.47,1139.53 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1739.77 1139.53 L1739.77 1140.04 L1778.07 1140.04 L1778.07 1139.53 L1739.77 1139.53 L1739.77 1139.53 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1739.77,1139.53 1739.77,1140.04 1778.07,1140.04 1778.07,1139.53 1739.77,1139.53 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"265.146\" cy=\"1139.53\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"303.448\" cy=\"1138.51\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"341.75\" cy=\"1137.49\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"380.051\" cy=\"1136.98\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"418.353\" cy=\"1133.41\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"456.655\" cy=\"1129.33\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"494.957\" cy=\"1128.31\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"533.259\" cy=\"1109.43\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"571.561\" cy=\"1094.13\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"609.863\" cy=\"1089.54\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"648.165\" cy=\"1068.11\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"686.467\" cy=\"1031.89\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"724.769\" cy=\"992.1\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"763.071\" cy=\"949.758\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"801.373\" cy=\"919.15\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"839.675\" cy=\"866.606\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"877.977\" cy=\"834.978\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"916.279\" cy=\"758.968\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"954.581\" cy=\"792.126\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"992.883\" cy=\"753.356\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1031.19\" cy=\"757.947\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1069.49\" cy=\"789.576\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1107.79\" cy=\"806.41\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1146.09\" cy=\"848.241\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1184.39\" cy=\"858.954\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1222.69\" cy=\"927.823\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1261\" cy=\"949.758\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1299.3\" cy=\"1005.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1337.6\" cy=\"1044.13\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1375.9\" cy=\"1060.46\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1414.2\" cy=\"1083.41\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1452.51\" cy=\"1103.31\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1490.81\" cy=\"1114.02\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1529.11\" cy=\"1126.27\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1567.41\" cy=\"1130.86\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1605.71\" cy=\"1136.47\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1644.02\" cy=\"1137.49\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1682.32\" cy=\"1138.51\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1720.62\" cy=\"1139.53\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1758.92\" cy=\"1139.53\" r=\"2\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 200.032,1140.04 215.892,1140.04 362.538,1140.04 450.666,1140.04 525.177,1140.04 606.118,1140.04 680.737,1139.89 720.737,1138.95 760.737,1133.81 783.909,1124.85 \n",
" 807.081,1106.08 818.667,1090.86 830.253,1070.35 841.839,1043.38 853.425,1008.83 863.721,970.98 874.018,925.877 884.314,873.317 894.61,813.46 904.907,746.913 \n",
" 915.203,674.786 925.499,598.711 935.795,520.818 944.824,453.025 953.853,387.714 962.882,326.899 971.911,272.587 980.94,226.67 989.969,190.819 994.483,177.104 \n",
" 998.998,166.379 1003.51,158.748 1008.03,154.285 1012.95,153.081 1017.87,155.708 1022.79,162.136 1027.71,172.291 1032.64,186.055 1037.56,203.271 1042.48,223.744 \n",
" 1047.4,247.247 1057.25,302.284 1067.09,366.055 1076.93,436.002 1086.78,509.506 1096.68,584.489 1106.58,658.195 1116.49,728.645 1126.39,794.277 1136.29,853.974 \n",
" 1146.19,907.058 1156.09,953.253 1166,992.626 1176.95,1028.63 1187.89,1057.45 1198.84,1079.97 1209.79,1097.19 1231.69,1119.45 1253.58,1130.88 1295.25,1138.45 \n",
" 1336.92,1139.83 1423.57,1140.04 1496.51,1140.04 1585.57,1140.04 1669.28,1140.04 1803.4,1140.04 1824.04,1140.04 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"histogram(μi2,bins=0:0.1:4,normalize=true,legend=false,title=\"Histogram of 10000 averages with ρ=0.75\")\n",
"plot!(μi2->pdf(Normal(μ, s2), μi2))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 4\n",
"\n",
"You decide to test the hypothesis that $\\mu=2$. Your decision rule is \n",
"\n",
"- reject the hypothesis if $|(\\mu_i-2)/s|>1.645$ with $s=\\sigma_y/\\sqrt{T}$\n",
"\n",
"With this decision rule, you are clearly assuming that the theoretical result (definition of $s$) is correct.\n",
"\n",
"Estimate both $\\mu_i$ and $\\sigma_y$ from each sample.\n",
"\n",
"In what fraction of the $M$ simulation do you reject your hypothesis when $\\rho=0$ and when $\\rho=0.75$? For the other parameters, use `(T,σ,μ) = (500,3,2)` (same as before)."
]
},
{
"cell_type": "code",
"execution_count": 99,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Frequency of rejections:\n",
" with ρ=0 with ρ=0.75 \n",
" 0.098 0.536\n",
"\n"
]
}
],
"source": [
"(T,σ,μ) = (500,3,2)\n",
"\n",
"rejection1 = 0\n",
"rejection2 = 0\n",
"\n",
"# Count how many times we reject the hypothesis\n",
"for i = 1:M\n",
" # rejections for ρ = 0\n",
" s1 = σi1[i]/sqrt(T)\n",
" if abs((μi1[i] - 2)/s1) > 1.645\n",
" rejection1 += 1\n",
" end\n",
"\n",
" # rejections for ρ = 0.75\n",
" s2 = σi2[i]/sqrt(T)\n",
" if abs((μi2[i] - 2)/s2) > 1.645\n",
" rejection2 += 1\n",
" end\n",
"end\n",
"\n",
"println(\"Frequency of rejections:\")\n",
"printmat([\"with ρ=0 \", rejection1 / (M)], [\"with ρ=0.75 \", rejection2 / (M)])"
]
}
],
"metadata": {
"@webio": {
"lastCommId": null,
"lastKernelId": null
},
"kernelspec": {
"display_name": "Julia 1.7.1",
"language": "julia",
"name": "julia-1.7"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 4
}