Le jeu de l'urne

Lors de la visite au laboratoire d'une brillante élève de seconde (salut Lena!), nous avons inventé ensemble un jeu: le jeu de l'urne. Le principe est simple: il faut deviner la couleur de la balle qu'on tire d'une urne contenant autant de balles rouges que noires - et ceci le plus tôt possible. Plus précisément, les règles sont:

  • On a un ensemble de balles, la motié sont rouges, l'autre moitié noires (c'est donc un nombre pair de balles qu'on appelera $N$, disons $N=8$).
  • Elles sont dans une urne opaque et donc on ne peut pas les voir à moins de les tirer une par une (sans remise dans l'urne). On peut tirer autant de balles qu'on veut pour les observer.
  • Le but est de deviner la balle qu'on va tirer. Si on gagne (on a bien prédit la couleur), alors on gagne autant de points que le nombre de balles qui étaient dans l'urne au moment de la décision. Sinon on perd autant de points que l'on en aurait gagné!
  • à long terme, la stratégie du jeu est de décider le meilleur moment où on est prêt à deviner la couleur de la balle qu'on va prendre et ainsi de gagner le plus de points possibles.

Nous avons d'abord créé ce jeu grâce au language de programmation Scratch sur https://scratch.mit.edu/projects/165806365/:

Ici, nous allons essayer de l'analyser plus finement.

Par exemple, je choisis de regarder une balle (rouge), puis un seconde (encore rouge), enfin une troisième (noire) - je décide de parier pour une noire, mais une rouge sort: j'ai perdu $8-3=5$ points. Une autre fois, je tire une balle rouge, une autre balle (cette fois noire): je parie noir et c'est la couleur qui sort: je gagne $8-2=6$ points.

Ce jeu parait simple (je suis curieux de savoir s'il existe, le contraire m'étonnerait) - mais son analyse mathématique implique des combinaisons dont le nombre grandit vite: quelle est la stratégie optimale? C'est ce que nous essaierons de faire ici.

Note: ce jeu pourrait paraitre anodin, mais il est révélateur de notre capacité à prendre des décisions par rapport à ce que l'on sait et ce qui pourrait arriver: c'est la base de la théorie de la décision. Cette théorie est notamment essentielle pour comprendre le fonctionnement normal (ou pathologique comme pour la schizophrénie) et de mieux le comprendre (ou le diagnostiquer).

Cette page est un "notebook", c'est-à-dire une page qui combine des commentaires avec des "cellules" contenant du code informatique qui permet de manipuler et représenter explicitement ou visuellement des informations. On peut donc le télécharger et expérimenter ces étapes une par une par soi-même.

quelque bases de programmation

Nous allons ici utiliser un langage de programmation pour communiquer avec l'ordinateur et lui faire effectuer des séquences de calcul. Pour sa simplicité et son ouverture, nous allons utiliser le langage Python. Ensuite, nos allons aborder qulques notions de statistiques utiles pour ce jeu. Si vous pensez posséder ces bases, vous pouvez directement passer à la suite. Programmer en python, c'est auusi simple que de parler en anglais, en voici quelques exemples:

In [1]:
print('Bonjour Lena')
Bonjour Lena

Des opérations mathémtiques de base :

In [2]:
2 * 5
Out[2]:
10
In [3]:
 3 / 4 
Out[3]:
0.75

a**b désigne "a puissance b"

In [4]:
2**0 + 2**1 +  4**1.5
Out[4]:
11.0

créons une liste d'objets en les énumérant entre les symboles [ et ]:

In [5]:
une_liste = [ 1, 4, 5 ]
In [6]:
print(une_liste)
[1, 4, 5]

On peut facilement la manipuler en ajoutant un élément:

In [7]:
une_liste.append(6)
In [8]:
print(une_liste)
[1, 4, 5, 6]

on peut donc aussi faire une liste pour notre jeu:

In [9]:
une_liste_B = []
In [10]:
une_liste_B.append(0)
In [11]:
une_liste_B.append(1)
In [12]:
une_liste_B.append(0)
In [13]:
une_liste_B.append(0)
In [14]:
une_liste_B
Out[14]:
[0, 1, 0, 0]

ou de façon plus explicite (pour changer, au lieu de parler de balles rouges ou noires, on va ici parler de ballons de foot='⚽️' ou de basket ='🏀'):

In [15]:
N_ballons  = 8

une_liste_C = []
for j in range(N_ballons//2):
    une_liste_C.append('🏀')
for j in range(N_ballons//2):
    une_liste_C.append('⚽️')
print(une_liste_C)
['🏀', '🏀', '🏀', '🏀', '⚽️', '⚽️', '⚽️', '⚽️']

il y a encore plein d'autres façons d'utiliser des listes:

In [16]:
liste_de_listes = [une_liste, une_liste_B, une_liste_C ]
print(liste_de_listes)
[[1, 4, 5, 6], [0, 1, 0, 0], ['🏀', '🏀', '🏀', '🏀', '⚽️', '⚽️', '⚽️', '⚽️']]

À noter, un autre objet très utile en programmation est un dictionaire:

In [17]:
dico_français_anglais = dict(watch='montre', name='name', age='age')
In [18]:
name = 'watch'
print('La traduction du mot anglais "', name, 
      '" en français est "', dico_français_anglais[name],'".')
La traduction du mot anglais " watch " en français est " montre ".

quelque bases de statistiques et de probabilités

Pour analyser notre jeu, nous allons avoir besoin de quelques outils mathématiques - si vous pensez posséder ces bases, vous pouvez directement passer à la suite. Une fonction importante pour analyser notre jeu est d'utiliser des générateurs de nombres aléatoires (dans la librairie numpy.random).

In [19]:
import numpy as np
np.set_printoptions(precision=6, suppress=True)

et de fonctions de visualisation pour afficher par exemple des histogrammes avec plt.hist.

In [20]:
import os
%matplotlib inline
#%config InlineBackend.figure_format='retina'
%config InlineBackend.figure_format = 'svg'
import matplotlib.pyplot as plt

on définit la taille des figures selon le nombre d'or:

In [21]:
phi = (np.sqrt(5)+1)/2
fig_width = 10 # en pouces
figsize = (fig_width, fig_width/phi)
In [22]:
print('2 π =', 2 * np.pi)
2 π = 6.283185307179586

Explorons direct l'histogramme de $1000000$ tirages d'une variable aléatoire uniforme entre $0$ et $5$:

In [23]:
fig, ax = plt.subplots(figsize=figsize)
ax.hist(5 * np.random.rand(1000000), bins=20);
<svg height="370pt" version="1.1" viewBox="0 0 614 370" width="614pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 370.541401 L 614.7125 370.541401 L 614.7125 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 46.0125 346.663276 L 604.0125 346.663276 L 604.0125 10.7 L 46.0125 10.7 z " style="fill:#ffffff;"/> </g> <g id="patch_3"> <path clip-path="url(#p2d27dbecb3)" d="M 71.376136 346.663276 L 96.739773 346.663276 L 96.739773 30.762751 L 71.376136 30.762751 z " style="fill:#1f77b4;"/> </g> <g id="patch_4"> <path clip-path="url(#p2d27dbecb3)" d="M 96.739773 346.663276 L 122.103409 346.663276 L 122.103409 26.742707 L 96.739773 26.742707 z " style="fill:#1f77b4;"/> </g> <g id="patch_5"> <path clip-path="url(#p2d27dbecb3)" d="M 122.103409 346.663276 L 147.467045 346.663276 L 147.467045 28.55903 L 122.103409 28.55903 z " style="fill:#1f77b4;"/> </g> <g id="patch_6"> <path clip-path="url(#p2d27dbecb3)" d="M 147.467045 346.663276 L 172.830682 346.663276 L 172.830682 29.61961 L 147.467045 29.61961 z " style="fill:#1f77b4;"/> </g> <g id="patch_7"> <path clip-path="url(#p2d27dbecb3)" d="M 172.830682 346.663276 L 198.194318 346.663276 L 198.194318 27.574659 L 172.830682 27.574659 z " style="fill:#1f77b4;"/> </g> <g id="patch_8"> <path clip-path="url(#p2d27dbecb3)" d="M 198.194318 346.663276 L 223.557955 346.663276 L 223.557955 29.829186 L 198.194318 29.829186 z " style="fill:#1f77b4;"/> </g> <g id="patch_9"> <path clip-path="url(#p2d27dbecb3)" d="M 223.557955 346.663276 L 248.921591 346.663276 L 248.921591 29.009935 L 223.557955 29.009935 z " style="fill:#1f77b4;"/> </g> <g id="patch_10"> <path clip-path="url(#p2d27dbecb3)" d="M 248.921591 346.663276 L 274.285227 346.663276 L 274.285227 28.787658 L 248.921591 28.787658 z " style="fill:#1f77b4;"/> </g> <g id="patch_11"> <path clip-path="url(#p2d27dbecb3)" d="M 274.285227 346.663276 L 299.648864 346.663276 L 299.648864 31.950347 L 274.285227 31.950347 z " style="fill:#1f77b4;"/> </g> <g id="patch_12"> <path clip-path="url(#p2d27dbecb3)" d="M 299.648864 346.663276 L 325.0125 346.663276 L 325.0125 28.895621 L 299.648864 28.895621 z " style="fill:#1f77b4;"/> </g> <g id="patch_13"> <path clip-path="url(#p2d27dbecb3)" d="M 325.0125 346.663276 L 350.376136 346.663276 L 350.376136 28.717799 L 325.0125 28.717799 z " style="fill:#1f77b4;"/> </g> <g id="patch_14"> <path clip-path="url(#p2d27dbecb3)" d="M 350.376136 346.663276 L 375.739773 346.663276 L 375.739773 28.432014 L 350.376136 28.432014 z " style="fill:#1f77b4;"/> </g> <g id="patch_15"> <path clip-path="url(#p2d27dbecb3)" d="M 375.739773 346.663276 L 401.103409 346.663276 L 401.103409 31.16285 L 375.739773 31.16285 z " style="fill:#1f77b4;"/> </g> <g id="patch_16"> <path clip-path="url(#p2d27dbecb3)" d="M 401.103409 346.663276 L 426.467045 346.663276 L 426.467045 26.698251 L 401.103409 26.698251 z " style="fill:#1f77b4;"/> </g> <g id="patch_17"> <path clip-path="url(#p2d27dbecb3)" d="M 426.467045 346.663276 L 451.830682 346.663276 L 451.830682 28.031915 L 426.467045 28.031915 z " style="fill:#1f77b4;"/> </g> <g id="patch_18"> <path clip-path="url(#p2d27dbecb3)" d="M 451.830682 346.663276 L 477.194318 346.663276 L 477.194318 27.943004 L 451.830682 27.943004 z " style="fill:#1f77b4;"/> </g> <g id="patch_19"> <path clip-path="url(#p2d27dbecb3)" d="M 477.194318 346.663276 L 502.557955 346.663276 L 502.557955 29.194108 L 477.194318 29.194108 z " style="fill:#1f77b4;"/> </g> <g id="patch_20"> <path clip-path="url(#p2d27dbecb3)" d="M 502.557955 346.663276 L 527.921591 346.663276 L 527.921591 30.616683 L 502.557955 30.616683 z " style="fill:#1f77b4;"/> </g> <g id="patch_21"> <path clip-path="url(#p2d27dbecb3)" d="M 527.921591 346.663276 L 553.285227 346.663276 L 553.285227 30.10862 L 527.921591 30.10862 z " style="fill:#1f77b4;"/> </g> <g id="patch_22"> <path clip-path="url(#p2d27dbecb3)" d="M 553.285227 346.663276 L 578.648864 346.663276 L 578.648864 29.848238 L 553.285227 29.848238 z " style="fill:#1f77b4;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="mfad8726d4a" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="71.375844" xlink:href="#mfad8726d4a" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(68.194594 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="172.830725" xlink:href="#mfad8726d4a" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(169.649475 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="274.285606" xlink:href="#mfad8726d4a" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(271.104356 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="375.740486" xlink:href="#mfad8726d4a" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(372.559236 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="477.195367" xlink:href="#mfad8726d4a" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(474.014117 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="578.650248" xlink:href="#mfad8726d4a" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(575.468998 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_7"> <defs> <path d="M 0 0 L -3.5 0 " id="m7f88616574" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="46.0125" xlink:href="#m7f88616574" y="346.663276"/> </g> </g> <g id="text_7"> <g transform="translate(32.65 350.462495)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="46.0125" xlink:href="#m7f88616574" y="283.155471"/> </g> </g> <g id="text_8"> <g transform="translate(7.2 286.95469)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="46.0125" xlink:href="#m7f88616574" y="219.647666"/> </g> </g> <g id="text_9"> <g transform="translate(7.2 223.446884)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="46.0125" xlink:href="#m7f88616574" y="156.13986"/> </g> </g> <g id="text_10"> <g transform="translate(7.2 159.939079)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="46.0125" xlink:href="#m7f88616574" y="92.632055"/> </g> </g> <g id="text_11"> <g transform="translate(7.2 96.431274)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="46.0125" xlink:href="#m7f88616574" y="29.124249"/> </g> </g> <g id="text_12"> <g transform="translate(7.2 32.923468)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="patch_23"> <path d="M 46.0125 346.663276 L 46.0125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_24"> <path d="M 604.0125 346.663276 L 604.0125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_25"> <path d="M 46.0125 346.663276 L 604.0125 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_26"> <path d="M 46.0125 10.7 L 604.0125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p2d27dbecb3"> <rect height="335.963276" width="558" x="46.0125" y="10.7"/> </clipPath> </defs> </svg>

La même chose avec une variable aléatoire en cloche qui représente bien des statistiques de population:

In [24]:
fig, ax = plt.subplots(figsize=figsize)
ax.hist(.3 * np.random.randn(1000000), bins=20);
<svg height="370pt" version="1.1" viewBox="0 0 621 370" width="621pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 370.541401 L 621.075 370.541401 L 621.075 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 52.375 346.663276 L 610.375 346.663276 L 610.375 10.7 L 52.375 10.7 z " style="fill:#ffffff;"/> </g> <g id="patch_3"> <path clip-path="url(#pcaad295bc4)" d="M 77.738636 346.663276 L 103.102273 346.663276 L 103.102273 346.647666 L 77.738636 346.647666 z " style="fill:#1f77b4;"/> </g> <g id="patch_4"> <path clip-path="url(#pcaad295bc4)" d="M 103.102273 346.663276 L 128.465909 346.663276 L 128.465909 346.569614 L 103.102273 346.569614 z " style="fill:#1f77b4;"/> </g> <g id="patch_5"> <path clip-path="url(#pcaad295bc4)" d="M 128.465909 346.663276 L 153.829545 346.663276 L 153.829545 346.130788 L 128.465909 346.130788 z " style="fill:#1f77b4;"/> </g> <g id="patch_6"> <path clip-path="url(#pcaad295bc4)" d="M 153.829545 346.663276 L 179.193182 346.663276 L 179.193182 344.160406 L 153.829545 344.160406 z " style="fill:#1f77b4;"/> </g> <g id="patch_7"> <path clip-path="url(#pcaad295bc4)" d="M 179.193182 346.663276 L 204.556818 346.663276 L 204.556818 336.894623 L 179.193182 336.894623 z " style="fill:#1f77b4;"/> </g> <g id="patch_8"> <path clip-path="url(#pcaad295bc4)" d="M 204.556818 346.663276 L 229.920455 346.663276 L 229.920455 316.111952 L 204.556818 316.111952 z " style="fill:#1f77b4;"/> </g> <g id="patch_9"> <path clip-path="url(#pcaad295bc4)" d="M 229.920455 346.663276 L 255.284091 346.663276 L 255.284091 270.876426 L 229.920455 270.876426 z " style="fill:#1f77b4;"/> </g> <g id="patch_10"> <path clip-path="url(#pcaad295bc4)" d="M 255.284091 346.663276 L 280.647727 346.663276 L 280.647727 193.145212 L 255.284091 193.145212 z " style="fill:#1f77b4;"/> </g> <g id="patch_11"> <path clip-path="url(#pcaad295bc4)" d="M 280.647727 346.663276 L 306.011364 346.663276 L 306.011364 102.264821 L 280.647727 102.264821 z " style="fill:#1f77b4;"/> </g> <g id="patch_12"> <path clip-path="url(#pcaad295bc4)" d="M 306.011364 346.663276 L 331.375 346.663276 L 331.375 33.53388 L 306.011364 33.53388 z " style="fill:#1f77b4;"/> </g> <g id="patch_13"> <path clip-path="url(#pcaad295bc4)" d="M 331.375 346.663276 L 356.738636 346.663276 L 356.738636 26.698251 L 331.375 26.698251 z " style="fill:#1f77b4;"/> </g> <g id="patch_14"> <path clip-path="url(#pcaad295bc4)" d="M 356.738636 346.663276 L 382.102273 346.663276 L 382.102273 82.947795 L 356.738636 82.947795 z " style="fill:#1f77b4;"/> </g> <g id="patch_15"> <path clip-path="url(#pcaad295bc4)" d="M 382.102273 346.663276 L 407.465909 346.663276 L 407.465909 173.526384 L 382.102273 173.526384 z " style="fill:#1f77b4;"/> </g> <g id="patch_16"> <path clip-path="url(#pcaad295bc4)" d="M 407.465909 346.663276 L 432.829545 346.663276 L 432.829545 254.946861 L 407.465909 254.946861 z " style="fill:#1f77b4;"/> </g> <g id="patch_17"> <path clip-path="url(#pcaad295bc4)" d="M 432.829545 346.663276 L 458.193182 346.663276 L 458.193182 308.265114 L 432.829545 308.265114 z " style="fill:#1f77b4;"/> </g> <g id="patch_18"> <path clip-path="url(#pcaad295bc4)" d="M 458.193182 346.663276 L 483.556818 346.663276 L 483.556818 333.751725 L 458.193182 333.751725 z " style="fill:#1f77b4;"/> </g> <g id="patch_19"> <path clip-path="url(#pcaad295bc4)" d="M 483.556818 346.663276 L 508.920455 346.663276 L 508.920455 343.170011 L 483.556818 343.170011 z " style="fill:#1f77b4;"/> </g> <g id="patch_20"> <path clip-path="url(#pcaad295bc4)" d="M 508.920455 346.663276 L 534.284091 346.663276 L 534.284091 345.936525 L 508.920455 345.936525 z " style="fill:#1f77b4;"/> </g> <g id="patch_21"> <path clip-path="url(#pcaad295bc4)" d="M 534.284091 346.663276 L 559.647727 346.663276 L 559.647727 346.5488 L 534.284091 346.5488 z " style="fill:#1f77b4;"/> </g> <g id="patch_22"> <path clip-path="url(#pcaad295bc4)" d="M 559.647727 346.663276 L 585.011364 346.663276 L 585.011364 346.647666 L 559.647727 346.647666 z " style="fill:#1f77b4;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m65813755f3" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="67.756249" xlink:href="#m65813755f3" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(55.614843 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-31"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="156.592868" xlink:href="#m65813755f3" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(144.451462 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-31"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="245.429487" xlink:href="#m65813755f3" y="346.663276"/> </g> </g> <g id="text_3"> <g transform="translate(233.288081 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="334.266106" xlink:href="#m65813755f3" y="346.663276"/> </g> </g> <g id="text_4"> <g transform="translate(326.314544 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="423.102726" xlink:href="#m65813755f3" y="346.663276"/> </g> </g> <g id="text_5"> <g transform="translate(415.151163 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="511.939345" xlink:href="#m65813755f3" y="346.663276"/> </g> </g> <g id="text_6"> <g transform="translate(503.987782 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="600.775964" xlink:href="#m65813755f3" y="346.663276"/> </g> </g> <g id="text_7"> <g transform="translate(592.824401 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_8"> <defs> <path d="M 0 0 L -3.5 0 " id="mf63a8ea82f" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.375" xlink:href="#mf63a8ea82f" y="346.663276"/> </g> </g> <g id="text_8"> <g transform="translate(39.0125 350.462495)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.375" xlink:href="#mf63a8ea82f" y="303.301001"/> </g> </g> <g id="text_9"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(13.5625 307.10022)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-35"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.375" xlink:href="#mf63a8ea82f" y="259.938726"/> </g> </g> <g id="text_10"> <g transform="translate(13.5625 263.737945)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.375" xlink:href="#mf63a8ea82f" y="216.576451"/> </g> </g> <g id="text_11"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(13.5625 220.37567)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> <use x="63.623047" xlink:href="#DejaVuSans-35"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.375" xlink:href="#mf63a8ea82f" y="173.214176"/> </g> </g> <g id="text_12"> <g transform="translate(7.2 177.013394)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> <use x="318.115234" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.375" xlink:href="#mf63a8ea82f" y="129.8519"/> </g> </g> <g id="text_13"> <g transform="translate(7.2 133.651119)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-32"/> <use x="127.246094" xlink:href="#DejaVuSans-35"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> <use x="318.115234" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.375" xlink:href="#mf63a8ea82f" y="86.489625"/> </g> </g> <g id="text_14"> <g transform="translate(7.2 90.288844)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-35"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> <use x="318.115234" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_8"> <g id="line2d_15"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.375" xlink:href="#mf63a8ea82f" y="43.12735"/> </g> </g> <g id="text_15"> <g transform="translate(7.2 46.926569)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-37"/> <use x="127.246094" xlink:href="#DejaVuSans-35"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> <use x="318.115234" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="patch_23"> <path d="M 52.375 346.663276 L 52.375 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_24"> <path d="M 610.375 346.663276 L 610.375 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_25"> <path d="M 52.375 346.663276 L 610.375 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_26"> <path d="M 52.375 10.7 L 610.375 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="pcaad295bc4"> <rect height="335.963276" width="558" x="52.375" y="10.7"/> </clipPath> </defs> </svg>

En particulier, si on prend un nombre aléatoire entre 0 et 1:

In [25]:
np.random.rand()
Out[25]:
0.5099806399762091

il est facile de le transformer en une valeur binaire aléatoire (soit vraie ou fausse, soit True ou False):

In [26]:
np.random.rand() > .5
Out[26]:
True

D'où le tirage d'une variable aléatoire binaire:

In [27]:
fig, ax = plt.subplots(figsize=figsize)
resultats = np.random.rand(100) > .5
ax.hist(resultats)
Out[27]:
(array([ 55.,   0.,   0.,   0.,   0.,   0.,   0.,   0.,   0.,  45.]),
 array([ 0. ,  0.1,  0.2,  0.3,  0.4,  0.5,  0.6,  0.7,  0.8,  0.9,  1. ]),
 <a list of 10 Patch objects>)
<svg height="370pt" version="1.1" viewBox="0 0 595 370" width="595pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 370.541401 L 595.625 370.541401 L 595.625 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 26.925 346.663276 L 584.925 346.663276 L 584.925 10.7 L 26.925 10.7 z " style="fill:#ffffff;"/> </g> <g id="patch_3"> <path clip-path="url(#pd4b0b3b4ff)" d="M 52.288636 346.663276 L 103.015909 346.663276 L 103.015909 26.698251 L 52.288636 26.698251 z " style="fill:#1f77b4;"/> </g> <g id="patch_4"> <path clip-path="url(#pd4b0b3b4ff)" d="M 103.015909 346.663276 L 153.743182 346.663276 L 153.743182 346.663276 L 103.015909 346.663276 z " style="fill:#1f77b4;"/> </g> <g id="patch_5"> <path clip-path="url(#pd4b0b3b4ff)" d="M 153.743182 346.663276 L 204.470455 346.663276 L 204.470455 346.663276 L 153.743182 346.663276 z " style="fill:#1f77b4;"/> </g> <g id="patch_6"> <path clip-path="url(#pd4b0b3b4ff)" d="M 204.470455 346.663276 L 255.197727 346.663276 L 255.197727 346.663276 L 204.470455 346.663276 z " style="fill:#1f77b4;"/> </g> <g id="patch_7"> <path clip-path="url(#pd4b0b3b4ff)" d="M 255.197727 346.663276 L 305.925 346.663276 L 305.925 346.663276 L 255.197727 346.663276 z " style="fill:#1f77b4;"/> </g> <g id="patch_8"> <path clip-path="url(#pd4b0b3b4ff)" d="M 305.925 346.663276 L 356.652273 346.663276 L 356.652273 346.663276 L 305.925 346.663276 z " style="fill:#1f77b4;"/> </g> <g id="patch_9"> <path clip-path="url(#pd4b0b3b4ff)" d="M 356.652273 346.663276 L 407.379545 346.663276 L 407.379545 346.663276 L 356.652273 346.663276 z " style="fill:#1f77b4;"/> </g> <g id="patch_10"> <path clip-path="url(#pd4b0b3b4ff)" d="M 407.379545 346.663276 L 458.106818 346.663276 L 458.106818 346.663276 L 407.379545 346.663276 z " style="fill:#1f77b4;"/> </g> <g id="patch_11"> <path clip-path="url(#pd4b0b3b4ff)" d="M 458.106818 346.663276 L 508.834091 346.663276 L 508.834091 346.663276 L 458.106818 346.663276 z " style="fill:#1f77b4;"/> </g> <g id="patch_12"> <path clip-path="url(#pd4b0b3b4ff)" d="M 508.834091 346.663276 L 559.561364 346.663276 L 559.561364 84.87371 L 508.834091 84.87371 z " style="fill:#1f77b4;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="mdc60173423" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.288636" xlink:href="#mdc60173423" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(44.337074 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="153.743182" xlink:href="#mdc60173423" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(145.791619 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="255.197727" xlink:href="#mdc60173423" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(247.246165 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="356.652273" xlink:href="#mdc60173423" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(348.70071 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="458.106818" xlink:href="#mdc60173423" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(450.155256 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-38"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="559.561364" xlink:href="#mdc60173423" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(551.609801 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_7"> <defs> <path d="M 0 0 L -3.5 0 " id="m3416620e24" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#m3416620e24" y="346.663276"/> </g> </g> <g id="text_7"> <g transform="translate(13.5625 350.462495)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#m3416620e24" y="288.487817"/> </g> </g> <g id="text_8"> <g transform="translate(7.2 292.287036)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#m3416620e24" y="230.312358"/> </g> </g> <g id="text_9"> <g transform="translate(7.2 234.111577)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#m3416620e24" y="172.136899"/> </g> </g> <g id="text_10"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(7.2 175.936118)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#m3416620e24" y="113.96144"/> </g> </g> <g id="text_11"> <g transform="translate(7.2 117.760659)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#m3416620e24" y="55.785981"/> </g> </g> <g id="text_12"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(7.2 59.5852)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="patch_13"> <path d="M 26.925 346.663276 L 26.925 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_14"> <path d="M 584.925 346.663276 L 584.925 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_15"> <path d="M 26.925 346.663276 L 584.925 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_16"> <path d="M 26.925 10.7 L 584.925 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="pd4b0b3b4ff"> <rect height="335.963276" width="558" x="26.925" y="10.7"/> </clipPath> </defs> </svg>

Si on la considère comme une séquence de tirages d'un dé non pipé, on peut la transformer un un gain poistif ($+1$) ou négatif ($-1$):

In [28]:
plt.step(np.arange(100), 2*resultats-1);
<svg height="252pt" version="1.1" viewBox="0 0 390 252" width="390pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 252.018125 L 390.345312 252.018125 L 390.345312 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 44.845313 228.14 L 379.645313 228.14 L 379.645313 10.7 L 44.845313 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m7b6f00f62b" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="60.063494" xlink:href="#m7b6f00f62b" y="228.14"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(56.882244 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="121.551098" xlink:href="#m7b6f00f62b" y="228.14"/> </g> </g> <g id="text_2"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(115.188598 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="183.038701" xlink:href="#m7b6f00f62b" y="228.14"/> </g> </g> <g id="text_3"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(176.676201 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="244.526304" xlink:href="#m7b6f00f62b" y="228.14"/> </g> </g> <g id="text_4"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(238.163804 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="306.013908" xlink:href="#m7b6f00f62b" y="228.14"/> </g> </g> <g id="text_5"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(299.651408 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-38"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="367.501511" xlink:href="#m7b6f00f62b" y="228.14"/> </g> </g> <g id="text_6"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(357.957761 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_7"> <defs> <path d="M 0 0 L -3.5 0 " id="mda796b51c7" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="44.845313" xlink:href="#mda796b51c7" y="218.256364"/> </g> </g> <g id="text_7"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(7.2 222.055582)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-31"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-30"/> <use x="242.822266" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="44.845313" xlink:href="#mda796b51c7" y="193.547273"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(7.2 197.346491)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-37"/> <use x="242.822266" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="44.845313" xlink:href="#mda796b51c7" y="168.838182"/> </g> </g> <g id="text_9"> <g transform="translate(7.2 172.637401)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> <use x="242.822266" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="44.845313" xlink:href="#mda796b51c7" y="144.129091"/> </g> </g> <g id="text_10"> <g transform="translate(7.2 147.92831)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-32"/> <use x="242.822266" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="44.845313" xlink:href="#mda796b51c7" y="119.42"/> </g> </g> <g id="text_11"> <g transform="translate(15.579688 123.219219)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> <use x="159.033203" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="44.845313" xlink:href="#mda796b51c7" y="94.710909"/> </g> </g> <g id="text_12"> <g transform="translate(15.579688 98.510128)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> <use x="159.033203" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="44.845313" xlink:href="#mda796b51c7" y="70.001818"/> </g> </g> <g id="text_13"> <g transform="translate(15.579688 73.801037)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> <use x="159.033203" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_8"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="44.845313" xlink:href="#mda796b51c7" y="45.292727"/> </g> </g> <g id="text_14"> <g transform="translate(15.579688 49.091946)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-37"/> <use x="159.033203" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_9"> <g id="line2d_15"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="44.845313" xlink:href="#mda796b51c7" y="20.583636"/> </g> </g> <g id="text_15"> <g transform="translate(15.579688 24.382855)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> <use x="159.033203" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="line2d_16"> <path clip-path="url(#p3ccb55a26f)" d="M 60.063494 20.583636 L 87.732916 20.583636 L 87.732916 218.256364 L 96.956056 218.256364 L 96.956056 20.583636 L 100.030436 20.583636 L 100.030436 218.256364 L 103.104817 218.256364 L 103.104817 20.583636 L 106.179197 20.583636 L 106.179197 218.256364 L 109.253577 218.256364 L 109.253577 20.583636 L 115.402337 20.583636 L 115.402337 218.256364 L 118.476717 218.256364 L 118.476717 20.583636 L 124.625478 20.583636 L 124.625478 218.256364 L 127.699858 218.256364 L 127.699858 20.583636 L 130.774238 20.583636 L 130.774238 218.256364 L 136.922998 218.256364 L 136.922998 20.583636 L 143.071759 20.583636 L 143.071759 218.256364 L 146.146139 218.256364 L 146.146139 20.583636 L 152.294899 20.583636 L 152.294899 218.256364 L 167.6668 218.256364 L 167.6668 20.583636 L 170.74118 20.583636 L 170.74118 218.256364 L 173.81556 218.256364 L 173.81556 20.583636 L 179.964321 20.583636 L 179.964321 218.256364 L 183.038701 218.256364 L 183.038701 20.583636 L 186.113081 20.583636 L 186.113081 218.256364 L 189.187461 218.256364 L 189.187461 20.583636 L 192.261841 20.583636 L 192.261841 218.256364 L 198.410602 218.256364 L 198.410602 20.583636 L 201.484982 20.583636 L 201.484982 218.256364 L 207.633742 218.256364 L 207.633742 20.583636 L 213.782503 20.583636 L 213.782503 218.256364 L 223.005643 218.256364 L 223.005643 20.583636 L 226.080023 20.583636 L 226.080023 218.256364 L 238.377544 218.256364 L 238.377544 20.583636 L 244.526304 20.583636 L 244.526304 218.256364 L 247.600684 218.256364 L 247.600684 20.583636 L 250.675065 20.583636 L 250.675065 218.256364 L 262.972585 218.256364 L 262.972585 20.583636 L 266.046965 20.583636 L 266.046965 218.256364 L 269.121346 218.256364 L 269.121346 20.583636 L 275.270106 20.583636 L 275.270106 218.256364 L 281.418866 218.256364 L 281.418866 20.583636 L 284.493246 20.583636 L 284.493246 218.256364 L 290.642007 218.256364 L 290.642007 20.583636 L 293.716387 20.583636 L 293.716387 218.256364 L 296.790767 218.256364 L 296.790767 20.583636 L 302.939527 20.583636 L 302.939527 218.256364 L 306.013908 218.256364 L 306.013908 20.583636 L 312.162668 20.583636 L 312.162668 218.256364 L 315.237048 218.256364 L 315.237048 20.583636 L 318.311428 20.583636 L 318.311428 218.256364 L 333.683329 218.256364 L 333.683329 20.583636 L 336.757709 20.583636 L 336.757709 218.256364 L 345.98085 218.256364 L 345.98085 20.583636 L 349.05523 20.583636 L 349.05523 218.256364 L 364.427131 218.256364 L 364.427131 218.256364 " style="fill:none;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="patch_3"> <path d="M 44.845313 228.14 L 44.845313 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 379.645313 228.14 L 379.645313 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 44.845313 228.14 L 379.645313 228.14 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 44.845313 10.7 L 379.645313 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p3ccb55a26f"> <rect height="217.44" width="334.8" x="44.845313" y="10.7"/> </clipPath> </defs> </svg>

Un intéret pour notre jeu est de considérer le gain accumulé pour des paris, et on "plotte" ici le gain accumulé sur $20$ différentes parties en fonction du temps ($100$ cycles):

In [29]:
resultats = np.random.rand(100, 20) > .5
gains = 2*resultats-1
gains_cumulés = np.cumsum(gains, axis=0)
fig, ax = plt.subplots(figsize=(8, 5))
t = np.arange(100)
std = np.sqrt(t) * gains.std()
ax.fill_between(t, std, -std, color='k', edgecolor='none', lw=0, alpha=0.1);
ax.plot(gains_cumulés, alpha=0.2);
<svg height="306pt" version="1.1" viewBox="0 0 492 306" width="492pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 306.378125 L 492.404687 306.378125 L 492.404687 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 35.304688 282.5 L 481.704687 282.5 L 481.704687 10.7 L 35.304688 10.7 z " style="fill:#ffffff;"/> </g> <g id="PolyCollection_1"> <defs> <path d="M 55.595597 -144.95267 L 55.595597 -144.95267 L 59.69477 -149.894479 L 63.793944 -151.941443 L 67.893117 -153.512134 L 71.992291 -154.836287 L 76.091464 -156.00289 L 80.190638 -157.057579 L 84.289811 -158.027466 L 88.388985 -158.930215 L 92.488159 -159.778095 L 96.587332 -160.58004 L 100.686506 -161.342794 L 104.785679 -162.071597 L 108.884853 -162.770614 L 112.984026 -163.443224 L 117.0832 -164.092212 L 121.182373 -164.719904 L 125.281547 -165.328268 L 129.380721 -165.918987 L 133.479894 -166.493513 L 137.579068 -167.053109 L 141.678241 -167.598881 L 145.777415 -168.131806 L 149.876588 -168.65275 L 153.975762 -169.162488 L 158.074935 -169.661712 L 162.174109 -170.151047 L 166.273283 -170.63106 L 170.372456 -171.102262 L 174.47163 -171.565123 L 178.570803 -172.020069 L 182.669977 -172.467495 L 186.76915 -172.90776 L 190.868324 -173.341198 L 194.967497 -173.768117 L 199.066671 -174.188803 L 203.165845 -174.60352 L 207.265018 -175.012517 L 211.364192 -175.416023 L 215.463365 -175.814253 L 219.562539 -176.20741 L 223.661712 -176.595683 L 227.760886 -176.979249 L 231.860059 -177.358275 L 235.959233 -177.732918 L 240.058407 -178.103328 L 244.15758 -178.469645 L 248.256754 -178.832001 L 252.355927 -179.190523 L 256.455101 -179.545329 L 260.554274 -179.896532 L 264.653448 -180.244241 L 268.752621 -180.588557 L 272.851795 -180.929578 L 276.950968 -181.267397 L 281.050142 -181.602102 L 285.149316 -181.933778 L 289.248489 -182.262505 L 293.347663 -182.588361 L 297.446836 -182.91142 L 301.54601 -183.231753 L 305.645183 -183.549427 L 309.744357 -183.864508 L 313.84353 -184.177058 L 317.942704 -184.487137 L 322.041878 -184.794803 L 326.141051 -185.100111 L 330.240225 -185.403115 L 334.339398 -185.703866 L 338.438572 -186.002413 L 342.537745 -186.298805 L 346.636919 -186.593087 L 350.736092 -186.885304 L 354.835266 -187.175499 L 358.93444 -187.463713 L 363.033613 -187.749986 L 367.132787 -188.034356 L 371.23196 -188.316862 L 375.331134 -188.59754 L 379.430307 -188.876423 L 383.529481 -189.153548 L 387.628654 -189.428945 L 391.727828 -189.702648 L 395.827002 -189.974687 L 399.926175 -190.245092 L 404.025349 -190.513892 L 408.124522 -190.781115 L 412.223696 -191.04679 L 416.322869 -191.310942 L 420.422043 -191.573597 L 424.521216 -191.83478 L 428.62039 -192.094517 L 432.719564 -192.35283 L 436.818737 -192.609744 L 440.917911 -192.86528 L 445.017084 -193.11946 L 449.116258 -193.372305 L 453.215431 -193.623838 L 457.314605 -193.874077 L 461.413778 -194.123042 L 461.413778 -95.782299 L 461.413778 -95.782299 L 457.314605 -96.031264 L 453.215431 -96.281503 L 449.116258 -96.533036 L 445.017084 -96.785881 L 440.917911 -97.040061 L 436.818737 -97.295597 L 432.719564 -97.55251 L 428.62039 -97.810824 L 424.521216 -98.070561 L 420.422043 -98.331744 L 416.322869 -98.594399 L 412.223696 -98.858551 L 408.124522 -99.124226 L 404.025349 -99.391449 L 399.926175 -99.660249 L 395.827002 -99.930654 L 391.727828 -100.202693 L 387.628654 -100.476396 L 383.529481 -100.751793 L 379.430307 -101.028918 L 375.331134 -101.307801 L 371.23196 -101.588479 L 367.132787 -101.870985 L 363.033613 -102.155355 L 358.93444 -102.441628 L 354.835266 -102.729842 L 350.736092 -103.020037 L 346.636919 -103.312254 L 342.537745 -103.606536 L 338.438572 -103.902928 L 334.339398 -104.201475 L 330.240225 -104.502226 L 326.141051 -104.80523 L 322.041878 -105.110538 L 317.942704 -105.418204 L 313.84353 -105.728283 L 309.744357 -106.040833 L 305.645183 -106.355914 L 301.54601 -106.673588 L 297.446836 -106.993921 L 293.347663 -107.31698 L 289.248489 -107.642836 L 285.149316 -107.971563 L 281.050142 -108.303239 L 276.950968 -108.637944 L 272.851795 -108.975763 L 268.752621 -109.316784 L 264.653448 -109.6611 L 260.554274 -110.008809 L 256.455101 -110.360012 L 252.355927 -110.714818 L 248.256754 -111.07334 L 244.15758 -111.435696 L 240.058407 -111.802013 L 235.959233 -112.172423 L 231.860059 -112.547066 L 227.760886 -112.926092 L 223.661712 -113.309658 L 219.562539 -113.69793 L 215.463365 -114.091088 L 211.364192 -114.489318 L 207.265018 -114.892824 L 203.165845 -115.301821 L 199.066671 -115.716538 L 194.967497 -116.137224 L 190.868324 -116.564143 L 186.76915 -116.997581 L 182.669977 -117.437846 L 178.570803 -117.885272 L 174.47163 -118.340218 L 170.372456 -118.803079 L 166.273283 -119.274281 L 162.174109 -119.754294 L 158.074935 -120.243629 L 153.975762 -120.742853 L 149.876588 -121.25259 L 145.777415 -121.773535 L 141.678241 -122.30646 L 137.579068 -122.852232 L 133.479894 -123.411827 L 129.380721 -123.986354 L 125.281547 -124.577073 L 121.182373 -125.185437 L 117.0832 -125.813129 L 112.984026 -126.462117 L 108.884853 -127.134727 L 104.785679 -127.833744 L 100.686506 -128.562547 L 96.587332 -129.3253 L 92.488159 -130.127246 L 88.388985 -130.975126 L 84.289811 -131.877875 L 80.190638 -132.847762 L 76.091464 -133.902451 L 71.992291 -135.069054 L 67.893117 -136.393207 L 63.793944 -137.963898 L 59.69477 -140.010862 L 55.595597 -144.95267 z " id="m147f1a7df8"/> </defs> <g clip-path="url(#pe6e6369d0a)"> <use style="fill-opacity:0.1;" x="0" xlink:href="#m147f1a7df8" y="306.378125"/> </g> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="ma07eb0206c" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="55.595597" xlink:href="#ma07eb0206c" y="282.5"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(52.414347 297.098437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="137.579068" xlink:href="#ma07eb0206c" y="282.5"/> </g> </g> <g id="text_2"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(131.216568 297.098437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="219.562539" xlink:href="#ma07eb0206c" y="282.5"/> </g> </g> <g id="text_3"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(213.200039 297.098437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="301.54601" xlink:href="#ma07eb0206c" y="282.5"/> </g> </g> <g id="text_4"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(295.18351 297.098437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="383.529481" xlink:href="#ma07eb0206c" y="282.5"/> </g> </g> <g id="text_5"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(377.166981 297.098437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-38"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="465.512952" xlink:href="#ma07eb0206c" y="282.5"/> </g> </g> <g id="text_6"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(455.969202 297.098437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_7"> <defs> <path d="M 0 0 L -3.5 0 " id="md473290e4e" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="35.304688" xlink:href="#md473290e4e" y="260.261818"/> </g> </g> <g id="text_7"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> </defs> <g transform="translate(7.2 264.061037)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-32"/> <use x="147.412109" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="35.304688" xlink:href="#md473290e4e" y="210.843636"/> </g> </g> <g id="text_8"> <g transform="translate(7.2 214.642855)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-31"/> <use x="147.412109" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="35.304688" xlink:href="#md473290e4e" y="161.425455"/> </g> </g> <g id="text_9"> <g transform="translate(21.942187 165.224673)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="35.304688" xlink:href="#md473290e4e" y="112.007273"/> </g> </g> <g id="text_10"> <g transform="translate(15.579687 115.806491)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="35.304688" xlink:href="#md473290e4e" y="62.589091"/> </g> </g> <g id="text_11"> <g transform="translate(15.579687 66.38831)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="35.304688" xlink:href="#md473290e4e" y="13.170909"/> </g> </g> <g id="text_12"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(15.579687 16.970128)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="line2d_13"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 156.483636 L 59.69477 151.541818 L 63.793944 156.483636 L 67.893117 151.541818 L 71.992291 156.483636 L 76.091464 161.425455 L 80.190638 156.483636 L 84.289811 161.425455 L 88.388985 166.367273 L 92.488159 161.425455 L 96.587332 156.483636 L 100.686506 161.425455 L 104.785679 166.367273 L 108.884853 171.309091 L 112.984026 166.367273 L 117.0832 161.425455 L 121.182373 166.367273 L 125.281547 171.309091 L 129.380721 166.367273 L 133.479894 161.425455 L 137.579068 166.367273 L 141.678241 171.309091 L 145.777415 176.250909 L 149.876588 171.309091 L 153.975762 176.250909 L 158.074935 171.309091 L 162.174109 176.250909 L 166.273283 181.192727 L 170.372456 186.134545 L 174.47163 181.192727 L 178.570803 176.250909 L 182.669977 181.192727 L 186.76915 176.250909 L 190.868324 181.192727 L 194.967497 186.134545 L 199.066671 181.192727 L 203.165845 186.134545 L 207.265018 191.076364 L 211.364192 196.018182 L 215.463365 191.076364 L 219.562539 186.134545 L 223.661712 191.076364 L 227.760886 196.018182 L 231.860059 191.076364 L 235.959233 186.134545 L 240.058407 191.076364 L 244.15758 196.018182 L 248.256754 191.076364 L 252.355927 196.018182 L 256.455101 200.96 L 260.554274 196.018182 L 264.653448 191.076364 L 268.752621 186.134545 L 272.851795 191.076364 L 276.950968 196.018182 L 281.050142 200.96 L 285.149316 205.901818 L 289.248489 200.96 L 293.347663 196.018182 L 297.446836 200.96 L 301.54601 205.901818 L 305.645183 200.96 L 309.744357 205.901818 L 313.84353 200.96 L 317.942704 196.018182 L 322.041878 191.076364 L 326.141051 186.134545 L 330.240225 181.192727 L 334.339398 186.134545 L 338.438572 181.192727 L 342.537745 186.134545 L 346.636919 181.192727 L 350.736092 186.134545 L 354.835266 181.192727 L 358.93444 186.134545 L 363.033613 191.076364 L 367.132787 186.134545 L 371.23196 191.076364 L 375.331134 186.134545 L 379.430307 181.192727 L 383.529481 186.134545 L 387.628654 191.076364 L 391.727828 196.018182 L 395.827002 200.96 L 399.926175 196.018182 L 404.025349 200.96 L 408.124522 205.901818 L 412.223696 210.843636 L 416.322869 215.785455 L 420.422043 210.843636 L 424.521216 215.785455 L 428.62039 220.727273 L 432.719564 215.785455 L 436.818737 210.843636 L 440.917911 205.901818 L 445.017084 200.96 L 449.116258 196.018182 L 453.215431 200.96 L 457.314605 205.901818 L 461.413778 210.843636 " style="fill:none;opacity:0.2;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_14"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 161.425455 L 63.793944 166.367273 L 67.893117 161.425455 L 71.992291 156.483636 L 76.091464 151.541818 L 80.190638 146.6 L 84.289811 151.541818 L 88.388985 146.6 L 92.488159 141.658182 L 96.587332 136.716364 L 100.686506 131.774545 L 104.785679 126.832727 L 108.884853 131.774545 L 112.984026 136.716364 L 117.0832 131.774545 L 121.182373 126.832727 L 125.281547 131.774545 L 129.380721 136.716364 L 133.479894 141.658182 L 137.579068 136.716364 L 141.678241 131.774545 L 145.777415 136.716364 L 149.876588 131.774545 L 153.975762 126.832727 L 158.074935 131.774545 L 162.174109 136.716364 L 166.273283 141.658182 L 170.372456 136.716364 L 174.47163 141.658182 L 178.570803 146.6 L 182.669977 141.658182 L 186.76915 136.716364 L 190.868324 131.774545 L 194.967497 126.832727 L 199.066671 131.774545 L 203.165845 136.716364 L 207.265018 141.658182 L 211.364192 136.716364 L 215.463365 141.658182 L 219.562539 146.6 L 223.661712 151.541818 L 227.760886 156.483636 L 231.860059 151.541818 L 235.959233 156.483636 L 240.058407 161.425455 L 244.15758 166.367273 L 248.256754 171.309091 L 252.355927 176.250909 L 256.455101 181.192727 L 260.554274 176.250909 L 264.653448 181.192727 L 268.752621 186.134545 L 272.851795 181.192727 L 276.950968 176.250909 L 281.050142 181.192727 L 285.149316 176.250909 L 289.248489 171.309091 L 293.347663 176.250909 L 297.446836 181.192727 L 301.54601 186.134545 L 305.645183 191.076364 L 309.744357 186.134545 L 313.84353 191.076364 L 317.942704 196.018182 L 322.041878 200.96 L 326.141051 205.901818 L 330.240225 200.96 L 334.339398 196.018182 L 338.438572 191.076364 L 342.537745 186.134545 L 346.636919 191.076364 L 350.736092 196.018182 L 354.835266 200.96 L 358.93444 205.901818 L 363.033613 200.96 L 367.132787 205.901818 L 371.23196 200.96 L 375.331134 205.901818 L 379.430307 200.96 L 383.529481 196.018182 L 387.628654 191.076364 L 391.727828 196.018182 L 395.827002 191.076364 L 399.926175 196.018182 L 404.025349 191.076364 L 408.124522 186.134545 L 412.223696 191.076364 L 416.322869 186.134545 L 420.422043 191.076364 L 424.521216 196.018182 L 428.62039 191.076364 L 432.719564 186.134545 L 436.818737 191.076364 L 440.917911 186.134545 L 445.017084 181.192727 L 449.116258 186.134545 L 453.215431 181.192727 L 457.314605 176.250909 L 461.413778 171.309091 " style="fill:none;opacity:0.2;stroke:#ff7f0e;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_15"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 156.483636 L 59.69477 151.541818 L 63.793944 146.6 L 67.893117 151.541818 L 71.992291 156.483636 L 76.091464 151.541818 L 80.190638 156.483636 L 84.289811 161.425455 L 88.388985 166.367273 L 92.488159 171.309091 L 96.587332 166.367273 L 100.686506 171.309091 L 104.785679 166.367273 L 108.884853 161.425455 L 112.984026 156.483636 L 117.0832 151.541818 L 121.182373 146.6 L 125.281547 151.541818 L 129.380721 146.6 L 133.479894 141.658182 L 137.579068 146.6 L 141.678241 141.658182 L 145.777415 136.716364 L 149.876588 131.774545 L 153.975762 136.716364 L 158.074935 141.658182 L 162.174109 146.6 L 166.273283 141.658182 L 170.372456 136.716364 L 174.47163 141.658182 L 178.570803 146.6 L 182.669977 151.541818 L 186.76915 146.6 L 190.868324 141.658182 L 194.967497 136.716364 L 199.066671 131.774545 L 203.165845 136.716364 L 207.265018 141.658182 L 211.364192 146.6 L 215.463365 141.658182 L 219.562539 146.6 L 223.661712 141.658182 L 227.760886 146.6 L 231.860059 141.658182 L 235.959233 136.716364 L 240.058407 131.774545 L 244.15758 136.716364 L 248.256754 131.774545 L 252.355927 136.716364 L 256.455101 131.774545 L 260.554274 126.832727 L 264.653448 121.890909 L 268.752621 126.832727 L 272.851795 121.890909 L 276.950968 116.949091 L 281.050142 121.890909 L 285.149316 126.832727 L 289.248489 131.774545 L 293.347663 126.832727 L 297.446836 121.890909 L 301.54601 126.832727 L 305.645183 121.890909 L 309.744357 116.949091 L 313.84353 112.007273 L 317.942704 116.949091 L 322.041878 121.890909 L 326.141051 116.949091 L 330.240225 121.890909 L 334.339398 126.832727 L 338.438572 121.890909 L 342.537745 126.832727 L 346.636919 121.890909 L 350.736092 126.832727 L 354.835266 121.890909 L 358.93444 126.832727 L 363.033613 131.774545 L 367.132787 136.716364 L 371.23196 131.774545 L 375.331134 126.832727 L 379.430307 121.890909 L 383.529481 116.949091 L 387.628654 121.890909 L 391.727828 116.949091 L 395.827002 121.890909 L 399.926175 126.832727 L 404.025349 121.890909 L 408.124522 116.949091 L 412.223696 112.007273 L 416.322869 107.065455 L 420.422043 102.123636 L 424.521216 107.065455 L 428.62039 102.123636 L 432.719564 97.181818 L 436.818737 102.123636 L 440.917911 97.181818 L 445.017084 102.123636 L 449.116258 97.181818 L 453.215431 102.123636 L 457.314605 107.065455 L 461.413778 112.007273 " style="fill:none;opacity:0.2;stroke:#2ca02c;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_16"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 171.309091 L 63.793944 176.250909 L 67.893117 181.192727 L 71.992291 186.134545 L 76.091464 181.192727 L 80.190638 186.134545 L 84.289811 181.192727 L 88.388985 186.134545 L 92.488159 191.076364 L 96.587332 196.018182 L 100.686506 200.96 L 104.785679 196.018182 L 108.884853 200.96 L 112.984026 205.901818 L 117.0832 200.96 L 121.182373 205.901818 L 125.281547 200.96 L 129.380721 205.901818 L 133.479894 210.843636 L 137.579068 205.901818 L 141.678241 200.96 L 145.777415 196.018182 L 149.876588 200.96 L 153.975762 205.901818 L 158.074935 200.96 L 162.174109 196.018182 L 166.273283 191.076364 L 170.372456 196.018182 L 174.47163 191.076364 L 178.570803 196.018182 L 182.669977 200.96 L 186.76915 196.018182 L 190.868324 191.076364 L 194.967497 186.134545 L 199.066671 181.192727 L 203.165845 186.134545 L 207.265018 181.192727 L 211.364192 176.250909 L 215.463365 181.192727 L 219.562539 186.134545 L 223.661712 181.192727 L 227.760886 176.250909 L 231.860059 181.192727 L 235.959233 186.134545 L 240.058407 191.076364 L 244.15758 196.018182 L 248.256754 200.96 L 252.355927 205.901818 L 256.455101 200.96 L 260.554274 205.901818 L 264.653448 210.843636 L 268.752621 205.901818 L 272.851795 200.96 L 276.950968 205.901818 L 281.050142 210.843636 L 285.149316 205.901818 L 289.248489 210.843636 L 293.347663 215.785455 L 297.446836 220.727273 L 301.54601 215.785455 L 305.645183 220.727273 L 309.744357 225.669091 L 313.84353 230.610909 L 317.942704 235.552727 L 322.041878 240.494545 L 326.141051 235.552727 L 330.240225 230.610909 L 334.339398 225.669091 L 338.438572 220.727273 L 342.537745 215.785455 L 346.636919 210.843636 L 350.736092 205.901818 L 354.835266 200.96 L 358.93444 196.018182 L 363.033613 191.076364 L 367.132787 196.018182 L 371.23196 200.96 L 375.331134 205.901818 L 379.430307 200.96 L 383.529481 205.901818 L 387.628654 210.843636 L 391.727828 215.785455 L 395.827002 210.843636 L 399.926175 215.785455 L 404.025349 210.843636 L 408.124522 215.785455 L 412.223696 210.843636 L 416.322869 215.785455 L 420.422043 210.843636 L 424.521216 215.785455 L 428.62039 220.727273 L 432.719564 215.785455 L 436.818737 220.727273 L 440.917911 225.669091 L 445.017084 230.610909 L 449.116258 235.552727 L 453.215431 240.494545 L 457.314605 245.436364 L 461.413778 250.378182 " style="fill:none;opacity:0.2;stroke:#d62728;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_17"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 171.309091 L 63.793944 166.367273 L 67.893117 161.425455 L 71.992291 156.483636 L 76.091464 161.425455 L 80.190638 166.367273 L 84.289811 161.425455 L 88.388985 166.367273 L 92.488159 161.425455 L 96.587332 166.367273 L 100.686506 171.309091 L 104.785679 166.367273 L 108.884853 171.309091 L 112.984026 176.250909 L 117.0832 171.309091 L 121.182373 176.250909 L 125.281547 181.192727 L 129.380721 176.250909 L 133.479894 181.192727 L 137.579068 176.250909 L 141.678241 171.309091 L 145.777415 166.367273 L 149.876588 171.309091 L 153.975762 166.367273 L 158.074935 161.425455 L 162.174109 156.483636 L 166.273283 151.541818 L 170.372456 156.483636 L 174.47163 151.541818 L 178.570803 156.483636 L 182.669977 151.541818 L 186.76915 156.483636 L 190.868324 161.425455 L 194.967497 166.367273 L 199.066671 161.425455 L 203.165845 166.367273 L 207.265018 161.425455 L 211.364192 166.367273 L 215.463365 161.425455 L 219.562539 156.483636 L 223.661712 151.541818 L 227.760886 156.483636 L 231.860059 151.541818 L 235.959233 156.483636 L 240.058407 151.541818 L 244.15758 156.483636 L 248.256754 161.425455 L 252.355927 166.367273 L 256.455101 161.425455 L 260.554274 166.367273 L 264.653448 171.309091 L 268.752621 166.367273 L 272.851795 161.425455 L 276.950968 166.367273 L 281.050142 171.309091 L 285.149316 176.250909 L 289.248489 171.309091 L 293.347663 166.367273 L 297.446836 171.309091 L 301.54601 176.250909 L 305.645183 171.309091 L 309.744357 166.367273 L 313.84353 161.425455 L 317.942704 156.483636 L 322.041878 151.541818 L 326.141051 156.483636 L 330.240225 161.425455 L 334.339398 156.483636 L 338.438572 161.425455 L 342.537745 156.483636 L 346.636919 161.425455 L 350.736092 156.483636 L 354.835266 161.425455 L 358.93444 156.483636 L 363.033613 161.425455 L 367.132787 166.367273 L 371.23196 171.309091 L 375.331134 176.250909 L 379.430307 181.192727 L 383.529481 176.250909 L 387.628654 171.309091 L 391.727828 166.367273 L 395.827002 171.309091 L 399.926175 166.367273 L 404.025349 171.309091 L 408.124522 166.367273 L 412.223696 171.309091 L 416.322869 176.250909 L 420.422043 181.192727 L 424.521216 176.250909 L 428.62039 181.192727 L 432.719564 176.250909 L 436.818737 171.309091 L 440.917911 166.367273 L 445.017084 171.309091 L 449.116258 176.250909 L 453.215431 171.309091 L 457.314605 166.367273 L 461.413778 171.309091 " style="fill:none;opacity:0.2;stroke:#9467bd;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_18"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 161.425455 L 63.793944 166.367273 L 67.893117 161.425455 L 71.992291 166.367273 L 76.091464 161.425455 L 80.190638 156.483636 L 84.289811 161.425455 L 88.388985 156.483636 L 92.488159 151.541818 L 96.587332 146.6 L 100.686506 141.658182 L 104.785679 136.716364 L 108.884853 141.658182 L 112.984026 146.6 L 117.0832 141.658182 L 121.182373 146.6 L 125.281547 141.658182 L 129.380721 146.6 L 133.479894 141.658182 L 137.579068 136.716364 L 141.678241 141.658182 L 145.777415 146.6 L 149.876588 141.658182 L 153.975762 136.716364 L 158.074935 131.774545 L 162.174109 136.716364 L 166.273283 131.774545 L 170.372456 126.832727 L 174.47163 121.890909 L 178.570803 126.832727 L 182.669977 131.774545 L 186.76915 126.832727 L 190.868324 131.774545 L 194.967497 136.716364 L 199.066671 141.658182 L 203.165845 146.6 L 207.265018 141.658182 L 211.364192 146.6 L 215.463365 141.658182 L 219.562539 136.716364 L 223.661712 131.774545 L 227.760886 136.716364 L 231.860059 141.658182 L 235.959233 136.716364 L 240.058407 141.658182 L 244.15758 136.716364 L 248.256754 131.774545 L 252.355927 136.716364 L 256.455101 131.774545 L 260.554274 126.832727 L 264.653448 121.890909 L 268.752621 116.949091 L 272.851795 121.890909 L 276.950968 116.949091 L 281.050142 121.890909 L 285.149316 116.949091 L 289.248489 121.890909 L 293.347663 126.832727 L 297.446836 131.774545 L 301.54601 126.832727 L 305.645183 131.774545 L 309.744357 126.832727 L 313.84353 131.774545 L 317.942704 136.716364 L 322.041878 131.774545 L 326.141051 126.832727 L 330.240225 131.774545 L 334.339398 126.832727 L 338.438572 131.774545 L 342.537745 136.716364 L 346.636919 141.658182 L 350.736092 136.716364 L 354.835266 141.658182 L 358.93444 146.6 L 363.033613 141.658182 L 367.132787 146.6 L 371.23196 151.541818 L 375.331134 146.6 L 379.430307 141.658182 L 383.529481 136.716364 L 387.628654 141.658182 L 391.727828 136.716364 L 395.827002 131.774545 L 399.926175 136.716364 L 404.025349 141.658182 L 408.124522 146.6 L 412.223696 151.541818 L 416.322869 156.483636 L 420.422043 151.541818 L 424.521216 156.483636 L 428.62039 161.425455 L 432.719564 166.367273 L 436.818737 171.309091 L 440.917911 166.367273 L 445.017084 161.425455 L 449.116258 156.483636 L 453.215431 161.425455 L 457.314605 156.483636 L 461.413778 151.541818 " style="fill:none;opacity:0.2;stroke:#8c564b;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_19"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 156.483636 L 59.69477 161.425455 L 63.793944 156.483636 L 67.893117 151.541818 L 71.992291 156.483636 L 76.091464 151.541818 L 80.190638 146.6 L 84.289811 141.658182 L 88.388985 136.716364 L 92.488159 131.774545 L 96.587332 136.716364 L 100.686506 131.774545 L 104.785679 136.716364 L 108.884853 141.658182 L 112.984026 146.6 L 117.0832 151.541818 L 121.182373 146.6 L 125.281547 141.658182 L 129.380721 136.716364 L 133.479894 141.658182 L 137.579068 136.716364 L 141.678241 141.658182 L 145.777415 136.716364 L 149.876588 141.658182 L 153.975762 136.716364 L 158.074935 141.658182 L 162.174109 136.716364 L 166.273283 131.774545 L 170.372456 126.832727 L 174.47163 121.890909 L 178.570803 116.949091 L 182.669977 112.007273 L 186.76915 116.949091 L 190.868324 121.890909 L 194.967497 116.949091 L 199.066671 112.007273 L 203.165845 116.949091 L 207.265018 121.890909 L 211.364192 126.832727 L 215.463365 121.890909 L 219.562539 116.949091 L 223.661712 112.007273 L 227.760886 107.065455 L 231.860059 112.007273 L 235.959233 107.065455 L 240.058407 102.123636 L 244.15758 107.065455 L 248.256754 102.123636 L 252.355927 97.181818 L 256.455101 92.24 L 260.554274 87.298182 L 264.653448 82.356364 L 268.752621 77.414545 L 272.851795 82.356364 L 276.950968 87.298182 L 281.050142 82.356364 L 285.149316 87.298182 L 289.248489 82.356364 L 293.347663 77.414545 L 297.446836 82.356364 L 301.54601 77.414545 L 305.645183 72.472727 L 309.744357 67.530909 L 313.84353 62.589091 L 317.942704 67.530909 L 322.041878 62.589091 L 326.141051 57.647273 L 330.240225 52.705455 L 334.339398 47.763636 L 338.438572 52.705455 L 342.537745 47.763636 L 346.636919 42.821818 L 350.736092 47.763636 L 354.835266 42.821818 L 358.93444 47.763636 L 363.033613 52.705455 L 367.132787 57.647273 L 371.23196 52.705455 L 375.331134 57.647273 L 379.430307 62.589091 L 383.529481 57.647273 L 387.628654 62.589091 L 391.727828 57.647273 L 395.827002 52.705455 L 399.926175 57.647273 L 404.025349 52.705455 L 408.124522 47.763636 L 412.223696 42.821818 L 416.322869 47.763636 L 420.422043 42.821818 L 424.521216 47.763636 L 428.62039 42.821818 L 432.719564 37.88 L 436.818737 42.821818 L 440.917911 47.763636 L 445.017084 52.705455 L 449.116258 47.763636 L 453.215431 52.705455 L 457.314605 47.763636 L 461.413778 42.821818 " style="fill:none;opacity:0.2;stroke:#e377c2;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_20"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 161.425455 L 63.793944 156.483636 L 67.893117 161.425455 L 71.992291 156.483636 L 76.091464 161.425455 L 80.190638 166.367273 L 84.289811 171.309091 L 88.388985 176.250909 L 92.488159 181.192727 L 96.587332 176.250909 L 100.686506 171.309091 L 104.785679 166.367273 L 108.884853 171.309091 L 112.984026 176.250909 L 117.0832 171.309091 L 121.182373 176.250909 L 125.281547 171.309091 L 129.380721 166.367273 L 133.479894 171.309091 L 137.579068 176.250909 L 141.678241 171.309091 L 145.777415 176.250909 L 149.876588 181.192727 L 153.975762 176.250909 L 158.074935 171.309091 L 162.174109 166.367273 L 166.273283 161.425455 L 170.372456 156.483636 L 174.47163 151.541818 L 178.570803 146.6 L 182.669977 151.541818 L 186.76915 146.6 L 190.868324 141.658182 L 194.967497 136.716364 L 199.066671 131.774545 L 203.165845 136.716364 L 207.265018 141.658182 L 211.364192 146.6 L 215.463365 141.658182 L 219.562539 146.6 L 223.661712 141.658182 L 227.760886 146.6 L 231.860059 151.541818 L 235.959233 156.483636 L 240.058407 151.541818 L 244.15758 146.6 L 248.256754 151.541818 L 252.355927 146.6 L 256.455101 151.541818 L 260.554274 156.483636 L 264.653448 161.425455 L 268.752621 156.483636 L 272.851795 161.425455 L 276.950968 156.483636 L 281.050142 151.541818 L 285.149316 146.6 L 289.248489 151.541818 L 293.347663 146.6 L 297.446836 151.541818 L 301.54601 146.6 L 305.645183 151.541818 L 309.744357 146.6 L 313.84353 151.541818 L 317.942704 156.483636 L 322.041878 161.425455 L 326.141051 166.367273 L 330.240225 171.309091 L 334.339398 166.367273 L 338.438572 161.425455 L 342.537745 166.367273 L 346.636919 161.425455 L 350.736092 166.367273 L 354.835266 171.309091 L 358.93444 176.250909 L 363.033613 181.192727 L 367.132787 186.134545 L 371.23196 191.076364 L 375.331134 186.134545 L 379.430307 191.076364 L 383.529481 196.018182 L 387.628654 191.076364 L 391.727828 196.018182 L 395.827002 191.076364 L 399.926175 196.018182 L 404.025349 191.076364 L 408.124522 186.134545 L 412.223696 181.192727 L 416.322869 176.250909 L 420.422043 171.309091 L 424.521216 176.250909 L 428.62039 181.192727 L 432.719564 176.250909 L 436.818737 181.192727 L 440.917911 186.134545 L 445.017084 191.076364 L 449.116258 196.018182 L 453.215431 200.96 L 457.314605 196.018182 L 461.413778 191.076364 " style="fill:none;opacity:0.2;stroke:#7f7f7f;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_21"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 161.425455 L 63.793944 166.367273 L 67.893117 161.425455 L 71.992291 156.483636 L 76.091464 161.425455 L 80.190638 166.367273 L 84.289811 171.309091 L 88.388985 166.367273 L 92.488159 161.425455 L 96.587332 156.483636 L 100.686506 151.541818 L 104.785679 146.6 L 108.884853 141.658182 L 112.984026 136.716364 L 117.0832 141.658182 L 121.182373 146.6 L 125.281547 141.658182 L 129.380721 136.716364 L 133.479894 131.774545 L 137.579068 136.716364 L 141.678241 131.774545 L 145.777415 136.716364 L 149.876588 131.774545 L 153.975762 136.716364 L 158.074935 141.658182 L 162.174109 136.716364 L 166.273283 141.658182 L 170.372456 136.716364 L 174.47163 141.658182 L 178.570803 136.716364 L 182.669977 131.774545 L 186.76915 136.716364 L 190.868324 131.774545 L 194.967497 126.832727 L 199.066671 131.774545 L 203.165845 136.716364 L 207.265018 131.774545 L 211.364192 126.832727 L 215.463365 121.890909 L 219.562539 116.949091 L 223.661712 121.890909 L 227.760886 126.832727 L 231.860059 131.774545 L 235.959233 126.832727 L 240.058407 121.890909 L 244.15758 126.832727 L 248.256754 121.890909 L 252.355927 116.949091 L 256.455101 121.890909 L 260.554274 116.949091 L 264.653448 112.007273 L 268.752621 116.949091 L 272.851795 112.007273 L 276.950968 116.949091 L 281.050142 112.007273 L 285.149316 116.949091 L 289.248489 121.890909 L 293.347663 126.832727 L 297.446836 121.890909 L 301.54601 116.949091 L 305.645183 112.007273 L 309.744357 107.065455 L 313.84353 102.123636 L 317.942704 97.181818 L 322.041878 102.123636 L 326.141051 97.181818 L 330.240225 102.123636 L 334.339398 107.065455 L 338.438572 102.123636 L 342.537745 107.065455 L 346.636919 102.123636 L 350.736092 107.065455 L 354.835266 112.007273 L 358.93444 116.949091 L 363.033613 121.890909 L 367.132787 116.949091 L 371.23196 121.890909 L 375.331134 116.949091 L 379.430307 112.007273 L 383.529481 116.949091 L 387.628654 121.890909 L 391.727828 126.832727 L 395.827002 131.774545 L 399.926175 136.716364 L 404.025349 131.774545 L 408.124522 136.716364 L 412.223696 131.774545 L 416.322869 136.716364 L 420.422043 131.774545 L 424.521216 126.832727 L 428.62039 121.890909 L 432.719564 116.949091 L 436.818737 112.007273 L 440.917911 116.949091 L 445.017084 121.890909 L 449.116258 116.949091 L 453.215431 121.890909 L 457.314605 126.832727 L 461.413778 121.890909 " style="fill:none;opacity:0.2;stroke:#bcbd22;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_22"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 171.309091 L 63.793944 176.250909 L 67.893117 171.309091 L 71.992291 166.367273 L 76.091464 161.425455 L 80.190638 166.367273 L 84.289811 171.309091 L 88.388985 166.367273 L 92.488159 161.425455 L 96.587332 156.483636 L 100.686506 161.425455 L 104.785679 156.483636 L 108.884853 161.425455 L 112.984026 166.367273 L 117.0832 161.425455 L 121.182373 166.367273 L 125.281547 171.309091 L 129.380721 176.250909 L 133.479894 181.192727 L 137.579068 176.250909 L 141.678241 181.192727 L 145.777415 186.134545 L 149.876588 191.076364 L 153.975762 196.018182 L 158.074935 191.076364 L 162.174109 186.134545 L 166.273283 191.076364 L 170.372456 196.018182 L 174.47163 200.96 L 178.570803 205.901818 L 182.669977 210.843636 L 186.76915 205.901818 L 190.868324 200.96 L 194.967497 196.018182 L 199.066671 200.96 L 203.165845 196.018182 L 207.265018 191.076364 L 211.364192 186.134545 L 215.463365 191.076364 L 219.562539 186.134545 L 223.661712 181.192727 L 227.760886 186.134545 L 231.860059 191.076364 L 235.959233 186.134545 L 240.058407 191.076364 L 244.15758 196.018182 L 248.256754 191.076364 L 252.355927 196.018182 L 256.455101 191.076364 L 260.554274 186.134545 L 264.653448 181.192727 L 268.752621 186.134545 L 272.851795 181.192727 L 276.950968 186.134545 L 281.050142 181.192727 L 285.149316 176.250909 L 289.248489 171.309091 L 293.347663 176.250909 L 297.446836 171.309091 L 301.54601 166.367273 L 305.645183 161.425455 L 309.744357 156.483636 L 313.84353 161.425455 L 317.942704 156.483636 L 322.041878 161.425455 L 326.141051 166.367273 L 330.240225 161.425455 L 334.339398 166.367273 L 338.438572 161.425455 L 342.537745 166.367273 L 346.636919 161.425455 L 350.736092 156.483636 L 354.835266 161.425455 L 358.93444 166.367273 L 363.033613 171.309091 L 367.132787 166.367273 L 371.23196 171.309091 L 375.331134 166.367273 L 379.430307 171.309091 L 383.529481 166.367273 L 387.628654 161.425455 L 391.727828 156.483636 L 395.827002 151.541818 L 399.926175 156.483636 L 404.025349 161.425455 L 408.124522 156.483636 L 412.223696 151.541818 L 416.322869 146.6 L 420.422043 151.541818 L 424.521216 146.6 L 428.62039 141.658182 L 432.719564 146.6 L 436.818737 141.658182 L 440.917911 136.716364 L 445.017084 131.774545 L 449.116258 126.832727 L 453.215431 131.774545 L 457.314605 126.832727 L 461.413778 131.774545 " style="fill:none;opacity:0.2;stroke:#17becf;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_23"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 171.309091 L 63.793944 176.250909 L 67.893117 181.192727 L 71.992291 186.134545 L 76.091464 181.192727 L 80.190638 186.134545 L 84.289811 181.192727 L 88.388985 186.134545 L 92.488159 181.192727 L 96.587332 186.134545 L 100.686506 191.076364 L 104.785679 196.018182 L 108.884853 200.96 L 112.984026 205.901818 L 117.0832 200.96 L 121.182373 205.901818 L 125.281547 200.96 L 129.380721 196.018182 L 133.479894 200.96 L 137.579068 196.018182 L 141.678241 191.076364 L 145.777415 196.018182 L 149.876588 191.076364 L 153.975762 196.018182 L 158.074935 200.96 L 162.174109 196.018182 L 166.273283 200.96 L 170.372456 205.901818 L 174.47163 200.96 L 178.570803 196.018182 L 182.669977 200.96 L 186.76915 196.018182 L 190.868324 191.076364 L 194.967497 196.018182 L 199.066671 191.076364 L 203.165845 186.134545 L 207.265018 191.076364 L 211.364192 196.018182 L 215.463365 200.96 L 219.562539 205.901818 L 223.661712 210.843636 L 227.760886 205.901818 L 231.860059 200.96 L 235.959233 205.901818 L 240.058407 210.843636 L 244.15758 205.901818 L 248.256754 210.843636 L 252.355927 215.785455 L 256.455101 210.843636 L 260.554274 215.785455 L 264.653448 220.727273 L 268.752621 215.785455 L 272.851795 220.727273 L 276.950968 215.785455 L 281.050142 210.843636 L 285.149316 205.901818 L 289.248489 200.96 L 293.347663 205.901818 L 297.446836 200.96 L 301.54601 196.018182 L 305.645183 191.076364 L 309.744357 196.018182 L 313.84353 200.96 L 317.942704 196.018182 L 322.041878 200.96 L 326.141051 205.901818 L 330.240225 210.843636 L 334.339398 205.901818 L 338.438572 210.843636 L 342.537745 205.901818 L 346.636919 210.843636 L 350.736092 205.901818 L 354.835266 210.843636 L 358.93444 215.785455 L 363.033613 210.843636 L 367.132787 205.901818 L 371.23196 200.96 L 375.331134 196.018182 L 379.430307 191.076364 L 383.529481 196.018182 L 387.628654 200.96 L 391.727828 196.018182 L 395.827002 191.076364 L 399.926175 196.018182 L 404.025349 191.076364 L 408.124522 186.134545 L 412.223696 181.192727 L 416.322869 176.250909 L 420.422043 181.192727 L 424.521216 186.134545 L 428.62039 191.076364 L 432.719564 186.134545 L 436.818737 181.192727 L 440.917911 186.134545 L 445.017084 181.192727 L 449.116258 186.134545 L 453.215431 191.076364 L 457.314605 196.018182 L 461.413778 200.96 " style="fill:none;opacity:0.2;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_24"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 171.309091 L 63.793944 166.367273 L 67.893117 171.309091 L 71.992291 166.367273 L 76.091464 161.425455 L 80.190638 156.483636 L 84.289811 151.541818 L 88.388985 156.483636 L 92.488159 161.425455 L 96.587332 156.483636 L 100.686506 161.425455 L 104.785679 166.367273 L 108.884853 171.309091 L 112.984026 176.250909 L 117.0832 181.192727 L 121.182373 176.250909 L 125.281547 181.192727 L 129.380721 186.134545 L 133.479894 191.076364 L 137.579068 186.134545 L 141.678241 181.192727 L 145.777415 176.250909 L 149.876588 181.192727 L 153.975762 186.134545 L 158.074935 191.076364 L 162.174109 196.018182 L 166.273283 200.96 L 170.372456 196.018182 L 174.47163 200.96 L 178.570803 205.901818 L 182.669977 200.96 L 186.76915 205.901818 L 190.868324 200.96 L 194.967497 196.018182 L 199.066671 191.076364 L 203.165845 196.018182 L 207.265018 200.96 L 211.364192 196.018182 L 215.463365 191.076364 L 219.562539 196.018182 L 223.661712 191.076364 L 227.760886 196.018182 L 231.860059 200.96 L 235.959233 196.018182 L 240.058407 191.076364 L 244.15758 196.018182 L 248.256754 200.96 L 252.355927 196.018182 L 256.455101 191.076364 L 260.554274 186.134545 L 264.653448 181.192727 L 268.752621 186.134545 L 272.851795 191.076364 L 276.950968 196.018182 L 281.050142 200.96 L 285.149316 205.901818 L 289.248489 200.96 L 293.347663 196.018182 L 297.446836 191.076364 L 301.54601 186.134545 L 305.645183 191.076364 L 309.744357 196.018182 L 313.84353 200.96 L 317.942704 196.018182 L 322.041878 200.96 L 326.141051 196.018182 L 330.240225 191.076364 L 334.339398 186.134545 L 338.438572 191.076364 L 342.537745 186.134545 L 346.636919 181.192727 L 350.736092 186.134545 L 354.835266 181.192727 L 358.93444 176.250909 L 363.033613 181.192727 L 367.132787 176.250909 L 371.23196 171.309091 L 375.331134 166.367273 L 379.430307 171.309091 L 383.529481 166.367273 L 387.628654 161.425455 L 391.727828 156.483636 L 395.827002 161.425455 L 399.926175 156.483636 L 404.025349 151.541818 L 408.124522 156.483636 L 412.223696 161.425455 L 416.322869 166.367273 L 420.422043 171.309091 L 424.521216 166.367273 L 428.62039 161.425455 L 432.719564 156.483636 L 436.818737 161.425455 L 440.917911 166.367273 L 445.017084 171.309091 L 449.116258 176.250909 L 453.215431 181.192727 L 457.314605 176.250909 L 461.413778 171.309091 " style="fill:none;opacity:0.2;stroke:#ff7f0e;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_25"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 156.483636 L 59.69477 151.541818 L 63.793944 146.6 L 67.893117 141.658182 L 71.992291 146.6 L 76.091464 141.658182 L 80.190638 136.716364 L 84.289811 131.774545 L 88.388985 126.832727 L 92.488159 131.774545 L 96.587332 126.832727 L 100.686506 121.890909 L 104.785679 126.832727 L 108.884853 121.890909 L 112.984026 116.949091 L 117.0832 112.007273 L 121.182373 116.949091 L 125.281547 112.007273 L 129.380721 116.949091 L 133.479894 121.890909 L 137.579068 116.949091 L 141.678241 121.890909 L 145.777415 126.832727 L 149.876588 121.890909 L 153.975762 116.949091 L 158.074935 121.890909 L 162.174109 126.832727 L 166.273283 131.774545 L 170.372456 126.832727 L 174.47163 121.890909 L 178.570803 116.949091 L 182.669977 112.007273 L 186.76915 107.065455 L 190.868324 102.123636 L 194.967497 97.181818 L 199.066671 102.123636 L 203.165845 97.181818 L 207.265018 92.24 L 211.364192 87.298182 L 215.463365 92.24 L 219.562539 97.181818 L 223.661712 92.24 L 227.760886 87.298182 L 231.860059 82.356364 L 235.959233 87.298182 L 240.058407 82.356364 L 244.15758 77.414545 L 248.256754 72.472727 L 252.355927 77.414545 L 256.455101 82.356364 L 260.554274 87.298182 L 264.653448 92.24 L 268.752621 87.298182 L 272.851795 92.24 L 276.950968 87.298182 L 281.050142 82.356364 L 285.149316 77.414545 L 289.248489 82.356364 L 293.347663 77.414545 L 297.446836 72.472727 L 301.54601 77.414545 L 305.645183 72.472727 L 309.744357 77.414545 L 313.84353 72.472727 L 317.942704 77.414545 L 322.041878 82.356364 L 326.141051 77.414545 L 330.240225 72.472727 L 334.339398 77.414545 L 338.438572 82.356364 L 342.537745 77.414545 L 346.636919 82.356364 L 350.736092 77.414545 L 354.835266 72.472727 L 358.93444 67.530909 L 363.033613 62.589091 L 367.132787 57.647273 L 371.23196 52.705455 L 375.331134 57.647273 L 379.430307 62.589091 L 383.529481 57.647273 L 387.628654 52.705455 L 391.727828 47.763636 L 395.827002 42.821818 L 399.926175 37.88 L 404.025349 32.938182 L 408.124522 27.996364 L 412.223696 23.054545 L 416.322869 27.996364 L 420.422043 23.054545 L 424.521216 27.996364 L 428.62039 32.938182 L 432.719564 37.88 L 436.818737 42.821818 L 440.917911 37.88 L 445.017084 42.821818 L 449.116258 47.763636 L 453.215431 52.705455 L 457.314605 57.647273 L 461.413778 62.589091 " style="fill:none;opacity:0.2;stroke:#2ca02c;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_26"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 161.425455 L 63.793944 166.367273 L 67.893117 161.425455 L 71.992291 156.483636 L 76.091464 151.541818 L 80.190638 156.483636 L 84.289811 161.425455 L 88.388985 156.483636 L 92.488159 151.541818 L 96.587332 146.6 L 100.686506 151.541818 L 104.785679 156.483636 L 108.884853 151.541818 L 112.984026 146.6 L 117.0832 141.658182 L 121.182373 146.6 L 125.281547 141.658182 L 129.380721 146.6 L 133.479894 141.658182 L 137.579068 136.716364 L 141.678241 131.774545 L 145.777415 136.716364 L 149.876588 131.774545 L 153.975762 136.716364 L 158.074935 141.658182 L 162.174109 146.6 L 166.273283 151.541818 L 170.372456 146.6 L 174.47163 141.658182 L 178.570803 146.6 L 182.669977 141.658182 L 186.76915 136.716364 L 190.868324 131.774545 L 194.967497 136.716364 L 199.066671 141.658182 L 203.165845 136.716364 L 207.265018 141.658182 L 211.364192 146.6 L 215.463365 151.541818 L 219.562539 156.483636 L 223.661712 151.541818 L 227.760886 156.483636 L 231.860059 151.541818 L 235.959233 156.483636 L 240.058407 161.425455 L 244.15758 166.367273 L 248.256754 171.309091 L 252.355927 166.367273 L 256.455101 171.309091 L 260.554274 176.250909 L 264.653448 181.192727 L 268.752621 186.134545 L 272.851795 181.192727 L 276.950968 186.134545 L 281.050142 191.076364 L 285.149316 186.134545 L 289.248489 191.076364 L 293.347663 196.018182 L 297.446836 191.076364 L 301.54601 186.134545 L 305.645183 181.192727 L 309.744357 186.134545 L 313.84353 191.076364 L 317.942704 186.134545 L 322.041878 191.076364 L 326.141051 186.134545 L 330.240225 191.076364 L 334.339398 196.018182 L 338.438572 200.96 L 342.537745 196.018182 L 346.636919 200.96 L 350.736092 196.018182 L 354.835266 191.076364 L 358.93444 186.134545 L 363.033613 191.076364 L 367.132787 196.018182 L 371.23196 191.076364 L 375.331134 196.018182 L 379.430307 191.076364 L 383.529481 196.018182 L 387.628654 191.076364 L 391.727828 186.134545 L 395.827002 191.076364 L 399.926175 196.018182 L 404.025349 200.96 L 408.124522 205.901818 L 412.223696 200.96 L 416.322869 196.018182 L 420.422043 200.96 L 424.521216 205.901818 L 428.62039 200.96 L 432.719564 196.018182 L 436.818737 200.96 L 440.917911 196.018182 L 445.017084 191.076364 L 449.116258 196.018182 L 453.215431 200.96 L 457.314605 205.901818 L 461.413778 200.96 " style="fill:none;opacity:0.2;stroke:#d62728;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_27"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 156.483636 L 59.69477 151.541818 L 63.793944 156.483636 L 67.893117 161.425455 L 71.992291 166.367273 L 76.091464 171.309091 L 80.190638 166.367273 L 84.289811 171.309091 L 88.388985 166.367273 L 92.488159 161.425455 L 96.587332 156.483636 L 100.686506 161.425455 L 104.785679 156.483636 L 108.884853 161.425455 L 112.984026 166.367273 L 117.0832 171.309091 L 121.182373 176.250909 L 125.281547 171.309091 L 129.380721 176.250909 L 133.479894 171.309091 L 137.579068 166.367273 L 141.678241 171.309091 L 145.777415 166.367273 L 149.876588 161.425455 L 153.975762 156.483636 L 158.074935 151.541818 L 162.174109 146.6 L 166.273283 141.658182 L 170.372456 136.716364 L 174.47163 141.658182 L 178.570803 146.6 L 182.669977 151.541818 L 186.76915 156.483636 L 190.868324 151.541818 L 194.967497 146.6 L 199.066671 141.658182 L 203.165845 136.716364 L 207.265018 141.658182 L 211.364192 136.716364 L 215.463365 141.658182 L 219.562539 146.6 L 223.661712 151.541818 L 227.760886 156.483636 L 231.860059 151.541818 L 235.959233 156.483636 L 240.058407 161.425455 L 244.15758 156.483636 L 248.256754 151.541818 L 252.355927 146.6 L 256.455101 141.658182 L 260.554274 146.6 L 264.653448 151.541818 L 268.752621 146.6 L 272.851795 141.658182 L 276.950968 146.6 L 281.050142 141.658182 L 285.149316 136.716364 L 289.248489 141.658182 L 293.347663 136.716364 L 297.446836 131.774545 L 301.54601 136.716364 L 305.645183 131.774545 L 309.744357 126.832727 L 313.84353 131.774545 L 317.942704 136.716364 L 322.041878 131.774545 L 326.141051 126.832727 L 330.240225 131.774545 L 334.339398 126.832727 L 338.438572 131.774545 L 342.537745 126.832727 L 346.636919 131.774545 L 350.736092 136.716364 L 354.835266 141.658182 L 358.93444 136.716364 L 363.033613 131.774545 L 367.132787 136.716364 L 371.23196 131.774545 L 375.331134 136.716364 L 379.430307 131.774545 L 383.529481 126.832727 L 387.628654 121.890909 L 391.727828 126.832727 L 395.827002 121.890909 L 399.926175 116.949091 L 404.025349 112.007273 L 408.124522 107.065455 L 412.223696 112.007273 L 416.322869 116.949091 L 420.422043 121.890909 L 424.521216 116.949091 L 428.62039 112.007273 L 432.719564 116.949091 L 436.818737 112.007273 L 440.917911 116.949091 L 445.017084 112.007273 L 449.116258 116.949091 L 453.215431 121.890909 L 457.314605 126.832727 L 461.413778 121.890909 " style="fill:none;opacity:0.2;stroke:#9467bd;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_28"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 156.483636 L 59.69477 151.541818 L 63.793944 156.483636 L 67.893117 151.541818 L 71.992291 156.483636 L 76.091464 151.541818 L 80.190638 156.483636 L 84.289811 161.425455 L 88.388985 166.367273 L 92.488159 161.425455 L 96.587332 156.483636 L 100.686506 151.541818 L 104.785679 146.6 L 108.884853 151.541818 L 112.984026 146.6 L 117.0832 141.658182 L 121.182373 146.6 L 125.281547 141.658182 L 129.380721 146.6 L 133.479894 141.658182 L 137.579068 146.6 L 141.678241 151.541818 L 145.777415 146.6 L 149.876588 151.541818 L 153.975762 156.483636 L 158.074935 161.425455 L 162.174109 156.483636 L 166.273283 161.425455 L 170.372456 166.367273 L 174.47163 171.309091 L 178.570803 166.367273 L 182.669977 161.425455 L 186.76915 156.483636 L 190.868324 151.541818 L 194.967497 146.6 L 199.066671 151.541818 L 203.165845 156.483636 L 207.265018 151.541818 L 211.364192 156.483636 L 215.463365 151.541818 L 219.562539 156.483636 L 223.661712 161.425455 L 227.760886 156.483636 L 231.860059 151.541818 L 235.959233 146.6 L 240.058407 151.541818 L 244.15758 156.483636 L 248.256754 151.541818 L 252.355927 156.483636 L 256.455101 161.425455 L 260.554274 166.367273 L 264.653448 171.309091 L 268.752621 166.367273 L 272.851795 171.309091 L 276.950968 176.250909 L 281.050142 181.192727 L 285.149316 176.250909 L 289.248489 181.192727 L 293.347663 176.250909 L 297.446836 171.309091 L 301.54601 166.367273 L 305.645183 161.425455 L 309.744357 166.367273 L 313.84353 171.309091 L 317.942704 176.250909 L 322.041878 181.192727 L 326.141051 186.134545 L 330.240225 181.192727 L 334.339398 176.250909 L 338.438572 181.192727 L 342.537745 186.134545 L 346.636919 181.192727 L 350.736092 176.250909 L 354.835266 171.309091 L 358.93444 166.367273 L 363.033613 161.425455 L 367.132787 156.483636 L 371.23196 151.541818 L 375.331134 146.6 L 379.430307 141.658182 L 383.529481 136.716364 L 387.628654 141.658182 L 391.727828 146.6 L 395.827002 141.658182 L 399.926175 136.716364 L 404.025349 141.658182 L 408.124522 146.6 L 412.223696 141.658182 L 416.322869 146.6 L 420.422043 141.658182 L 424.521216 136.716364 L 428.62039 131.774545 L 432.719564 126.832727 L 436.818737 121.890909 L 440.917911 116.949091 L 445.017084 121.890909 L 449.116258 116.949091 L 453.215431 112.007273 L 457.314605 116.949091 L 461.413778 112.007273 " style="fill:none;opacity:0.2;stroke:#8c564b;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_29"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 156.483636 L 59.69477 161.425455 L 63.793944 166.367273 L 67.893117 171.309091 L 71.992291 176.250909 L 76.091464 181.192727 L 80.190638 176.250909 L 84.289811 181.192727 L 88.388985 176.250909 L 92.488159 181.192727 L 96.587332 186.134545 L 100.686506 191.076364 L 104.785679 186.134545 L 108.884853 181.192727 L 112.984026 176.250909 L 117.0832 171.309091 L 121.182373 176.250909 L 125.281547 181.192727 L 129.380721 176.250909 L 133.479894 181.192727 L 137.579068 186.134545 L 141.678241 191.076364 L 145.777415 196.018182 L 149.876588 191.076364 L 153.975762 196.018182 L 158.074935 191.076364 L 162.174109 186.134545 L 166.273283 181.192727 L 170.372456 176.250909 L 174.47163 181.192727 L 178.570803 186.134545 L 182.669977 191.076364 L 186.76915 186.134545 L 190.868324 191.076364 L 194.967497 196.018182 L 199.066671 191.076364 L 203.165845 196.018182 L 207.265018 200.96 L 211.364192 205.901818 L 215.463365 200.96 L 219.562539 196.018182 L 223.661712 200.96 L 227.760886 196.018182 L 231.860059 191.076364 L 235.959233 186.134545 L 240.058407 191.076364 L 244.15758 186.134545 L 248.256754 191.076364 L 252.355927 186.134545 L 256.455101 191.076364 L 260.554274 186.134545 L 264.653448 191.076364 L 268.752621 196.018182 L 272.851795 200.96 L 276.950968 205.901818 L 281.050142 210.843636 L 285.149316 205.901818 L 289.248489 200.96 L 293.347663 196.018182 L 297.446836 191.076364 L 301.54601 196.018182 L 305.645183 200.96 L 309.744357 205.901818 L 313.84353 200.96 L 317.942704 196.018182 L 322.041878 191.076364 L 326.141051 196.018182 L 330.240225 200.96 L 334.339398 196.018182 L 338.438572 200.96 L 342.537745 196.018182 L 346.636919 191.076364 L 350.736092 196.018182 L 354.835266 200.96 L 358.93444 205.901818 L 363.033613 210.843636 L 367.132787 215.785455 L 371.23196 210.843636 L 375.331134 205.901818 L 379.430307 200.96 L 383.529481 196.018182 L 387.628654 191.076364 L 391.727828 186.134545 L 395.827002 191.076364 L 399.926175 196.018182 L 404.025349 191.076364 L 408.124522 186.134545 L 412.223696 181.192727 L 416.322869 186.134545 L 420.422043 181.192727 L 424.521216 176.250909 L 428.62039 171.309091 L 432.719564 176.250909 L 436.818737 181.192727 L 440.917911 176.250909 L 445.017084 181.192727 L 449.116258 176.250909 L 453.215431 171.309091 L 457.314605 176.250909 L 461.413778 171.309091 " style="fill:none;opacity:0.2;stroke:#e377c2;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_30"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 171.309091 L 63.793944 176.250909 L 67.893117 171.309091 L 71.992291 176.250909 L 76.091464 171.309091 L 80.190638 176.250909 L 84.289811 181.192727 L 88.388985 186.134545 L 92.488159 181.192727 L 96.587332 186.134545 L 100.686506 181.192727 L 104.785679 186.134545 L 108.884853 181.192727 L 112.984026 186.134545 L 117.0832 181.192727 L 121.182373 186.134545 L 125.281547 191.076364 L 129.380721 196.018182 L 133.479894 200.96 L 137.579068 196.018182 L 141.678241 191.076364 L 145.777415 196.018182 L 149.876588 200.96 L 153.975762 205.901818 L 158.074935 210.843636 L 162.174109 205.901818 L 166.273283 200.96 L 170.372456 205.901818 L 174.47163 200.96 L 178.570803 196.018182 L 182.669977 200.96 L 186.76915 196.018182 L 190.868324 200.96 L 194.967497 205.901818 L 199.066671 200.96 L 203.165845 196.018182 L 207.265018 200.96 L 211.364192 205.901818 L 215.463365 200.96 L 219.562539 196.018182 L 223.661712 191.076364 L 227.760886 196.018182 L 231.860059 191.076364 L 235.959233 186.134545 L 240.058407 191.076364 L 244.15758 196.018182 L 248.256754 191.076364 L 252.355927 196.018182 L 256.455101 200.96 L 260.554274 196.018182 L 264.653448 200.96 L 268.752621 205.901818 L 272.851795 200.96 L 276.950968 205.901818 L 281.050142 210.843636 L 285.149316 205.901818 L 289.248489 200.96 L 293.347663 196.018182 L 297.446836 191.076364 L 301.54601 196.018182 L 305.645183 191.076364 L 309.744357 186.134545 L 313.84353 181.192727 L 317.942704 186.134545 L 322.041878 191.076364 L 326.141051 196.018182 L 330.240225 200.96 L 334.339398 205.901818 L 338.438572 200.96 L 342.537745 205.901818 L 346.636919 200.96 L 350.736092 205.901818 L 354.835266 210.843636 L 358.93444 215.785455 L 363.033613 220.727273 L 367.132787 225.669091 L 371.23196 230.610909 L 375.331134 235.552727 L 379.430307 230.610909 L 383.529481 235.552727 L 387.628654 230.610909 L 391.727828 235.552727 L 395.827002 240.494545 L 399.926175 235.552727 L 404.025349 240.494545 L 408.124522 235.552727 L 412.223696 230.610909 L 416.322869 235.552727 L 420.422043 240.494545 L 424.521216 245.436364 L 428.62039 250.378182 L 432.719564 255.32 L 436.818737 260.261818 L 440.917911 255.32 L 445.017084 260.261818 L 449.116258 265.203636 L 453.215431 260.261818 L 457.314605 265.203636 L 461.413778 270.145455 " style="fill:none;opacity:0.2;stroke:#7f7f7f;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_31"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 166.367273 L 59.69477 171.309091 L 63.793944 166.367273 L 67.893117 171.309091 L 71.992291 176.250909 L 76.091464 171.309091 L 80.190638 166.367273 L 84.289811 171.309091 L 88.388985 176.250909 L 92.488159 181.192727 L 96.587332 186.134545 L 100.686506 181.192727 L 104.785679 186.134545 L 108.884853 191.076364 L 112.984026 186.134545 L 117.0832 191.076364 L 121.182373 196.018182 L 125.281547 191.076364 L 129.380721 186.134545 L 133.479894 181.192727 L 137.579068 186.134545 L 141.678241 191.076364 L 145.777415 196.018182 L 149.876588 191.076364 L 153.975762 186.134545 L 158.074935 191.076364 L 162.174109 186.134545 L 166.273283 191.076364 L 170.372456 196.018182 L 174.47163 191.076364 L 178.570803 186.134545 L 182.669977 181.192727 L 186.76915 186.134545 L 190.868324 191.076364 L 194.967497 186.134545 L 199.066671 181.192727 L 203.165845 186.134545 L 207.265018 181.192727 L 211.364192 186.134545 L 215.463365 181.192727 L 219.562539 176.250909 L 223.661712 181.192727 L 227.760886 176.250909 L 231.860059 181.192727 L 235.959233 186.134545 L 240.058407 191.076364 L 244.15758 196.018182 L 248.256754 200.96 L 252.355927 205.901818 L 256.455101 210.843636 L 260.554274 205.901818 L 264.653448 200.96 L 268.752621 205.901818 L 272.851795 210.843636 L 276.950968 215.785455 L 281.050142 210.843636 L 285.149316 215.785455 L 289.248489 220.727273 L 293.347663 225.669091 L 297.446836 230.610909 L 301.54601 235.552727 L 305.645183 230.610909 L 309.744357 235.552727 L 313.84353 240.494545 L 317.942704 245.436364 L 322.041878 250.378182 L 326.141051 245.436364 L 330.240225 250.378182 L 334.339398 245.436364 L 338.438572 250.378182 L 342.537745 245.436364 L 346.636919 250.378182 L 350.736092 255.32 L 354.835266 250.378182 L 358.93444 255.32 L 363.033613 250.378182 L 367.132787 255.32 L 371.23196 260.261818 L 375.331134 255.32 L 379.430307 250.378182 L 383.529481 255.32 L 387.628654 260.261818 L 391.727828 265.203636 L 395.827002 260.261818 L 399.926175 255.32 L 404.025349 250.378182 L 408.124522 245.436364 L 412.223696 250.378182 L 416.322869 245.436364 L 420.422043 240.494545 L 424.521216 245.436364 L 428.62039 240.494545 L 432.719564 245.436364 L 436.818737 250.378182 L 440.917911 245.436364 L 445.017084 240.494545 L 449.116258 235.552727 L 453.215431 230.610909 L 457.314605 225.669091 L 461.413778 220.727273 " style="fill:none;opacity:0.2;stroke:#bcbd22;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_32"> <path clip-path="url(#pe6e6369d0a)" d="M 55.595597 156.483636 L 59.69477 161.425455 L 63.793944 156.483636 L 67.893117 151.541818 L 71.992291 156.483636 L 76.091464 151.541818 L 80.190638 146.6 L 84.289811 141.658182 L 88.388985 136.716364 L 92.488159 131.774545 L 96.587332 136.716364 L 100.686506 131.774545 L 104.785679 126.832727 L 108.884853 131.774545 L 112.984026 126.832727 L 117.0832 121.890909 L 121.182373 116.949091 L 125.281547 121.890909 L 129.380721 126.832727 L 133.479894 131.774545 L 137.579068 126.832727 L 141.678241 131.774545 L 145.777415 126.832727 L 149.876588 131.774545 L 153.975762 126.832727 L 158.074935 121.890909 L 162.174109 126.832727 L 166.273283 131.774545 L 170.372456 136.716364 L 174.47163 141.658182 L 178.570803 136.716364 L 182.669977 131.774545 L 186.76915 136.716364 L 190.868324 131.774545 L 194.967497 136.716364 L 199.066671 131.774545 L 203.165845 136.716364 L 207.265018 131.774545 L 211.364192 136.716364 L 215.463365 141.658182 L 219.562539 136.716364 L 223.661712 141.658182 L 227.760886 136.716364 L 231.860059 141.658182 L 235.959233 136.716364 L 240.058407 141.658182 L 244.15758 146.6 L 248.256754 141.658182 L 252.355927 146.6 L 256.455101 151.541818 L 260.554274 156.483636 L 264.653448 161.425455 L 268.752621 156.483636 L 272.851795 151.541818 L 276.950968 146.6 L 281.050142 141.658182 L 285.149316 146.6 L 289.248489 141.658182 L 293.347663 146.6 L 297.446836 141.658182 L 301.54601 146.6 L 305.645183 151.541818 L 309.744357 146.6 L 313.84353 151.541818 L 317.942704 156.483636 L 322.041878 151.541818 L 326.141051 156.483636 L 330.240225 161.425455 L 334.339398 166.367273 L 338.438572 161.425455 L 342.537745 156.483636 L 346.636919 151.541818 L 350.736092 146.6 L 354.835266 141.658182 L 358.93444 146.6 L 363.033613 141.658182 L 367.132787 146.6 L 371.23196 141.658182 L 375.331134 136.716364 L 379.430307 141.658182 L 383.529481 136.716364 L 387.628654 141.658182 L 391.727828 136.716364 L 395.827002 141.658182 L 399.926175 136.716364 L 404.025349 141.658182 L 408.124522 136.716364 L 412.223696 131.774545 L 416.322869 136.716364 L 420.422043 141.658182 L 424.521216 136.716364 L 428.62039 141.658182 L 432.719564 136.716364 L 436.818737 141.658182 L 440.917911 136.716364 L 445.017084 131.774545 L 449.116258 136.716364 L 453.215431 131.774545 L 457.314605 126.832727 L 461.413778 121.890909 " style="fill:none;opacity:0.2;stroke:#17becf;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="patch_3"> <path d="M 35.304688 282.5 L 35.304688 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 481.704687 282.5 L 481.704687 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 35.304688 282.5 L 481.704687 282.5 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 35.304688 10.7 L 481.704687 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="pe6e6369d0a"> <rect height="271.8" width="446.4" x="35.304688" y="10.7"/> </clipPath> </defs> </svg>

Ces courbes sont importantes: elles montrent que lors d'un jeu non biaisé, les courbes de gain ont en moyenne un gain nul. On montre que leur variance (c'est à dire le carré de la déviation à cette moyenne nulle) augmente proportionnellement et linéairement avec le temps. On donne à ce mouvement le mouvement de mouvement brownien ou de "marche de l'alcoolique" à cause de la forme aléatoire des changements de direction...

application au jeu de l'urne: méthode des tests

Une première stratégie pour étudier notre jeu est d'essayer de dénombrer tous les jeux possibles. Dans notre cas particulier, ils consistent en toutes les combinaisons de l'ordre d'occurence des couleurs. Si on les numérote de $0$ à $7$, les occurences de la couleur rouge peuvent par exemple être $[0, 5, 6, 7]$, $[2, 3, 5, 7]$ ou encore $[0, 1, 2, 4]$. Le nombre de façon de tirer $k=4$ nombres parmi $n=8$ est noté $C_n^k$ ou aussi $(^k_n)$ et vaut $\frac{n!}{k! (n-k)!}$ où $n$ est le nombre total de balles et $k$ le nombre de balles rouges et $m!= 1 \times 2 \times \ldots \times m$ est la factorielle de $m$. On va donc pouvoir utiliser la fonction combinations de la librairie itertools (cf https://docs.python.org/3/library/itertools.html#itertools.combinations ) pour former tous ces jeux.

In [30]:
def factorial(n): return np.prod(np.arange(n)+1)

from itertools import combinations
N_ballons = 8
N_basket = N_ballons//2
indices = list(combinations(range(N_ballons), N_basket))
print ('Il y a', len(indices), 'combinaisons. (On avait prédit', 
       int(factorial(N_ballons)/factorial(N_basket)/factorial(N_ballons-N_basket)), ' 😎). ')
for index in indices:
    test = np.zeros(N_ballons, dtype=np.int)
    test[list(index)] = 1
    print('index = ', index, ' - test = ', test)
Il y a 70 combinaisons. (On avait prédit 70  😎). 
index =  (0, 1, 2, 3)  - test =  [1 1 1 1 0 0 0 0]
index =  (0, 1, 2, 4)  - test =  [1 1 1 0 1 0 0 0]
index =  (0, 1, 2, 5)  - test =  [1 1 1 0 0 1 0 0]
index =  (0, 1, 2, 6)  - test =  [1 1 1 0 0 0 1 0]
index =  (0, 1, 2, 7)  - test =  [1 1 1 0 0 0 0 1]
index =  (0, 1, 3, 4)  - test =  [1 1 0 1 1 0 0 0]
index =  (0, 1, 3, 5)  - test =  [1 1 0 1 0 1 0 0]
index =  (0, 1, 3, 6)  - test =  [1 1 0 1 0 0 1 0]
index =  (0, 1, 3, 7)  - test =  [1 1 0 1 0 0 0 1]
index =  (0, 1, 4, 5)  - test =  [1 1 0 0 1 1 0 0]
index =  (0, 1, 4, 6)  - test =  [1 1 0 0 1 0 1 0]
index =  (0, 1, 4, 7)  - test =  [1 1 0 0 1 0 0 1]
index =  (0, 1, 5, 6)  - test =  [1 1 0 0 0 1 1 0]
index =  (0, 1, 5, 7)  - test =  [1 1 0 0 0 1 0 1]
index =  (0, 1, 6, 7)  - test =  [1 1 0 0 0 0 1 1]
index =  (0, 2, 3, 4)  - test =  [1 0 1 1 1 0 0 0]
index =  (0, 2, 3, 5)  - test =  [1 0 1 1 0 1 0 0]
index =  (0, 2, 3, 6)  - test =  [1 0 1 1 0 0 1 0]
index =  (0, 2, 3, 7)  - test =  [1 0 1 1 0 0 0 1]
index =  (0, 2, 4, 5)  - test =  [1 0 1 0 1 1 0 0]
index =  (0, 2, 4, 6)  - test =  [1 0 1 0 1 0 1 0]
index =  (0, 2, 4, 7)  - test =  [1 0 1 0 1 0 0 1]
index =  (0, 2, 5, 6)  - test =  [1 0 1 0 0 1 1 0]
index =  (0, 2, 5, 7)  - test =  [1 0 1 0 0 1 0 1]
index =  (0, 2, 6, 7)  - test =  [1 0 1 0 0 0 1 1]
index =  (0, 3, 4, 5)  - test =  [1 0 0 1 1 1 0 0]
index =  (0, 3, 4, 6)  - test =  [1 0 0 1 1 0 1 0]
index =  (0, 3, 4, 7)  - test =  [1 0 0 1 1 0 0 1]
index =  (0, 3, 5, 6)  - test =  [1 0 0 1 0 1 1 0]
index =  (0, 3, 5, 7)  - test =  [1 0 0 1 0 1 0 1]
index =  (0, 3, 6, 7)  - test =  [1 0 0 1 0 0 1 1]
index =  (0, 4, 5, 6)  - test =  [1 0 0 0 1 1 1 0]
index =  (0, 4, 5, 7)  - test =  [1 0 0 0 1 1 0 1]
index =  (0, 4, 6, 7)  - test =  [1 0 0 0 1 0 1 1]
index =  (0, 5, 6, 7)  - test =  [1 0 0 0 0 1 1 1]
index =  (1, 2, 3, 4)  - test =  [0 1 1 1 1 0 0 0]
index =  (1, 2, 3, 5)  - test =  [0 1 1 1 0 1 0 0]
index =  (1, 2, 3, 6)  - test =  [0 1 1 1 0 0 1 0]
index =  (1, 2, 3, 7)  - test =  [0 1 1 1 0 0 0 1]
index =  (1, 2, 4, 5)  - test =  [0 1 1 0 1 1 0 0]
index =  (1, 2, 4, 6)  - test =  [0 1 1 0 1 0 1 0]
index =  (1, 2, 4, 7)  - test =  [0 1 1 0 1 0 0 1]
index =  (1, 2, 5, 6)  - test =  [0 1 1 0 0 1 1 0]
index =  (1, 2, 5, 7)  - test =  [0 1 1 0 0 1 0 1]
index =  (1, 2, 6, 7)  - test =  [0 1 1 0 0 0 1 1]
index =  (1, 3, 4, 5)  - test =  [0 1 0 1 1 1 0 0]
index =  (1, 3, 4, 6)  - test =  [0 1 0 1 1 0 1 0]
index =  (1, 3, 4, 7)  - test =  [0 1 0 1 1 0 0 1]
index =  (1, 3, 5, 6)  - test =  [0 1 0 1 0 1 1 0]
index =  (1, 3, 5, 7)  - test =  [0 1 0 1 0 1 0 1]
index =  (1, 3, 6, 7)  - test =  [0 1 0 1 0 0 1 1]
index =  (1, 4, 5, 6)  - test =  [0 1 0 0 1 1 1 0]
index =  (1, 4, 5, 7)  - test =  [0 1 0 0 1 1 0 1]
index =  (1, 4, 6, 7)  - test =  [0 1 0 0 1 0 1 1]
index =  (1, 5, 6, 7)  - test =  [0 1 0 0 0 1 1 1]
index =  (2, 3, 4, 5)  - test =  [0 0 1 1 1 1 0 0]
index =  (2, 3, 4, 6)  - test =  [0 0 1 1 1 0 1 0]
index =  (2, 3, 4, 7)  - test =  [0 0 1 1 1 0 0 1]
index =  (2, 3, 5, 6)  - test =  [0 0 1 1 0 1 1 0]
index =  (2, 3, 5, 7)  - test =  [0 0 1 1 0 1 0 1]
index =  (2, 3, 6, 7)  - test =  [0 0 1 1 0 0 1 1]
index =  (2, 4, 5, 6)  - test =  [0 0 1 0 1 1 1 0]
index =  (2, 4, 5, 7)  - test =  [0 0 1 0 1 1 0 1]
index =  (2, 4, 6, 7)  - test =  [0 0 1 0 1 0 1 1]
index =  (2, 5, 6, 7)  - test =  [0 0 1 0 0 1 1 1]
index =  (3, 4, 5, 6)  - test =  [0 0 0 1 1 1 1 0]
index =  (3, 4, 5, 7)  - test =  [0 0 0 1 1 1 0 1]
index =  (3, 4, 6, 7)  - test =  [0 0 0 1 1 0 1 1]
index =  (3, 5, 6, 7)  - test =  [0 0 0 1 0 1 1 1]
index =  (4, 5, 6, 7)  - test =  [0 0 0 0 1 1 1 1]

Alternativement, nous utiliserons aussi une autre stratégie plus simple de prime abord car elle correspond à la réalité du déroulement d'un jeu réel: réalisons plein de tirages au hasard (c'est la méthode dite de Monte Carlo). d'abord pour un "test":

In [31]:
def generate_test(N_ballons, N_test=1):
    assert (N_ballons/2 == N_ballons//2) # on vérifie que c'est pair
    tests = np.zeros((N_test, N_ballons), dtype=np.int)
    N_basket = N_ballons//2 # on a moitié de ballons de basket
    tests[:, N_basket:] = 1.
    for i_test in range(N_test):
        tests[i_test, :] = np.random.permutation(tests[i_test, :])
    return tests

test = generate_test(N_ballons)            
print(test)
[[0 1 0 0 0 1 1 1]]

on peut noter l'utilisation de la fonction np.random.permutation qui permet de ranger de façon aléatoire une liste (ici les $1$ dénotent arbitrairement des ballons de basket 🏀).

Cette fonction permet de générer un grand nombre de tirages:

In [32]:
N_test = 1000
tests = generate_test(N_ballons, N_test)

test = tests[N_test//13, :]
print(test)
[1 1 0 0 1 1 0 0]

On vérifie alors que le nombre moyen de ballons de baskets est bien $N/2$, et ceci exactement:

In [33]:
print('le nombre de valeurs True = ', np.mean(tests.sum(axis=1)), ' +/- ', np.std(tests.sum(axis=1)))
le nombre de valeurs True =  4.0  +/-  0.0

Créons donc une fonction qui puisse faire ces deux types de tests:

In [34]:
N_ballons = 8
N_basket = N_ballons//2 # on a moitié de ballons de basket
N_test = None
def generate_test(N_ballons=N_ballons, N_basket=N_basket, N_test=N_test, verbose=False):
    if N_test is None:
        indices = list(combinations(range(N_ballons), N_basket))
        tests = np.zeros((len(indices), N_ballons), dtype=np.int)
        for i_test in range(len(indices)):
            tests[i_test, list(indices[i_test])] = 1
            if verbose : print('index = ', indices[i_test], ' - test = ', tests[i_test, :])
    else:
        tests = np.zeros((N_test, N_ballons), dtype=np.int)
        tests[:, :N_basket] = 1
        for i_test in range(N_test):
            tests[i_test, :] = np.random.permutation(tests[i_test, :])
    return tests
tests = generate_test(N_ballons=N_ballons, N_basket=N_basket, N_test=N_test, verbose=True)
index =  (0, 1, 2, 3)  - test =  [1 1 1 1 0 0 0 0]
index =  (0, 1, 2, 4)  - test =  [1 1 1 0 1 0 0 0]
index =  (0, 1, 2, 5)  - test =  [1 1 1 0 0 1 0 0]
index =  (0, 1, 2, 6)  - test =  [1 1 1 0 0 0 1 0]
index =  (0, 1, 2, 7)  - test =  [1 1 1 0 0 0 0 1]
index =  (0, 1, 3, 4)  - test =  [1 1 0 1 1 0 0 0]
index =  (0, 1, 3, 5)  - test =  [1 1 0 1 0 1 0 0]
index =  (0, 1, 3, 6)  - test =  [1 1 0 1 0 0 1 0]
index =  (0, 1, 3, 7)  - test =  [1 1 0 1 0 0 0 1]
index =  (0, 1, 4, 5)  - test =  [1 1 0 0 1 1 0 0]
index =  (0, 1, 4, 6)  - test =  [1 1 0 0 1 0 1 0]
index =  (0, 1, 4, 7)  - test =  [1 1 0 0 1 0 0 1]
index =  (0, 1, 5, 6)  - test =  [1 1 0 0 0 1 1 0]
index =  (0, 1, 5, 7)  - test =  [1 1 0 0 0 1 0 1]
index =  (0, 1, 6, 7)  - test =  [1 1 0 0 0 0 1 1]
index =  (0, 2, 3, 4)  - test =  [1 0 1 1 1 0 0 0]
index =  (0, 2, 3, 5)  - test =  [1 0 1 1 0 1 0 0]
index =  (0, 2, 3, 6)  - test =  [1 0 1 1 0 0 1 0]
index =  (0, 2, 3, 7)  - test =  [1 0 1 1 0 0 0 1]
index =  (0, 2, 4, 5)  - test =  [1 0 1 0 1 1 0 0]
index =  (0, 2, 4, 6)  - test =  [1 0 1 0 1 0 1 0]
index =  (0, 2, 4, 7)  - test =  [1 0 1 0 1 0 0 1]
index =  (0, 2, 5, 6)  - test =  [1 0 1 0 0 1 1 0]
index =  (0, 2, 5, 7)  - test =  [1 0 1 0 0 1 0 1]
index =  (0, 2, 6, 7)  - test =  [1 0 1 0 0 0 1 1]
index =  (0, 3, 4, 5)  - test =  [1 0 0 1 1 1 0 0]
index =  (0, 3, 4, 6)  - test =  [1 0 0 1 1 0 1 0]
index =  (0, 3, 4, 7)  - test =  [1 0 0 1 1 0 0 1]
index =  (0, 3, 5, 6)  - test =  [1 0 0 1 0 1 1 0]
index =  (0, 3, 5, 7)  - test =  [1 0 0 1 0 1 0 1]
index =  (0, 3, 6, 7)  - test =  [1 0 0 1 0 0 1 1]
index =  (0, 4, 5, 6)  - test =  [1 0 0 0 1 1 1 0]
index =  (0, 4, 5, 7)  - test =  [1 0 0 0 1 1 0 1]
index =  (0, 4, 6, 7)  - test =  [1 0 0 0 1 0 1 1]
index =  (0, 5, 6, 7)  - test =  [1 0 0 0 0 1 1 1]
index =  (1, 2, 3, 4)  - test =  [0 1 1 1 1 0 0 0]
index =  (1, 2, 3, 5)  - test =  [0 1 1 1 0 1 0 0]
index =  (1, 2, 3, 6)  - test =  [0 1 1 1 0 0 1 0]
index =  (1, 2, 3, 7)  - test =  [0 1 1 1 0 0 0 1]
index =  (1, 2, 4, 5)  - test =  [0 1 1 0 1 1 0 0]
index =  (1, 2, 4, 6)  - test =  [0 1 1 0 1 0 1 0]
index =  (1, 2, 4, 7)  - test =  [0 1 1 0 1 0 0 1]
index =  (1, 2, 5, 6)  - test =  [0 1 1 0 0 1 1 0]
index =  (1, 2, 5, 7)  - test =  [0 1 1 0 0 1 0 1]
index =  (1, 2, 6, 7)  - test =  [0 1 1 0 0 0 1 1]
index =  (1, 3, 4, 5)  - test =  [0 1 0 1 1 1 0 0]
index =  (1, 3, 4, 6)  - test =  [0 1 0 1 1 0 1 0]
index =  (1, 3, 4, 7)  - test =  [0 1 0 1 1 0 0 1]
index =  (1, 3, 5, 6)  - test =  [0 1 0 1 0 1 1 0]
index =  (1, 3, 5, 7)  - test =  [0 1 0 1 0 1 0 1]
index =  (1, 3, 6, 7)  - test =  [0 1 0 1 0 0 1 1]
index =  (1, 4, 5, 6)  - test =  [0 1 0 0 1 1 1 0]
index =  (1, 4, 5, 7)  - test =  [0 1 0 0 1 1 0 1]
index =  (1, 4, 6, 7)  - test =  [0 1 0 0 1 0 1 1]
index =  (1, 5, 6, 7)  - test =  [0 1 0 0 0 1 1 1]
index =  (2, 3, 4, 5)  - test =  [0 0 1 1 1 1 0 0]
index =  (2, 3, 4, 6)  - test =  [0 0 1 1 1 0 1 0]
index =  (2, 3, 4, 7)  - test =  [0 0 1 1 1 0 0 1]
index =  (2, 3, 5, 6)  - test =  [0 0 1 1 0 1 1 0]
index =  (2, 3, 5, 7)  - test =  [0 0 1 1 0 1 0 1]
index =  (2, 3, 6, 7)  - test =  [0 0 1 1 0 0 1 1]
index =  (2, 4, 5, 6)  - test =  [0 0 1 0 1 1 1 0]
index =  (2, 4, 5, 7)  - test =  [0 0 1 0 1 1 0 1]
index =  (2, 4, 6, 7)  - test =  [0 0 1 0 1 0 1 1]
index =  (2, 5, 6, 7)  - test =  [0 0 1 0 0 1 1 1]
index =  (3, 4, 5, 6)  - test =  [0 0 0 1 1 1 1 0]
index =  (3, 4, 5, 7)  - test =  [0 0 0 1 1 1 0 1]
index =  (3, 4, 6, 7)  - test =  [0 0 0 1 1 0 1 1]
index =  (3, 5, 6, 7)  - test =  [0 0 0 1 0 1 1 1]
index =  (4, 5, 6, 7)  - test =  [0 0 0 0 1 1 1 1]

une première stratégie: choix a priori d'un nombre fixe

Adoptons tout d'abord la stratégie d'un agent qui de façon tétue se dirait qu'il allait regarder un nombre fixe de ballons (par exemple 2) puis se décider pour la solution la plus probable:

In [35]:
N_ballons_vus = 3
information = test[:N_ballons_vus]
information
Out[35]:
array([1, 1, 0])
In [36]:
N_ballons_restant = N_ballons - N_ballons_vus
print ('on a vu ', N_ballons_vus, ' ballon(s), il en reste',  N_ballons_restant, " dans l'urne")
on a vu  3  ballon(s), il en reste 5  dans l'urne
In [37]:
N_ballons_restant = N_ballons - N_ballons_vus
print ('on en a vu ', sum(information), ' de basket (=True=Droite) donc il reste',  
       N_ballons//2 - sum(information), " ballons de basket  dans l'urne")
on en a vu  2  de basket (=True=Droite) donc il reste 2  ballons de basket  dans l'urne
In [38]:
proba_True_restant = (N_ballons/2 - sum(information)) / N_ballons_restant 
print ('la probabilité de tirer un de basket est ', proba_True_restant*100, '%, ', 
       'contre ', (1-proba_True_restant)*100, "% pour l'autre choix ")
la probabilité de tirer un de basket est  40.0 %,  contre  60.0 % pour l'autre choix 

On prend logiquement la décision de prendre le choix le plus probable, le cas symétrique étant résolu en prenant une décision au hasard:

In [39]:
if proba_True_restant==.5:
    choix = proba_True_restant > np.random.rand()
else:
    choix = proba_True_restant > .5 
print(choix)
False

et on peut prévoir notre gain

In [40]:
gain_esperé = N_ballons_restant # c'est-à-dire N_ballons - N_ballons_restant - 1
print(gain_esperé)
5

et maintenant vérifier si ce choix était le bon

In [41]:
réussite = (test[N_ballons_vus] == choix)
réussite, réussite*2 - 1
Out[41]:
(True, 1)
In [42]:
gain = gain_esperé * (réussite*2 - 1)
#gain = gain_esperé * réussite 
gain
Out[42]:
5

à noter, on peut aussi représenter une information vide avec une liste vide:

In [43]:
test[:0]
Out[43]:
array([], dtype=int64)

Maintenant que nous avons suivi notre stratégie pour un ballon et sur un test, généralisons le à plusieurs tests: regardons d'abord un seul ballon:

In [44]:
N_test = None
tests = generate_test(N_ballons=N_ballons, N_basket=N_basket, N_test=N_test)
gains = np.zeros(len(tests))
N_ballons_vus = 1
for i_test in range(len(tests)):
    information = tests[i_test, :(N_ballons_vus)]
    N_ballons_restant = N_ballons - N_ballons_vus
    proba_True_restant = (N_ballons//2 - np.sum(information)) / N_ballons_restant 
    if proba_True_restant==.5:
        choix = np.random.rand() > .5
    else:
        choix = proba_True_restant > .5
    réussite = (tests[i_test, N_ballons_vus] == choix)
    gain_esperé = N_ballons_restant
    gains[i_test] = gain_esperé * (réussite*2 - 1)

plt.hist(gains);
<svg height="252pt" version="1.1" viewBox="0 0 372 252" width="372pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M -0 252.018125 L 372.425 252.018125 L 372.425 0 L -0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 26.925 228.14 L 361.725 228.14 L 361.725 10.7 L 26.925 10.7 z " style="fill:#ffffff;"/> </g> <g id="patch_3"> <path clip-path="url(#pff829c5494)" d="M 42.143182 228.14 L 72.579545 228.14 L 72.579545 72.825714 L 42.143182 72.825714 z " style="fill:#1f77b4;"/> </g> <g id="patch_4"> <path clip-path="url(#pff829c5494)" d="M 72.579545 228.14 L 103.015909 228.14 L 103.015909 228.14 L 72.579545 228.14 z " style="fill:#1f77b4;"/> </g> <g id="patch_5"> <path clip-path="url(#pff829c5494)" d="M 103.015909 228.14 L 133.452273 228.14 L 133.452273 228.14 L 103.015909 228.14 z " style="fill:#1f77b4;"/> </g> <g id="patch_6"> <path clip-path="url(#pff829c5494)" d="M 133.452273 228.14 L 163.888636 228.14 L 163.888636 228.14 L 133.452273 228.14 z " style="fill:#1f77b4;"/> </g> <g id="patch_7"> <path clip-path="url(#pff829c5494)" d="M 163.888636 228.14 L 194.325 228.14 L 194.325 228.14 L 163.888636 228.14 z " style="fill:#1f77b4;"/> </g> <g id="patch_8"> <path clip-path="url(#pff829c5494)" d="M 194.325 228.14 L 224.761364 228.14 L 224.761364 228.14 L 194.325 228.14 z " style="fill:#1f77b4;"/> </g> <g id="patch_9"> <path clip-path="url(#pff829c5494)" d="M 224.761364 228.14 L 255.197727 228.14 L 255.197727 228.14 L 224.761364 228.14 z " style="fill:#1f77b4;"/> </g> <g id="patch_10"> <path clip-path="url(#pff829c5494)" d="M 255.197727 228.14 L 285.634091 228.14 L 285.634091 228.14 L 255.197727 228.14 z " style="fill:#1f77b4;"/> </g> <g id="patch_11"> <path clip-path="url(#pff829c5494)" d="M 285.634091 228.14 L 316.070455 228.14 L 316.070455 228.14 L 285.634091 228.14 z " style="fill:#1f77b4;"/> </g> <g id="patch_12"> <path clip-path="url(#pff829c5494)" d="M 316.070455 228.14 L 346.506818 228.14 L 346.506818 21.054286 L 316.070455 21.054286 z " style="fill:#1f77b4;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="mde312c8db3" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="63.883442" xlink:href="#mde312c8db3" y="228.14"/> </g> </g> <g id="text_1"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(56.512348 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="107.363961" xlink:href="#mde312c8db3" y="228.14"/> </g> </g> <g id="text_2"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(99.992867 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="150.844481" xlink:href="#mde312c8db3" y="228.14"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(143.473387 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="194.325" xlink:href="#mde312c8db3" y="228.14"/> </g> </g> <g id="text_4"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(191.14375 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="237.805519" xlink:href="#mde312c8db3" y="228.14"/> </g> </g> <g id="text_5"> <g transform="translate(234.624269 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="281.286039" xlink:href="#mde312c8db3" y="228.14"/> </g> </g> <g id="text_6"> <g transform="translate(278.104789 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="324.766558" xlink:href="#mde312c8db3" y="228.14"/> </g> </g> <g id="text_7"> <g transform="translate(321.585308 242.738437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_8"> <defs> <path d="M 0 0 L -3.5 0 " id="mdeaae9a2c1" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#mdeaae9a2c1" y="228.14"/> </g> </g> <g id="text_8"> <g transform="translate(13.5625 231.939219)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#mdeaae9a2c1" y="202.254286"/> </g> </g> <g id="text_9"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(13.5625 206.053504)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#mdeaae9a2c1" y="176.368571"/> </g> </g> <g id="text_10"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(7.2 180.16779)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#mdeaae9a2c1" y="150.482857"/> </g> </g> <g id="text_11"> <g transform="translate(7.2 154.282076)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#mdeaae9a2c1" y="124.597143"/> </g> </g> <g id="text_12"> <g transform="translate(7.2 128.396362)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#mdeaae9a2c1" y="98.711429"/> </g> </g> <g id="text_13"> <g transform="translate(7.2 102.510647)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#mdeaae9a2c1" y="72.825714"/> </g> </g> <g id="text_14"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(7.2 76.624933)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_8"> <g id="line2d_15"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#mdeaae9a2c1" y="46.94"/> </g> </g> <g id="text_15"> <g transform="translate(7.2 50.739219)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_9"> <g id="line2d_16"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="26.925" xlink:href="#mdeaae9a2c1" y="21.054286"/> </g> </g> <g id="text_16"> <g transform="translate(7.2 24.853504)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="patch_13"> <path d="M 26.925 228.14 L 26.925 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_14"> <path d="M 361.725 228.14 L 361.725 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_15"> <path d="M 26.925 228.14 L 361.725 228.14 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_16"> <path d="M 26.925 10.7 L 361.725 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="pff829c5494"> <rect height="217.44" width="334.8" x="26.925" y="10.7"/> </clipPath> </defs> </svg>

et maintenant sur tous les tests:

In [45]:
ax = plt.pcolormesh(tests.T);
<svg height="252pt" version="1.1" viewBox="0 0 368 252" width="368pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 252.317344 L 368.925 252.317344 L 368.925 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 20.5625 228.439219 L 355.3625 228.439219 L 355.3625 10.999219 L 20.5625 10.999219 z " style="fill:#ffffff;"/> </g> <g id="QuadMesh_1"> <path clip-path="url(#p1dcc35b3b0)" d="M 20.5625 228.439219 L 25.345357 228.439219 L 25.345357 201.259219 L 20.5625 201.259219 L 20.5625 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 25.345357 228.439219 L 30.128214 228.439219 L 30.128214 201.259219 L 25.345357 201.259219 L 25.345357 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 30.128214 228.439219 L 34.911071 228.439219 L 34.911071 201.259219 L 30.128214 201.259219 L 30.128214 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 34.911071 228.439219 L 39.693929 228.439219 L 39.693929 201.259219 L 34.911071 201.259219 L 34.911071 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 39.693929 228.439219 L 44.476786 228.439219 L 44.476786 201.259219 L 39.693929 201.259219 L 39.693929 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 44.476786 228.439219 L 49.259643 228.439219 L 49.259643 201.259219 L 44.476786 201.259219 L 44.476786 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 49.259643 228.439219 L 54.0425 228.439219 L 54.0425 201.259219 L 49.259643 201.259219 L 49.259643 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 54.0425 228.439219 L 58.825357 228.439219 L 58.825357 201.259219 L 54.0425 201.259219 L 54.0425 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 58.825357 228.439219 L 63.608214 228.439219 L 63.608214 201.259219 L 58.825357 201.259219 L 58.825357 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 63.608214 228.439219 L 68.391071 228.439219 L 68.391071 201.259219 L 63.608214 201.259219 L 63.608214 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 68.391071 228.439219 L 73.173929 228.439219 L 73.173929 201.259219 L 68.391071 201.259219 L 68.391071 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 73.173929 228.439219 L 77.956786 228.439219 L 77.956786 201.259219 L 73.173929 201.259219 L 73.173929 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 77.956786 228.439219 L 82.739643 228.439219 L 82.739643 201.259219 L 77.956786 201.259219 L 77.956786 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 82.739643 228.439219 L 87.5225 228.439219 L 87.5225 201.259219 L 82.739643 201.259219 L 82.739643 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 87.5225 228.439219 L 92.305357 228.439219 L 92.305357 201.259219 L 87.5225 201.259219 L 87.5225 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 92.305357 228.439219 L 97.088214 228.439219 L 97.088214 201.259219 L 92.305357 201.259219 L 92.305357 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 97.088214 228.439219 L 101.871071 228.439219 L 101.871071 201.259219 L 97.088214 201.259219 L 97.088214 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 101.871071 228.439219 L 106.653929 228.439219 L 106.653929 201.259219 L 101.871071 201.259219 L 101.871071 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 106.653929 228.439219 L 111.436786 228.439219 L 111.436786 201.259219 L 106.653929 201.259219 L 106.653929 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 111.436786 228.439219 L 116.219643 228.439219 L 116.219643 201.259219 L 111.436786 201.259219 L 111.436786 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 116.219643 228.439219 L 121.0025 228.439219 L 121.0025 201.259219 L 116.219643 201.259219 L 116.219643 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 121.0025 228.439219 L 125.785357 228.439219 L 125.785357 201.259219 L 121.0025 201.259219 L 121.0025 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 125.785357 228.439219 L 130.568214 228.439219 L 130.568214 201.259219 L 125.785357 201.259219 L 125.785357 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 130.568214 228.439219 L 135.351071 228.439219 L 135.351071 201.259219 L 130.568214 201.259219 L 130.568214 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 135.351071 228.439219 L 140.133929 228.439219 L 140.133929 201.259219 L 135.351071 201.259219 L 135.351071 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 140.133929 228.439219 L 144.916786 228.439219 L 144.916786 201.259219 L 140.133929 201.259219 L 140.133929 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 144.916786 228.439219 L 149.699643 228.439219 L 149.699643 201.259219 L 144.916786 201.259219 L 144.916786 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 149.699643 228.439219 L 154.4825 228.439219 L 154.4825 201.259219 L 149.699643 201.259219 L 149.699643 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 154.4825 228.439219 L 159.265357 228.439219 L 159.265357 201.259219 L 154.4825 201.259219 L 154.4825 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 159.265357 228.439219 L 164.048214 228.439219 L 164.048214 201.259219 L 159.265357 201.259219 L 159.265357 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 164.048214 228.439219 L 168.831071 228.439219 L 168.831071 201.259219 L 164.048214 201.259219 L 164.048214 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 168.831071 228.439219 L 173.613929 228.439219 L 173.613929 201.259219 L 168.831071 201.259219 L 168.831071 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 173.613929 228.439219 L 178.396786 228.439219 L 178.396786 201.259219 L 173.613929 201.259219 L 173.613929 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 178.396786 228.439219 L 183.179643 228.439219 L 183.179643 201.259219 L 178.396786 201.259219 L 178.396786 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 183.179643 228.439219 L 187.9625 228.439219 L 187.9625 201.259219 L 183.179643 201.259219 L 183.179643 228.439219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 187.9625 228.439219 L 192.745357 228.439219 L 192.745357 201.259219 L 187.9625 201.259219 L 187.9625 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 192.745357 228.439219 L 197.528214 228.439219 L 197.528214 201.259219 L 192.745357 201.259219 L 192.745357 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 197.528214 228.439219 L 202.311071 228.439219 L 202.311071 201.259219 L 197.528214 201.259219 L 197.528214 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 202.311071 228.439219 L 207.093929 228.439219 L 207.093929 201.259219 L 202.311071 201.259219 L 202.311071 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 207.093929 228.439219 L 211.876786 228.439219 L 211.876786 201.259219 L 207.093929 201.259219 L 207.093929 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 211.876786 228.439219 L 216.659643 228.439219 L 216.659643 201.259219 L 211.876786 201.259219 L 211.876786 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 216.659643 228.439219 L 221.4425 228.439219 L 221.4425 201.259219 L 216.659643 201.259219 L 216.659643 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 221.4425 228.439219 L 226.225357 228.439219 L 226.225357 201.259219 L 221.4425 201.259219 L 221.4425 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 226.225357 228.439219 L 231.008214 228.439219 L 231.008214 201.259219 L 226.225357 201.259219 L 226.225357 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 231.008214 228.439219 L 235.791071 228.439219 L 235.791071 201.259219 L 231.008214 201.259219 L 231.008214 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 235.791071 228.439219 L 240.573929 228.439219 L 240.573929 201.259219 L 235.791071 201.259219 L 235.791071 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 240.573929 228.439219 L 245.356786 228.439219 L 245.356786 201.259219 L 240.573929 201.259219 L 240.573929 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 245.356786 228.439219 L 250.139643 228.439219 L 250.139643 201.259219 L 245.356786 201.259219 L 245.356786 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 250.139643 228.439219 L 254.9225 228.439219 L 254.9225 201.259219 L 250.139643 201.259219 L 250.139643 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 254.9225 228.439219 L 259.705357 228.439219 L 259.705357 201.259219 L 254.9225 201.259219 L 254.9225 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 259.705357 228.439219 L 264.488214 228.439219 L 264.488214 201.259219 L 259.705357 201.259219 L 259.705357 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 264.488214 228.439219 L 269.271071 228.439219 L 269.271071 201.259219 L 264.488214 201.259219 L 264.488214 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 269.271071 228.439219 L 274.053929 228.439219 L 274.053929 201.259219 L 269.271071 201.259219 L 269.271071 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 274.053929 228.439219 L 278.836786 228.439219 L 278.836786 201.259219 L 274.053929 201.259219 L 274.053929 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 278.836786 228.439219 L 283.619643 228.439219 L 283.619643 201.259219 L 278.836786 201.259219 L 278.836786 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 283.619643 228.439219 L 288.4025 228.439219 L 288.4025 201.259219 L 283.619643 201.259219 L 283.619643 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 288.4025 228.439219 L 293.185357 228.439219 L 293.185357 201.259219 L 288.4025 201.259219 L 288.4025 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 293.185357 228.439219 L 297.968214 228.439219 L 297.968214 201.259219 L 293.185357 201.259219 L 293.185357 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 297.968214 228.439219 L 302.751071 228.439219 L 302.751071 201.259219 L 297.968214 201.259219 L 297.968214 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 302.751071 228.439219 L 307.533929 228.439219 L 307.533929 201.259219 L 302.751071 201.259219 L 302.751071 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 307.533929 228.439219 L 312.316786 228.439219 L 312.316786 201.259219 L 307.533929 201.259219 L 307.533929 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 312.316786 228.439219 L 317.099643 228.439219 L 317.099643 201.259219 L 312.316786 201.259219 L 312.316786 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 317.099643 228.439219 L 321.8825 228.439219 L 321.8825 201.259219 L 317.099643 201.259219 L 317.099643 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 321.8825 228.439219 L 326.665357 228.439219 L 326.665357 201.259219 L 321.8825 201.259219 L 321.8825 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 326.665357 228.439219 L 331.448214 228.439219 L 331.448214 201.259219 L 326.665357 201.259219 L 326.665357 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 331.448214 228.439219 L 336.231071 228.439219 L 336.231071 201.259219 L 331.448214 201.259219 L 331.448214 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 336.231071 228.439219 L 341.013929 228.439219 L 341.013929 201.259219 L 336.231071 201.259219 L 336.231071 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 341.013929 228.439219 L 345.796786 228.439219 L 345.796786 201.259219 L 341.013929 201.259219 L 341.013929 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 345.796786 228.439219 L 350.579643 228.439219 L 350.579643 201.259219 L 345.796786 201.259219 L 345.796786 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 350.579643 228.439219 L 355.3625 228.439219 L 355.3625 201.259219 L 350.579643 201.259219 L 350.579643 228.439219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 20.5625 201.259219 L 25.345357 201.259219 L 25.345357 174.079219 L 20.5625 174.079219 L 20.5625 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 25.345357 201.259219 L 30.128214 201.259219 L 30.128214 174.079219 L 25.345357 174.079219 L 25.345357 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 30.128214 201.259219 L 34.911071 201.259219 L 34.911071 174.079219 L 30.128214 174.079219 L 30.128214 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 34.911071 201.259219 L 39.693929 201.259219 L 39.693929 174.079219 L 34.911071 174.079219 L 34.911071 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 39.693929 201.259219 L 44.476786 201.259219 L 44.476786 174.079219 L 39.693929 174.079219 L 39.693929 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 44.476786 201.259219 L 49.259643 201.259219 L 49.259643 174.079219 L 44.476786 174.079219 L 44.476786 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 49.259643 201.259219 L 54.0425 201.259219 L 54.0425 174.079219 L 49.259643 174.079219 L 49.259643 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 54.0425 201.259219 L 58.825357 201.259219 L 58.825357 174.079219 L 54.0425 174.079219 L 54.0425 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 58.825357 201.259219 L 63.608214 201.259219 L 63.608214 174.079219 L 58.825357 174.079219 L 58.825357 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 63.608214 201.259219 L 68.391071 201.259219 L 68.391071 174.079219 L 63.608214 174.079219 L 63.608214 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 68.391071 201.259219 L 73.173929 201.259219 L 73.173929 174.079219 L 68.391071 174.079219 L 68.391071 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 73.173929 201.259219 L 77.956786 201.259219 L 77.956786 174.079219 L 73.173929 174.079219 L 73.173929 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 77.956786 201.259219 L 82.739643 201.259219 L 82.739643 174.079219 L 77.956786 174.079219 L 77.956786 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 82.739643 201.259219 L 87.5225 201.259219 L 87.5225 174.079219 L 82.739643 174.079219 L 82.739643 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 87.5225 201.259219 L 92.305357 201.259219 L 92.305357 174.079219 L 87.5225 174.079219 L 87.5225 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 92.305357 201.259219 L 97.088214 201.259219 L 97.088214 174.079219 L 92.305357 174.079219 L 92.305357 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 97.088214 201.259219 L 101.871071 201.259219 L 101.871071 174.079219 L 97.088214 174.079219 L 97.088214 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 101.871071 201.259219 L 106.653929 201.259219 L 106.653929 174.079219 L 101.871071 174.079219 L 101.871071 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 106.653929 201.259219 L 111.436786 201.259219 L 111.436786 174.079219 L 106.653929 174.079219 L 106.653929 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 111.436786 201.259219 L 116.219643 201.259219 L 116.219643 174.079219 L 111.436786 174.079219 L 111.436786 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 116.219643 201.259219 L 121.0025 201.259219 L 121.0025 174.079219 L 116.219643 174.079219 L 116.219643 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 121.0025 201.259219 L 125.785357 201.259219 L 125.785357 174.079219 L 121.0025 174.079219 L 121.0025 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 125.785357 201.259219 L 130.568214 201.259219 L 130.568214 174.079219 L 125.785357 174.079219 L 125.785357 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 130.568214 201.259219 L 135.351071 201.259219 L 135.351071 174.079219 L 130.568214 174.079219 L 130.568214 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 135.351071 201.259219 L 140.133929 201.259219 L 140.133929 174.079219 L 135.351071 174.079219 L 135.351071 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 140.133929 201.259219 L 144.916786 201.259219 L 144.916786 174.079219 L 140.133929 174.079219 L 140.133929 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 144.916786 201.259219 L 149.699643 201.259219 L 149.699643 174.079219 L 144.916786 174.079219 L 144.916786 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 149.699643 201.259219 L 154.4825 201.259219 L 154.4825 174.079219 L 149.699643 174.079219 L 149.699643 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 154.4825 201.259219 L 159.265357 201.259219 L 159.265357 174.079219 L 154.4825 174.079219 L 154.4825 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 159.265357 201.259219 L 164.048214 201.259219 L 164.048214 174.079219 L 159.265357 174.079219 L 159.265357 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 164.048214 201.259219 L 168.831071 201.259219 L 168.831071 174.079219 L 164.048214 174.079219 L 164.048214 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 168.831071 201.259219 L 173.613929 201.259219 L 173.613929 174.079219 L 168.831071 174.079219 L 168.831071 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 173.613929 201.259219 L 178.396786 201.259219 L 178.396786 174.079219 L 173.613929 174.079219 L 173.613929 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 178.396786 201.259219 L 183.179643 201.259219 L 183.179643 174.079219 L 178.396786 174.079219 L 178.396786 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 183.179643 201.259219 L 187.9625 201.259219 L 187.9625 174.079219 L 183.179643 174.079219 L 183.179643 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 187.9625 201.259219 L 192.745357 201.259219 L 192.745357 174.079219 L 187.9625 174.079219 L 187.9625 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 192.745357 201.259219 L 197.528214 201.259219 L 197.528214 174.079219 L 192.745357 174.079219 L 192.745357 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 197.528214 201.259219 L 202.311071 201.259219 L 202.311071 174.079219 L 197.528214 174.079219 L 197.528214 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 202.311071 201.259219 L 207.093929 201.259219 L 207.093929 174.079219 L 202.311071 174.079219 L 202.311071 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 207.093929 201.259219 L 211.876786 201.259219 L 211.876786 174.079219 L 207.093929 174.079219 L 207.093929 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 211.876786 201.259219 L 216.659643 201.259219 L 216.659643 174.079219 L 211.876786 174.079219 L 211.876786 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 216.659643 201.259219 L 221.4425 201.259219 L 221.4425 174.079219 L 216.659643 174.079219 L 216.659643 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 221.4425 201.259219 L 226.225357 201.259219 L 226.225357 174.079219 L 221.4425 174.079219 L 221.4425 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 226.225357 201.259219 L 231.008214 201.259219 L 231.008214 174.079219 L 226.225357 174.079219 L 226.225357 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 231.008214 201.259219 L 235.791071 201.259219 L 235.791071 174.079219 L 231.008214 174.079219 L 231.008214 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 235.791071 201.259219 L 240.573929 201.259219 L 240.573929 174.079219 L 235.791071 174.079219 L 235.791071 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 240.573929 201.259219 L 245.356786 201.259219 L 245.356786 174.079219 L 240.573929 174.079219 L 240.573929 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 245.356786 201.259219 L 250.139643 201.259219 L 250.139643 174.079219 L 245.356786 174.079219 L 245.356786 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 250.139643 201.259219 L 254.9225 201.259219 L 254.9225 174.079219 L 250.139643 174.079219 L 250.139643 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 254.9225 201.259219 L 259.705357 201.259219 L 259.705357 174.079219 L 254.9225 174.079219 L 254.9225 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 259.705357 201.259219 L 264.488214 201.259219 L 264.488214 174.079219 L 259.705357 174.079219 L 259.705357 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 264.488214 201.259219 L 269.271071 201.259219 L 269.271071 174.079219 L 264.488214 174.079219 L 264.488214 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 269.271071 201.259219 L 274.053929 201.259219 L 274.053929 174.079219 L 269.271071 174.079219 L 269.271071 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 274.053929 201.259219 L 278.836786 201.259219 L 278.836786 174.079219 L 274.053929 174.079219 L 274.053929 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 278.836786 201.259219 L 283.619643 201.259219 L 283.619643 174.079219 L 278.836786 174.079219 L 278.836786 201.259219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 283.619643 201.259219 L 288.4025 201.259219 L 288.4025 174.079219 L 283.619643 174.079219 L 283.619643 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 288.4025 201.259219 L 293.185357 201.259219 L 293.185357 174.079219 L 288.4025 174.079219 L 288.4025 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 293.185357 201.259219 L 297.968214 201.259219 L 297.968214 174.079219 L 293.185357 174.079219 L 293.185357 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 297.968214 201.259219 L 302.751071 201.259219 L 302.751071 174.079219 L 297.968214 174.079219 L 297.968214 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 302.751071 201.259219 L 307.533929 201.259219 L 307.533929 174.079219 L 302.751071 174.079219 L 302.751071 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 307.533929 201.259219 L 312.316786 201.259219 L 312.316786 174.079219 L 307.533929 174.079219 L 307.533929 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 312.316786 201.259219 L 317.099643 201.259219 L 317.099643 174.079219 L 312.316786 174.079219 L 312.316786 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 317.099643 201.259219 L 321.8825 201.259219 L 321.8825 174.079219 L 317.099643 174.079219 L 317.099643 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 321.8825 201.259219 L 326.665357 201.259219 L 326.665357 174.079219 L 321.8825 174.079219 L 321.8825 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 326.665357 201.259219 L 331.448214 201.259219 L 331.448214 174.079219 L 326.665357 174.079219 L 326.665357 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 331.448214 201.259219 L 336.231071 201.259219 L 336.231071 174.079219 L 331.448214 174.079219 L 331.448214 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 336.231071 201.259219 L 341.013929 201.259219 L 341.013929 174.079219 L 336.231071 174.079219 L 336.231071 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 341.013929 201.259219 L 345.796786 201.259219 L 345.796786 174.079219 L 341.013929 174.079219 L 341.013929 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 345.796786 201.259219 L 350.579643 201.259219 L 350.579643 174.079219 L 345.796786 174.079219 L 345.796786 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 350.579643 201.259219 L 355.3625 201.259219 L 355.3625 174.079219 L 350.579643 174.079219 L 350.579643 201.259219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 20.5625 174.079219 L 25.345357 174.079219 L 25.345357 146.899219 L 20.5625 146.899219 L 20.5625 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 25.345357 174.079219 L 30.128214 174.079219 L 30.128214 146.899219 L 25.345357 146.899219 L 25.345357 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 30.128214 174.079219 L 34.911071 174.079219 L 34.911071 146.899219 L 30.128214 146.899219 L 30.128214 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 34.911071 174.079219 L 39.693929 174.079219 L 39.693929 146.899219 L 34.911071 146.899219 L 34.911071 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 39.693929 174.079219 L 44.476786 174.079219 L 44.476786 146.899219 L 39.693929 146.899219 L 39.693929 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 44.476786 174.079219 L 49.259643 174.079219 L 49.259643 146.899219 L 44.476786 146.899219 L 44.476786 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 49.259643 174.079219 L 54.0425 174.079219 L 54.0425 146.899219 L 49.259643 146.899219 L 49.259643 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 54.0425 174.079219 L 58.825357 174.079219 L 58.825357 146.899219 L 54.0425 146.899219 L 54.0425 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 58.825357 174.079219 L 63.608214 174.079219 L 63.608214 146.899219 L 58.825357 146.899219 L 58.825357 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 63.608214 174.079219 L 68.391071 174.079219 L 68.391071 146.899219 L 63.608214 146.899219 L 63.608214 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 68.391071 174.079219 L 73.173929 174.079219 L 73.173929 146.899219 L 68.391071 146.899219 L 68.391071 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 73.173929 174.079219 L 77.956786 174.079219 L 77.956786 146.899219 L 73.173929 146.899219 L 73.173929 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 77.956786 174.079219 L 82.739643 174.079219 L 82.739643 146.899219 L 77.956786 146.899219 L 77.956786 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 82.739643 174.079219 L 87.5225 174.079219 L 87.5225 146.899219 L 82.739643 146.899219 L 82.739643 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 87.5225 174.079219 L 92.305357 174.079219 L 92.305357 146.899219 L 87.5225 146.899219 L 87.5225 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 92.305357 174.079219 L 97.088214 174.079219 L 97.088214 146.899219 L 92.305357 146.899219 L 92.305357 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 97.088214 174.079219 L 101.871071 174.079219 L 101.871071 146.899219 L 97.088214 146.899219 L 97.088214 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 101.871071 174.079219 L 106.653929 174.079219 L 106.653929 146.899219 L 101.871071 146.899219 L 101.871071 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 106.653929 174.079219 L 111.436786 174.079219 L 111.436786 146.899219 L 106.653929 146.899219 L 106.653929 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 111.436786 174.079219 L 116.219643 174.079219 L 116.219643 146.899219 L 111.436786 146.899219 L 111.436786 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 116.219643 174.079219 L 121.0025 174.079219 L 121.0025 146.899219 L 116.219643 146.899219 L 116.219643 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 121.0025 174.079219 L 125.785357 174.079219 L 125.785357 146.899219 L 121.0025 146.899219 L 121.0025 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 125.785357 174.079219 L 130.568214 174.079219 L 130.568214 146.899219 L 125.785357 146.899219 L 125.785357 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 130.568214 174.079219 L 135.351071 174.079219 L 135.351071 146.899219 L 130.568214 146.899219 L 130.568214 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 135.351071 174.079219 L 140.133929 174.079219 L 140.133929 146.899219 L 135.351071 146.899219 L 135.351071 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 140.133929 174.079219 L 144.916786 174.079219 L 144.916786 146.899219 L 140.133929 146.899219 L 140.133929 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 144.916786 174.079219 L 149.699643 174.079219 L 149.699643 146.899219 L 144.916786 146.899219 L 144.916786 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 149.699643 174.079219 L 154.4825 174.079219 L 154.4825 146.899219 L 149.699643 146.899219 L 149.699643 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 154.4825 174.079219 L 159.265357 174.079219 L 159.265357 146.899219 L 154.4825 146.899219 L 154.4825 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 159.265357 174.079219 L 164.048214 174.079219 L 164.048214 146.899219 L 159.265357 146.899219 L 159.265357 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 164.048214 174.079219 L 168.831071 174.079219 L 168.831071 146.899219 L 164.048214 146.899219 L 164.048214 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 168.831071 174.079219 L 173.613929 174.079219 L 173.613929 146.899219 L 168.831071 146.899219 L 168.831071 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 173.613929 174.079219 L 178.396786 174.079219 L 178.396786 146.899219 L 173.613929 146.899219 L 173.613929 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 178.396786 174.079219 L 183.179643 174.079219 L 183.179643 146.899219 L 178.396786 146.899219 L 178.396786 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 183.179643 174.079219 L 187.9625 174.079219 L 187.9625 146.899219 L 183.179643 146.899219 L 183.179643 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 187.9625 174.079219 L 192.745357 174.079219 L 192.745357 146.899219 L 187.9625 146.899219 L 187.9625 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 192.745357 174.079219 L 197.528214 174.079219 L 197.528214 146.899219 L 192.745357 146.899219 L 192.745357 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 197.528214 174.079219 L 202.311071 174.079219 L 202.311071 146.899219 L 197.528214 146.899219 L 197.528214 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 202.311071 174.079219 L 207.093929 174.079219 L 207.093929 146.899219 L 202.311071 146.899219 L 202.311071 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 207.093929 174.079219 L 211.876786 174.079219 L 211.876786 146.899219 L 207.093929 146.899219 L 207.093929 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 211.876786 174.079219 L 216.659643 174.079219 L 216.659643 146.899219 L 211.876786 146.899219 L 211.876786 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 216.659643 174.079219 L 221.4425 174.079219 L 221.4425 146.899219 L 216.659643 146.899219 L 216.659643 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 221.4425 174.079219 L 226.225357 174.079219 L 226.225357 146.899219 L 221.4425 146.899219 L 221.4425 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 226.225357 174.079219 L 231.008214 174.079219 L 231.008214 146.899219 L 226.225357 146.899219 L 226.225357 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 231.008214 174.079219 L 235.791071 174.079219 L 235.791071 146.899219 L 231.008214 146.899219 L 231.008214 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 235.791071 174.079219 L 240.573929 174.079219 L 240.573929 146.899219 L 235.791071 146.899219 L 235.791071 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 240.573929 174.079219 L 245.356786 174.079219 L 245.356786 146.899219 L 240.573929 146.899219 L 240.573929 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 245.356786 174.079219 L 250.139643 174.079219 L 250.139643 146.899219 L 245.356786 146.899219 L 245.356786 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 250.139643 174.079219 L 254.9225 174.079219 L 254.9225 146.899219 L 250.139643 146.899219 L 250.139643 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 254.9225 174.079219 L 259.705357 174.079219 L 259.705357 146.899219 L 254.9225 146.899219 L 254.9225 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 259.705357 174.079219 L 264.488214 174.079219 L 264.488214 146.899219 L 259.705357 146.899219 L 259.705357 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 264.488214 174.079219 L 269.271071 174.079219 L 269.271071 146.899219 L 264.488214 146.899219 L 264.488214 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 269.271071 174.079219 L 274.053929 174.079219 L 274.053929 146.899219 L 269.271071 146.899219 L 269.271071 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 274.053929 174.079219 L 278.836786 174.079219 L 278.836786 146.899219 L 274.053929 146.899219 L 274.053929 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 278.836786 174.079219 L 283.619643 174.079219 L 283.619643 146.899219 L 278.836786 146.899219 L 278.836786 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 283.619643 174.079219 L 288.4025 174.079219 L 288.4025 146.899219 L 283.619643 146.899219 L 283.619643 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 288.4025 174.079219 L 293.185357 174.079219 L 293.185357 146.899219 L 288.4025 146.899219 L 288.4025 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 293.185357 174.079219 L 297.968214 174.079219 L 297.968214 146.899219 L 293.185357 146.899219 L 293.185357 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 297.968214 174.079219 L 302.751071 174.079219 L 302.751071 146.899219 L 297.968214 146.899219 L 297.968214 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 302.751071 174.079219 L 307.533929 174.079219 L 307.533929 146.899219 L 302.751071 146.899219 L 302.751071 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 307.533929 174.079219 L 312.316786 174.079219 L 312.316786 146.899219 L 307.533929 146.899219 L 307.533929 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 312.316786 174.079219 L 317.099643 174.079219 L 317.099643 146.899219 L 312.316786 146.899219 L 312.316786 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 317.099643 174.079219 L 321.8825 174.079219 L 321.8825 146.899219 L 317.099643 146.899219 L 317.099643 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 321.8825 174.079219 L 326.665357 174.079219 L 326.665357 146.899219 L 321.8825 146.899219 L 321.8825 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 326.665357 174.079219 L 331.448214 174.079219 L 331.448214 146.899219 L 326.665357 146.899219 L 326.665357 174.079219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 331.448214 174.079219 L 336.231071 174.079219 L 336.231071 146.899219 L 331.448214 146.899219 L 331.448214 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 336.231071 174.079219 L 341.013929 174.079219 L 341.013929 146.899219 L 336.231071 146.899219 L 336.231071 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 341.013929 174.079219 L 345.796786 174.079219 L 345.796786 146.899219 L 341.013929 146.899219 L 341.013929 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 345.796786 174.079219 L 350.579643 174.079219 L 350.579643 146.899219 L 345.796786 146.899219 L 345.796786 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 350.579643 174.079219 L 355.3625 174.079219 L 355.3625 146.899219 L 350.579643 146.899219 L 350.579643 174.079219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 20.5625 146.899219 L 25.345357 146.899219 L 25.345357 119.719219 L 20.5625 119.719219 L 20.5625 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 25.345357 146.899219 L 30.128214 146.899219 L 30.128214 119.719219 L 25.345357 119.719219 L 25.345357 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 30.128214 146.899219 L 34.911071 146.899219 L 34.911071 119.719219 L 30.128214 119.719219 L 30.128214 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 34.911071 146.899219 L 39.693929 146.899219 L 39.693929 119.719219 L 34.911071 119.719219 L 34.911071 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 39.693929 146.899219 L 44.476786 146.899219 L 44.476786 119.719219 L 39.693929 119.719219 L 39.693929 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 44.476786 146.899219 L 49.259643 146.899219 L 49.259643 119.719219 L 44.476786 119.719219 L 44.476786 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 49.259643 146.899219 L 54.0425 146.899219 L 54.0425 119.719219 L 49.259643 119.719219 L 49.259643 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 54.0425 146.899219 L 58.825357 146.899219 L 58.825357 119.719219 L 54.0425 119.719219 L 54.0425 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 58.825357 146.899219 L 63.608214 146.899219 L 63.608214 119.719219 L 58.825357 119.719219 L 58.825357 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 63.608214 146.899219 L 68.391071 146.899219 L 68.391071 119.719219 L 63.608214 119.719219 L 63.608214 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 68.391071 146.899219 L 73.173929 146.899219 L 73.173929 119.719219 L 68.391071 119.719219 L 68.391071 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 73.173929 146.899219 L 77.956786 146.899219 L 77.956786 119.719219 L 73.173929 119.719219 L 73.173929 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 77.956786 146.899219 L 82.739643 146.899219 L 82.739643 119.719219 L 77.956786 119.719219 L 77.956786 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 82.739643 146.899219 L 87.5225 146.899219 L 87.5225 119.719219 L 82.739643 119.719219 L 82.739643 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 87.5225 146.899219 L 92.305357 146.899219 L 92.305357 119.719219 L 87.5225 119.719219 L 87.5225 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 92.305357 146.899219 L 97.088214 146.899219 L 97.088214 119.719219 L 92.305357 119.719219 L 92.305357 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 97.088214 146.899219 L 101.871071 146.899219 L 101.871071 119.719219 L 97.088214 119.719219 L 97.088214 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 101.871071 146.899219 L 106.653929 146.899219 L 106.653929 119.719219 L 101.871071 119.719219 L 101.871071 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 106.653929 146.899219 L 111.436786 146.899219 L 111.436786 119.719219 L 106.653929 119.719219 L 106.653929 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 111.436786 146.899219 L 116.219643 146.899219 L 116.219643 119.719219 L 111.436786 119.719219 L 111.436786 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 116.219643 146.899219 L 121.0025 146.899219 L 121.0025 119.719219 L 116.219643 119.719219 L 116.219643 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 121.0025 146.899219 L 125.785357 146.899219 L 125.785357 119.719219 L 121.0025 119.719219 L 121.0025 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 125.785357 146.899219 L 130.568214 146.899219 L 130.568214 119.719219 L 125.785357 119.719219 L 125.785357 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 130.568214 146.899219 L 135.351071 146.899219 L 135.351071 119.719219 L 130.568214 119.719219 L 130.568214 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 135.351071 146.899219 L 140.133929 146.899219 L 140.133929 119.719219 L 135.351071 119.719219 L 135.351071 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 140.133929 146.899219 L 144.916786 146.899219 L 144.916786 119.719219 L 140.133929 119.719219 L 140.133929 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 144.916786 146.899219 L 149.699643 146.899219 L 149.699643 119.719219 L 144.916786 119.719219 L 144.916786 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 149.699643 146.899219 L 154.4825 146.899219 L 154.4825 119.719219 L 149.699643 119.719219 L 149.699643 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 154.4825 146.899219 L 159.265357 146.899219 L 159.265357 119.719219 L 154.4825 119.719219 L 154.4825 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 159.265357 146.899219 L 164.048214 146.899219 L 164.048214 119.719219 L 159.265357 119.719219 L 159.265357 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 164.048214 146.899219 L 168.831071 146.899219 L 168.831071 119.719219 L 164.048214 119.719219 L 164.048214 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 168.831071 146.899219 L 173.613929 146.899219 L 173.613929 119.719219 L 168.831071 119.719219 L 168.831071 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 173.613929 146.899219 L 178.396786 146.899219 L 178.396786 119.719219 L 173.613929 119.719219 L 173.613929 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 178.396786 146.899219 L 183.179643 146.899219 L 183.179643 119.719219 L 178.396786 119.719219 L 178.396786 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 183.179643 146.899219 L 187.9625 146.899219 L 187.9625 119.719219 L 183.179643 119.719219 L 183.179643 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 187.9625 146.899219 L 192.745357 146.899219 L 192.745357 119.719219 L 187.9625 119.719219 L 187.9625 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 192.745357 146.899219 L 197.528214 146.899219 L 197.528214 119.719219 L 192.745357 119.719219 L 192.745357 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 197.528214 146.899219 L 202.311071 146.899219 L 202.311071 119.719219 L 197.528214 119.719219 L 197.528214 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 202.311071 146.899219 L 207.093929 146.899219 L 207.093929 119.719219 L 202.311071 119.719219 L 202.311071 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 207.093929 146.899219 L 211.876786 146.899219 L 211.876786 119.719219 L 207.093929 119.719219 L 207.093929 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 211.876786 146.899219 L 216.659643 146.899219 L 216.659643 119.719219 L 211.876786 119.719219 L 211.876786 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 216.659643 146.899219 L 221.4425 146.899219 L 221.4425 119.719219 L 216.659643 119.719219 L 216.659643 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 221.4425 146.899219 L 226.225357 146.899219 L 226.225357 119.719219 L 221.4425 119.719219 L 221.4425 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 226.225357 146.899219 L 231.008214 146.899219 L 231.008214 119.719219 L 226.225357 119.719219 L 226.225357 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 231.008214 146.899219 L 235.791071 146.899219 L 235.791071 119.719219 L 231.008214 119.719219 L 231.008214 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 235.791071 146.899219 L 240.573929 146.899219 L 240.573929 119.719219 L 235.791071 119.719219 L 235.791071 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 240.573929 146.899219 L 245.356786 146.899219 L 245.356786 119.719219 L 240.573929 119.719219 L 240.573929 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 245.356786 146.899219 L 250.139643 146.899219 L 250.139643 119.719219 L 245.356786 119.719219 L 245.356786 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 250.139643 146.899219 L 254.9225 146.899219 L 254.9225 119.719219 L 250.139643 119.719219 L 250.139643 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 254.9225 146.899219 L 259.705357 146.899219 L 259.705357 119.719219 L 254.9225 119.719219 L 254.9225 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 259.705357 146.899219 L 264.488214 146.899219 L 264.488214 119.719219 L 259.705357 119.719219 L 259.705357 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 264.488214 146.899219 L 269.271071 146.899219 L 269.271071 119.719219 L 264.488214 119.719219 L 264.488214 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 269.271071 146.899219 L 274.053929 146.899219 L 274.053929 119.719219 L 269.271071 119.719219 L 269.271071 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 274.053929 146.899219 L 278.836786 146.899219 L 278.836786 119.719219 L 274.053929 119.719219 L 274.053929 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 278.836786 146.899219 L 283.619643 146.899219 L 283.619643 119.719219 L 278.836786 119.719219 L 278.836786 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 283.619643 146.899219 L 288.4025 146.899219 L 288.4025 119.719219 L 283.619643 119.719219 L 283.619643 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 288.4025 146.899219 L 293.185357 146.899219 L 293.185357 119.719219 L 288.4025 119.719219 L 288.4025 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 293.185357 146.899219 L 297.968214 146.899219 L 297.968214 119.719219 L 293.185357 119.719219 L 293.185357 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 297.968214 146.899219 L 302.751071 146.899219 L 302.751071 119.719219 L 297.968214 119.719219 L 297.968214 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 302.751071 146.899219 L 307.533929 146.899219 L 307.533929 119.719219 L 302.751071 119.719219 L 302.751071 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 307.533929 146.899219 L 312.316786 146.899219 L 312.316786 119.719219 L 307.533929 119.719219 L 307.533929 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 312.316786 146.899219 L 317.099643 146.899219 L 317.099643 119.719219 L 312.316786 119.719219 L 312.316786 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 317.099643 146.899219 L 321.8825 146.899219 L 321.8825 119.719219 L 317.099643 119.719219 L 317.099643 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 321.8825 146.899219 L 326.665357 146.899219 L 326.665357 119.719219 L 321.8825 119.719219 L 321.8825 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 326.665357 146.899219 L 331.448214 146.899219 L 331.448214 119.719219 L 326.665357 119.719219 L 326.665357 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 331.448214 146.899219 L 336.231071 146.899219 L 336.231071 119.719219 L 331.448214 119.719219 L 331.448214 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 336.231071 146.899219 L 341.013929 146.899219 L 341.013929 119.719219 L 336.231071 119.719219 L 336.231071 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 341.013929 146.899219 L 345.796786 146.899219 L 345.796786 119.719219 L 341.013929 119.719219 L 341.013929 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 345.796786 146.899219 L 350.579643 146.899219 L 350.579643 119.719219 L 345.796786 119.719219 L 345.796786 146.899219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 350.579643 146.899219 L 355.3625 146.899219 L 355.3625 119.719219 L 350.579643 119.719219 L 350.579643 146.899219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 20.5625 119.719219 L 25.345357 119.719219 L 25.345357 92.539219 L 20.5625 92.539219 L 20.5625 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 25.345357 119.719219 L 30.128214 119.719219 L 30.128214 92.539219 L 25.345357 92.539219 L 25.345357 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 30.128214 119.719219 L 34.911071 119.719219 L 34.911071 92.539219 L 30.128214 92.539219 L 30.128214 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 34.911071 119.719219 L 39.693929 119.719219 L 39.693929 92.539219 L 34.911071 92.539219 L 34.911071 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 39.693929 119.719219 L 44.476786 119.719219 L 44.476786 92.539219 L 39.693929 92.539219 L 39.693929 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 44.476786 119.719219 L 49.259643 119.719219 L 49.259643 92.539219 L 44.476786 92.539219 L 44.476786 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 49.259643 119.719219 L 54.0425 119.719219 L 54.0425 92.539219 L 49.259643 92.539219 L 49.259643 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 54.0425 119.719219 L 58.825357 119.719219 L 58.825357 92.539219 L 54.0425 92.539219 L 54.0425 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 58.825357 119.719219 L 63.608214 119.719219 L 63.608214 92.539219 L 58.825357 92.539219 L 58.825357 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 63.608214 119.719219 L 68.391071 119.719219 L 68.391071 92.539219 L 63.608214 92.539219 L 63.608214 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 68.391071 119.719219 L 73.173929 119.719219 L 73.173929 92.539219 L 68.391071 92.539219 L 68.391071 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 73.173929 119.719219 L 77.956786 119.719219 L 77.956786 92.539219 L 73.173929 92.539219 L 73.173929 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 77.956786 119.719219 L 82.739643 119.719219 L 82.739643 92.539219 L 77.956786 92.539219 L 77.956786 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 82.739643 119.719219 L 87.5225 119.719219 L 87.5225 92.539219 L 82.739643 92.539219 L 82.739643 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 87.5225 119.719219 L 92.305357 119.719219 L 92.305357 92.539219 L 87.5225 92.539219 L 87.5225 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 92.305357 119.719219 L 97.088214 119.719219 L 97.088214 92.539219 L 92.305357 92.539219 L 92.305357 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 97.088214 119.719219 L 101.871071 119.719219 L 101.871071 92.539219 L 97.088214 92.539219 L 97.088214 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 101.871071 119.719219 L 106.653929 119.719219 L 106.653929 92.539219 L 101.871071 92.539219 L 101.871071 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 106.653929 119.719219 L 111.436786 119.719219 L 111.436786 92.539219 L 106.653929 92.539219 L 106.653929 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 111.436786 119.719219 L 116.219643 119.719219 L 116.219643 92.539219 L 111.436786 92.539219 L 111.436786 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 116.219643 119.719219 L 121.0025 119.719219 L 121.0025 92.539219 L 116.219643 92.539219 L 116.219643 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 121.0025 119.719219 L 125.785357 119.719219 L 125.785357 92.539219 L 121.0025 92.539219 L 121.0025 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 125.785357 119.719219 L 130.568214 119.719219 L 130.568214 92.539219 L 125.785357 92.539219 L 125.785357 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 130.568214 119.719219 L 135.351071 119.719219 L 135.351071 92.539219 L 130.568214 92.539219 L 130.568214 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 135.351071 119.719219 L 140.133929 119.719219 L 140.133929 92.539219 L 135.351071 92.539219 L 135.351071 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 140.133929 119.719219 L 144.916786 119.719219 L 144.916786 92.539219 L 140.133929 92.539219 L 140.133929 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 144.916786 119.719219 L 149.699643 119.719219 L 149.699643 92.539219 L 144.916786 92.539219 L 144.916786 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 149.699643 119.719219 L 154.4825 119.719219 L 154.4825 92.539219 L 149.699643 92.539219 L 149.699643 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 154.4825 119.719219 L 159.265357 119.719219 L 159.265357 92.539219 L 154.4825 92.539219 L 154.4825 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 159.265357 119.719219 L 164.048214 119.719219 L 164.048214 92.539219 L 159.265357 92.539219 L 159.265357 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 164.048214 119.719219 L 168.831071 119.719219 L 168.831071 92.539219 L 164.048214 92.539219 L 164.048214 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 168.831071 119.719219 L 173.613929 119.719219 L 173.613929 92.539219 L 168.831071 92.539219 L 168.831071 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 173.613929 119.719219 L 178.396786 119.719219 L 178.396786 92.539219 L 173.613929 92.539219 L 173.613929 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 178.396786 119.719219 L 183.179643 119.719219 L 183.179643 92.539219 L 178.396786 92.539219 L 178.396786 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 183.179643 119.719219 L 187.9625 119.719219 L 187.9625 92.539219 L 183.179643 92.539219 L 183.179643 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 187.9625 119.719219 L 192.745357 119.719219 L 192.745357 92.539219 L 187.9625 92.539219 L 187.9625 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 192.745357 119.719219 L 197.528214 119.719219 L 197.528214 92.539219 L 192.745357 92.539219 L 192.745357 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 197.528214 119.719219 L 202.311071 119.719219 L 202.311071 92.539219 L 197.528214 92.539219 L 197.528214 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 202.311071 119.719219 L 207.093929 119.719219 L 207.093929 92.539219 L 202.311071 92.539219 L 202.311071 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 207.093929 119.719219 L 211.876786 119.719219 L 211.876786 92.539219 L 207.093929 92.539219 L 207.093929 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 211.876786 119.719219 L 216.659643 119.719219 L 216.659643 92.539219 L 211.876786 92.539219 L 211.876786 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 216.659643 119.719219 L 221.4425 119.719219 L 221.4425 92.539219 L 216.659643 92.539219 L 216.659643 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 221.4425 119.719219 L 226.225357 119.719219 L 226.225357 92.539219 L 221.4425 92.539219 L 221.4425 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 226.225357 119.719219 L 231.008214 119.719219 L 231.008214 92.539219 L 226.225357 92.539219 L 226.225357 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 231.008214 119.719219 L 235.791071 119.719219 L 235.791071 92.539219 L 231.008214 92.539219 L 231.008214 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 235.791071 119.719219 L 240.573929 119.719219 L 240.573929 92.539219 L 235.791071 92.539219 L 235.791071 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 240.573929 119.719219 L 245.356786 119.719219 L 245.356786 92.539219 L 240.573929 92.539219 L 240.573929 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 245.356786 119.719219 L 250.139643 119.719219 L 250.139643 92.539219 L 245.356786 92.539219 L 245.356786 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 250.139643 119.719219 L 254.9225 119.719219 L 254.9225 92.539219 L 250.139643 92.539219 L 250.139643 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 254.9225 119.719219 L 259.705357 119.719219 L 259.705357 92.539219 L 254.9225 92.539219 L 254.9225 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 259.705357 119.719219 L 264.488214 119.719219 L 264.488214 92.539219 L 259.705357 92.539219 L 259.705357 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 264.488214 119.719219 L 269.271071 119.719219 L 269.271071 92.539219 L 264.488214 92.539219 L 264.488214 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 269.271071 119.719219 L 274.053929 119.719219 L 274.053929 92.539219 L 269.271071 92.539219 L 269.271071 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 274.053929 119.719219 L 278.836786 119.719219 L 278.836786 92.539219 L 274.053929 92.539219 L 274.053929 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 278.836786 119.719219 L 283.619643 119.719219 L 283.619643 92.539219 L 278.836786 92.539219 L 278.836786 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 283.619643 119.719219 L 288.4025 119.719219 L 288.4025 92.539219 L 283.619643 92.539219 L 283.619643 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 288.4025 119.719219 L 293.185357 119.719219 L 293.185357 92.539219 L 288.4025 92.539219 L 288.4025 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 293.185357 119.719219 L 297.968214 119.719219 L 297.968214 92.539219 L 293.185357 92.539219 L 293.185357 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 297.968214 119.719219 L 302.751071 119.719219 L 302.751071 92.539219 L 297.968214 92.539219 L 297.968214 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 302.751071 119.719219 L 307.533929 119.719219 L 307.533929 92.539219 L 302.751071 92.539219 L 302.751071 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 307.533929 119.719219 L 312.316786 119.719219 L 312.316786 92.539219 L 307.533929 92.539219 L 307.533929 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 312.316786 119.719219 L 317.099643 119.719219 L 317.099643 92.539219 L 312.316786 92.539219 L 312.316786 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 317.099643 119.719219 L 321.8825 119.719219 L 321.8825 92.539219 L 317.099643 92.539219 L 317.099643 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 321.8825 119.719219 L 326.665357 119.719219 L 326.665357 92.539219 L 321.8825 92.539219 L 321.8825 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 326.665357 119.719219 L 331.448214 119.719219 L 331.448214 92.539219 L 326.665357 92.539219 L 326.665357 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 331.448214 119.719219 L 336.231071 119.719219 L 336.231071 92.539219 L 331.448214 92.539219 L 331.448214 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 336.231071 119.719219 L 341.013929 119.719219 L 341.013929 92.539219 L 336.231071 92.539219 L 336.231071 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 341.013929 119.719219 L 345.796786 119.719219 L 345.796786 92.539219 L 341.013929 92.539219 L 341.013929 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 345.796786 119.719219 L 350.579643 119.719219 L 350.579643 92.539219 L 345.796786 92.539219 L 345.796786 119.719219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 350.579643 119.719219 L 355.3625 119.719219 L 355.3625 92.539219 L 350.579643 92.539219 L 350.579643 119.719219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 20.5625 92.539219 L 25.345357 92.539219 L 25.345357 65.359219 L 20.5625 65.359219 L 20.5625 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 25.345357 92.539219 L 30.128214 92.539219 L 30.128214 65.359219 L 25.345357 65.359219 L 25.345357 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 30.128214 92.539219 L 34.911071 92.539219 L 34.911071 65.359219 L 30.128214 65.359219 L 30.128214 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 34.911071 92.539219 L 39.693929 92.539219 L 39.693929 65.359219 L 34.911071 65.359219 L 34.911071 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 39.693929 92.539219 L 44.476786 92.539219 L 44.476786 65.359219 L 39.693929 65.359219 L 39.693929 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 44.476786 92.539219 L 49.259643 92.539219 L 49.259643 65.359219 L 44.476786 65.359219 L 44.476786 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 49.259643 92.539219 L 54.0425 92.539219 L 54.0425 65.359219 L 49.259643 65.359219 L 49.259643 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 54.0425 92.539219 L 58.825357 92.539219 L 58.825357 65.359219 L 54.0425 65.359219 L 54.0425 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 58.825357 92.539219 L 63.608214 92.539219 L 63.608214 65.359219 L 58.825357 65.359219 L 58.825357 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 63.608214 92.539219 L 68.391071 92.539219 L 68.391071 65.359219 L 63.608214 65.359219 L 63.608214 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 68.391071 92.539219 L 73.173929 92.539219 L 73.173929 65.359219 L 68.391071 65.359219 L 68.391071 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 73.173929 92.539219 L 77.956786 92.539219 L 77.956786 65.359219 L 73.173929 65.359219 L 73.173929 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 77.956786 92.539219 L 82.739643 92.539219 L 82.739643 65.359219 L 77.956786 65.359219 L 77.956786 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 82.739643 92.539219 L 87.5225 92.539219 L 87.5225 65.359219 L 82.739643 65.359219 L 82.739643 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 87.5225 92.539219 L 92.305357 92.539219 L 92.305357 65.359219 L 87.5225 65.359219 L 87.5225 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 92.305357 92.539219 L 97.088214 92.539219 L 97.088214 65.359219 L 92.305357 65.359219 L 92.305357 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 97.088214 92.539219 L 101.871071 92.539219 L 101.871071 65.359219 L 97.088214 65.359219 L 97.088214 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 101.871071 92.539219 L 106.653929 92.539219 L 106.653929 65.359219 L 101.871071 65.359219 L 101.871071 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 106.653929 92.539219 L 111.436786 92.539219 L 111.436786 65.359219 L 106.653929 65.359219 L 106.653929 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 111.436786 92.539219 L 116.219643 92.539219 L 116.219643 65.359219 L 111.436786 65.359219 L 111.436786 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 116.219643 92.539219 L 121.0025 92.539219 L 121.0025 65.359219 L 116.219643 65.359219 L 116.219643 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 121.0025 92.539219 L 125.785357 92.539219 L 125.785357 65.359219 L 121.0025 65.359219 L 121.0025 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 125.785357 92.539219 L 130.568214 92.539219 L 130.568214 65.359219 L 125.785357 65.359219 L 125.785357 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 130.568214 92.539219 L 135.351071 92.539219 L 135.351071 65.359219 L 130.568214 65.359219 L 130.568214 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 135.351071 92.539219 L 140.133929 92.539219 L 140.133929 65.359219 L 135.351071 65.359219 L 135.351071 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 140.133929 92.539219 L 144.916786 92.539219 L 144.916786 65.359219 L 140.133929 65.359219 L 140.133929 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 144.916786 92.539219 L 149.699643 92.539219 L 149.699643 65.359219 L 144.916786 65.359219 L 144.916786 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 149.699643 92.539219 L 154.4825 92.539219 L 154.4825 65.359219 L 149.699643 65.359219 L 149.699643 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 154.4825 92.539219 L 159.265357 92.539219 L 159.265357 65.359219 L 154.4825 65.359219 L 154.4825 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 159.265357 92.539219 L 164.048214 92.539219 L 164.048214 65.359219 L 159.265357 65.359219 L 159.265357 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 164.048214 92.539219 L 168.831071 92.539219 L 168.831071 65.359219 L 164.048214 65.359219 L 164.048214 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 168.831071 92.539219 L 173.613929 92.539219 L 173.613929 65.359219 L 168.831071 65.359219 L 168.831071 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 173.613929 92.539219 L 178.396786 92.539219 L 178.396786 65.359219 L 173.613929 65.359219 L 173.613929 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 178.396786 92.539219 L 183.179643 92.539219 L 183.179643 65.359219 L 178.396786 65.359219 L 178.396786 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 183.179643 92.539219 L 187.9625 92.539219 L 187.9625 65.359219 L 183.179643 65.359219 L 183.179643 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 187.9625 92.539219 L 192.745357 92.539219 L 192.745357 65.359219 L 187.9625 65.359219 L 187.9625 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 192.745357 92.539219 L 197.528214 92.539219 L 197.528214 65.359219 L 192.745357 65.359219 L 192.745357 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 197.528214 92.539219 L 202.311071 92.539219 L 202.311071 65.359219 L 197.528214 65.359219 L 197.528214 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 202.311071 92.539219 L 207.093929 92.539219 L 207.093929 65.359219 L 202.311071 65.359219 L 202.311071 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 207.093929 92.539219 L 211.876786 92.539219 L 211.876786 65.359219 L 207.093929 65.359219 L 207.093929 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 211.876786 92.539219 L 216.659643 92.539219 L 216.659643 65.359219 L 211.876786 65.359219 L 211.876786 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 216.659643 92.539219 L 221.4425 92.539219 L 221.4425 65.359219 L 216.659643 65.359219 L 216.659643 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 221.4425 92.539219 L 226.225357 92.539219 L 226.225357 65.359219 L 221.4425 65.359219 L 221.4425 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 226.225357 92.539219 L 231.008214 92.539219 L 231.008214 65.359219 L 226.225357 65.359219 L 226.225357 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 231.008214 92.539219 L 235.791071 92.539219 L 235.791071 65.359219 L 231.008214 65.359219 L 231.008214 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 235.791071 92.539219 L 240.573929 92.539219 L 240.573929 65.359219 L 235.791071 65.359219 L 235.791071 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 240.573929 92.539219 L 245.356786 92.539219 L 245.356786 65.359219 L 240.573929 65.359219 L 240.573929 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 245.356786 92.539219 L 250.139643 92.539219 L 250.139643 65.359219 L 245.356786 65.359219 L 245.356786 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 250.139643 92.539219 L 254.9225 92.539219 L 254.9225 65.359219 L 250.139643 65.359219 L 250.139643 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 254.9225 92.539219 L 259.705357 92.539219 L 259.705357 65.359219 L 254.9225 65.359219 L 254.9225 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 259.705357 92.539219 L 264.488214 92.539219 L 264.488214 65.359219 L 259.705357 65.359219 L 259.705357 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 264.488214 92.539219 L 269.271071 92.539219 L 269.271071 65.359219 L 264.488214 65.359219 L 264.488214 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 269.271071 92.539219 L 274.053929 92.539219 L 274.053929 65.359219 L 269.271071 65.359219 L 269.271071 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 274.053929 92.539219 L 278.836786 92.539219 L 278.836786 65.359219 L 274.053929 65.359219 L 274.053929 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 278.836786 92.539219 L 283.619643 92.539219 L 283.619643 65.359219 L 278.836786 65.359219 L 278.836786 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 283.619643 92.539219 L 288.4025 92.539219 L 288.4025 65.359219 L 283.619643 65.359219 L 283.619643 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 288.4025 92.539219 L 293.185357 92.539219 L 293.185357 65.359219 L 288.4025 65.359219 L 288.4025 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 293.185357 92.539219 L 297.968214 92.539219 L 297.968214 65.359219 L 293.185357 65.359219 L 293.185357 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 297.968214 92.539219 L 302.751071 92.539219 L 302.751071 65.359219 L 297.968214 65.359219 L 297.968214 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 302.751071 92.539219 L 307.533929 92.539219 L 307.533929 65.359219 L 302.751071 65.359219 L 302.751071 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 307.533929 92.539219 L 312.316786 92.539219 L 312.316786 65.359219 L 307.533929 65.359219 L 307.533929 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 312.316786 92.539219 L 317.099643 92.539219 L 317.099643 65.359219 L 312.316786 65.359219 L 312.316786 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 317.099643 92.539219 L 321.8825 92.539219 L 321.8825 65.359219 L 317.099643 65.359219 L 317.099643 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 321.8825 92.539219 L 326.665357 92.539219 L 326.665357 65.359219 L 321.8825 65.359219 L 321.8825 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 326.665357 92.539219 L 331.448214 92.539219 L 331.448214 65.359219 L 326.665357 65.359219 L 326.665357 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 331.448214 92.539219 L 336.231071 92.539219 L 336.231071 65.359219 L 331.448214 65.359219 L 331.448214 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 336.231071 92.539219 L 341.013929 92.539219 L 341.013929 65.359219 L 336.231071 65.359219 L 336.231071 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 341.013929 92.539219 L 345.796786 92.539219 L 345.796786 65.359219 L 341.013929 65.359219 L 341.013929 92.539219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 345.796786 92.539219 L 350.579643 92.539219 L 350.579643 65.359219 L 345.796786 65.359219 L 345.796786 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 350.579643 92.539219 L 355.3625 92.539219 L 355.3625 65.359219 L 350.579643 65.359219 L 350.579643 92.539219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 20.5625 65.359219 L 25.345357 65.359219 L 25.345357 38.179219 L 20.5625 38.179219 L 20.5625 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 25.345357 65.359219 L 30.128214 65.359219 L 30.128214 38.179219 L 25.345357 38.179219 L 25.345357 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 30.128214 65.359219 L 34.911071 65.359219 L 34.911071 38.179219 L 30.128214 38.179219 L 30.128214 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 34.911071 65.359219 L 39.693929 65.359219 L 39.693929 38.179219 L 34.911071 38.179219 L 34.911071 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 39.693929 65.359219 L 44.476786 65.359219 L 44.476786 38.179219 L 39.693929 38.179219 L 39.693929 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 44.476786 65.359219 L 49.259643 65.359219 L 49.259643 38.179219 L 44.476786 38.179219 L 44.476786 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 49.259643 65.359219 L 54.0425 65.359219 L 54.0425 38.179219 L 49.259643 38.179219 L 49.259643 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 54.0425 65.359219 L 58.825357 65.359219 L 58.825357 38.179219 L 54.0425 38.179219 L 54.0425 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 58.825357 65.359219 L 63.608214 65.359219 L 63.608214 38.179219 L 58.825357 38.179219 L 58.825357 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 63.608214 65.359219 L 68.391071 65.359219 L 68.391071 38.179219 L 63.608214 38.179219 L 63.608214 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 68.391071 65.359219 L 73.173929 65.359219 L 73.173929 38.179219 L 68.391071 38.179219 L 68.391071 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 73.173929 65.359219 L 77.956786 65.359219 L 77.956786 38.179219 L 73.173929 38.179219 L 73.173929 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 77.956786 65.359219 L 82.739643 65.359219 L 82.739643 38.179219 L 77.956786 38.179219 L 77.956786 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 82.739643 65.359219 L 87.5225 65.359219 L 87.5225 38.179219 L 82.739643 38.179219 L 82.739643 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 87.5225 65.359219 L 92.305357 65.359219 L 92.305357 38.179219 L 87.5225 38.179219 L 87.5225 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 92.305357 65.359219 L 97.088214 65.359219 L 97.088214 38.179219 L 92.305357 38.179219 L 92.305357 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 97.088214 65.359219 L 101.871071 65.359219 L 101.871071 38.179219 L 97.088214 38.179219 L 97.088214 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 101.871071 65.359219 L 106.653929 65.359219 L 106.653929 38.179219 L 101.871071 38.179219 L 101.871071 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 106.653929 65.359219 L 111.436786 65.359219 L 111.436786 38.179219 L 106.653929 38.179219 L 106.653929 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 111.436786 65.359219 L 116.219643 65.359219 L 116.219643 38.179219 L 111.436786 38.179219 L 111.436786 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 116.219643 65.359219 L 121.0025 65.359219 L 121.0025 38.179219 L 116.219643 38.179219 L 116.219643 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 121.0025 65.359219 L 125.785357 65.359219 L 125.785357 38.179219 L 121.0025 38.179219 L 121.0025 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 125.785357 65.359219 L 130.568214 65.359219 L 130.568214 38.179219 L 125.785357 38.179219 L 125.785357 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 130.568214 65.359219 L 135.351071 65.359219 L 135.351071 38.179219 L 130.568214 38.179219 L 130.568214 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 135.351071 65.359219 L 140.133929 65.359219 L 140.133929 38.179219 L 135.351071 38.179219 L 135.351071 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 140.133929 65.359219 L 144.916786 65.359219 L 144.916786 38.179219 L 140.133929 38.179219 L 140.133929 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 144.916786 65.359219 L 149.699643 65.359219 L 149.699643 38.179219 L 144.916786 38.179219 L 144.916786 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 149.699643 65.359219 L 154.4825 65.359219 L 154.4825 38.179219 L 149.699643 38.179219 L 149.699643 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 154.4825 65.359219 L 159.265357 65.359219 L 159.265357 38.179219 L 154.4825 38.179219 L 154.4825 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 159.265357 65.359219 L 164.048214 65.359219 L 164.048214 38.179219 L 159.265357 38.179219 L 159.265357 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 164.048214 65.359219 L 168.831071 65.359219 L 168.831071 38.179219 L 164.048214 38.179219 L 164.048214 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 168.831071 65.359219 L 173.613929 65.359219 L 173.613929 38.179219 L 168.831071 38.179219 L 168.831071 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 173.613929 65.359219 L 178.396786 65.359219 L 178.396786 38.179219 L 173.613929 38.179219 L 173.613929 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 178.396786 65.359219 L 183.179643 65.359219 L 183.179643 38.179219 L 178.396786 38.179219 L 178.396786 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 183.179643 65.359219 L 187.9625 65.359219 L 187.9625 38.179219 L 183.179643 38.179219 L 183.179643 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 187.9625 65.359219 L 192.745357 65.359219 L 192.745357 38.179219 L 187.9625 38.179219 L 187.9625 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 192.745357 65.359219 L 197.528214 65.359219 L 197.528214 38.179219 L 192.745357 38.179219 L 192.745357 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 197.528214 65.359219 L 202.311071 65.359219 L 202.311071 38.179219 L 197.528214 38.179219 L 197.528214 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 202.311071 65.359219 L 207.093929 65.359219 L 207.093929 38.179219 L 202.311071 38.179219 L 202.311071 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 207.093929 65.359219 L 211.876786 65.359219 L 211.876786 38.179219 L 207.093929 38.179219 L 207.093929 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 211.876786 65.359219 L 216.659643 65.359219 L 216.659643 38.179219 L 211.876786 38.179219 L 211.876786 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 216.659643 65.359219 L 221.4425 65.359219 L 221.4425 38.179219 L 216.659643 38.179219 L 216.659643 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 221.4425 65.359219 L 226.225357 65.359219 L 226.225357 38.179219 L 221.4425 38.179219 L 221.4425 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 226.225357 65.359219 L 231.008214 65.359219 L 231.008214 38.179219 L 226.225357 38.179219 L 226.225357 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 231.008214 65.359219 L 235.791071 65.359219 L 235.791071 38.179219 L 231.008214 38.179219 L 231.008214 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 235.791071 65.359219 L 240.573929 65.359219 L 240.573929 38.179219 L 235.791071 38.179219 L 235.791071 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 240.573929 65.359219 L 245.356786 65.359219 L 245.356786 38.179219 L 240.573929 38.179219 L 240.573929 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 245.356786 65.359219 L 250.139643 65.359219 L 250.139643 38.179219 L 245.356786 38.179219 L 245.356786 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 250.139643 65.359219 L 254.9225 65.359219 L 254.9225 38.179219 L 250.139643 38.179219 L 250.139643 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 254.9225 65.359219 L 259.705357 65.359219 L 259.705357 38.179219 L 254.9225 38.179219 L 254.9225 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 259.705357 65.359219 L 264.488214 65.359219 L 264.488214 38.179219 L 259.705357 38.179219 L 259.705357 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 264.488214 65.359219 L 269.271071 65.359219 L 269.271071 38.179219 L 264.488214 38.179219 L 264.488214 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 269.271071 65.359219 L 274.053929 65.359219 L 274.053929 38.179219 L 269.271071 38.179219 L 269.271071 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 274.053929 65.359219 L 278.836786 65.359219 L 278.836786 38.179219 L 274.053929 38.179219 L 274.053929 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 278.836786 65.359219 L 283.619643 65.359219 L 283.619643 38.179219 L 278.836786 38.179219 L 278.836786 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 283.619643 65.359219 L 288.4025 65.359219 L 288.4025 38.179219 L 283.619643 38.179219 L 283.619643 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 288.4025 65.359219 L 293.185357 65.359219 L 293.185357 38.179219 L 288.4025 38.179219 L 288.4025 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 293.185357 65.359219 L 297.968214 65.359219 L 297.968214 38.179219 L 293.185357 38.179219 L 293.185357 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 297.968214 65.359219 L 302.751071 65.359219 L 302.751071 38.179219 L 297.968214 38.179219 L 297.968214 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 302.751071 65.359219 L 307.533929 65.359219 L 307.533929 38.179219 L 302.751071 38.179219 L 302.751071 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 307.533929 65.359219 L 312.316786 65.359219 L 312.316786 38.179219 L 307.533929 38.179219 L 307.533929 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 312.316786 65.359219 L 317.099643 65.359219 L 317.099643 38.179219 L 312.316786 38.179219 L 312.316786 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 317.099643 65.359219 L 321.8825 65.359219 L 321.8825 38.179219 L 317.099643 38.179219 L 317.099643 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 321.8825 65.359219 L 326.665357 65.359219 L 326.665357 38.179219 L 321.8825 38.179219 L 321.8825 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 326.665357 65.359219 L 331.448214 65.359219 L 331.448214 38.179219 L 326.665357 38.179219 L 326.665357 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 331.448214 65.359219 L 336.231071 65.359219 L 336.231071 38.179219 L 331.448214 38.179219 L 331.448214 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 336.231071 65.359219 L 341.013929 65.359219 L 341.013929 38.179219 L 336.231071 38.179219 L 336.231071 65.359219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 341.013929 65.359219 L 345.796786 65.359219 L 345.796786 38.179219 L 341.013929 38.179219 L 341.013929 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 345.796786 65.359219 L 350.579643 65.359219 L 350.579643 38.179219 L 345.796786 38.179219 L 345.796786 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 350.579643 65.359219 L 355.3625 65.359219 L 355.3625 38.179219 L 350.579643 38.179219 L 350.579643 65.359219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 20.5625 38.179219 L 25.345357 38.179219 L 25.345357 10.999219 L 20.5625 10.999219 L 20.5625 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 25.345357 38.179219 L 30.128214 38.179219 L 30.128214 10.999219 L 25.345357 10.999219 L 25.345357 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 30.128214 38.179219 L 34.911071 38.179219 L 34.911071 10.999219 L 30.128214 10.999219 L 30.128214 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 34.911071 38.179219 L 39.693929 38.179219 L 39.693929 10.999219 L 34.911071 10.999219 L 34.911071 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 39.693929 38.179219 L 44.476786 38.179219 L 44.476786 10.999219 L 39.693929 10.999219 L 39.693929 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 44.476786 38.179219 L 49.259643 38.179219 L 49.259643 10.999219 L 44.476786 10.999219 L 44.476786 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 49.259643 38.179219 L 54.0425 38.179219 L 54.0425 10.999219 L 49.259643 10.999219 L 49.259643 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 54.0425 38.179219 L 58.825357 38.179219 L 58.825357 10.999219 L 54.0425 10.999219 L 54.0425 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 58.825357 38.179219 L 63.608214 38.179219 L 63.608214 10.999219 L 58.825357 10.999219 L 58.825357 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 63.608214 38.179219 L 68.391071 38.179219 L 68.391071 10.999219 L 63.608214 10.999219 L 63.608214 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 68.391071 38.179219 L 73.173929 38.179219 L 73.173929 10.999219 L 68.391071 10.999219 L 68.391071 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 73.173929 38.179219 L 77.956786 38.179219 L 77.956786 10.999219 L 73.173929 10.999219 L 73.173929 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 77.956786 38.179219 L 82.739643 38.179219 L 82.739643 10.999219 L 77.956786 10.999219 L 77.956786 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 82.739643 38.179219 L 87.5225 38.179219 L 87.5225 10.999219 L 82.739643 10.999219 L 82.739643 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 87.5225 38.179219 L 92.305357 38.179219 L 92.305357 10.999219 L 87.5225 10.999219 L 87.5225 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 92.305357 38.179219 L 97.088214 38.179219 L 97.088214 10.999219 L 92.305357 10.999219 L 92.305357 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 97.088214 38.179219 L 101.871071 38.179219 L 101.871071 10.999219 L 97.088214 10.999219 L 97.088214 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 101.871071 38.179219 L 106.653929 38.179219 L 106.653929 10.999219 L 101.871071 10.999219 L 101.871071 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 106.653929 38.179219 L 111.436786 38.179219 L 111.436786 10.999219 L 106.653929 10.999219 L 106.653929 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 111.436786 38.179219 L 116.219643 38.179219 L 116.219643 10.999219 L 111.436786 10.999219 L 111.436786 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 116.219643 38.179219 L 121.0025 38.179219 L 121.0025 10.999219 L 116.219643 10.999219 L 116.219643 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 121.0025 38.179219 L 125.785357 38.179219 L 125.785357 10.999219 L 121.0025 10.999219 L 121.0025 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 125.785357 38.179219 L 130.568214 38.179219 L 130.568214 10.999219 L 125.785357 10.999219 L 125.785357 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 130.568214 38.179219 L 135.351071 38.179219 L 135.351071 10.999219 L 130.568214 10.999219 L 130.568214 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 135.351071 38.179219 L 140.133929 38.179219 L 140.133929 10.999219 L 135.351071 10.999219 L 135.351071 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 140.133929 38.179219 L 144.916786 38.179219 L 144.916786 10.999219 L 140.133929 10.999219 L 140.133929 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 144.916786 38.179219 L 149.699643 38.179219 L 149.699643 10.999219 L 144.916786 10.999219 L 144.916786 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 149.699643 38.179219 L 154.4825 38.179219 L 154.4825 10.999219 L 149.699643 10.999219 L 149.699643 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 154.4825 38.179219 L 159.265357 38.179219 L 159.265357 10.999219 L 154.4825 10.999219 L 154.4825 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 159.265357 38.179219 L 164.048214 38.179219 L 164.048214 10.999219 L 159.265357 10.999219 L 159.265357 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 164.048214 38.179219 L 168.831071 38.179219 L 168.831071 10.999219 L 164.048214 10.999219 L 164.048214 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 168.831071 38.179219 L 173.613929 38.179219 L 173.613929 10.999219 L 168.831071 10.999219 L 168.831071 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 173.613929 38.179219 L 178.396786 38.179219 L 178.396786 10.999219 L 173.613929 10.999219 L 173.613929 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 178.396786 38.179219 L 183.179643 38.179219 L 183.179643 10.999219 L 178.396786 10.999219 L 178.396786 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 183.179643 38.179219 L 187.9625 38.179219 L 187.9625 10.999219 L 183.179643 10.999219 L 183.179643 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 187.9625 38.179219 L 192.745357 38.179219 L 192.745357 10.999219 L 187.9625 10.999219 L 187.9625 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 192.745357 38.179219 L 197.528214 38.179219 L 197.528214 10.999219 L 192.745357 10.999219 L 192.745357 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 197.528214 38.179219 L 202.311071 38.179219 L 202.311071 10.999219 L 197.528214 10.999219 L 197.528214 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 202.311071 38.179219 L 207.093929 38.179219 L 207.093929 10.999219 L 202.311071 10.999219 L 202.311071 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 207.093929 38.179219 L 211.876786 38.179219 L 211.876786 10.999219 L 207.093929 10.999219 L 207.093929 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 211.876786 38.179219 L 216.659643 38.179219 L 216.659643 10.999219 L 211.876786 10.999219 L 211.876786 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 216.659643 38.179219 L 221.4425 38.179219 L 221.4425 10.999219 L 216.659643 10.999219 L 216.659643 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 221.4425 38.179219 L 226.225357 38.179219 L 226.225357 10.999219 L 221.4425 10.999219 L 221.4425 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 226.225357 38.179219 L 231.008214 38.179219 L 231.008214 10.999219 L 226.225357 10.999219 L 226.225357 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 231.008214 38.179219 L 235.791071 38.179219 L 235.791071 10.999219 L 231.008214 10.999219 L 231.008214 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 235.791071 38.179219 L 240.573929 38.179219 L 240.573929 10.999219 L 235.791071 10.999219 L 235.791071 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 240.573929 38.179219 L 245.356786 38.179219 L 245.356786 10.999219 L 240.573929 10.999219 L 240.573929 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 245.356786 38.179219 L 250.139643 38.179219 L 250.139643 10.999219 L 245.356786 10.999219 L 245.356786 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 250.139643 38.179219 L 254.9225 38.179219 L 254.9225 10.999219 L 250.139643 10.999219 L 250.139643 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 254.9225 38.179219 L 259.705357 38.179219 L 259.705357 10.999219 L 254.9225 10.999219 L 254.9225 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 259.705357 38.179219 L 264.488214 38.179219 L 264.488214 10.999219 L 259.705357 10.999219 L 259.705357 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 264.488214 38.179219 L 269.271071 38.179219 L 269.271071 10.999219 L 264.488214 10.999219 L 264.488214 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 269.271071 38.179219 L 274.053929 38.179219 L 274.053929 10.999219 L 269.271071 10.999219 L 269.271071 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 274.053929 38.179219 L 278.836786 38.179219 L 278.836786 10.999219 L 274.053929 10.999219 L 274.053929 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 278.836786 38.179219 L 283.619643 38.179219 L 283.619643 10.999219 L 278.836786 10.999219 L 278.836786 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 283.619643 38.179219 L 288.4025 38.179219 L 288.4025 10.999219 L 283.619643 10.999219 L 283.619643 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 288.4025 38.179219 L 293.185357 38.179219 L 293.185357 10.999219 L 288.4025 10.999219 L 288.4025 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 293.185357 38.179219 L 297.968214 38.179219 L 297.968214 10.999219 L 293.185357 10.999219 L 293.185357 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 297.968214 38.179219 L 302.751071 38.179219 L 302.751071 10.999219 L 297.968214 10.999219 L 297.968214 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 302.751071 38.179219 L 307.533929 38.179219 L 307.533929 10.999219 L 302.751071 10.999219 L 302.751071 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 307.533929 38.179219 L 312.316786 38.179219 L 312.316786 10.999219 L 307.533929 10.999219 L 307.533929 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 312.316786 38.179219 L 317.099643 38.179219 L 317.099643 10.999219 L 312.316786 10.999219 L 312.316786 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 317.099643 38.179219 L 321.8825 38.179219 L 321.8825 10.999219 L 317.099643 10.999219 L 317.099643 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 321.8825 38.179219 L 326.665357 38.179219 L 326.665357 10.999219 L 321.8825 10.999219 L 321.8825 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 326.665357 38.179219 L 331.448214 38.179219 L 331.448214 10.999219 L 326.665357 10.999219 L 326.665357 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 331.448214 38.179219 L 336.231071 38.179219 L 336.231071 10.999219 L 331.448214 10.999219 L 331.448214 38.179219 " style="fill:#440154;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 336.231071 38.179219 L 341.013929 38.179219 L 341.013929 10.999219 L 336.231071 10.999219 L 336.231071 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 341.013929 38.179219 L 345.796786 38.179219 L 345.796786 10.999219 L 341.013929 10.999219 L 341.013929 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 345.796786 38.179219 L 350.579643 38.179219 L 350.579643 10.999219 L 345.796786 10.999219 L 345.796786 38.179219 " style="fill:#fde725;"/> <path clip-path="url(#p1dcc35b3b0)" d="M 350.579643 38.179219 L 355.3625 38.179219 L 355.3625 10.999219 L 350.579643 10.999219 L 350.579643 38.179219 " style="fill:#fde725;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m1f509bd8d5" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m1f509bd8d5" y="228.439219"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(17.38125 243.037656)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="68.391071" xlink:href="#m1f509bd8d5" y="228.439219"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(62.028571 243.037656)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="116.219643" xlink:href="#m1f509bd8d5" y="228.439219"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(109.857143 243.037656)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="164.048214" xlink:href="#m1f509bd8d5" y="228.439219"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(157.685714 243.037656)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="211.876786" xlink:href="#m1f509bd8d5" y="228.439219"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(205.514286 243.037656)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="259.705357" xlink:href="#m1f509bd8d5" y="228.439219"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(253.342857 243.037656)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="307.533929" xlink:href="#m1f509bd8d5" y="228.439219"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(301.171429 243.037656)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="355.3625" xlink:href="#m1f509bd8d5" y="228.439219"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(349 243.037656)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="m70f7a805b9" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m70f7a805b9" y="228.439219"/> </g> </g> <g id="text_9"> <g transform="translate(7.2 232.238437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m70f7a805b9" y="201.259219"/> </g> </g> <g id="text_10"> <g transform="translate(7.2 205.058437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m70f7a805b9" y="174.079219"/> </g> </g> <g id="text_11"> <g transform="translate(7.2 177.878437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m70f7a805b9" y="146.899219"/> </g> </g> <g id="text_12"> <g transform="translate(7.2 150.698437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m70f7a805b9" y="119.719219"/> </g> </g> <g id="text_13"> <g transform="translate(7.2 123.518437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m70f7a805b9" y="92.539219"/> </g> </g> <g id="text_14"> <g transform="translate(7.2 96.338437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_15"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m70f7a805b9" y="65.359219"/> </g> </g> <g id="text_15"> <g transform="translate(7.2 69.158437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="ytick_8"> <g id="line2d_16"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m70f7a805b9" y="38.179219"/> </g> </g> <g id="text_16"> <g transform="translate(7.2 41.978437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> </g> </g> </g> <g id="ytick_9"> <g id="line2d_17"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="20.5625" xlink:href="#m70f7a805b9" y="10.999219"/> </g> </g> <g id="text_17"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(7.2 14.798437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-38"/> </g> </g> </g> </g> <g id="patch_3"> <path d="M 20.5625 228.439219 L 20.5625 10.999219 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 355.3625 228.439219 L 355.3625 10.999219 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 20.5625 228.439219 L 355.3625 228.439219 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 20.5625 10.999219 L 355.3625 10.999219 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p1dcc35b3b0"> <rect height="217.44" width="334.8" x="20.5625" y="10.999219"/> </clipPath> </defs> </svg>
In [46]:
tests_0 = tests[:, 0]
tests_1 = tests[:, 1]
#print (tests[:, 1:].sum(axis=1), tests[:, 1:].sum(axis=1).std())
print (1. - np.sum(tests_0 == tests_1)/ len(tests_1))
0.571428571429

en résumé, on peut calculer le gain moyen sur un certain nombre de tests :

In [47]:
def agent_tetu(tests, N_ballons_vus, penalité=1, aléatoire=False):
    gains = np.zeros(len(tests))
    for i_test in range(N_test):
        information = tests[i_test, :(N_ballons_vus)]
        N_ballons_restant = N_ballons - N_ballons_vus
        proba_True_restant = (N_ballons//2 - sum(information)) / N_ballons_restant 
        if aléatoire:
            choix = proba_True_restant > np.random.rand()
        else:
            if proba_True_restant==.5:
                choix = np.random.rand() > .5
            else:
                choix = proba_True_restant > .5
        réussite = (tests[i_test, N_ballons_vus] == choix)
        gain_esperé = N_ballons_restant - 1
        gains[i_test] = gain_esperé * (réussite*(1+penalité) - penalité)
    
    return gains

N_test = 1024
tests = generate_test(N_ballons=N_ballons, N_basket=N_basket, N_test=N_test)
gains = agent_tetu(tests, N_ballons_vus=1, aléatoire=False)
print ('gain = ', gains.mean(), '+/-', gains.std())
gain =  0.84375 +/- 5.94037759217
In [48]:
N_test = 10000
fig, ax = plt.subplots(figsize=figsize)
for aléatoire, label in zip([True, False], ['aléa', 'max']):
    print('Stratégie aléatoire? ', aléatoire)
    gains = np.zeros((N_ballons, N_test))

    tests = generate_test(N_ballons=N_ballons, N_basket=N_basket, N_test=N_test)
    for N_ballons_vus in range(N_ballons):
        gains[N_ballons_vus, :] = agent_tetu(tests, N_ballons_vus, aléatoire=aléatoire)
        print('Moyenne des gains avec', N_ballons_vus, 'ballons vus =', np.mean(gains[N_ballons_vus, :]) , ' +/- ', np.std(gains[N_ballons_vus, :]) )

    ax.errorbar(np.arange(N_ballons)-.1*(aléatoire*1-1), y=np.mean(gains, axis=(1)), yerr=np.std(gains, axis=(1))/10, label=label, alpha=.5, lw=2)
    
ax.set_xlabel(' # ballons vus ')
ax.set_ylabel(' gain moyen par jeu (+/- SEM / 10 ) ')
ax.legend();
Stratégie aléatoire?  True
Moyenne des gains avec 0 ballons vus = 0.1176  +/-  6.99901209029
Moyenne des gains avec 1 ballons vus = 0.114  +/-  5.99891690224
Moyenne des gains avec 2 ballons vus = 0.24  +/-  4.99423667841
Moyenne des gains avec 3 ballons vus = 0.396  +/-  3.98034973338
Moyenne des gains avec 4 ballons vus = 0.4278  +/-  2.96934119966
Moyenne des gains avec 5 ballons vus = 0.46  +/-  1.94638125762
Moyenne des gains avec 6 ballons vus = 0.419  +/-  0.907986233376
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
Stratégie aléatoire?  False
Moyenne des gains avec 0 ballons vus = -0.0952  +/-  6.99935261006
Moyenne des gains avec 1 ballons vus = 0.8808  +/-  5.93499716596
Moyenne des gains avec 2 ballons vus = 0.748  +/-  4.9437330025
Moyenne des gains avec 3 ballons vus = 1.0432  +/-  3.86157141071
Moyenne des gains avec 4 ballons vus = 0.7224  +/-  2.91172427266
Moyenne des gains avec 5 ballons vus = 0.8576  +/-  1.80679889307
Moyenne des gains avec 6 ballons vus = 0.4276  +/-  0.903968052533
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 620 384" width="620pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 620.860937 384.219526 L 620.860937 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 L 610.160938 10.7 L 52.160938 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m825fa72cee" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="77.524574" xlink:href="#m825fa72cee" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(74.343324 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="148.971437" xlink:href="#m825fa72cee" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(145.790187 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="220.4183" xlink:href="#m825fa72cee" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(217.23705 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="291.865163" xlink:href="#m825fa72cee" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(288.683913 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="363.312026" xlink:href="#m825fa72cee" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(360.130776 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="434.758889" xlink:href="#m825fa72cee" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(431.577639 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="506.205752" xlink:href="#m825fa72cee" y="346.663276"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(503.024502 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="577.652615" xlink:href="#m825fa72cee" y="346.663276"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(574.471365 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> </g> </g> </g> <g id="text_9"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(294.032813 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="m4ce9f77286" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m4ce9f77286" y="291.672837"/> </g> </g> <g id="text_10"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 295.472055)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m4ce9f77286" y="224.382704"/> </g> </g> <g id="text_11"> <g transform="translate(29.257813 228.181923)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m4ce9f77286" y="157.092572"/> </g> </g> <g id="text_12"> <g transform="translate(29.257813 160.891791)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m4ce9f77286" y="89.802439"/> </g> </g> <g id="text_13"> <g transform="translate(29.257813 93.601658)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m4ce9f77286" y="22.512307"/> </g> </g> <g id="text_14"> <g transform="translate(29.257813 26.311526)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_15"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p78cddd392c)" d="M 77.524574 302.748955 L 77.524574 114.363175 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 148.971437 289.774137 L 148.971437 128.306972 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 220.4183 259.29601 L 220.4183 124.870871 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 291.865163 224.656572 L 291.865163 117.521267 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 363.312026 206.770739 L 363.312026 126.847795 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 434.758889 188.670233 L 434.758889 136.281332 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 506.205752 180.213276 L 506.205752 155.773871 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 577.652615 224.382704 L 577.652615 224.382704 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="LineCollection_2"> <path clip-path="url(#p78cddd392c)" d="M 84.66926 331.392218 L 84.66926 142.997273 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 156.116123 185.717756 L 156.116123 25.971058 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 227.562986 190.249556 L 227.562986 57.183777 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 299.009849 135.957702 L 299.009849 32.019442 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 370.456712 166.347983 L 370.456712 87.975859 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 441.903575 133.282617 L 441.903575 84.650722 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 513.350438 179.001809 L 513.350438 154.670557 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p78cddd392c)" d="M 584.797301 224.382704 L 584.797301 224.382704 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_14"> <path clip-path="url(#p78cddd392c)" d="M 77.524574 208.556065 L 148.971437 209.040554 L 220.4183 192.083441 L 291.865163 171.088919 L 363.312026 166.809267 L 434.758889 162.475782 L 506.205752 167.993573 L 577.652615 224.382704 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_15"> <path clip-path="url(#p78cddd392c)" d="M 84.66926 237.194745 L 156.116123 105.844407 L 227.562986 123.716666 L 299.009849 83.988572 L 370.456712 127.161921 L 441.903575 108.966669 L 513.350438 166.836183 L 584.797301 224.382704 " style="fill:none;opacity:0.5;stroke:#ff7f0e;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 52.160938 346.663276 L 52.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 610.160938 346.663276 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 52.160938 10.7 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="legend_1"> <g id="patch_7"> <path d="M 549.373438 48.05625 L 603.160938 48.05625 Q 605.160938 48.05625 605.160938 46.05625 L 605.160938 17.7 Q 605.160938 15.7 603.160938 15.7 L 549.373438 15.7 Q 547.373438 15.7 547.373438 17.7 L 547.373438 46.05625 Q 547.373438 48.05625 549.373438 48.05625 z " style="fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;"/> </g> <g id="LineCollection_3"> <path d="M 561.373438 28.798437 L 561.373438 18.798437 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_16"> <path d="M 551.373438 23.798437 L 571.373438 23.798437 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_17"/> <g id="text_16"> <defs> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z M 38.53125 79.984375 L 48.25 79.984375 L 32.34375 61.625 L 24.859375 61.625 z " id="DejaVuSans-e9"/> </defs> <g transform="translate(579.373438 27.298437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-61"/> <use x="61.279297" xlink:href="#DejaVuSans-6c"/> <use x="89.0625" xlink:href="#DejaVuSans-e9"/> <use x="150.585938" xlink:href="#DejaVuSans-61"/> </g> </g> <g id="LineCollection_4"> <path d="M 561.373438 43.476562 L 561.373438 33.476562 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_18"> <path d="M 551.373438 38.476562 L 571.373438 38.476562 " style="fill:none;opacity:0.5;stroke:#ff7f0e;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_19"/> <g id="text_17"> <defs> <path d="M 54.890625 54.6875 L 35.109375 28.078125 L 55.90625 0 L 45.3125 0 L 29.390625 21.484375 L 13.484375 0 L 2.875 0 L 24.125 28.609375 L 4.6875 54.6875 L 15.28125 54.6875 L 29.78125 35.203125 L 44.28125 54.6875 z " id="DejaVuSans-78"/> </defs> <g transform="translate(579.373438 41.976562)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-6d"/> <use x="97.412109" xlink:href="#DejaVuSans-61"/> <use x="158.691406" xlink:href="#DejaVuSans-78"/> </g> </g> </g> </g> </g> <defs> <clipPath id="p78cddd392c"> <rect height="335.963276" width="558" x="52.160938" y="10.7"/> </clipPath> </defs> </svg>

La stratégie optimale est de choisir la gain a priori maximal.

Première conclusion: le gain évolue en fonction du nombre de ballons vus.

  • Les gains sont en moyenne toujours positifs, on s'oriente vers un enrichissement infini...
  • la variabilité de gain pour chaque jeu individuel est toujours grand et de l'ordre du nombre de points en jeu: on est proche d'un pari de type pile ou face,
  • Le comportement d'un agent aléatoire est toujours significativement inférieur,
  • La stratégie optimale pour cet agent est de choisir quand on a vu $3$ ballons. On note une oscillation pour des nombres de ballons vus pairs qui est dû au fait que nous ayons deux catégories.

Maintenant on peut imaginer, de régler le paramètre de pénalité pour optimiser le compromis entre précision et gain.

In [49]:
penalités = np.linspace(.5, 1.5, 9)
penalités
Out[49]:
array([ 0.5  ,  0.625,  0.75 ,  0.875,  1.   ,  1.125,  1.25 ,  1.375,  1.5  ])
In [50]:
N_test = 10000
fig, ax = plt.subplots(figsize=figsize)
for penalité in penalités:
    gains = np.zeros((N_ballons, N_test))

    tests = generate_test(N_ballons=N_ballons, N_basket=N_basket, N_test=N_test)
    for N_ballons_vus in range(N_ballons):
        gains[N_ballons_vus, :] = agent_tetu(tests, N_ballons_vus, penalité=penalité)

    ax.errorbar(np.arange(N_ballons)-.1*(aléatoire*1-1), y=np.mean(gains, axis=(1)), yerr=np.std(gains, axis=(1))/10, label=str(penalité), alpha=.5, lw=2)
    
ax.set_xlabel(' # ballons vus ')
ax.set_ylabel(' gain moyen par jeu (+/- SEM / 10 ) ')
ax.legend();    
<svg height="384pt" version="1.1" viewBox="0 0 611 384" width="611pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 611.320312 384.219526 L 611.320312 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 42.620313 346.663276 L 600.620312 346.663276 L 600.620312 10.7 L 42.620313 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m950b834684" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="60.737196" xlink:href="#m950b834684" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(57.555946 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="133.204728" xlink:href="#m950b834684" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(130.023478 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="205.672261" xlink:href="#m950b834684" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(202.491011 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="278.139793" xlink:href="#m950b834684" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(274.958543 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="350.607325" xlink:href="#m950b834684" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(347.426075 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="423.074858" xlink:href="#m950b834684" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(419.893608 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="495.54239" xlink:href="#m950b834684" y="346.663276"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(492.36114 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="568.009923" xlink:href="#m950b834684" y="346.663276"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(564.828673 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> </g> </g> </g> <g id="text_9"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(284.492188 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="m00212c4477" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="42.620313" xlink:href="#m00212c4477" y="290.355"/> </g> </g> <g id="text_10"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> </defs> <g transform="translate(20.878125 294.154219)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="42.620313" xlink:href="#m00212c4477" y="232.89636"/> </g> </g> <g id="text_11"> <g transform="translate(20.878125 236.695579)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="42.620313" xlink:href="#m00212c4477" y="175.43772"/> </g> </g> <g id="text_12"> <g transform="translate(29.257813 179.236939)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="42.620313" xlink:href="#m00212c4477" y="117.97908"/> </g> </g> <g id="text_13"> <g transform="translate(29.257813 121.778299)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="42.620313" xlink:href="#m00212c4477" y="60.520441"/> </g> </g> <g id="text_14"> <g transform="translate(29.257813 64.319659)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="text_15"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p5612d45324)" d="M 67.983949 102.093191 L 67.983949 41.764516 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 140.451481 77.131236 L 140.451481 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 212.919014 91.940826 L 212.919014 49.354226 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 285.386546 92.317832 L 285.386546 58.900327 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 357.854079 111.293667 L 357.854079 86.322344 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 430.321611 118.295151 L 430.321611 102.654813 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 502.789144 146.080977 L 502.789144 138.332055 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 575.256676 175.43772 L 575.256676 175.43772 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="LineCollection_2"> <path clip-path="url(#p5612d45324)" d="M 67.983949 130.741493 L 67.983949 65.383466 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 140.451481 96.929229 L 140.451481 41.527365 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 212.919014 110.487787 L 212.919014 64.305652 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 285.386546 100.441747 L 285.386546 64.451568 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 357.854079 122.382351 L 357.854079 95.224956 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 430.321611 124.086053 L 430.321611 107.057074 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 502.789144 148.696868 L 502.789144 140.276943 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 575.256676 175.43772 L 575.256676 175.43772 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="LineCollection_3"> <path clip-path="url(#p5612d45324)" d="M 67.983949 159.158048 L 67.983949 88.771621 " style="fill:none;stroke:#2ca02c;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 140.451481 124.138024 L 140.451481 64.29035 " style="fill:none;stroke:#2ca02c;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 212.919014 128.8663 L 212.919014 79.095139 " style="fill:none;stroke:#2ca02c;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 285.386546 118.584027 L 285.386546 79.50889 " style="fill:none;stroke:#2ca02c;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 357.854079 129.084482 L 357.854079 99.964278 " style="fill:none;stroke:#2ca02c;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 430.321611 127.124271 L 430.321611 108.948807 " style="fill:none;stroke:#2ca02c;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 502.789144 151.302058 L 502.789144 142.212422 " style="fill:none;stroke:#2ca02c;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 575.256676 175.43772 L 575.256676 175.43772 " style="fill:none;stroke:#2ca02c;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="LineCollection_4"> <path clip-path="url(#p5612d45324)" d="M 67.983949 191.474267 L 67.983949 116.062994 " style="fill:none;stroke:#d62728;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 140.451481 140.840887 L 140.451481 76.831062 " style="fill:none;stroke:#d62728;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 212.919014 145.350339 L 212.919014 92.044288 " style="fill:none;stroke:#d62728;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 285.386546 127.139819 L 285.386546 85.461404 " style="fill:none;stroke:#d62728;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 357.854079 138.849382 L 357.854079 107.609346 " style="fill:none;stroke:#d62728;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 430.321611 132.761373 L 430.321611 113.208956 " style="fill:none;stroke:#d62728;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 502.789144 153.512991 L 502.789144 143.78945 " style="fill:none;stroke:#d62728;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 575.256676 175.43772 L 575.256676 175.43772 " style="fill:none;stroke:#d62728;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="LineCollection_5"> <path clip-path="url(#p5612d45324)" d="M 67.983949 219.357402 L 67.983949 138.918711 " style="fill:none;stroke:#9467bd;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 140.451481 162.985916 L 140.451481 94.668628 " style="fill:none;stroke:#9467bd;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 212.919014 162.555688 L 212.919014 105.694229 " style="fill:none;stroke:#9467bd;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 285.386546 137.401661 L 285.386546 93.040471 " style="fill:none;stroke:#9467bd;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 357.854079 147.19394 L 357.854079 113.908122 " style="fill:none;stroke:#9467bd;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 430.321611 137.336927 L 430.321611 116.502362 " style="fill:none;stroke:#9467bd;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 502.789144 155.074532 L 502.789144 144.777636 " style="fill:none;stroke:#9467bd;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 575.256676 175.43772 L 575.256676 175.43772 " style="fill:none;stroke:#9467bd;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="LineCollection_6"> <path clip-path="url(#p5612d45324)" d="M 67.983949 243.738066 L 67.983949 158.268382 " style="fill:none;stroke:#8c564b;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 140.451481 179.8168 L 140.451481 107.339882 " style="fill:none;stroke:#8c564b;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 212.919014 178.901099 L 212.919014 118.509077 " style="fill:none;stroke:#8c564b;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 285.386546 149.439232 L 285.386546 102.302817 " style="fill:none;stroke:#8c564b;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 357.854079 155.562578 L 357.854079 120.230221 " style="fill:none;stroke:#8c564b;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 430.321611 142.495695 L 430.321611 120.327253 " style="fill:none;stroke:#8c564b;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 502.789144 158.238053 L 502.789144 147.219205 " style="fill:none;stroke:#8c564b;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 575.256676 175.43772 L 575.256676 175.43772 " style="fill:none;stroke:#8c564b;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="LineCollection_7"> <path clip-path="url(#p5612d45324)" d="M 67.983949 275.575721 L 67.983949 185.08307 " style="fill:none;stroke:#e377c2;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 140.451481 207.195838 L 140.451481 130.268756 " style="fill:none;stroke:#e377c2;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 212.919014 196.857084 L 212.919014 132.887942 " style="fill:none;stroke:#e377c2;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 285.386546 163.022539 L 285.386546 113.030261 " style="fill:none;stroke:#e377c2;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 357.854079 165.768002 L 357.854079 128.292336 " style="fill:none;stroke:#e377c2;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 430.321611 147.074283 L 430.321611 123.623372 " style="fill:none;stroke:#e377c2;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 502.789144 161.512982 L 502.789144 149.764837 " style="fill:none;stroke:#e377c2;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 575.256676 175.43772 L 575.256676 175.43772 " style="fill:none;stroke:#e377c2;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="LineCollection_8"> <path clip-path="url(#p5612d45324)" d="M 67.983949 302.052341 L 67.983949 206.529828 " style="fill:none;stroke:#7f7f7f;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 140.451481 220.641763 L 140.451481 139.645403 " style="fill:none;stroke:#7f7f7f;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 212.919014 216.083857 L 212.919014 148.502652 " style="fill:none;stroke:#7f7f7f;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 285.386546 177.285649 L 285.386546 124.405196 " style="fill:none;stroke:#7f7f7f;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 357.854079 174.428922 L 357.854079 134.890994 " style="fill:none;stroke:#7f7f7f;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 430.321611 152.054178 L 430.321611 127.285256 " style="fill:none;stroke:#7f7f7f;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 502.789144 162.945807 L 502.789144 150.633231 " style="fill:none;stroke:#7f7f7f;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 575.256676 175.43772 L 575.256676 175.43772 " style="fill:none;stroke:#7f7f7f;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="LineCollection_9"> <path clip-path="url(#p5612d45324)" d="M 67.983949 331.392218 L 67.983949 230.844829 " style="fill:none;stroke:#bcbd22;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 140.451481 243.089523 L 140.451481 157.774935 " style="fill:none;stroke:#bcbd22;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 212.919014 231.887075 L 212.919014 160.789526 " style="fill:none;stroke:#bcbd22;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 285.386546 186.472408 L 285.386546 130.962105 " style="fill:none;stroke:#bcbd22;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 357.854079 182.253106 L 357.854079 140.697436 " style="fill:none;stroke:#bcbd22;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 430.321611 154.795836 L 430.321611 128.910455 " style="fill:none;stroke:#bcbd22;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 502.789144 165.959317 L 502.789144 152.940391 " style="fill:none;stroke:#bcbd22;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p5612d45324)" d="M 575.256676 175.43772 L 575.256676 175.43772 " style="fill:none;stroke:#bcbd22;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_14"> <path clip-path="url(#p5612d45324)" d="M 67.983949 71.928853 L 140.451481 51.551147 L 212.919014 70.647526 L 285.386546 75.609079 L 357.854079 98.808005 L 430.321611 110.474982 L 502.789144 142.206516 L 575.256676 175.43772 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_15"> <path clip-path="url(#p5612d45324)" d="M 67.983949 98.062479 L 140.451481 69.228297 L 212.919014 87.396719 L 285.386546 82.446658 L 357.854079 108.803654 L 430.321611 115.571563 L 502.789144 144.486906 L 575.256676 175.43772 " style="fill:none;opacity:0.5;stroke:#ff7f0e;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_16"> <path clip-path="url(#p5612d45324)" d="M 67.983949 123.964834 L 140.451481 94.214187 L 212.919014 103.980719 L 285.386546 99.046459 L 357.854079 114.52438 L 430.321611 118.036539 L 502.789144 146.75724 L 575.256676 175.43772 " style="fill:none;opacity:0.5;stroke:#2ca02c;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_17"> <path clip-path="url(#p5612d45324)" d="M 67.983949 153.768631 L 140.451481 108.835974 L 212.919014 118.697313 L 285.386546 106.300612 L 357.854079 123.229364 L 430.321611 122.985164 L 502.789144 148.651221 L 575.256676 175.43772 " style="fill:none;opacity:0.5;stroke:#d62728;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_18"> <path clip-path="url(#p5612d45324)" d="M 67.983949 179.138057 L 140.451481 128.827272 L 212.919014 134.124958 L 285.386546 115.221066 L 357.854079 130.551031 L 430.321611 126.919645 L 502.789144 149.926084 L 575.256676 175.43772 " style="fill:none;opacity:0.5;stroke:#9467bd;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_19"> <path clip-path="url(#p5612d45324)" d="M 67.983949 201.003224 L 140.451481 143.578341 L 212.919014 148.705088 L 285.386546 125.871025 L 357.854079 137.8964 L 430.321611 131.411474 L 502.789144 152.728629 L 575.256676 175.43772 " style="fill:none;opacity:0.5;stroke:#8c564b;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_20"> <path clip-path="url(#p5612d45324)" d="M 67.983949 230.329396 L 140.451481 168.732297 L 212.919014 164.872513 L 285.386546 138.0264 L 357.854079 147.030169 L 430.321611 135.348827 L 502.789144 155.638909 L 575.256676 175.43772 " style="fill:none;opacity:0.5;stroke:#e377c2;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_21"> <path clip-path="url(#p5612d45324)" d="M 67.983949 254.291085 L 140.451481 180.143583 L 212.919014 182.293254 L 285.386546 150.845422 L 357.854079 154.659958 L 430.321611 139.669717 L 502.789144 156.789519 L 575.256676 175.43772 " style="fill:none;opacity:0.5;stroke:#7f7f7f;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_22"> <path clip-path="url(#p5612d45324)" d="M 67.983949 281.118524 L 140.451481 200.432229 L 212.919014 196.338301 L 285.386546 158.717256 L 357.854079 161.475271 L 430.321611 141.853145 L 502.789144 159.449854 L 575.256676 175.43772 " style="fill:none;opacity:0.5;stroke:#bcbd22;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 42.620313 346.663276 L 42.620313 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 600.620312 346.663276 L 600.620312 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 42.620313 346.663276 L 600.620313 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 42.620313 10.7 L 600.620313 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="legend_1"> <g id="patch_7"> <path d="M 532.992188 150.803125 L 593.620312 150.803125 Q 595.620312 150.803125 595.620312 148.803125 L 595.620312 17.7 Q 595.620312 15.7 593.620312 15.7 L 532.992188 15.7 Q 530.992188 15.7 530.992188 17.7 L 530.992188 148.803125 Q 530.992188 150.803125 532.992188 150.803125 z " style="fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;"/> </g> <g id="LineCollection_10"> <path d="M 544.992188 28.798437 L 544.992188 18.798437 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_23"> <path d="M 534.992188 23.798437 L 554.992188 23.798437 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_24"/> <g id="text_16"> <defs> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(562.992188 27.298437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> <g id="LineCollection_11"> <path d="M 544.992188 43.476562 L 544.992188 33.476562 " style="fill:none;stroke:#ff7f0e;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_25"> <path d="M 534.992188 38.476562 L 554.992188 38.476562 " style="fill:none;opacity:0.5;stroke:#ff7f0e;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_26"/> <g id="text_17"> <g transform="translate(562.992188 41.976562)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-36"/> <use x="159.033203" xlink:href="#DejaVuSans-32"/> <use x="222.65625" xlink:href="#DejaVuSans-35"/> </g> </g> <g id="LineCollection_12"> <path d="M 544.992188 58.154687 L 544.992188 48.154687 " style="fill:none;stroke:#2ca02c;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_27"> <path d="M 534.992188 53.154687 L 554.992188 53.154687 " style="fill:none;opacity:0.5;stroke:#2ca02c;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_28"/> <g id="text_18"> <g transform="translate(562.992188 56.654687)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-37"/> <use x="159.033203" xlink:href="#DejaVuSans-35"/> </g> </g> <g id="LineCollection_13"> <path d="M 544.992188 72.832812 L 544.992188 62.832812 " style="fill:none;stroke:#d62728;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_29"> <path d="M 534.992188 67.832812 L 554.992188 67.832812 " style="fill:none;opacity:0.5;stroke:#d62728;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_30"/> <g id="text_19"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(562.992188 71.332812)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-38"/> <use x="159.033203" xlink:href="#DejaVuSans-37"/> <use x="222.65625" xlink:href="#DejaVuSans-35"/> </g> </g> <g id="LineCollection_14"> <path d="M 544.992188 87.510938 L 544.992188 77.510938 " style="fill:none;stroke:#9467bd;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_31"> <path d="M 534.992188 82.510938 L 554.992188 82.510938 " style="fill:none;opacity:0.5;stroke:#9467bd;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_32"/> <g id="text_20"> <g transform="translate(562.992188 86.010938)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> <g id="LineCollection_15"> <path d="M 544.992188 102.189062 L 544.992188 92.189062 " style="fill:none;stroke:#8c564b;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_33"> <path d="M 534.992188 97.189062 L 554.992188 97.189062 " style="fill:none;opacity:0.5;stroke:#8c564b;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_34"/> <g id="text_21"> <g transform="translate(562.992188 100.689062)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-31"/> <use x="159.033203" xlink:href="#DejaVuSans-32"/> <use x="222.65625" xlink:href="#DejaVuSans-35"/> </g> </g> <g id="LineCollection_16"> <path d="M 544.992188 116.867187 L 544.992188 106.867187 " style="fill:none;stroke:#e377c2;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_35"> <path d="M 534.992188 111.867187 L 554.992188 111.867187 " style="fill:none;opacity:0.5;stroke:#e377c2;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_36"/> <g id="text_22"> <g transform="translate(562.992188 115.367187)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> <use x="159.033203" xlink:href="#DejaVuSans-35"/> </g> </g> <g id="LineCollection_17"> <path d="M 544.992188 131.545312 L 544.992188 121.545312 " style="fill:none;stroke:#7f7f7f;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_37"> <path d="M 534.992188 126.545312 L 554.992188 126.545312 " style="fill:none;opacity:0.5;stroke:#7f7f7f;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_38"/> <g id="text_23"> <g transform="translate(562.992188 130.045312)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-33"/> <use x="159.033203" xlink:href="#DejaVuSans-37"/> <use x="222.65625" xlink:href="#DejaVuSans-35"/> </g> </g> <g id="LineCollection_18"> <path d="M 544.992188 146.223437 L 544.992188 136.223437 " style="fill:none;stroke:#bcbd22;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_39"> <path d="M 534.992188 141.223437 L 554.992188 141.223437 " style="fill:none;opacity:0.5;stroke:#bcbd22;stroke-linecap:square;stroke-width:2;"/> </g> <g id="line2d_40"/> <g id="text_24"> <g transform="translate(562.992188 144.723437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> </g> </g> <defs> <clipPath id="p5612d45324"> <rect height="335.963276" width="558" x="42.620313" y="10.7"/> </clipPath> </defs> </svg>

on voit qu'en fonction de la pénalité on peut "encourager" un tel agent tétu à prendre des décisions plus hâtives ou tardives. On restera pour l'instant au cas équilibré avec une pénalité nulle. Clairement, pour un tel agent, la stratégie optimale est de ragarder $3$ ballons puis de se décider.

Note: on remarque que le gain si on a tout observé est bien nul (l'information est totale mais la récompense est nulle):

In [51]:
print ('gains ', gains[-1, :])
gains  [ 0.  0.  0. ...,  0.  0.  0.]
In [52]:
N_ballons_vus = 7
print('Moyenne des gains avec', N_ballons_vus, 'ballons vus =', np.mean(gains[N_ballons_vus, :]) , ' +/- ', np.std(gains[N_ballons_vus, :]) )
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0

Pour résumer, nous pouvons "encapsuler" toute la programmation liée à cet agent dans un objet:

In [53]:
class AgentTétu:

    def __init__(self, N_test=2**12, N_ballons=8, verbose=True):
        self.N_test = N_test
        self.N_ballons = N_ballons
        self.N_basket = N_ballons//2
        self.verbose = verbose

    def generate_test(self):
        return generate_test(N_ballons=self.N_ballons, N_basket=self.N_basket, N_test=self.N_test)

    def agent_tetu(self, tests, N_ballons_vus):
        gains = np.zeros(len(tests))
        for i_test in range(len(tests)):
            information = tests[i_test, :(N_ballons_vus)]
            N_ballons_restant = self.N_ballons - N_ballons_vus
            proba_True_restant = (self.N_ballons//2 - sum(information)) / N_ballons_restant 
            if proba_True_restant==.5:
                if self.N_test is None:
                    gains[i_test] = 0.
                else:
                    choix = np.random.rand() > .5
                    réussite = (tests[i_test, N_ballons_vus] == choix)
                    gain_esperé = N_ballons_restant - 1
                    gains[i_test] = gain_esperé * (réussite*2 - 1)
            else:
                choix = proba_True_restant > .5
                réussite = (tests[i_test, N_ballons_vus] == choix)
                gain_esperé = N_ballons_restant - 1
                gains[i_test] = gain_esperé * (réussite*2 - 1)

        return gains

    def test(self):
        tests = self.generate_test()
        
        gains = np.zeros((self.N_ballons, len(tests)))
        for N_ballons_vus in range(self.N_ballons):
            gains[N_ballons_vus, :] = self.agent_tetu(tests, N_ballons_vus)
            if self.verbose: print('Moyenne des gains avec', N_ballons_vus, 'ballons vus =', np.mean(gains[N_ballons_vus, :]) , 
                  ' +/- ', np.std(gains[N_ballons_vus, :]) )
        return gains

    def plot(self):
        gains = self.test()
        fig, ax = plt.subplots(figsize=figsize)
        ax.errorbar(np.arange(self.N_ballons), y=np.mean(gains, axis=(1)), yerr=np.std(gains, axis=(1))/10, alpha=.5, lw=2)

        ax.set_xlabel(' # ballons vus ')
        ax.set_ylabel(' gain moyen par jeu (+/- SEM / 10 ) ')
        return fig, ax
    
agent = AgentTétu()
agent.plot();
Moyenne des gains avec 0 ballons vus = -0.095703125  +/-  6.99934574884
Moyenne des gains avec 1 ballons vus = 0.7939453125  +/-  5.94723892582
Moyenne des gains avec 2 ballons vus = 0.751953125  +/-  4.94313326725
Moyenne des gains avec 3 ballons vus = 0.990234375  +/-  3.87549169559
Moyenne des gains avec 4 ballons vus = 0.77197265625  +/-  2.89897537382
Moyenne des gains avec 5 ballons vus = 0.8984375  +/-  1.78684360216
Moyenne des gains avec 6 ballons vus = 0.423828125  +/-  0.90574263478
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 620 384" width="620pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.814538 L 620.860937 384.814538 L 620.860937 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 52.160938 347.258288 L 610.160938 347.258288 L 610.160938 11.295012 L 52.160938 11.295012 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="mfa4fdbff4a" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="77.524574" xlink:href="#mfa4fdbff4a" y="347.258288"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(74.343324 361.856726)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="149.992106" xlink:href="#mfa4fdbff4a" y="347.258288"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(146.810856 361.856726)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="222.459639" xlink:href="#mfa4fdbff4a" y="347.258288"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(219.278389 361.856726)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="294.927171" xlink:href="#mfa4fdbff4a" y="347.258288"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(291.745921 361.856726)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="367.394704" xlink:href="#mfa4fdbff4a" y="347.258288"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(364.213454 361.856726)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="439.862236" xlink:href="#mfa4fdbff4a" y="347.258288"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(436.680986 361.856726)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="512.329769" xlink:href="#mfa4fdbff4a" y="347.258288"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(509.148519 361.856726)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="584.797301" xlink:href="#mfa4fdbff4a" y="347.258288"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(581.616051 361.856726)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> </g> </g> </g> <g id="text_9"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(294.032813 375.534851)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="md26c0fe415" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#md26c0fe415" y="290.649628"/> </g> </g> <g id="text_10"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 294.448847)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#md26c0fe415" y="220.737026"/> </g> </g> <g id="text_11"> <g transform="translate(29.257813 224.536245)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#md26c0fe415" y="150.824424"/> </g> </g> <g id="text_12"> <g transform="translate(29.257813 154.623642)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#md26c0fe415" y="80.911821"/> </g> </g> <g id="text_13"> <g transform="translate(29.257813 84.71104)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#md26c0fe415" y="10.999219"/> </g> </g> <g id="text_14"> <g transform="translate(29.257813 14.798438)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_15"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 269.300088)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p2b48d58ed7)" d="M 77.524574 331.98723 L 77.524574 136.25024 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p2b48d58ed7)" d="M 149.992106 192.88085 L 149.992106 26.56607 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p2b48d58ed7)" d="M 222.459639 184.712488 L 222.459639 46.477564 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p2b48d58ed7)" d="M 294.927171 136.466444 L 294.927171 28.08816 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p2b48d58ed7)" d="M 367.394704 153.330774 L 367.394704 72.260809 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p2b48d58ed7)" d="M 439.862236 120.097396 L 439.862236 70.128241 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p2b48d58ed7)" d="M 512.329769 174.139736 L 512.329769 148.810607 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p2b48d58ed7)" d="M 584.797301 220.737026 L 584.797301 220.737026 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_14"> <path clip-path="url(#p2b48d58ed7)" d="M 77.524574 234.118735 L 149.992106 109.72346 L 222.459639 115.595026 L 294.927171 82.277302 L 367.394704 112.795791 L 439.862236 95.112818 L 512.329769 161.475172 L 584.797301 220.737026 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 52.160938 347.258288 L 52.160938 11.295012 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 610.160938 347.258288 L 610.160938 11.295012 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 52.160938 347.258288 L 610.160938 347.258288 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 52.160938 11.295012 L 610.160938 11.295012 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p2b48d58ed7"> <rect height="335.963276" width="558" x="52.160938" y="11.295012"/> </clipPath> </defs> </svg>

Cet objet nous permet de vérifier que ce comportement ne dépend pas significativement du nombre de test (s'il est significativement plus grand que $70$):

In [54]:
%%timeit -n1 -r1
agent = AgentTétu(N_test=2**10)
agent.plot();
Moyenne des gains avec 0 ballons vus = -0.2734375  +/-  6.994657385
Moyenne des gains avec 1 ballons vus = 1.0078125  +/-  5.91475392259
Moyenne des gains avec 2 ballons vus = 0.498046875  +/-  4.97513309473
Moyenne des gains avec 3 ballons vus = 0.84375  +/-  3.90999820173
Moyenne des gains avec 4 ballons vus = 0.884765625  +/-  2.86656410862
Moyenne des gains avec 5 ballons vus = 0.79296875  +/-  1.83608293972
Moyenne des gains avec 6 ballons vus = 0.4453125  +/-  0.895375215953
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
367 ms ± 0 ns per loop (mean ± std. dev. of 1 run, 1 loop each)
<svg height="384pt" version="1.1" viewBox="0 0 620 384" width="620pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 620.860937 384.219526 L 620.860937 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 L 610.160938 10.7 L 52.160938 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="md7459aed2f" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="77.524574" xlink:href="#md7459aed2f" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(74.343324 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="149.992106" xlink:href="#md7459aed2f" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(146.810856 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="222.459639" xlink:href="#md7459aed2f" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(219.278389 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="294.927171" xlink:href="#md7459aed2f" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(291.745921 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="367.394704" xlink:href="#md7459aed2f" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(364.213454 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="439.862236" xlink:href="#md7459aed2f" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(436.680986 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="512.329769" xlink:href="#md7459aed2f" y="346.663276"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(509.148519 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="584.797301" xlink:href="#md7459aed2f" y="346.663276"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(581.616051 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> </g> </g> </g> <g id="text_9"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(294.032813 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="ma94b3381a1" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#ma94b3381a1" y="334.609679"/> </g> </g> <g id="text_10"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 338.408898)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-31"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#ma94b3381a1" y="275.239837"/> </g> </g> <g id="text_11"> <g transform="translate(20.878125 279.039056)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#ma94b3381a1" y="215.869996"/> </g> </g> <g id="text_12"> <g transform="translate(29.257813 219.669215)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#ma94b3381a1" y="156.500154"/> </g> </g> <g id="text_13"> <g transform="translate(29.257813 160.299373)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#ma94b3381a1" y="97.130313"/> </g> </g> <g id="text_14"> <g transform="translate(29.257813 100.929531)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#ma94b3381a1" y="37.760471"/> </g> </g> <g id="text_15"> <g transform="translate(29.257813 41.55969)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_16"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p4ae209d1f2)" d="M 77.524574 331.392218 L 77.524574 165.283538 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p4ae209d1f2)" d="M 149.992106 166.43426 L 149.992106 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p4ae209d1f2)" d="M 222.459639 215.80664 L 222.459639 97.657495 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p4ae209d1f2)" d="M 294.927171 162.110583 L 294.927171 69.256193 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p4ae209d1f2)" d="M 367.394704 144.850697 L 367.394704 76.775714 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p4ae209d1f2)" d="M 439.862236 143.514728 L 439.862236 99.911547 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p4ae209d1f2)" d="M 512.329769 173.625388 L 512.329769 152.362074 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p4ae209d1f2)" d="M 584.797301 215.869996 L 584.797301 215.869996 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_15"> <path clip-path="url(#p4ae209d1f2)" d="M 77.524574 248.337878 L 149.992106 96.202659 L 222.459639 156.732068 L 294.927171 115.683388 L 367.394704 110.813206 L 439.862236 121.713138 L 512.329769 162.993731 L 584.797301 215.869996 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 52.160938 346.663276 L 52.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 610.160938 346.663276 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 52.160938 10.7 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p4ae209d1f2"> <rect height="335.963276" width="558" x="52.160938" y="10.7"/> </clipPath> </defs> </svg>
In [55]:
%%timeit -n1 -r1
agent = AgentTétu(N_test=2**13)
agent.plot();
Moyenne des gains avec 0 ballons vus = -0.035888671875  +/-  6.99990799963
Moyenne des gains avec 1 ballons vus = 0.8173828125  +/-  5.94406303279
Moyenne des gains avec 2 ballons vus = 0.655517578125  +/-  4.95684342145
Moyenne des gains avec 3 ballons vus = 1.0703125  +/-  3.85414467195
Moyenne des gains avec 4 ballons vus = 0.77197265625  +/-  2.89897537382
Moyenne des gains avec 5 ballons vus = 0.84228515625  +/-  1.81398889621
Moyenne des gains avec 6 ballons vus = 0.434326171875  +/-  0.90075566966
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
2.29 s ± 0 ns per loop (mean ± std. dev. of 1 run, 1 loop each)
<svg height="384pt" version="1.1" viewBox="0 0 620 384" width="620pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 620.860937 384.219526 L 620.860937 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 L 610.160938 10.7 L 52.160938 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="mac0d0ff530" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="77.524574" xlink:href="#mac0d0ff530" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(74.343324 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="149.992106" xlink:href="#mac0d0ff530" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(146.810856 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="222.459639" xlink:href="#mac0d0ff530" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(219.278389 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="294.927171" xlink:href="#mac0d0ff530" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(291.745921 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="367.394704" xlink:href="#mac0d0ff530" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(364.213454 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="439.862236" xlink:href="#mac0d0ff530" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(436.680986 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="512.329769" xlink:href="#mac0d0ff530" y="346.663276"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(509.148519 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="584.797301" xlink:href="#mac0d0ff530" y="346.663276"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(581.616051 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> </g> </g> </g> <g id="text_9"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(294.032813 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="m26af11099d" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m26af11099d" y="298.520175"/> </g> </g> <g id="text_10"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 302.319394)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m26af11099d" y="228.840429"/> </g> </g> <g id="text_11"> <g transform="translate(29.257813 232.639648)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m26af11099d" y="159.160683"/> </g> </g> <g id="text_12"> <g transform="translate(29.257813 162.959902)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m26af11099d" y="89.480937"/> </g> </g> <g id="text_13"> <g transform="translate(29.257813 93.280155)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m26af11099d" y="19.801191"/> </g> </g> <g id="text_14"> <g transform="translate(29.257813 23.600409)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_15"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p05ec63c466)" d="M 77.524574 331.392218 L 77.524574 136.291494 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p05ec63c466)" d="M 149.992106 197.766536 L 149.992106 32.094215 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p05ec63c466)" d="M 222.459639 206.56615 L 222.459639 68.409514 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p05ec63c466)" d="M 294.927171 133.393387 L 294.927171 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p05ec63c466)" d="M 367.394704 161.658685 L 367.394704 80.858738 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p05ec63c466)" d="M 439.862236 136.739654 L 439.862236 86.18034 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p05ec63c466)" d="M 512.329769 180.865839 L 512.329769 155.760069 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p05ec63c466)" d="M 584.797301 228.840429 L 584.797301 228.840429 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_14"> <path clip-path="url(#p05ec63c466)" d="M 77.524574 233.841856 L 149.992106 114.930375 L 222.459639 137.487832 L 294.927171 79.682222 L 367.394704 121.258712 L 439.862236 111.459997 L 512.329769 168.312954 L 584.797301 228.840429 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 52.160938 346.663276 L 52.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 610.160938 346.663276 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 52.160938 10.7 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p05ec63c466"> <rect height="335.963276" width="558" x="52.160938" y="10.7"/> </clipPath> </defs> </svg>

Le résultat exact est donné en calculant sur l'ensemble des combinaisons:

In [56]:
%%timeit -n1 -r1
agent = AgentTétu(N_test=None)
agent.plot();
Moyenne des gains avec 0 ballons vus = 0.0  +/-  0.0
Moyenne des gains avec 1 ballons vus = 0.857142857143  +/-  5.93845991166
Moyenne des gains avec 2 ballons vus = 0.714285714286  +/-  3.194382825
Moyenne des gains avec 3 ballons vus = 1.02857142857  +/-  3.86549360578
Moyenne des gains avec 4 ballons vus = 0.771428571429  +/-  1.9432772655
Moyenne des gains avec 5 ballons vus = 0.857142857143  +/-  1.80701580581
Moyenne des gains avec 6 ballons vus = 0.428571428571  +/-  0.494871659305
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
132 ms ± 0 ns per loop (mean ± std. dev. of 1 run, 1 loop each)
<svg height="384pt" version="1.1" viewBox="0 0 612 384" width="612pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 612.48125 384.219526 L 612.48125 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 L 601.78125 10.7 L 43.78125 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="maa50fb2b7e" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="69.144886" xlink:href="#maa50fb2b7e" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(65.963636 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="141.612419" xlink:href="#maa50fb2b7e" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(138.431169 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="214.079951" xlink:href="#maa50fb2b7e" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(210.898701 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="286.547484" xlink:href="#maa50fb2b7e" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(283.366234 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="359.015016" xlink:href="#maa50fb2b7e" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(355.833766 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="431.482549" xlink:href="#maa50fb2b7e" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(428.301299 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="503.950081" xlink:href="#maa50fb2b7e" y="346.663276"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(500.768831 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="576.417614" xlink:href="#maa50fb2b7e" y="346.663276"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(573.236364 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> </g> </g> </g> <g id="text_9"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(285.653125 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="m5f126a6b15" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m5f126a6b15" y="331.392218"/> </g> </g> <g id="text_10"> <defs> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 335.191437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m5f126a6b15" y="289.293871"/> </g> </g> <g id="text_11"> <g transform="translate(20.878125 293.09309)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m5f126a6b15" y="247.195524"/> </g> </g> <g id="text_12"> <g transform="translate(20.878125 250.994743)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m5f126a6b15" y="205.097177"/> </g> </g> <g id="text_13"> <g transform="translate(20.878125 208.896396)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m5f126a6b15" y="162.99883"/> </g> </g> <g id="text_14"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(20.878125 166.798049)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-38"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m5f126a6b15" y="120.900483"/> </g> </g> <g id="text_15"> <g transform="translate(20.878125 124.699702)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_15"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m5f126a6b15" y="78.802136"/> </g> </g> <g id="text_16"> <g transform="translate(20.878125 82.601355)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="ytick_8"> <g id="line2d_16"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m5f126a6b15" y="36.703789"/> </g> </g> <g id="text_17"> <g transform="translate(20.878125 40.503008)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="text_18"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p6004f08cf6)" d="M 69.144886 331.392218 L 69.144886 331.392218 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p6004f08cf6)" d="M 141.612419 275.970404 L 141.612419 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p6004f08cf6)" d="M 214.079951 248.280097 L 214.079951 113.801861 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p6004f08cf6)" d="M 286.547484 196.251879 L 286.547484 33.520988 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p6004f08cf6)" d="M 359.015016 209.91726 L 359.015016 128.108499 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p6004f08cf6)" d="M 431.482549 189.00692 L 431.482549 112.934542 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p6004f08cf6)" d="M 503.950081 251.598114 L 503.950081 230.764835 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p6004f08cf6)" d="M 576.417614 331.392218 L 576.417614 331.392218 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_17"> <path clip-path="url(#p6004f08cf6)" d="M 69.144886 331.392218 L 141.612419 150.970731 L 214.079951 181.040979 L 286.547484 114.886434 L 359.015016 169.01288 L 431.482549 150.970731 L 503.950081 241.181475 L 576.417614 331.392218 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 43.78125 346.663276 L 43.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 601.78125 346.663276 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 43.78125 10.7 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p6004f08cf6"> <rect height="335.963276" width="558" x="43.78125" y="10.7"/> </clipPath> </defs> </svg>

On observe que la stratégie "Monte Carlo" donne des résultats similaires mais est plus longue à simuler. On pourra choisir notre stratégie computationnelle en fonction de notre budget en resources (ordinateurs, CPU, ...).

On observe aussi que le comportement du jeu est similaire avec plus ou moins de ballons:

In [57]:
agent = AgentTétu(N_ballons=16, N_test=None)
agent.plot();
Moyenne des gains avec 0 ballons vus = 0.0  +/-  0.0
Moyenne des gains avec 1 ballons vus = 0.933333333333  +/-  13.968854244
Moyenne des gains avec 2 ballons vus = 0.866666666667  +/-  8.83830049023
Moyenne des gains avec 3 ballons vus = 1.29230769231  +/-  11.930211265
Moyenne des gains avec 4 ballons vus = 1.18461538462  +/-  8.2142321289
Moyenne des gains avec 5 ballons vus = 1.46853146853  +/-  9.89158305459
Moyenne des gains avec 6 ballons vus = 1.32167832168  +/-  6.89440981475
Moyenne des gains avec 7 ballons vus = 1.52292152292  +/-  7.85370677037
Moyenne des gains avec 8 ballons vus = 1.33255633256  +/-  5.34495135289
Moyenne des gains avec 9 ballons vus = 1.46853146853  +/-  5.8175093748
Moyenne des gains avec 10 ballons vus = 1.22377622378  +/-  3.70299364892
Moyenne des gains avec 11 ballons vus = 1.29230769231  +/-  3.78549083058
Moyenne des gains avec 12 ballons vus = 0.969230769231  +/-  2.04540182826
Moyenne des gains avec 13 ballons vus = 0.933333333333  +/-  1.76886655486
Moyenne des gains avec 14 ballons vus = 0.466666666667  +/-  0.49888765157
Moyenne des gains avec 15 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 620 384" width="620pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 620.860937 384.219526 L 620.860937 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 L 610.160938 10.7 L 52.160938 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m2f295c2b2c" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="77.524574" xlink:href="#m2f295c2b2c" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(74.343324 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="145.160938" xlink:href="#m2f295c2b2c" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(141.979688 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="212.797301" xlink:href="#m2f295c2b2c" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(209.616051 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="280.433665" xlink:href="#m2f295c2b2c" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(277.252415 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="348.070028" xlink:href="#m2f295c2b2c" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(344.888778 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-38"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="415.706392" xlink:href="#m2f295c2b2c" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(409.343892 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="483.342756" xlink:href="#m2f295c2b2c" y="346.663276"/> </g> </g> <g id="text_7"> <g transform="translate(476.980256 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="550.979119" xlink:href="#m2f295c2b2c" y="346.663276"/> </g> </g> <g id="text_8"> <g transform="translate(544.616619 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="text_9"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(294.032813 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="m1e05962f73" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m1e05962f73" y="335.167197"/> </g> </g> <g id="text_10"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(20.878125 338.966416)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m1e05962f73" y="283.381253"/> </g> </g> <g id="text_11"> <g transform="translate(29.257813 287.180472)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m1e05962f73" y="231.59531"/> </g> </g> <g id="text_12"> <g transform="translate(29.257813 235.394529)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m1e05962f73" y="179.809367"/> </g> </g> <g id="text_13"> <g transform="translate(29.257813 183.608585)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m1e05962f73" y="128.023423"/> </g> </g> <g id="text_14"> <g transform="translate(29.257813 131.822642)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m1e05962f73" y="76.23748"/> </g> </g> <g id="text_15"> <g transform="translate(29.257813 80.036698)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_15"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m1e05962f73" y="24.451536"/> </g> </g> <g id="text_16"> <g transform="translate(29.257813 28.250755)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_17"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p69ec79e6e2)" d="M 77.524574 283.381253 L 77.524574 283.381253 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 111.342756 331.392218 L 111.342756 42.0361 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 145.160938 285.158897 L 145.160938 102.079006 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 178.979119 273.097957 L 178.979119 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 212.797301 245.764755 L 212.797301 75.612051 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 246.615483 233.73167 L 246.615483 28.833686 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 280.433665 217.899239 L 280.433665 75.085832 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 314.251847 206.991721 L 314.251847 44.307075 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 348.070028 200.724549 L 348.070028 90.00721 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 381.88821 191.535721 L 381.88821 71.029636 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 415.706392 194.985045 L 415.706392 118.279837 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 449.524574 188.74155 L 449.524574 110.327464 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 483.342756 204.180807 L 483.342756 161.811581 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 517.160938 205.034644 L 517.160938 168.393674 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 550.979119 240.21478 L 550.979119 229.880633 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p69ec79e6e2)" d="M 584.797301 283.381253 L 584.797301 283.381253 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_16"> <path clip-path="url(#p69ec79e6e2)" d="M 77.524574 283.381253 L 111.342756 186.714159 L 145.160938 193.618951 L 178.979119 149.534507 L 212.797301 160.688403 L 246.615483 131.282678 L 280.433665 146.492536 L 314.251847 125.649398 L 348.070028 145.36588 L 381.88821 131.282678 L 415.706392 156.632441 L 449.524574 149.534507 L 483.342756 182.996194 L 517.160938 186.714159 L 550.979119 235.047706 L 584.797301 283.381253 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 52.160938 346.663276 L 52.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 610.160938 346.663276 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 52.160938 10.7 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p69ec79e6e2"> <rect height="335.963276" width="558" x="52.160938" y="10.7"/> </clipPath> </defs> </svg>
In [58]:
agent = AgentTétu(N_ballons=6, N_test=None)
agent.plot();
Moyenne des gains avec 0 ballons vus = 0.0  +/-  0.0
Moyenne des gains avec 1 ballons vus = 0.8  +/-  3.91918358845
Moyenne des gains avec 2 ballons vus = 0.6  +/-  1.8
Moyenne des gains avec 3 ballons vus = 0.8  +/-  1.83303027798
Moyenne des gains avec 4 ballons vus = 0.4  +/-  0.489897948557
Moyenne des gains avec 5 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 612 384" width="612pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 612.48125 384.219526 L 612.48125 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 L 601.78125 10.7 L 43.78125 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="maa1a7ccac6" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="69.144886" xlink:href="#maa1a7ccac6" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(65.963636 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="170.599432" xlink:href="#maa1a7ccac6" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(167.418182 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="272.053977" xlink:href="#maa1a7ccac6" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(268.872727 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="373.508523" xlink:href="#maa1a7ccac6" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(370.327273 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="474.963068" xlink:href="#maa1a7ccac6" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(471.781818 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="576.417614" xlink:href="#maa1a7ccac6" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(573.236364 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_7"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(285.653125 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_7"> <defs> <path d="M 0 0 L -3.5 0 " id="m532b11ecaa" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m532b11ecaa" y="331.392218"/> </g> </g> <g id="text_8"> <defs> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 335.191437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m532b11ecaa" y="280.143547"/> </g> </g> <g id="text_9"> <g transform="translate(20.878125 283.942766)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m532b11ecaa" y="228.894876"/> </g> </g> <g id="text_10"> <g transform="translate(20.878125 232.694095)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m532b11ecaa" y="177.646205"/> </g> </g> <g id="text_11"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(20.878125 181.445423)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m532b11ecaa" y="126.397534"/> </g> </g> <g id="text_12"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(20.878125 130.196752)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-38"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m532b11ecaa" y="75.148862"/> </g> </g> <g id="text_13"> <g transform="translate(20.878125 78.948081)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m532b11ecaa" y="23.900191"/> </g> </g> <g id="text_14"> <g transform="translate(20.878125 27.69941)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="text_15"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#pea285c11a5)" d="M 69.144886 331.392218 L 69.144886 331.392218 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pea285c11a5)" d="M 170.599432 226.824009 L 170.599432 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pea285c11a5)" d="M 272.053977 223.770009 L 272.053977 131.522401 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pea285c11a5)" d="M 373.508523 173.367717 L 373.508523 79.427351 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pea285c11a5)" d="M 474.963068 241.448185 L 474.963068 216.341566 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pea285c11a5)" d="M 576.417614 331.392218 L 576.417614 331.392218 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_14"> <path clip-path="url(#pea285c11a5)" d="M 69.144886 331.392218 L 170.599432 126.397534 L 272.053977 177.646205 L 373.508523 126.397534 L 474.963068 228.894876 L 576.417614 331.392218 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 43.78125 346.663276 L 43.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 601.78125 346.663276 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 43.78125 10.7 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="pea285c11a5"> <rect height="335.963276" width="558" x="43.78125" y="10.7"/> </clipPath> </defs> </svg>

On peut aussi montrer en fonction du nombre de ballons vus l'evolution du gain au cours du temps (en fonction du nombre de tests):

In [59]:
agent = AgentTétu()
gains = agent.test() 
gains_cumulés = np.cumsum(gains, axis=1)
fig, ax = plt.subplots(figsize=figsize)

for N_ballons_vus in range(agent.N_ballons):
    label = '%d ballons vu' % N_ballons_vus
    if N_ballons_vus>1: label += 's '
    ax.plot(gains_cumulés[N_ballons_vus, :], alpha=0.9, label=label)
    
ax.set_xlabel(' # essais ')
ax.set_ylabel(' gain cumulé ')
ax.legend();
Moyenne des gains avec 0 ballons vus = 0.01708984375  +/-  6.99997913834
Moyenne des gains avec 1 ballons vus = 0.796875  +/-  5.94684708349
Moyenne des gains avec 2 ballons vus = 0.7568359375  +/-  4.94238802237
Moyenne des gains avec 3 ballons vus = 1.0078125  +/-  3.87095775808
Moyenne des gains avec 4 ballons vus = 0.80712890625  +/-  2.8893845242
Moyenne des gains avec 5 ballons vus = 0.8427734375  +/-  1.81376209384
Moyenne des gains avec 6 ballons vus = 0.447265625  +/-  0.894401174358
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 622 384" width="622pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 622.428125 384.219526 L 622.428125 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 53.728125 346.663276 L 611.728125 346.663276 L 611.728125 10.7 L 53.728125 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="ma079a3467f" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="79.091761" xlink:href="#ma079a3467f" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(75.910511 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="202.967885" xlink:href="#ma079a3467f" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(190.242885 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="326.844009" xlink:href="#ma079a3467f" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(314.119009 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="450.720133" xlink:href="#ma079a3467f" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(437.995133 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="574.596257" xlink:href="#ma079a3467f" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(561.871257 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="text_6"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> </defs> <g transform="translate(308.427344 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-65"/> <use x="208.886719" xlink:href="#DejaVuSans-73"/> <use x="260.986328" xlink:href="#DejaVuSans-73"/> <use x="313.085938" xlink:href="#DejaVuSans-61"/> <use x="374.365234" xlink:href="#DejaVuSans-69"/> <use x="402.148438" xlink:href="#DejaVuSans-73"/> <use x="454.248047" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_6"> <defs> <path d="M 0 0 L -3.5 0 " id="mb1f5fddb2a" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="53.728125" xlink:href="#mb1f5fddb2a" y="322.850475"/> </g> </g> <g id="text_7"> <g transform="translate(40.365625 326.649694)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="53.728125" xlink:href="#mb1f5fddb2a" y="251.071119"/> </g> </g> <g id="text_8"> <g transform="translate(21.278125 254.870338)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="53.728125" xlink:href="#mb1f5fddb2a" y="179.291763"/> </g> </g> <g id="text_9"> <g transform="translate(21.278125 183.090981)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="53.728125" xlink:href="#mb1f5fddb2a" y="107.512407"/> </g> </g> <g id="text_10"> <g transform="translate(21.278125 111.311625)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="53.728125" xlink:href="#mb1f5fddb2a" y="35.73305"/> </g> </g> <g id="text_11"> <g transform="translate(21.278125 39.532269)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="text_12"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z " id="DejaVuSans-63"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z M 38.53125 79.984375 L 48.25 79.984375 L 32.34375 61.625 L 24.859375 61.625 z " id="DejaVuSans-e9"/> </defs> <g transform="translate(15.198438 212.667576)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-63"/> <use x="334.472656" xlink:href="#DejaVuSans-75"/> <use x="397.851562" xlink:href="#DejaVuSans-6d"/> <use x="495.263672" xlink:href="#DejaVuSans-75"/> <use x="558.642578" xlink:href="#DejaVuSans-6c"/> <use x="586.425781" xlink:href="#DejaVuSans-e9"/> <use x="647.949219" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="line2d_11"> <path clip-path="url(#p91285e6896)" d="M 79.091761 323.35293 L 79.339514 324.357841 L 79.46339 323.855386 L 79.711142 324.860297 L 79.835018 324.357841 L 80.578275 327.372574 L 80.826027 326.367663 L 80.949903 326.870119 L 81.073779 326.367663 L 81.197655 326.870119 L 81.321532 326.367663 L 81.445408 326.870119 L 81.940912 324.860297 L 82.064788 325.362752 L 82.188664 324.860297 L 82.684169 326.870119 L 83.179673 324.860297 L 83.30355 325.362752 L 83.551302 324.357841 L 83.799054 325.362752 L 83.92293 324.860297 L 84.046806 325.362752 L 84.170682 324.860297 L 84.418435 325.865208 L 84.542311 325.362752 L 84.666187 325.865208 L 84.790063 325.362752 L 84.913939 325.865208 L 85.161691 324.860297 L 85.409444 325.865208 L 85.53332 325.362752 L 86.1527 327.87503 L 86.276577 327.372574 L 86.648205 328.879941 L 87.019833 327.372574 L 87.143709 327.87503 L 87.267586 327.372574 L 87.391462 327.87503 L 87.515338 327.372574 L 87.76309 328.377485 L 88.258595 326.367663 L 88.630223 327.87503 L 88.877975 326.870119 L 89.125727 327.87503 L 89.497356 326.367663 L 89.745108 327.372574 L 89.99286 326.367663 L 90.116736 326.870119 L 90.240613 326.367663 L 90.983869 329.382396 L 91.107745 328.879941 L 91.479374 330.387307 L 91.60325 329.884852 L 91.851002 330.889763 L 91.974878 330.387307 L 92.098754 330.889763 L 92.22263 330.387307 L 92.346507 330.889763 L 92.718135 329.382396 L 92.842011 329.884852 L 92.965887 329.382396 L 93.089763 329.884852 L 93.213639 329.382396 L 93.337516 329.884852 L 94.080772 326.870119 L 94.204648 327.372574 L 94.576277 325.865208 L 94.824029 326.870119 L 94.947905 326.367663 L 95.071781 326.870119 L 95.44341 325.362752 L 95.567286 325.865208 L 95.815038 324.860297 L 96.06279 325.865208 L 96.310543 324.860297 L 96.682171 326.367663 L 96.929923 325.362752 L 97.177675 326.367663 L 97.301552 325.865208 L 97.425428 326.367663 L 97.67318 325.362752 L 98.416437 328.377485 L 98.664189 327.372574 L 98.788065 327.87503 L 99.035817 326.870119 L 99.407446 328.377485 L 99.655198 327.372574 L 100.026826 328.879941 L 100.150702 328.377485 L 100.274579 328.879941 L 100.398455 328.377485 L 100.893959 330.387307 L 101.017835 329.884852 L 101.141711 330.387307 L 101.265588 329.884852 L 101.389464 330.387307 L 101.884968 328.377485 L 102.504349 330.889763 L 102.628225 330.387307 L 102.752101 330.889763 L 102.875977 330.387307 L 103.123729 331.392218 L 103.495358 329.884852 L 103.619234 330.387307 L 104.114738 328.377485 L 104.238615 328.879941 L 104.486367 327.87503 L 104.734119 328.879941 L 104.857995 328.377485 L 104.981871 328.879941 L 105.105747 328.377485 L 105.229624 328.879941 L 105.3535 328.377485 L 105.477376 328.879941 L 105.725128 327.87503 L 106.096756 329.382396 L 106.344509 328.377485 L 106.592261 329.382396 L 106.716137 328.879941 L 106.840013 329.382396 L 107.58327 326.367663 L 107.707146 326.870119 L 107.954898 325.865208 L 108.20265 326.870119 L 108.698155 324.860297 L 108.945907 325.865208 L 109.565288 323.35293 L 110.804049 328.377485 L 111.051801 327.372574 L 111.175677 327.87503 L 111.299554 327.372574 L 111.42343 327.87503 L 112.662191 322.850475 L 113.033819 324.357841 L 113.281572 323.35293 L 113.405448 323.855386 L 113.6532 322.850475 L 113.777076 323.35293 L 114.396457 320.840653 L 114.644209 321.845564 L 114.768085 321.343108 L 114.891961 321.845564 L 115.015837 321.343108 L 115.26359 322.348019 L 115.759094 320.338197 L 115.88297 320.840653 L 116.130722 319.835742 L 116.254599 320.338197 L 116.502351 319.333286 L 116.626227 319.835742 L 116.750103 319.333286 L 117.245608 321.343108 L 117.49336 320.338197 L 117.617236 320.840653 L 117.864988 319.835742 L 118.11274 320.840653 L 118.484369 319.333286 L 118.608245 319.835742 L 118.732121 319.333286 L 118.855997 319.835742 L 118.979873 319.333286 L 119.599254 321.845564 L 120.218634 319.333286 L 120.342511 319.835742 L 120.466387 319.333286 L 120.961891 321.343108 L 121.085767 320.840653 L 121.33352 321.845564 L 121.581272 320.840653 L 121.829024 321.845564 L 122.324529 319.835742 L 122.448405 320.338197 L 122.696157 319.333286 L 123.56329 322.850475 L 123.811042 321.845564 L 124.058794 322.850475 L 124.306547 321.845564 L 124.430423 322.348019 L 124.678175 321.343108 L 124.802051 321.845564 L 125.421432 319.333286 L 125.545308 319.835742 L 125.916936 318.328375 L 126.164688 319.333286 L 126.412441 318.328375 L 126.660193 319.333286 L 127.155697 317.323464 L 127.279574 317.82592 L 127.40345 317.323464 L 127.775078 318.830831 L 127.898954 318.328375 L 128.146706 319.333286 L 128.270583 318.830831 L 128.642211 320.338197 L 128.889963 319.333286 L 129.261592 320.840653 L 129.385468 320.338197 L 129.63322 321.343108 L 130.004848 319.835742 L 130.128724 320.338197 L 130.252601 319.835742 L 130.624229 321.343108 L 130.748105 320.840653 L 130.871981 321.343108 L 130.995857 320.840653 L 131.119733 321.343108 L 131.615238 319.333286 L 131.739114 319.835742 L 132.234619 317.82592 L 132.358495 318.328375 L 132.853999 316.318553 L 132.977875 316.821009 L 133.101751 316.318553 L 133.597256 318.328375 L 134.216636 315.816098 L 134.340513 316.318553 L 134.588265 315.313643 L 134.712141 315.816098 L 134.959893 314.811187 L 135.455398 316.821009 L 135.70315 315.816098 L 135.827026 316.318553 L 135.950902 315.816098 L 136.074778 316.318553 L 136.322531 315.313643 L 136.446407 315.816098 L 137.31354 312.29891 L 137.437416 312.801365 L 137.561292 312.29891 L 137.809044 313.303821 L 137.93292 312.801365 L 138.056796 313.303821 L 138.428425 311.796454 L 138.800053 313.303821 L 139.047805 312.29891 L 139.171681 312.801365 L 139.419434 311.796454 L 139.54331 312.29891 L 139.791062 311.293999 L 139.914938 311.796454 L 140.038814 311.293999 L 140.782071 314.308732 L 141.029823 313.303821 L 141.153699 313.806276 L 141.277576 313.303821 L 141.896956 315.816098 L 142.516337 313.303821 L 142.640213 313.806276 L 142.764089 313.303821 L 142.887965 313.806276 L 143.259594 312.29891 L 143.38347 312.801365 L 143.507346 312.29891 L 143.631222 312.801365 L 144.126726 310.791543 L 144.250603 311.293999 L 144.374479 310.791543 L 144.622231 311.796454 L 144.993859 310.289088 L 145.365488 311.796454 L 145.61324 310.791543 L 145.860992 311.796454 L 146.232621 310.289088 L 146.356497 310.791543 L 146.728125 309.284177 L 146.852001 309.786632 L 146.975877 309.284177 L 147.347506 310.791543 L 147.84301 308.781721 L 148.338515 310.791543 L 148.462391 310.289088 L 148.834019 311.796454 L 149.205647 310.289088 L 149.329524 310.791543 L 149.4534 310.289088 L 149.577276 310.791543 L 149.701152 310.289088 L 149.825028 310.791543 L 149.948904 310.289088 L 150.07278 310.791543 L 150.196656 310.289088 L 150.568285 311.796454 L 150.816037 310.791543 L 151.063789 311.796454 L 151.187665 311.293999 L 151.435418 312.29891 L 151.807046 310.791543 L 151.930922 311.293999 L 152.054798 310.791543 L 152.426427 312.29891 L 152.550303 311.796454 L 152.921931 313.303821 L 153.169683 312.29891 L 153.29356 312.801365 L 153.665188 311.293999 L 154.408445 314.308732 L 154.532321 313.806276 L 154.903949 315.313643 L 155.771082 311.796454 L 156.514339 314.811187 L 156.638215 314.308732 L 156.762091 314.811187 L 157.009843 313.806276 L 157.133719 314.308732 L 157.257596 313.806276 L 157.381472 314.308732 L 157.505348 313.806276 L 157.876976 315.313643 L 158.124728 314.308732 L 158.496357 315.816098 L 158.744109 314.811187 L 158.867985 315.313643 L 159.115737 314.308732 L 159.239614 314.811187 L 159.36349 314.308732 L 159.487366 314.811187 L 159.611242 314.308732 L 159.735118 314.811187 L 159.98287 313.806276 L 160.230623 314.811187 L 160.354499 314.308732 L 160.850003 316.318553 L 160.973879 315.816098 L 161.097755 316.318553 L 161.345508 315.313643 L 161.469384 315.816098 L 161.59326 315.313643 L 161.841012 316.318553 L 161.964888 315.816098 L 162.088764 316.318553 L 162.460393 314.811187 L 162.708145 315.816098 L 162.832021 315.313643 L 162.955897 315.816098 L 163.079773 315.313643 L 163.203649 315.816098 L 163.327526 315.313643 L 163.82303 317.323464 L 164.194658 315.816098 L 164.318535 316.318553 L 164.566287 315.313643 L 164.814039 316.318553 L 164.937915 315.816098 L 165.061791 316.318553 L 165.805048 313.303821 L 166.300553 315.313643 L 166.424429 314.811187 L 166.548305 315.313643 L 166.919933 313.806276 L 168.158694 318.830831 L 168.530323 317.323464 L 168.778075 318.328375 L 169.025827 317.323464 L 169.149703 317.82592 L 169.397456 316.821009 L 169.521332 317.323464 L 169.769084 316.318553 L 169.89296 316.821009 L 170.016836 316.318553 L 170.140712 316.821009 L 170.264589 316.318553 L 170.512341 317.323464 L 170.636217 316.821009 L 170.883969 317.82592 L 171.131721 316.821009 L 171.255598 317.323464 L 171.50335 316.318553 L 171.627226 316.821009 L 171.874978 315.816098 L 171.998854 316.318553 L 172.12273 315.816098 L 172.246607 316.318553 L 172.370483 315.816098 L 172.494359 316.318553 L 172.618235 315.816098 L 172.742111 316.318553 L 173.113739 314.811187 L 173.485368 316.318553 L 173.609244 315.816098 L 173.73312 316.318553 L 173.980872 315.313643 L 174.104748 315.816098 L 174.228625 315.313643 L 174.476377 316.318553 L 175.095757 313.806276 L 175.34351 314.811187 L 175.467386 314.308732 L 175.715138 315.313643 L 175.96289 314.308732 L 176.210642 315.313643 L 176.582271 313.806276 L 176.830023 314.811187 L 177.077775 313.806276 L 177.57328 315.816098 L 177.697156 315.313643 L 177.944908 316.318553 L 178.440413 314.308732 L 179.183669 317.323464 L 179.307546 316.821009 L 179.431422 317.323464 L 179.679174 316.318553 L 179.80305 316.821009 L 180.050802 315.816098 L 180.422431 317.323464 L 180.546307 316.821009 L 181.41344 320.338197 L 181.661192 319.333286 L 182.03282 320.840653 L 182.156696 320.338197 L 182.280573 320.840653 L 182.528325 319.835742 L 182.776077 320.840653 L 183.023829 319.835742 L 183.147705 320.338197 L 183.519334 318.830831 L 183.64321 319.333286 L 183.767086 318.830831 L 184.138714 320.338197 L 184.386467 319.333286 L 184.634219 320.338197 L 184.758095 319.835742 L 185.2536 321.845564 L 185.377476 321.343108 L 185.501352 321.845564 L 185.625228 321.343108 L 185.87298 322.348019 L 186.492361 319.835742 L 186.740113 320.840653 L 186.987865 319.835742 L 187.48337 321.845564 L 187.607246 321.343108 L 187.978874 322.850475 L 188.10275 322.348019 L 188.226626 322.850475 L 189.71314 316.821009 L 189.837016 317.323464 L 189.960892 316.821009 L 190.332521 318.328375 L 190.456397 317.82592 L 190.704149 318.830831 L 190.951901 317.82592 L 191.075777 318.328375 L 191.819034 315.313643 L 192.190662 316.821009 L 192.314539 316.318553 L 192.438415 316.821009 L 192.562291 316.318553 L 192.686167 316.821009 L 192.810043 316.318553 L 193.429424 318.830831 L 193.924928 316.821009 L 194.296557 318.328375 L 194.668185 316.821009 L 194.915937 317.82592 L 195.411442 315.816098 L 195.535318 316.318553 L 195.78307 315.313643 L 196.154698 316.821009 L 196.650203 314.811187 L 196.897955 315.816098 L 197.021831 315.313643 L 197.145707 315.816098 L 197.517336 314.308732 L 198.136716 316.821009 L 198.508345 315.313643 L 198.756097 316.318553 L 199.499354 313.303821 L 199.994858 315.313643 L 200.366487 313.806276 L 200.490363 314.308732 L 200.985867 312.29891 L 201.109743 312.801365 L 201.605248 310.791543 L 201.729124 311.293999 L 201.976876 310.289088 L 202.348505 311.796454 L 202.472381 311.293999 L 202.596257 311.796454 L 202.720133 311.293999 L 203.091761 312.801365 L 203.215637 312.29891 L 203.587266 313.806276 L 203.711142 313.303821 L 203.958894 314.308732 L 204.206646 313.303821 L 204.826027 315.816098 L 204.949903 315.313643 L 205.073779 315.816098 L 205.321532 314.811187 L 205.569284 315.816098 L 205.817036 314.811187 L 206.312541 316.821009 L 206.436417 316.318553 L 206.560293 316.821009 L 206.684169 316.318553 L 207.055797 317.82592 L 207.179673 317.323464 L 207.30355 317.82592 L 207.551302 316.821009 L 207.675178 317.323464 L 207.92293 316.318553 L 208.294559 317.82592 L 208.418435 317.323464 L 208.542311 317.82592 L 208.666187 317.323464 L 209.161691 319.333286 L 209.781072 316.821009 L 209.904948 317.323464 L 210.028824 316.821009 L 210.1527 317.323464 L 210.276577 316.821009 L 210.524329 317.82592 L 211.019833 315.816098 L 211.515338 317.82592 L 211.639214 317.323464 L 211.76309 317.82592 L 212.010842 316.821009 L 212.258595 317.82592 L 212.382471 317.323464 L 212.506347 317.82592 L 212.630223 317.323464 L 212.754099 317.82592 L 212.877975 317.323464 L 213.125727 318.328375 L 213.497356 316.821009 L 213.621232 317.323464 L 213.868984 316.318553 L 214.116736 317.323464 L 214.364489 316.318553 L 214.488365 316.821009 L 215.479374 312.801365 L 215.851002 314.308732 L 216.346507 312.29891 L 216.594259 313.303821 L 216.718135 312.801365 L 217.213639 314.811187 L 217.709144 312.801365 L 218.204648 314.811187 L 218.452401 313.806276 L 218.576277 314.308732 L 218.824029 313.303821 L 219.071781 314.308732 L 219.195657 313.806276 L 219.44341 314.811187 L 219.567286 314.308732 L 219.815038 315.313643 L 220.186666 313.806276 L 220.434419 314.811187 L 220.806047 313.303821 L 221.053799 314.308732 L 221.549304 312.29891 L 221.67318 312.801365 L 221.920932 311.796454 L 222.911941 315.816098 L 223.035817 315.313643 L 223.407446 316.821009 L 223.531322 316.318553 L 223.90295 317.82592 L 224.150702 316.821009 L 224.274579 317.323464 L 224.398455 316.821009 L 224.646207 317.82592 L 224.770083 317.323464 L 224.893959 317.82592 L 225.389464 315.816098 L 225.51334 316.318553 L 225.637216 315.816098 L 225.761092 316.318553 L 225.884968 315.816098 L 226.008844 316.318553 L 226.13272 315.816098 L 226.256597 316.318553 L 226.875977 313.806276 L 226.999853 314.308732 L 227.247606 313.303821 L 227.495358 314.308732 L 227.74311 313.303821 L 227.990862 314.308732 L 228.114738 313.806276 L 228.238615 314.308732 L 228.610243 312.801365 L 228.857995 313.806276 L 228.981871 313.303821 L 229.105747 313.806276 L 229.725128 311.293999 L 229.97288 312.29891 L 230.096756 311.796454 L 230.220632 312.29891 L 230.468385 311.293999 L 230.963889 313.303821 L 231.087765 312.801365 L 231.335518 313.806276 L 231.459394 313.303821 L 231.58327 313.806276 L 231.707146 313.303821 L 231.831022 313.806276 L 231.954898 313.303821 L 232.20265 314.308732 L 232.326527 313.806276 L 232.574279 314.811187 L 232.698155 314.308732 L 232.822031 314.811187 L 233.317536 312.801365 L 233.565288 313.806276 L 233.81304 312.801365 L 233.936916 313.303821 L 234.308545 311.796454 L 234.432421 312.29891 L 234.680173 311.293999 L 234.804049 311.796454 L 235.175677 310.289088 L 235.299554 310.791543 L 236.166686 307.274355 L 236.290563 307.77681 L 236.414439 307.274355 L 236.538315 307.77681 L 236.662191 307.274355 L 236.786067 307.77681 L 236.909943 307.274355 L 237.033819 307.77681 L 237.281572 306.771899 L 237.405448 307.274355 L 237.6532 306.269444 L 238.148704 308.279266 L 238.272581 307.77681 L 238.396457 308.279266 L 238.520333 307.77681 L 238.644209 308.279266 L 238.891961 307.274355 L 239.015837 307.77681 L 239.26359 306.771899 L 239.635218 308.279266 L 239.759094 307.77681 L 240.130722 309.284177 L 240.254599 308.781721 L 240.626227 310.289088 L 240.997855 308.781721 L 241.617236 311.293999 L 241.864988 310.289088 L 241.988864 310.791543 L 242.11274 310.289088 L 242.236617 310.791543 L 242.855997 308.279266 L 242.979873 308.781721 L 243.227625 307.77681 L 243.475378 308.781721 L 243.847006 307.274355 L 244.714139 310.791543 L 245.33352 308.279266 L 245.457396 308.781721 L 245.705148 307.77681 L 245.829024 308.279266 L 246.324529 306.269444 L 246.448405 306.771899 L 246.572281 306.269444 L 246.696157 306.771899 L 246.820033 306.269444 L 246.943909 306.771899 L 247.687166 303.757166 L 247.811042 304.259622 L 248.058794 303.254711 L 248.306547 304.259622 L 248.925927 301.747344 L 249.049803 302.2498 L 249.545308 300.239978 L 249.79306 301.244889 L 249.916936 300.742433 L 250.164688 301.747344 L 250.412441 300.742433 L 250.536317 301.244889 L 250.907945 299.737522 L 251.155697 300.742433 L 251.40345 299.737522 L 251.775078 301.244889 L 252.394459 298.732611 L 252.642211 299.737522 L 252.766087 299.235067 L 253.013839 300.239978 L 253.137715 299.737522 L 253.261592 300.239978 L 253.63322 298.732611 L 253.880972 299.737522 L 254.004848 299.235067 L 254.128724 299.737522 L 254.252601 299.235067 L 254.376477 299.737522 L 254.500353 299.235067 L 254.624229 299.737522 L 254.748105 299.235067 L 255.24361 301.244889 L 255.491362 300.239978 L 255.615238 300.742433 L 255.739114 300.239978 L 255.86299 300.742433 L 256.110742 299.737522 L 256.234619 300.239978 L 256.606247 298.732611 L 256.853999 299.737522 L 256.977875 299.235067 L 257.845008 302.752255 L 257.968884 302.2498 L 258.09276 302.752255 L 258.216636 302.2498 L 259.083769 305.766988 L 259.207645 305.264533 L 259.331522 305.766988 L 259.455398 305.264533 L 259.579274 305.766988 L 259.70315 305.264533 L 259.827026 305.766988 L 259.950902 305.264533 L 260.074778 305.766988 L 260.198654 305.264533 L 260.322531 305.766988 L 260.694159 304.259622 L 261.189663 306.269444 L 261.437416 305.264533 L 261.685168 306.269444 L 262.180672 304.259622 L 262.304549 304.762077 L 262.428425 304.259622 L 262.676177 305.264533 L 262.800053 304.762077 L 262.923929 305.264533 L 263.047805 304.762077 L 263.171681 305.264533 L 263.295558 304.762077 L 263.419434 305.264533 L 263.54331 304.762077 L 264.038814 306.771899 L 264.16269 306.269444 L 264.410443 307.274355 L 264.658195 306.269444 L 264.905947 307.274355 L 265.153699 306.269444 L 265.401452 307.274355 L 265.77308 305.766988 L 265.896956 306.269444 L 266.020832 305.766988 L 266.144708 306.269444 L 266.392461 305.264533 L 266.516337 305.766988 L 266.887965 304.259622 L 267.135717 305.264533 L 267.38347 304.259622 L 267.507346 304.762077 L 267.755098 303.757166 L 268.00285 304.762077 L 268.498355 302.752255 L 268.993859 304.762077 L 269.117735 304.259622 L 269.365488 305.264533 L 269.489364 304.762077 L 269.61324 305.264533 L 269.737116 304.762077 L 270.108744 306.269444 L 270.232621 305.766988 L 270.480373 306.771899 L 270.604249 306.269444 L 270.852001 307.274355 L 270.975877 306.771899 L 271.099753 307.274355 L 271.223629 306.771899 L 271.595258 308.279266 L 271.719134 307.77681 L 271.966886 308.781721 L 272.214638 307.77681 L 272.834019 310.289088 L 273.205647 308.781721 L 273.329524 309.284177 L 273.4534 308.781721 L 273.577276 309.284177 L 273.701152 308.781721 L 273.948904 309.786632 L 274.444409 307.77681 L 274.939913 309.786632 L 275.435418 307.77681 L 275.68317 308.781721 L 276.054798 307.274355 L 276.302551 308.279266 L 276.426427 307.77681 L 276.550303 308.279266 L 276.798055 307.274355 L 277.045807 308.279266 L 277.169683 307.77681 L 277.541312 309.284177 L 277.665188 308.781721 L 277.789064 309.284177 L 278.160692 307.77681 L 278.284569 308.279266 L 278.408445 307.77681 L 278.532321 308.279266 L 278.780073 307.274355 L 278.903949 307.77681 L 279.399454 305.766988 L 279.771082 307.274355 L 280.14271 305.766988 L 280.638215 307.77681 L 280.762091 307.274355 L 281.133719 308.781721 L 281.257596 308.279266 L 281.381472 308.781721 L 281.629224 307.77681 L 281.876976 308.781721 L 282.124728 307.77681 L 282.248605 308.279266 L 282.372481 307.77681 L 282.496357 308.279266 L 282.991861 306.269444 L 283.115737 306.771899 L 283.487366 305.264533 L 283.735118 306.269444 L 284.106746 304.762077 L 284.354499 305.766988 L 284.478375 305.264533 L 284.726127 306.269444 L 284.850003 305.766988 L 285.097755 306.771899 L 285.221631 306.269444 L 285.345508 306.771899 L 285.469384 306.269444 L 285.717136 307.274355 L 285.964888 306.269444 L 286.955897 310.289088 L 287.079773 309.786632 L 287.699154 312.29891 L 288.194658 310.289088 L 288.318535 310.791543 L 288.442411 310.289088 L 288.814039 311.796454 L 288.937915 311.293999 L 289.061791 311.796454 L 289.185667 311.293999 L 289.309544 311.796454 L 289.805048 309.786632 L 289.928924 310.289088 L 290.0528 309.786632 L 290.300553 310.791543 L 290.548305 309.786632 L 290.672181 310.289088 L 290.919933 309.284177 L 291.167685 310.289088 L 291.291562 309.786632 L 291.539314 310.791543 L 291.66319 310.289088 L 292.034818 311.796454 L 292.158694 311.293999 L 292.282571 311.796454 L 292.778075 309.786632 L 293.025827 310.791543 L 293.149703 310.289088 L 293.27358 310.791543 L 294.140712 307.274355 L 294.264589 307.77681 L 294.512341 306.771899 L 294.883969 308.279266 L 295.131721 307.274355 L 295.255598 307.77681 L 295.379474 307.274355 L 295.751102 308.781721 L 295.998854 307.77681 L 296.12273 308.279266 L 296.246607 307.77681 L 296.494359 308.781721 L 296.989863 306.771899 L 297.73312 309.786632 L 297.856996 309.284177 L 297.980872 309.786632 L 298.104748 309.284177 L 298.228625 309.786632 L 298.352501 309.284177 L 298.724129 310.791543 L 298.848005 310.289088 L 299.34351 312.29891 L 299.591262 311.293999 L 299.715138 311.796454 L 300.334519 309.284177 L 300.458395 309.786632 L 300.582271 309.284177 L 300.953899 310.791543 L 301.201651 309.786632 L 301.325528 310.289088 L 301.697156 308.781721 L 301.821032 309.284177 L 301.944908 308.781721 L 302.068784 309.284177 L 302.316537 308.279266 L 302.688165 309.786632 L 302.935917 308.781721 L 303.431422 310.791543 L 304.050802 308.279266 L 304.546307 310.289088 L 304.917935 308.781721 L 305.041811 309.284177 L 305.165687 308.781721 L 305.289564 309.284177 L 305.41344 308.781721 L 305.537316 309.284177 L 305.661192 308.781721 L 305.908944 309.786632 L 306.156696 308.781721 L 306.280573 309.284177 L 306.404449 308.781721 L 306.528325 309.284177 L 306.776077 308.279266 L 307.147705 309.786632 L 307.271582 309.284177 L 307.519334 310.289088 L 308.014838 308.279266 L 308.262591 309.284177 L 308.386467 308.781721 L 308.758095 310.289088 L 309.005847 309.284177 L 309.129723 309.786632 L 309.2536 309.284177 L 309.377476 309.786632 L 309.501352 309.284177 L 309.625228 309.786632 L 310.120732 307.77681 L 310.492361 309.284177 L 311.235618 306.269444 L 311.359494 306.771899 L 311.48337 306.269444 L 311.607246 306.771899 L 311.731122 306.269444 L 311.854998 306.771899 L 311.978874 306.269444 L 312.10275 306.771899 L 312.350503 305.766988 L 312.969883 308.279266 L 313.093759 307.77681 L 313.465388 309.284177 L 313.589264 308.781721 L 313.837016 309.786632 L 313.960892 309.284177 L 314.332521 310.791543 L 315.32353 306.771899 L 315.447406 307.274355 L 315.819034 305.766988 L 315.94291 306.269444 L 316.066786 305.766988 L 316.438415 307.274355 L 316.562291 306.771899 L 317.181671 309.284177 L 317.305548 308.781721 L 317.5533 309.786632 L 317.677176 309.284177 L 317.801052 309.786632 L 317.924928 309.284177 L 318.17268 310.289088 L 318.296557 309.786632 L 318.544309 310.791543 L 318.915937 309.284177 L 319.039813 309.786632 L 319.163689 309.284177 L 319.287566 309.786632 L 319.411442 309.284177 L 319.78307 310.791543 L 320.030822 309.786632 L 320.154698 310.289088 L 320.402451 309.284177 L 320.526327 309.786632 L 320.897955 308.279266 L 321.021831 308.781721 L 321.269584 307.77681 L 321.517336 308.781721 L 321.765088 307.77681 L 321.888964 308.279266 L 322.136716 307.274355 L 322.508345 308.781721 L 323.003849 306.771899 L 323.499354 308.781721 L 323.62323 308.279266 L 323.747106 308.781721 L 323.870982 308.279266 L 324.490363 310.791543 L 324.614239 310.289088 L 324.738115 310.791543 L 324.861991 310.289088 L 325.23362 311.796454 L 325.481372 310.791543 L 325.729124 311.796454 L 326.100752 310.289088 L 326.224628 310.791543 L 326.348505 310.289088 L 326.472381 310.791543 L 326.596257 310.289088 L 326.967885 311.796454 L 327.091761 311.293999 L 327.215637 311.796454 L 327.339514 311.293999 L 328.08277 314.308732 L 328.206646 313.806276 L 328.454399 314.811187 L 328.578275 314.308732 L 328.702151 314.811187 L 328.826027 314.308732 L 329.073779 315.313643 L 329.197655 314.811187 L 329.69316 316.821009 L 329.817036 316.318553 L 329.940912 316.821009 L 330.560293 314.308732 L 330.931921 315.816098 L 331.055797 315.313643 L 331.30355 316.318553 L 331.427426 315.816098 L 331.675178 316.821009 L 331.799054 316.318553 L 331.92293 316.821009 L 332.170682 315.816098 L 332.418435 316.821009 L 333.037815 314.308732 L 333.161691 314.811187 L 333.781072 312.29891 L 334.028824 313.303821 L 334.524329 311.293999 L 334.772081 312.29891 L 334.895957 311.796454 L 335.019833 312.29891 L 335.267586 311.293999 L 335.639214 312.801365 L 335.76309 312.29891 L 335.886966 312.801365 L 336.630223 309.786632 L 336.754099 310.289088 L 337.497356 307.274355 L 337.621232 307.77681 L 337.99286 306.269444 L 338.116736 306.771899 L 338.240613 306.269444 L 338.612241 307.77681 L 338.736117 307.274355 L 338.859993 307.77681 L 338.983869 307.274355 L 339.107745 307.77681 L 339.231622 307.274355 L 339.355498 307.77681 L 339.479374 307.274355 L 339.727126 308.279266 L 340.098754 306.771899 L 340.346507 307.77681 L 340.470383 307.274355 L 340.718135 308.279266 L 340.965887 307.274355 L 341.089763 307.77681 L 341.213639 307.274355 L 341.337516 307.77681 L 341.461392 307.274355 L 341.585268 307.77681 L 342.080772 305.766988 L 342.204648 306.269444 L 342.328525 305.766988 L 342.452401 306.269444 L 342.824029 304.762077 L 343.071781 305.766988 L 343.195657 305.264533 L 343.567286 306.771899 L 343.815038 305.766988 L 343.938914 306.269444 L 344.186666 305.264533 L 344.310543 305.766988 L 344.558295 304.762077 L 344.682171 305.264533 L 344.929923 304.259622 L 345.177675 305.264533 L 345.425428 304.259622 L 345.67318 305.264533 L 345.920932 304.259622 L 346.044808 304.762077 L 346.168684 304.259622 L 346.292561 304.762077 L 346.416437 304.259622 L 346.911941 306.269444 L 347.655198 303.254711 L 347.90295 304.259622 L 348.398455 302.2498 L 348.522331 302.752255 L 348.646207 302.2498 L 348.770083 302.752255 L 348.893959 302.2498 L 349.141711 303.254711 L 349.51334 301.747344 L 350.380473 305.264533 L 350.504349 304.762077 L 350.628225 305.264533 L 351.123729 303.254711 L 351.371482 304.259622 L 352.238615 300.742433 L 352.734119 302.752255 L 352.857995 302.2498 L 352.981871 302.752255 L 353.105747 302.2498 L 353.3535 303.254711 L 353.725128 301.747344 L 354.220632 303.757166 L 354.468385 302.752255 L 354.840013 304.259622 L 355.087765 303.254711 L 355.58327 305.264533 L 355.831022 304.259622 L 355.954898 304.762077 L 356.078774 304.259622 L 356.20265 304.762077 L 356.450403 303.757166 L 356.574279 304.259622 L 356.698155 303.757166 L 356.945907 304.762077 L 357.069783 304.259622 L 357.317536 305.264533 L 357.441412 304.762077 L 357.565288 305.264533 L 358.432421 301.747344 L 358.556297 302.2498 L 358.927925 300.742433 L 359.051801 301.244889 L 359.175677 300.742433 L 359.42343 301.747344 L 359.671182 300.742433 L 360.04281 302.2498 L 360.414439 300.742433 L 360.538315 301.244889 L 360.909943 299.737522 L 361.405448 301.747344 L 361.777076 300.239978 L 362.148704 301.747344 L 362.272581 301.244889 L 362.520333 302.2498 L 362.644209 301.747344 L 363.26359 304.259622 L 363.387466 303.757166 L 363.635218 304.762077 L 363.88297 303.757166 L 364.130722 304.762077 L 364.502351 303.254711 L 365.245608 306.269444 L 365.369484 305.766988 L 365.617236 306.771899 L 365.988864 305.264533 L 366.236617 306.269444 L 366.732121 304.259622 L 367.847006 308.781721 L 368.094758 307.77681 L 368.218634 308.279266 L 368.342511 307.77681 L 368.961891 310.289088 L 369.457396 308.279266 L 369.829024 309.786632 L 369.9529 309.284177 L 370.200652 310.289088 L 370.448405 309.284177 L 370.696157 310.289088 L 370.943909 309.284177 L 371.315538 310.791543 L 371.687166 309.284177 L 372.058794 310.791543 L 372.430423 309.284177 L 372.554299 309.786632 L 373.421432 306.269444 L 373.545308 306.771899 L 373.669184 306.269444 L 373.916936 307.274355 L 374.288565 305.766988 L 374.412441 306.269444 L 374.907945 304.259622 L 375.031821 304.762077 L 375.155697 304.259622 L 376.02283 307.77681 L 376.146706 307.274355 L 377.013839 310.791543 L 378.252601 305.766988 L 378.376477 306.269444 L 378.995857 303.757166 L 379.119733 304.259622 L 379.24361 303.757166 L 379.739114 305.766988 L 379.86299 305.264533 L 379.986866 305.766988 L 380.110742 305.264533 L 380.482371 306.771899 L 380.977875 304.762077 L 381.225627 305.766988 L 381.349504 305.264533 L 381.597256 306.269444 L 381.845008 305.264533 L 381.968884 305.766988 L 382.588265 303.254711 L 382.959893 304.762077 L 383.083769 304.259622 L 383.331522 305.264533 L 383.827026 303.254711 L 384.074778 304.259622 L 384.198654 303.757166 L 384.446407 304.762077 L 384.570283 304.259622 L 384.694159 304.762077 L 384.818035 304.259622 L 385.189663 305.766988 L 385.437416 304.762077 L 385.685168 305.766988 L 386.180672 303.757166 L 386.428425 304.762077 L 386.552301 304.259622 L 386.800053 305.264533 L 387.667186 301.747344 L 387.791062 302.2498 L 388.410443 299.737522 L 389.029823 302.2498 L 389.153699 301.747344 L 389.525328 303.254711 L 389.649204 302.752255 L 390.268585 305.264533 L 390.640213 303.757166 L 390.764089 304.259622 L 390.887965 303.757166 L 391.259594 305.264533 L 391.38347 304.762077 L 391.507346 305.264533 L 391.755098 304.259622 L 391.878974 304.762077 L 392.126726 303.757166 L 392.250603 304.259622 L 392.622231 302.752255 L 392.746107 303.254711 L 392.869983 302.752255 L 392.993859 303.254711 L 393.241612 302.2498 L 393.365488 302.752255 L 393.489364 302.2498 L 393.61324 302.752255 L 393.860992 301.747344 L 394.108744 302.752255 L 394.480373 301.244889 L 394.604249 301.747344 L 394.728125 301.244889 L 394.975877 302.2498 L 395.347506 300.742433 L 395.471382 301.244889 L 395.595258 300.742433 L 395.719134 301.244889 L 395.84301 300.742433 L 396.090762 301.747344 L 396.462391 300.239978 L 396.710143 301.244889 L 396.834019 300.742433 L 397.329524 302.752255 L 397.4534 302.2498 L 397.577276 302.752255 L 397.948904 301.244889 L 398.196656 302.2498 L 398.320533 301.747344 L 398.444409 302.2498 L 398.568285 301.747344 L 398.816037 302.752255 L 398.939913 302.2498 L 399.063789 302.752255 L 399.187665 302.2498 L 399.311542 302.752255 L 399.435418 302.2498 L 399.68317 303.254711 L 399.807046 302.752255 L 399.930922 303.254711 L 400.550303 300.742433 L 401.29356 303.757166 L 401.665188 302.2498 L 401.789064 302.752255 L 401.91294 302.2498 L 402.532321 304.762077 L 402.903949 303.254711 L 403.027825 303.757166 L 403.52333 301.747344 L 403.647206 302.2498 L 404.390463 299.235067 L 404.885967 301.244889 L 405.009843 300.742433 L 405.133719 301.244889 L 405.381472 300.239978 L 405.7531 301.747344 L 406.000852 300.742433 L 406.248605 301.747344 L 406.496357 300.742433 L 406.620233 301.244889 L 406.744109 300.742433 L 406.867985 301.244889 L 406.991861 300.742433 L 407.115737 301.244889 L 407.611242 299.235067 L 407.735118 299.737522 L 407.858994 299.235067 L 407.98287 299.737522 L 408.354499 298.230156 L 408.478375 298.732611 L 408.850003 297.225245 L 409.469384 299.737522 L 409.59326 299.235067 L 409.717136 299.737522 L 409.841012 299.235067 L 410.088764 300.239978 L 410.21264 299.737522 L 410.460393 300.742433 L 410.584269 300.239978 L 410.708145 300.742433 L 410.832021 300.239978 L 410.955897 300.742433 L 411.82303 297.225245 L 412.070782 298.230156 L 412.194658 297.7277 L 412.814039 300.239978 L 413.43342 297.7277 L 413.681172 298.732611 L 414.0528 297.225245 L 414.176676 297.7277 L 414.424429 296.722789 L 414.548305 297.225245 L 414.796057 296.220334 L 414.919933 296.722789 L 415.043809 296.220334 L 415.539314 298.230156 L 415.787066 297.225245 L 415.910942 297.7277 L 416.034818 297.225245 L 416.158694 297.7277 L 416.530323 296.220334 L 416.778075 297.225245 L 416.901951 296.722789 L 417.149703 297.7277 L 417.645208 295.717878 L 417.769084 296.220334 L 418.264589 294.210512 L 418.388465 294.712967 L 418.512341 294.210512 L 419.007845 296.220334 L 419.131721 295.717878 L 419.379474 296.722789 L 420.12273 293.708056 L 420.370483 294.712967 L 420.742111 293.205601 L 420.865987 293.708056 L 420.989863 293.205601 L 421.113739 293.708056 L 421.485368 292.20069 L 421.609244 292.703145 L 421.73312 292.20069 L 421.856996 292.703145 L 422.352501 290.693323 L 422.600253 291.698234 L 422.724129 291.195779 L 422.848005 291.698234 L 423.219633 290.190868 L 423.34351 290.693323 L 423.591262 289.688412 L 423.839014 290.693323 L 423.96289 290.190868 L 424.086766 290.693323 L 424.334519 289.688412 L 424.458395 290.190868 L 424.582271 289.688412 L 424.706147 290.190868 L 424.830023 289.688412 L 425.201651 291.195779 L 425.821032 288.683501 L 426.316537 290.693323 L 426.688165 289.185957 L 426.935917 290.190868 L 427.059793 289.688412 L 427.183669 290.190868 L 427.679174 288.181046 L 427.80305 288.683501 L 428.050802 287.67859 L 428.298555 288.683501 L 428.422431 288.181046 L 428.546307 288.683501 L 428.670183 288.181046 L 428.794059 288.683501 L 428.917935 288.181046 L 429.165687 289.185957 L 429.41344 288.181046 L 429.661192 289.185957 L 430.156696 287.176135 L 430.404449 288.181046 L 430.899953 286.171224 L 431.147705 287.176135 L 431.271582 286.673679 L 431.519334 287.67859 L 431.64321 287.176135 L 432.014838 288.683501 L 432.138714 288.181046 L 432.262591 288.683501 L 432.634219 287.176135 L 432.881971 288.181046 L 433.005847 287.67859 L 433.129723 288.181046 L 433.2536 287.67859 L 433.749104 289.688412 L 433.87298 289.185957 L 434.120732 290.190868 L 434.244609 289.688412 L 434.368485 290.190868 L 434.492361 289.688412 L 434.987865 291.698234 L 435.48337 289.688412 L 435.854998 291.195779 L 435.978874 290.693323 L 436.10275 291.195779 L 436.226626 290.693323 L 436.350503 291.195779 L 436.474379 290.693323 L 437.217635 293.708056 L 437.341512 293.205601 L 437.71314 294.712967 L 437.837016 294.210512 L 438.084768 295.215423 L 438.208644 294.712967 L 438.332521 295.215423 L 438.456397 294.712967 L 438.580273 295.215423 L 438.704149 294.712967 L 438.951901 295.717878 L 439.199653 294.712967 L 439.695158 296.722789 L 439.819034 296.220334 L 439.94291 296.722789 L 440.066786 296.220334 L 440.190662 296.722789 L 440.562291 295.215423 L 440.686167 295.717878 L 440.810043 295.215423 L 441.057795 296.220334 L 441.181671 295.717878 L 441.305548 296.220334 L 441.5533 295.215423 L 441.677176 295.717878 L 441.924928 294.712967 L 442.420433 296.722789 L 442.544309 296.220334 L 442.668185 296.722789 L 442.792061 296.220334 L 443.039813 297.225245 L 443.411442 295.717878 L 443.535318 296.220334 L 443.78307 295.215423 L 444.154698 296.722789 L 444.402451 295.717878 L 444.526327 296.220334 L 444.650203 295.717878 L 444.897955 296.722789 L 445.021831 296.220334 L 445.145707 296.722789 L 445.269584 296.220334 L 445.641212 297.7277 L 446.260593 295.215423 L 446.632221 296.722789 L 446.879973 295.717878 L 447.003849 296.220334 L 447.127725 295.717878 L 447.251602 296.220334 L 447.499354 295.215423 L 447.870982 296.722789 L 447.994858 296.220334 L 448.118734 296.722789 L 448.861991 293.708056 L 448.985867 294.210512 L 449.109743 293.708056 L 449.23362 294.210512 L 449.605248 292.703145 L 449.729124 293.205601 L 450.348505 290.693323 L 450.596257 291.698234 L 450.720133 291.195779 L 451.339514 293.708056 L 451.46339 293.205601 L 451.711142 294.210512 L 451.835018 293.708056 L 452.330523 295.717878 L 452.454399 295.215423 L 452.826027 296.722789 L 453.073779 295.717878 L 453.321532 296.722789 L 453.445408 296.220334 L 453.569284 296.722789 L 453.69316 296.220334 L 453.940912 297.225245 L 454.064788 296.722789 L 454.188664 297.225245 L 454.312541 296.722789 L 454.436417 297.225245 L 454.560293 296.722789 L 454.684169 297.225245 L 454.931921 296.220334 L 455.551302 298.732611 L 455.799054 297.7277 L 456.046806 298.732611 L 456.294559 297.7277 L 456.418435 298.230156 L 456.542311 297.7277 L 457.285568 300.742433 L 457.409444 300.239978 L 457.53332 300.742433 L 457.657196 300.239978 L 457.781072 300.742433 L 457.904948 300.239978 L 458.028824 300.742433 L 458.400453 299.235067 L 458.524329 299.737522 L 459.019833 297.7277 L 459.143709 298.230156 L 459.391462 297.225245 L 459.76309 298.732611 L 459.886966 298.230156 L 460.010842 298.732611 L 460.506347 296.722789 L 460.754099 297.7277 L 461.125727 296.220334 L 461.249604 296.722789 L 461.497356 295.717878 L 461.621232 296.220334 L 461.868984 295.215423 L 462.116736 296.220334 L 462.240613 295.717878 L 462.364489 296.220334 L 462.488365 295.717878 L 462.612241 296.220334 L 462.736117 295.717878 L 462.983869 296.722789 L 463.231622 295.717878 L 463.60325 297.225245 L 463.727126 296.722789 L 463.974878 297.7277 L 464.098754 297.225245 L 464.22263 297.7277 L 464.346507 297.225245 L 464.470383 297.7277 L 464.594259 297.225245 L 465.213639 299.737522 L 465.337516 299.235067 L 465.461392 299.737522 L 465.956896 297.7277 L 466.080772 298.230156 L 466.824029 295.215423 L 466.947905 295.717878 L 467.071781 295.215423 L 467.195657 295.717878 L 467.44341 294.712967 L 467.691162 295.717878 L 467.938914 294.712967 L 468.06279 295.215423 L 468.310543 294.210512 L 468.682171 295.717878 L 468.806047 295.215423 L 469.053799 296.220334 L 469.301552 295.215423 L 469.425428 295.717878 L 469.549304 295.215423 L 470.168684 297.7277 L 470.664189 295.717878 L 470.911941 296.722789 L 471.035817 296.220334 L 471.407446 297.7277 L 471.779074 296.220334 L 472.150702 297.7277 L 472.274579 297.225245 L 472.398455 297.7277 L 472.522331 297.225245 L 472.646207 297.7277 L 472.770083 297.225245 L 472.893959 297.7277 L 473.141711 296.722789 L 473.265588 297.225245 L 473.51334 296.220334 L 473.637216 296.722789 L 473.761092 296.220334 L 473.884968 296.722789 L 474.13272 295.717878 L 474.256597 296.220334 L 474.504349 295.215423 L 474.752101 296.220334 L 474.875977 295.717878 L 475.123729 296.722789 L 475.619234 294.712967 L 475.74311 295.215423 L 476.486367 292.20069 L 476.610243 292.703145 L 477.477376 289.185957 L 477.601252 289.688412 L 477.725128 289.185957 L 477.97288 290.190868 L 478.592261 287.67859 L 478.716137 288.181046 L 478.840013 287.67859 L 479.087765 288.683501 L 479.335518 287.67859 L 479.459394 288.181046 L 479.707146 287.176135 L 479.831022 287.67859 L 479.954898 287.176135 L 480.326527 288.683501 L 480.450403 288.181046 L 480.574279 288.683501 L 480.822031 287.67859 L 481.317536 289.688412 L 481.81304 287.67859 L 482.060792 288.683501 L 482.308545 287.67859 L 482.804049 289.688412 L 482.927925 289.185957 L 483.051801 289.688412 L 483.42343 288.181046 L 483.547306 288.683501 L 483.671182 288.181046 L 484.290563 290.693323 L 484.414439 290.190868 L 484.538315 290.693323 L 484.786067 289.688412 L 485.157695 291.195779 L 485.405448 290.190868 L 485.529324 290.693323 L 485.6532 290.190868 L 485.900952 291.195779 L 486.024828 290.693323 L 486.148704 291.195779 L 486.272581 290.693323 L 486.520333 291.698234 L 486.644209 291.195779 L 486.891961 292.20069 L 487.015837 291.698234 L 487.387466 293.205601 L 487.759094 291.698234 L 488.006846 292.703145 L 488.378475 291.195779 L 489.121731 294.210512 L 489.245608 293.708056 L 489.369484 294.210512 L 489.617236 293.205601 L 490.236617 295.717878 L 490.608245 294.210512 L 490.732121 294.712967 L 490.979873 293.708056 L 491.227625 294.712967 L 491.351502 294.210512 L 491.72313 295.717878 L 491.847006 295.215423 L 492.094758 296.220334 L 492.342511 295.215423 L 492.466387 295.717878 L 492.590263 295.215423 L 492.838015 296.220334 L 492.961891 295.717878 L 493.209643 296.722789 L 493.33352 296.220334 L 493.705148 297.7277 L 493.829024 297.225245 L 493.9529 297.7277 L 494.076776 297.225245 L 494.572281 299.235067 L 494.696157 298.732611 L 494.820033 299.235067 L 495.067785 298.230156 L 495.191661 298.732611 L 495.687166 296.722789 L 495.811042 297.225245 L 495.934918 296.722789 L 496.18267 297.7277 L 496.306547 297.225245 L 496.430423 297.7277 L 496.554299 297.225245 L 496.678175 297.7277 L 496.802051 297.225245 L 497.049803 298.230156 L 497.421432 296.722789 L 497.916936 298.732611 L 498.040812 298.230156 L 498.784069 301.244889 L 498.907945 300.742433 L 499.031821 301.244889 L 499.651202 298.732611 L 499.775078 299.235067 L 500.146706 297.7277 L 500.270583 298.230156 L 500.394459 297.7277 L 500.518335 298.230156 L 500.889963 296.722789 L 501.013839 297.225245 L 501.137715 296.722789 L 501.385468 297.7277 L 501.63322 296.722789 L 501.757096 297.225245 L 502.004848 296.220334 L 502.128724 296.722789 L 502.376477 295.717878 L 502.500353 296.220334 L 502.748105 295.215423 L 502.871981 295.717878 L 503.367486 293.708056 L 503.491362 294.210512 L 503.615238 293.708056 L 503.86299 294.712967 L 504.110742 293.708056 L 504.234619 294.210512 L 504.606247 292.703145 L 504.730123 293.205601 L 504.853999 292.703145 L 505.349504 294.712967 L 505.47338 294.210512 L 505.597256 294.712967 L 506.09276 292.703145 L 506.340513 293.708056 L 506.464389 293.205601 L 506.712141 294.210512 L 506.836017 293.708056 L 507.579274 296.722789 L 507.70315 296.220334 L 507.950902 297.225245 L 508.074778 296.722789 L 509.065787 300.742433 L 509.437416 299.235067 L 509.561292 299.737522 L 509.685168 299.235067 L 509.809044 299.737522 L 509.93292 299.235067 L 510.056796 299.737522 L 510.304549 298.732611 L 510.428425 299.235067 L 510.552301 298.732611 L 510.800053 299.737522 L 511.047805 298.732611 L 511.295558 299.737522 L 511.419434 299.235067 L 511.791062 300.742433 L 512.16269 299.235067 L 512.286567 299.737522 L 512.410443 299.235067 L 513.277576 302.752255 L 513.401452 302.2498 L 513.649204 303.254711 L 513.77308 302.752255 L 514.020832 303.757166 L 514.268585 302.752255 L 514.392461 303.254711 L 514.516337 302.752255 L 514.640213 303.254711 L 514.764089 302.752255 L 515.011841 303.757166 L 515.259594 302.752255 L 515.38347 303.254711 L 515.631222 302.2498 L 515.755098 302.752255 L 516.00285 301.747344 L 516.126726 302.2498 L 516.498355 300.742433 L 516.869983 302.2498 L 517.117735 301.244889 L 517.241612 301.747344 L 517.365488 301.244889 L 517.61324 302.2498 L 517.737116 301.747344 L 517.984868 302.752255 L 518.108744 302.2498 L 518.728125 304.762077 L 518.852001 304.259622 L 518.975877 304.762077 L 519.347506 303.254711 L 519.84301 305.264533 L 519.966886 304.762077 L 520.338515 306.269444 L 520.710143 304.762077 L 521.081771 306.269444 L 521.205647 305.766988 L 521.577276 307.274355 L 521.701152 306.771899 L 521.948904 307.77681 L 522.320533 306.269444 L 522.816037 308.279266 L 522.939913 307.77681 L 523.063789 308.279266 L 523.311542 307.274355 L 523.559294 308.279266 L 523.807046 307.274355 L 524.054798 308.279266 L 524.178674 307.77681 L 524.550303 309.284177 L 524.674179 308.781721 L 524.921931 309.786632 L 525.045807 309.284177 L 525.417436 310.791543 L 525.665188 309.786632 L 526.036816 311.293999 L 526.408445 309.786632 L 526.532321 310.289088 L 526.656197 309.786632 L 526.780073 310.289088 L 527.275578 308.279266 L 527.771082 310.289088 L 527.894958 309.786632 L 528.018834 310.289088 L 528.14271 309.786632 L 528.390463 310.791543 L 528.762091 309.284177 L 529.009843 310.289088 L 529.257596 309.284177 L 529.381472 309.786632 L 529.505348 309.284177 L 529.7531 310.289088 L 530.000852 309.284177 L 530.372481 310.791543 L 530.620233 309.786632 L 530.744109 310.289088 L 530.991861 309.284177 L 531.611242 311.796454 L 531.858994 310.791543 L 532.106746 311.796454 L 532.230623 311.293999 L 532.354499 311.796454 L 532.602251 310.791543 L 532.850003 311.796454 L 532.973879 311.293999 L 533.221631 312.29891 L 533.345508 311.796454 L 533.841012 313.806276 L 533.964888 313.303821 L 534.21264 314.308732 L 534.336517 313.806276 L 534.584269 314.811187 L 535.079773 312.801365 L 535.327526 313.806276 L 535.451402 313.303821 L 536.070782 315.816098 L 536.442411 314.308732 L 536.937915 316.318553 L 537.061791 315.816098 L 537.309544 316.821009 L 537.43342 316.318553 L 537.681172 317.323464 L 537.928924 316.318553 L 538.300553 317.82592 L 538.548305 316.821009 L 538.672181 317.323464 L 538.919933 316.318553 L 539.043809 316.821009 L 539.291562 315.816098 L 539.539314 316.821009 L 539.787066 315.816098 L 540.158694 317.323464 L 540.282571 316.821009 L 540.778075 318.830831 L 540.901951 318.328375 L 541.025827 318.830831 L 541.27358 317.82592 L 541.521332 318.830831 L 541.645208 318.328375 L 541.769084 318.830831 L 541.89296 318.328375 L 542.016836 318.830831 L 542.512341 316.821009 L 543.379474 320.338197 L 543.751102 318.830831 L 543.998854 319.835742 L 544.246607 318.830831 L 544.370483 319.333286 L 545.237616 315.816098 L 545.485368 316.821009 L 545.609244 316.318553 L 545.980872 317.82592 L 546.104748 317.323464 L 546.228625 317.82592 L 546.352501 317.323464 L 546.476377 317.82592 L 546.600253 317.323464 L 546.848005 318.328375 L 547.219633 316.821009 L 547.34351 317.323464 L 547.591262 316.318553 L 547.839014 317.323464 L 548.210642 315.816098 L 548.458395 316.821009 L 548.582271 316.318553 L 548.830023 317.323464 L 548.953899 316.821009 L 549.201651 317.82592 L 549.325528 317.323464 L 549.449404 317.82592 L 549.944908 315.816098 L 550.812041 319.333286 L 550.935917 318.830831 L 551.059793 319.333286 L 551.183669 318.830831 L 551.307546 319.333286 L 551.555298 318.328375 L 551.679174 318.830831 L 551.926926 317.82592 L 552.298555 319.333286 L 552.546307 318.328375 L 552.670183 318.830831 L 552.794059 318.328375 L 552.917935 318.830831 L 553.041811 318.328375 L 553.165687 318.830831 L 553.661192 316.821009 L 553.908944 317.82592 L 554.03282 317.323464 L 554.404449 318.830831 L 554.776077 317.323464 L 555.147705 318.830831 L 555.271582 318.328375 L 555.767086 320.338197 L 555.890962 319.835742 L 556.014838 320.338197 L 556.386467 318.830831 L 556.881971 320.840653 L 557.377476 318.830831 L 557.501352 319.333286 L 557.749104 318.328375 L 557.996856 319.333286 L 558.120732 318.830831 L 558.492361 320.338197 L 558.616237 319.835742 L 558.740113 320.338197 L 558.987865 319.333286 L 559.111741 319.835742 L 559.235618 319.333286 L 559.359494 319.835742 L 559.48337 319.333286 L 559.607246 319.835742 L 559.978874 318.328375 L 560.10275 318.830831 L 560.350503 317.82592 L 560.722131 319.333286 L 560.846007 318.830831 L 560.969883 319.333286 L 561.589264 316.821009 L 561.71314 317.323464 L 562.084768 315.816098 L 562.332521 316.821009 L 562.456397 316.318553 L 562.828025 317.82592 L 562.951901 317.323464 L 563.571282 319.835742 L 563.695158 319.333286 L 564.066786 320.840653 L 564.314539 319.835742 L 564.438415 320.338197 L 564.686167 319.333286 L 564.810043 319.835742 L 565.305548 317.82592 L 565.429424 318.328375 L 565.5533 317.82592 L 566.544309 321.845564 L 566.668185 321.343108 L 566.792061 321.845564 L 566.915937 321.343108 L 567.039813 321.845564 L 567.163689 321.343108 L 567.287566 321.845564 L 567.411442 321.343108 L 567.535318 321.845564 L 567.659194 321.343108 L 567.78307 321.845564 L 567.906946 321.343108 L 568.030822 321.845564 L 568.278575 320.840653 L 568.526327 321.845564 L 569.021831 319.835742 L 569.39346 321.343108 L 570.01284 318.830831 L 570.136716 319.333286 L 570.384469 318.328375 L 570.632221 319.333286 L 570.756097 318.830831 L 571.003849 319.835742 L 571.375478 318.328375 L 571.62323 319.333286 L 571.994858 317.82592 L 572.242611 318.830831 L 572.490363 317.82592 L 572.738115 318.830831 L 572.861991 318.328375 L 573.109743 319.333286 L 573.23362 318.830831 L 573.357496 319.333286 L 573.605248 318.328375 L 573.729124 318.830831 L 573.976876 317.82592 L 574.472381 319.835742 L 574.844009 318.328375 L 574.967885 318.830831 L 575.091761 318.328375 L 575.339514 319.333286 L 575.835018 317.323464 L 576.206646 318.830831 L 576.330523 318.328375 L 576.578275 319.333286 L 576.702151 318.830831 L 576.826027 319.333286 L 577.321532 317.323464 L 578.188664 320.840653 L 578.312541 320.338197 L 578.436417 320.840653 L 579.055797 318.328375 L 579.427426 319.835742 L 579.551302 319.333286 L 579.92293 320.840653 L 580.170682 319.835742 L 580.294559 320.338197 L 581.657196 314.811187 L 581.904948 315.816098 L 582.1527 314.811187 L 582.400453 315.816098 L 582.648205 314.811187 L 582.772081 315.313643 L 583.019833 314.308732 L 583.391462 315.816098 L 583.886966 313.806276 L 584.258595 315.313643 L 584.382471 314.811187 L 584.630223 315.816098 L 585.001851 314.308732 L 585.868984 317.82592 L 585.99286 317.323464 L 586.116736 317.82592 L 586.240613 317.323464 L 586.364489 317.82592 L 586.364489 317.82592 " style="fill:none;opacity:0.9;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_12"> <path clip-path="url(#p91285e6896)" d="M 79.091761 322.419799 L 79.339514 323.281151 L 79.46339 322.850475 L 79.587266 323.281151 L 79.958894 321.989123 L 80.206646 322.850475 L 80.454399 321.989123 L 80.578275 322.419799 L 80.702151 321.989123 L 80.826027 322.419799 L 81.073779 321.558446 L 81.197655 321.989123 L 81.321532 321.558446 L 81.445408 321.989123 L 81.569284 321.558446 L 81.817036 322.419799 L 81.940912 321.989123 L 82.064788 322.419799 L 82.188664 321.989123 L 82.312541 322.419799 L 82.560293 321.558446 L 82.808045 322.419799 L 82.931921 321.989123 L 83.30355 323.281151 L 83.551302 322.419799 L 84.046806 324.142503 L 84.294559 323.281151 L 84.418435 323.711827 L 84.666187 322.850475 L 84.913939 323.711827 L 85.161691 322.850475 L 85.285568 323.281151 L 85.409444 322.850475 L 85.53332 323.281151 L 86.028824 321.558446 L 86.1527 321.989123 L 87.267586 318.113037 L 87.391462 318.543714 L 87.639214 317.682361 L 88.010842 318.97439 L 88.134718 318.543714 L 88.382471 319.405066 L 88.630223 318.543714 L 88.877975 319.405066 L 89.125727 318.543714 L 89.99286 321.558446 L 90.612241 319.405066 L 90.736117 319.835742 L 91.107745 318.543714 L 91.231622 318.97439 L 91.355498 318.543714 L 91.479374 318.97439 L 91.851002 317.682361 L 91.974878 318.113037 L 92.098754 317.682361 L 92.22263 318.113037 L 92.346507 317.682361 L 92.594259 318.543714 L 92.965887 317.251685 L 93.213639 318.113037 L 94.080772 315.098304 L 94.204648 315.528981 L 94.824029 313.3756 L 94.947905 313.806276 L 95.319534 312.514248 L 95.567286 313.3756 L 95.691162 312.944924 L 95.815038 313.3756 L 95.938914 312.944924 L 96.06279 313.3756 L 96.434419 312.083571 L 96.682171 312.944924 L 97.549304 309.930191 L 97.920932 311.222219 L 98.168684 310.360867 L 98.292561 310.791543 L 98.540313 309.930191 L 98.788065 310.791543 L 98.911941 310.360867 L 99.035817 310.791543 L 99.407446 309.499515 L 99.531322 309.930191 L 100.150702 307.77681 L 100.274579 308.207486 L 100.398455 307.77681 L 100.522331 308.207486 L 100.646207 307.77681 L 100.893959 308.638162 L 101.141711 307.77681 L 101.637216 309.499515 L 102.13272 307.77681 L 102.380473 308.638162 L 102.504349 308.207486 L 102.628225 308.638162 L 102.752101 308.207486 L 103.123729 309.499515 L 103.247606 309.068839 L 103.371482 309.499515 L 103.619234 308.638162 L 103.74311 309.068839 L 103.866986 308.638162 L 103.990862 309.068839 L 104.114738 308.638162 L 104.238615 309.068839 L 104.486367 308.207486 L 104.981871 309.930191 L 105.3535 308.638162 L 105.601252 309.499515 L 105.849004 308.638162 L 106.096756 309.499515 L 106.468385 308.207486 L 106.592261 308.638162 L 106.840013 307.77681 L 107.335518 309.499515 L 107.954898 307.346134 L 108.20265 308.207486 L 108.574279 306.915458 L 108.698155 307.346134 L 108.822031 306.915458 L 108.945907 307.346134 L 109.069783 306.915458 L 109.193659 307.346134 L 109.317536 306.915458 L 109.565288 307.77681 L 109.81304 306.915458 L 110.060792 307.77681 L 110.804049 305.192753 L 110.927925 305.623429 L 111.175677 304.762077 L 111.547306 306.054106 L 112.290563 303.470049 L 112.414439 303.900725 L 112.538315 303.470049 L 112.662191 303.900725 L 113.033819 302.608696 L 113.281572 303.470049 L 113.405448 303.039373 L 113.529324 303.470049 L 114.024828 301.747344 L 114.396457 303.039373 L 115.015837 300.885992 L 115.26359 301.747344 L 116.006846 299.163287 L 116.254599 300.02464 L 116.502351 299.163287 L 116.626227 299.593964 L 116.997855 298.301935 L 117.121731 298.732611 L 117.49336 297.440583 L 117.741112 298.301935 L 117.864988 297.871259 L 117.988864 298.301935 L 118.236617 297.440583 L 118.484369 298.301935 L 119.475378 294.856526 L 120.094758 297.009907 L 120.218634 296.579231 L 120.590263 297.871259 L 120.838015 297.009907 L 120.961891 297.440583 L 121.085767 297.009907 L 121.209643 297.440583 L 122.324529 293.564498 L 122.572281 294.42585 L 122.696157 293.995174 L 122.820033 294.42585 L 122.943909 293.995174 L 123.191661 294.856526 L 123.934918 292.272469 L 124.18267 293.133821 L 124.306547 292.703145 L 124.554299 293.564498 L 125.049803 291.841793 L 125.297556 292.703145 L 125.545308 291.841793 L 125.669184 292.272469 L 125.916936 291.411117 L 126.164688 292.272469 L 126.412441 291.411117 L 126.536317 291.841793 L 126.660193 291.411117 L 126.907945 292.272469 L 127.155697 291.411117 L 127.279574 291.841793 L 127.898954 289.688412 L 128.02283 290.119089 L 128.146706 289.688412 L 128.270583 290.119089 L 128.394459 289.688412 L 128.518335 290.119089 L 128.766087 289.257736 L 129.013839 290.119089 L 130.252601 285.812327 L 130.624229 287.104356 L 130.748105 286.673679 L 130.995857 287.535032 L 131.367486 286.243003 L 131.491362 286.673679 L 131.86299 285.381651 L 132.110742 286.243003 L 132.482371 284.950975 L 132.730123 285.812327 L 132.853999 285.381651 L 133.101751 286.243003 L 133.845008 283.658946 L 133.968884 284.089623 L 134.09276 283.658946 L 134.216636 284.089623 L 134.588265 282.797594 L 134.959893 284.089623 L 135.579274 281.936242 L 135.70315 282.366918 L 135.827026 281.936242 L 135.950902 282.366918 L 136.322531 281.07489 L 136.446407 281.505566 L 136.694159 280.644213 L 136.941911 281.505566 L 137.065787 281.07489 L 137.31354 281.936242 L 137.437416 281.505566 L 137.561292 281.936242 L 137.685168 281.505566 L 137.809044 281.936242 L 138.056796 281.07489 L 138.428425 282.366918 L 138.800053 281.07489 L 139.047805 281.936242 L 139.171681 281.505566 L 139.295558 281.936242 L 139.667186 280.644213 L 139.914938 281.505566 L 140.038814 281.07489 L 140.16269 281.505566 L 140.658195 279.782861 L 140.782071 280.213537 L 141.029823 279.352185 L 141.401452 280.644213 L 141.649204 279.782861 L 141.77308 280.213537 L 142.020832 279.352185 L 142.144708 279.782861 L 142.516337 278.490833 L 142.640213 278.921509 L 142.887965 278.060157 L 143.631222 280.644213 L 143.755098 280.213537 L 143.878974 280.644213 L 144.00285 280.213537 L 144.498355 281.936242 L 144.746107 281.07489 L 144.869983 281.505566 L 144.993859 281.07489 L 145.117735 281.505566 L 145.365488 280.644213 L 145.61324 281.505566 L 145.737116 281.07489 L 145.860992 281.505566 L 145.984868 281.07489 L 146.108744 281.505566 L 146.232621 281.07489 L 146.356497 281.505566 L 146.728125 280.213537 L 146.852001 280.644213 L 146.975877 280.213537 L 147.099753 280.644213 L 147.719134 278.490833 L 147.84301 278.921509 L 147.966886 278.490833 L 148.214638 279.352185 L 148.338515 278.921509 L 148.462391 279.352185 L 148.586267 278.921509 L 148.710143 279.352185 L 148.834019 278.921509 L 148.957895 279.352185 L 149.205647 278.490833 L 149.329524 278.921509 L 149.701152 277.629481 L 149.825028 278.060157 L 150.196656 276.768128 L 150.320533 277.198804 L 150.568285 276.337452 L 150.692161 276.768128 L 150.816037 276.337452 L 150.939913 276.768128 L 151.063789 276.337452 L 151.187665 276.768128 L 151.435418 275.906776 L 151.559294 276.337452 L 151.807046 275.4761 L 152.426427 277.629481 L 152.550303 277.198804 L 152.674179 277.629481 L 152.921931 276.768128 L 153.045807 277.198804 L 153.169683 276.768128 L 153.417436 277.629481 L 153.789064 276.337452 L 154.408445 278.490833 L 154.532321 278.060157 L 154.656197 278.490833 L 154.903949 277.629481 L 155.027825 278.060157 L 155.151701 277.629481 L 155.52333 278.921509 L 155.771082 278.060157 L 155.894958 278.490833 L 156.018834 278.060157 L 156.390463 279.352185 L 156.638215 278.490833 L 156.762091 278.921509 L 156.885967 278.490833 L 157.133719 279.352185 L 157.381472 278.490833 L 157.505348 278.921509 L 157.629224 278.490833 L 157.7531 278.921509 L 158.000852 278.060157 L 158.124728 278.490833 L 158.248605 278.060157 L 158.372481 278.490833 L 158.496357 278.060157 L 158.620233 278.490833 L 158.867985 277.629481 L 158.991861 278.060157 L 159.36349 276.768128 L 159.487366 277.198804 L 159.611242 276.768128 L 159.735118 277.198804 L 160.602251 274.184071 L 160.850003 275.045424 L 161.221631 273.753395 L 161.469384 274.614748 L 161.59326 274.184071 L 161.717136 274.614748 L 161.841012 274.184071 L 162.088764 275.045424 L 162.584269 273.322719 L 162.708145 273.753395 L 162.832021 273.322719 L 162.955897 273.753395 L 163.079773 273.322719 L 163.327526 274.184071 L 163.451402 273.753395 L 163.575278 274.184071 L 164.070782 272.461367 L 164.194658 272.892043 L 164.442411 272.030691 L 164.566287 272.461367 L 164.690163 272.030691 L 164.937915 272.892043 L 165.681172 270.307986 L 165.805048 270.738662 L 166.176676 269.446634 L 166.424429 270.307986 L 166.796057 269.015958 L 166.919933 269.446634 L 167.167685 268.585282 L 167.291562 269.015958 L 167.910942 266.862577 L 168.034818 267.293253 L 168.158694 266.862577 L 168.654199 268.585282 L 168.778075 268.154606 L 168.901951 268.585282 L 169.149703 267.723929 L 169.27358 268.154606 L 169.645208 266.862577 L 170.140712 268.585282 L 170.388465 267.723929 L 170.760093 269.015958 L 171.007845 268.154606 L 171.131721 268.585282 L 171.379474 267.723929 L 171.751102 269.015958 L 172.494359 266.431901 L 172.618235 266.862577 L 172.865987 266.001225 L 172.989863 266.431901 L 173.113739 266.001225 L 173.237616 266.431901 L 173.361492 266.001225 L 173.485368 266.431901 L 173.980872 264.709196 L 174.228625 265.570549 L 174.352501 265.139873 L 174.476377 265.570549 L 174.600253 265.139873 L 174.971881 266.431901 L 175.219633 265.570549 L 175.467386 266.431901 L 175.591262 266.001225 L 176.086766 267.723929 L 176.210642 267.293253 L 176.334519 267.723929 L 176.458395 267.293253 L 176.582271 267.723929 L 176.706147 267.293253 L 176.830023 267.723929 L 176.953899 267.293253 L 177.201651 268.154606 L 177.325528 267.723929 L 177.449404 268.154606 L 177.57328 267.723929 L 177.821032 268.585282 L 177.944908 268.154606 L 178.19266 269.015958 L 178.316537 268.585282 L 178.440413 269.015958 L 178.812041 267.723929 L 178.935917 268.154606 L 179.80305 265.139873 L 180.050802 266.001225 L 180.174678 265.570549 L 180.546307 266.862577 L 180.670183 266.431901 L 180.794059 266.862577 L 181.661192 263.847844 L 181.908944 264.709196 L 182.652201 262.12514 L 182.899953 262.986492 L 183.023829 262.555816 L 183.271582 263.417168 L 183.767086 261.694463 L 184.510343 264.27852 L 185.2536 261.694463 L 185.501352 262.555816 L 185.87298 261.263787 L 186.244609 262.555816 L 186.492361 261.694463 L 186.740113 262.555816 L 186.863989 262.12514 L 187.111741 262.986492 L 187.854998 260.402435 L 187.978874 260.833111 L 188.226626 259.971759 L 188.350503 260.402435 L 188.474379 259.971759 L 188.722131 260.833111 L 188.846007 260.402435 L 188.969883 260.833111 L 189.465388 259.110407 L 189.589264 259.541083 L 189.71314 259.110407 L 190.208644 260.833111 L 190.332521 260.402435 L 190.951901 262.555816 L 191.075777 262.12514 L 191.447406 263.417168 L 191.819034 262.12514 L 191.94291 262.555816 L 192.066786 262.12514 L 192.314539 262.986492 L 192.438415 262.555816 L 192.686167 263.417168 L 192.810043 262.986492 L 192.933919 263.417168 L 193.057795 262.986492 L 193.181671 263.417168 L 193.924928 260.833111 L 194.048804 261.263787 L 194.17268 260.833111 L 194.544309 262.12514 L 194.668185 261.694463 L 194.792061 262.12514 L 195.163689 260.833111 L 195.287566 261.263787 L 195.411442 260.833111 L 195.535318 261.263787 L 195.659194 260.833111 L 196.154698 262.555816 L 196.278575 262.12514 L 196.402451 262.555816 L 196.526327 262.12514 L 196.774079 262.986492 L 197.145707 261.694463 L 197.269584 262.12514 L 197.39346 261.694463 L 197.641212 262.555816 L 197.765088 262.12514 L 197.888964 262.555816 L 198.632221 259.971759 L 198.756097 260.402435 L 199.003849 259.541083 L 199.375478 260.833111 L 199.499354 260.402435 L 199.62323 260.833111 L 199.994858 259.541083 L 200.366487 260.833111 L 200.490363 260.402435 L 200.614239 260.833111 L 201.109743 259.110407 L 201.23362 259.541083 L 201.357496 259.110407 L 201.605248 259.971759 L 201.729124 259.541083 L 201.853 259.971759 L 202.224628 258.679731 L 202.596257 259.971759 L 203.215637 257.818378 L 203.46339 258.679731 L 203.711142 257.818378 L 204.454399 260.402435 L 204.702151 259.541083 L 205.073779 260.833111 L 205.197655 260.402435 L 205.445408 261.263787 L 205.817036 259.971759 L 206.064788 260.833111 L 206.188664 260.402435 L 206.312541 260.833111 L 206.560293 259.971759 L 206.931921 261.263787 L 207.179673 260.402435 L 207.427426 261.263787 L 207.675178 260.402435 L 207.799054 260.833111 L 207.92293 260.402435 L 208.046806 260.833111 L 208.170682 260.402435 L 208.790063 262.555816 L 209.037815 261.694463 L 209.161691 262.12514 L 209.409444 261.263787 L 209.53332 261.694463 L 209.657196 261.263787 L 209.781072 261.694463 L 210.1527 260.402435 L 210.276577 260.833111 L 210.772081 259.110407 L 211.639214 262.12514 L 212.382471 259.541083 L 212.506347 259.971759 L 212.877975 258.679731 L 213.001851 259.110407 L 213.125727 258.679731 L 213.249604 259.110407 L 213.497356 258.249054 L 213.621232 258.679731 L 213.99286 257.387702 L 214.364489 258.679731 L 214.488365 258.249054 L 214.736117 259.110407 L 215.479374 256.52635 L 215.60325 256.957026 L 215.851002 256.095674 L 216.22263 257.387702 L 216.470383 256.52635 L 216.594259 256.957026 L 216.718135 256.52635 L 216.965887 257.387702 L 217.461392 255.664998 L 217.585268 256.095674 L 217.956896 254.803645 L 218.080772 255.234321 L 218.452401 253.942293 L 218.700153 254.803645 L 218.824029 254.372969 L 218.947905 254.803645 L 219.071781 254.372969 L 219.567286 256.095674 L 219.815038 255.234321 L 220.06279 256.095674 L 220.186666 255.664998 L 220.310543 256.095674 L 220.558295 255.234321 L 220.929923 256.52635 L 221.053799 256.095674 L 221.177675 256.52635 L 221.301552 256.095674 L 221.797056 257.818378 L 222.168684 256.52635 L 222.416437 257.387702 L 222.540313 256.957026 L 222.664189 257.387702 L 223.159693 255.664998 L 223.407446 256.52635 L 223.531322 256.095674 L 223.779074 256.957026 L 224.026826 256.095674 L 224.150702 256.52635 L 224.522331 255.234321 L 224.646207 255.664998 L 224.893959 254.803645 L 225.017835 255.234321 L 225.141711 254.803645 L 225.265588 255.234321 L 225.637216 253.942293 L 225.761092 254.372969 L 225.884968 253.942293 L 226.008844 254.372969 L 226.13272 253.942293 L 226.256597 254.372969 L 226.628225 253.080941 L 226.875977 253.942293 L 226.999853 253.511617 L 227.123729 253.942293 L 227.247606 253.511617 L 227.371482 253.942293 L 227.990862 251.788912 L 228.114738 252.219588 L 228.362491 251.358236 L 228.486367 251.788912 L 229.105747 249.635532 L 229.601252 251.358236 L 229.725128 250.92756 L 229.849004 251.358236 L 229.97288 250.92756 L 230.096756 251.358236 L 230.716137 249.204856 L 230.840013 249.635532 L 230.963889 249.204856 L 231.087765 249.635532 L 231.211641 249.204856 L 231.707146 250.92756 L 231.831022 250.496884 L 232.078774 251.358236 L 232.326527 250.496884 L 232.450403 250.92756 L 232.822031 249.635532 L 232.945907 250.066208 L 233.317536 248.774179 L 233.565288 249.635532 L 233.936916 248.343503 L 234.184668 249.204856 L 234.308545 248.774179 L 234.556297 249.635532 L 234.680173 249.204856 L 234.804049 249.635532 L 235.051801 248.774179 L 235.299554 249.635532 L 235.671182 248.343503 L 235.795058 248.774179 L 235.918934 248.343503 L 236.538315 250.496884 L 236.662191 250.066208 L 236.786067 250.496884 L 237.777076 247.051475 L 237.900952 247.482151 L 238.891961 244.036742 L 239.015837 244.467418 L 239.139713 244.036742 L 239.635218 245.759446 L 239.759094 245.32877 L 239.88297 245.759446 L 240.130722 244.898094 L 240.750103 247.051475 L 240.873979 246.620799 L 241.121731 247.482151 L 241.864988 244.898094 L 241.988864 245.32877 L 242.11274 244.898094 L 242.360493 245.759446 L 242.732121 244.467418 L 242.855997 244.898094 L 243.351502 243.17539 L 243.599254 244.036742 L 243.970882 242.744713 L 244.094758 243.17539 L 244.590263 241.452685 L 245.085767 243.17539 L 245.33352 242.314037 L 245.457396 242.744713 L 245.705148 241.883361 L 245.9529 242.744713 L 246.572281 240.591333 L 246.696157 241.022009 L 246.943909 240.160657 L 247.315538 241.452685 L 247.56329 240.591333 L 247.687166 241.022009 L 248.430423 238.437952 L 248.554299 238.868628 L 248.678175 238.437952 L 248.925927 239.299304 L 249.173679 238.437952 L 249.297556 238.868628 L 249.421432 238.437952 L 249.545308 238.868628 L 249.916936 237.5766 L 250.288565 238.868628 L 250.660193 237.5766 L 250.784069 238.007276 L 250.907945 237.5766 L 251.155697 238.437952 L 252.02283 235.423219 L 252.270583 236.284571 L 252.394459 235.853895 L 252.518335 236.284571 L 252.889963 234.992543 L 253.013839 235.423219 L 253.385468 234.131191 L 253.880972 235.853895 L 254.624229 233.269838 L 254.748105 233.700515 L 254.995857 232.839162 L 255.24361 233.700515 L 255.491362 232.839162 L 255.615238 233.269838 L 256.110742 231.547134 L 256.234619 231.97781 L 256.730123 230.255106 L 256.853999 230.685782 L 257.101751 229.824429 L 257.47338 231.116458 L 257.597256 230.685782 L 257.721132 231.116458 L 257.845008 230.685782 L 258.216636 231.97781 L 258.588265 230.685782 L 258.712141 231.116458 L 258.836017 230.685782 L 258.959893 231.116458 L 259.207645 230.255106 L 259.331522 230.685782 L 259.70315 229.393753 L 259.827026 229.824429 L 259.950902 229.393753 L 260.198654 230.255106 L 260.322531 229.824429 L 260.694159 231.116458 L 260.818035 230.685782 L 261.189663 231.97781 L 261.809044 229.824429 L 261.93292 230.255106 L 262.056796 229.824429 L 262.180672 230.255106 L 262.428425 229.393753 L 262.676177 230.255106 L 263.047805 228.963077 L 263.295558 229.824429 L 263.419434 229.393753 L 263.54331 229.824429 L 264.410443 226.809696 L 264.534319 227.240373 L 265.029823 225.517668 L 265.401452 226.809696 L 265.649204 225.948344 L 265.77308 226.37902 L 265.896956 225.948344 L 266.020832 226.37902 L 266.887965 223.364287 L 267.135717 224.22564 L 267.38347 223.364287 L 268.00285 225.517668 L 268.498355 223.794963 L 268.746107 224.656316 L 268.869983 224.22564 L 269.117735 225.086992 L 269.489364 223.794963 L 269.61324 224.22564 L 269.737116 223.794963 L 269.984868 224.656316 L 270.108744 224.22564 L 270.232621 224.656316 L 270.356497 224.22564 L 270.480373 224.656316 L 270.975877 222.933611 L 271.347506 224.22564 L 271.471382 223.794963 L 272.090762 225.948344 L 272.214638 225.517668 L 272.338515 225.948344 L 272.710143 224.656316 L 273.081771 225.948344 L 273.205647 225.517668 L 273.329524 225.948344 L 273.4534 225.517668 L 273.701152 226.37902 L 274.07278 225.086992 L 274.320533 225.948344 L 274.444409 225.517668 L 274.692161 226.37902 L 274.939913 225.517668 L 275.311542 226.809696 L 275.559294 225.948344 L 275.68317 226.37902 L 275.930922 225.517668 L 276.054798 225.948344 L 276.178674 225.517668 L 276.798055 227.671049 L 276.921931 227.240373 L 277.541312 229.393753 L 277.665188 228.963077 L 277.789064 229.393753 L 278.284569 227.671049 L 278.408445 228.101725 L 278.780073 226.809696 L 278.903949 227.240373 L 279.151701 226.37902 L 279.275578 226.809696 L 279.52333 225.948344 L 279.647206 226.37902 L 279.771082 225.948344 L 279.894958 226.37902 L 280.390463 224.656316 L 280.885967 226.37902 L 281.009843 225.948344 L 281.133719 226.37902 L 282.000852 223.364287 L 282.124728 223.794963 L 282.620233 222.072259 L 282.744109 222.502935 L 282.867985 222.072259 L 283.115737 222.933611 L 283.487366 221.641583 L 283.611242 222.072259 L 283.735118 221.641583 L 283.858994 222.072259 L 284.106746 221.210907 L 284.230623 221.641583 L 284.478375 220.780231 L 284.602251 221.210907 L 284.973879 219.918878 L 285.097755 220.349554 L 285.59326 218.62685 L 285.964888 219.918878 L 286.21264 219.057526 L 286.336517 219.488202 L 286.460393 219.057526 L 286.708145 219.918878 L 286.832021 219.488202 L 287.079773 220.349554 L 287.451402 219.057526 L 287.699154 219.918878 L 287.82303 219.488202 L 287.946906 219.918878 L 288.318535 218.62685 L 288.690163 219.918878 L 289.061791 218.62685 L 289.185667 219.057526 L 289.309544 218.62685 L 289.557296 219.488202 L 289.805048 218.62685 L 289.928924 219.057526 L 290.424429 217.334821 L 290.548305 217.765498 L 290.672181 217.334821 L 290.919933 218.196174 L 291.043809 217.765498 L 291.167685 218.196174 L 291.415438 217.334821 L 292.158694 219.918878 L 292.282571 219.488202 L 292.530323 220.349554 L 292.654199 219.918878 L 292.901951 220.780231 L 293.025827 220.349554 L 293.27358 221.210907 L 293.89296 219.057526 L 294.140712 219.918878 L 294.264589 219.488202 L 294.388465 219.918878 L 294.512341 219.488202 L 294.760093 220.349554 L 295.007845 219.488202 L 295.255598 220.349554 L 297.237616 213.458736 L 297.361492 213.889412 L 297.73312 212.597384 L 297.856996 213.02806 L 298.228625 211.736032 L 298.476377 212.597384 L 298.848005 211.305355 L 299.34351 213.02806 L 299.715138 211.736032 L 300.086766 213.02806 L 300.706147 210.874679 L 300.953899 211.736032 L 301.201651 210.874679 L 301.325528 211.305355 L 301.821032 209.582651 L 301.944908 210.013327 L 302.19266 209.151975 L 302.440413 210.013327 L 302.812041 208.721299 L 303.059793 209.582651 L 303.555298 207.859946 L 303.679174 208.290623 L 303.80305 207.859946 L 303.926926 208.290623 L 304.174678 207.42927 L 304.422431 208.290623 L 304.546307 207.859946 L 305.041811 209.582651 L 305.165687 209.151975 L 305.537316 210.444003 L 306.03282 208.721299 L 306.156696 209.151975 L 306.652201 207.42927 L 307.023829 208.721299 L 307.271582 207.859946 L 307.395458 208.290623 L 307.767086 206.998594 L 307.890962 207.42927 L 308.262591 206.137242 L 308.634219 207.42927 L 308.881971 206.567918 L 309.129723 207.42927 L 309.2536 206.998594 L 309.377476 207.42927 L 309.501352 206.998594 L 310.120732 209.151975 L 310.863989 206.567918 L 311.359494 208.290623 L 311.607246 207.42927 L 311.731122 207.859946 L 312.10275 206.567918 L 312.226626 206.998594 L 312.350503 206.567918 L 312.598255 207.42927 L 312.722131 206.998594 L 313.093759 208.290623 L 313.217635 207.859946 L 313.341512 208.290623 L 313.71314 206.998594 L 313.837016 207.42927 L 314.084768 206.567918 L 314.208644 206.998594 L 314.456397 206.137242 L 314.580273 206.567918 L 315.199653 204.414537 L 315.32353 204.845213 L 315.571282 203.983861 L 315.695158 204.414537 L 316.190662 202.691833 L 316.562291 203.983861 L 316.810043 203.122509 L 316.933919 203.553185 L 317.181671 202.691833 L 317.5533 203.983861 L 318.17268 201.83048 L 318.420433 202.691833 L 319.163689 200.107776 L 319.287566 200.538452 L 319.78307 198.815748 L 320.030822 199.6771 L 320.278575 198.815748 L 320.402451 199.246424 L 320.526327 198.815748 L 320.774079 199.6771 L 321.145707 198.385071 L 321.39346 199.246424 L 321.517336 198.815748 L 321.641212 199.246424 L 322.01284 197.954395 L 322.136716 198.385071 L 322.756097 196.231691 L 323.251602 197.954395 L 323.375478 197.523719 L 323.499354 197.954395 L 323.747106 197.093043 L 324.118734 198.385071 L 324.242611 197.954395 L 324.366487 198.385071 L 324.490363 197.954395 L 324.614239 198.385071 L 324.738115 197.954395 L 325.109743 199.246424 L 325.23362 198.815748 L 325.357496 199.246424 L 326.967885 193.647634 L 327.091761 194.07831 L 327.215637 193.647634 L 327.339514 194.07831 L 327.587266 193.216958 L 327.711142 193.647634 L 327.958894 192.786282 L 328.08277 193.216958 L 328.206646 192.786282 L 328.702151 194.508986 L 328.949903 193.647634 L 329.073779 194.07831 L 329.321532 193.216958 L 329.569284 194.07831 L 329.69316 193.647634 L 329.940912 194.508986 L 330.312541 193.216958 L 330.684169 194.508986 L 330.808045 194.07831 L 331.179673 195.370338 L 331.30355 194.939662 L 331.427426 195.370338 L 331.675178 194.508986 L 331.799054 194.939662 L 331.92293 194.508986 L 332.170682 195.370338 L 332.294559 194.939662 L 332.418435 195.370338 L 332.790063 194.07831 L 332.913939 194.508986 L 333.037815 194.07831 L 333.161691 194.508986 L 333.657196 192.786282 L 333.781072 193.216958 L 333.904948 192.786282 L 334.028824 193.216958 L 334.1527 192.786282 L 334.276577 193.216958 L 334.772081 191.494253 L 334.895957 191.924929 L 335.267586 190.632901 L 335.391462 191.063577 L 335.639214 190.202225 L 335.76309 190.632901 L 335.886966 190.202225 L 336.134718 191.063577 L 336.258595 190.632901 L 336.506347 191.494253 L 336.877975 190.202225 L 337.001851 190.632901 L 337.497356 188.910196 L 337.621232 189.340873 L 338.116736 187.618168 L 338.240613 188.048844 L 338.364489 187.618168 L 338.859993 189.340873 L 338.983869 188.910196 L 339.355498 190.202225 L 339.479374 189.771549 L 339.60325 190.202225 L 339.727126 189.771549 L 339.974878 190.632901 L 340.594259 188.47952 L 340.718135 188.910196 L 340.842011 188.47952 L 340.965887 188.910196 L 341.089763 188.47952 L 341.213639 188.910196 L 341.337516 188.47952 L 341.461392 188.910196 L 341.709144 188.048844 L 341.83302 188.47952 L 342.328525 186.756816 L 342.576277 187.618168 L 342.700153 187.187492 L 342.824029 187.618168 L 343.815038 184.172759 L 343.938914 184.603435 L 344.310543 183.311407 L 344.558295 184.172759 L 344.682171 183.742083 L 344.806047 184.172759 L 344.929923 183.742083 L 345.67318 186.32614 L 345.797056 185.895463 L 345.920932 186.32614 L 346.292561 185.034111 L 346.540313 185.895463 L 346.911941 184.603435 L 347.28357 185.895463 L 347.407446 185.464787 L 347.531322 185.895463 L 347.779074 185.034111 L 347.90295 185.464787 L 348.026826 185.034111 L 348.150702 185.464787 L 348.522331 184.172759 L 348.646207 184.603435 L 348.770083 184.172759 L 349.141711 185.464787 L 349.265588 185.034111 L 349.51334 185.895463 L 349.637216 185.464787 L 349.761092 185.895463 L 350.008844 185.034111 L 350.13272 185.464787 L 350.256597 185.034111 L 350.504349 185.895463 L 350.628225 185.464787 L 350.752101 185.895463 L 350.999853 185.034111 L 351.123729 185.464787 L 351.247606 185.034111 L 351.371482 185.464787 L 351.495358 185.034111 L 351.619234 185.464787 L 351.990862 184.172759 L 352.114738 184.603435 L 352.362491 183.742083 L 352.486367 184.172759 L 352.610243 183.742083 L 352.981871 185.034111 L 353.105747 184.603435 L 353.3535 185.464787 L 353.601252 184.603435 L 353.849004 185.464787 L 353.97288 185.034111 L 354.096756 185.464787 L 354.220632 185.034111 L 354.468385 185.895463 L 354.592261 185.464787 L 354.716137 185.895463 L 354.840013 185.464787 L 354.963889 185.895463 L 355.087765 185.464787 L 355.335518 186.32614 L 355.459394 185.895463 L 355.58327 186.32614 L 355.831022 185.464787 L 356.326527 187.187492 L 356.450403 186.756816 L 356.822031 188.048844 L 357.193659 186.756816 L 357.317536 187.187492 L 357.689164 185.895463 L 357.81304 186.32614 L 357.936916 185.895463 L 358.308545 187.187492 L 358.927925 185.034111 L 359.299554 186.32614 L 359.42343 185.895463 L 359.671182 186.756816 L 360.290563 184.603435 L 360.414439 185.034111 L 360.538315 184.603435 L 360.662191 185.034111 L 360.909943 184.172759 L 361.033819 184.603435 L 361.157695 184.172759 L 361.281572 184.603435 L 361.405448 184.172759 L 362.148704 186.756816 L 362.396457 185.895463 L 363.015837 188.048844 L 363.511342 186.32614 L 364.130722 188.47952 L 364.502351 187.187492 L 364.626227 187.618168 L 364.750103 187.187492 L 364.997855 188.048844 L 365.245608 187.187492 L 365.369484 187.618168 L 365.49336 187.187492 L 365.617236 187.618168 L 366.236617 185.464787 L 366.360493 185.895463 L 366.484369 185.464787 L 366.608245 185.895463 L 367.351502 183.311407 L 367.475378 183.742083 L 367.599254 183.311407 L 367.847006 184.172759 L 367.970882 183.742083 L 368.094758 184.172759 L 368.714139 182.019378 L 368.838015 182.450054 L 369.085767 181.588702 L 369.209643 182.019378 L 369.33352 181.588702 L 370.200652 184.603435 L 370.324529 184.172759 L 370.448405 184.603435 L 370.572281 184.172759 L 370.696157 184.603435 L 370.943909 183.742083 L 371.191661 184.603435 L 371.315538 184.172759 L 371.56329 185.034111 L 371.811042 184.172759 L 371.934918 184.603435 L 372.18267 183.742083 L 372.306547 184.172759 L 372.554299 183.311407 L 372.678175 183.742083 L 372.802051 183.311407 L 372.925927 183.742083 L 373.049803 183.311407 L 373.421432 184.603435 L 373.545308 184.172759 L 374.040812 185.895463 L 374.164688 185.464787 L 374.412441 186.32614 L 374.907945 184.603435 L 375.031821 185.034111 L 375.155697 184.603435 L 375.279574 185.034111 L 375.40345 184.603435 L 375.527326 185.034111 L 375.898954 183.742083 L 376.02283 184.172759 L 376.146706 183.742083 L 376.394459 184.603435 L 376.766087 183.311407 L 376.889963 183.742083 L 377.137715 182.88073 L 377.261592 183.311407 L 377.385468 182.88073 L 377.63322 183.742083 L 377.880972 182.88073 L 378.128724 183.742083 L 378.376477 182.88073 L 378.500353 183.311407 L 378.995857 181.588702 L 379.119733 182.019378 L 379.24361 181.588702 L 379.367486 182.019378 L 379.615238 181.158026 L 379.739114 181.588702 L 379.86299 181.158026 L 380.110742 182.019378 L 380.234619 181.588702 L 380.358495 182.019378 L 380.482371 181.588702 L 380.853999 182.88073 L 380.977875 182.450054 L 381.225627 183.311407 L 381.47338 182.450054 L 381.597256 182.88073 L 381.721132 182.450054 L 381.968884 183.311407 L 383.207645 179.004645 L 383.331522 179.435321 L 383.455398 179.004645 L 383.70315 179.865998 L 383.827026 179.435321 L 384.074778 180.296674 L 384.198654 179.865998 L 384.446407 180.72735 L 384.941911 179.004645 L 385.93292 182.450054 L 386.180672 181.588702 L 386.304549 182.019378 L 386.428425 181.588702 L 386.552301 182.019378 L 387.047805 180.296674 L 387.295558 181.158026 L 387.791062 179.435321 L 388.038814 180.296674 L 388.16269 179.865998 L 388.534319 181.158026 L 388.658195 180.72735 L 388.782071 181.158026 L 388.905947 180.72735 L 389.029823 181.158026 L 389.277576 180.296674 L 389.896956 182.450054 L 390.020832 182.019378 L 390.144708 182.450054 L 390.392461 181.588702 L 390.887965 183.311407 L 391.259594 182.019378 L 391.38347 182.450054 L 391.507346 182.019378 L 391.755098 182.88073 L 392.993859 178.573969 L 393.489364 180.296674 L 393.61324 179.865998 L 393.860992 180.72735 L 393.984868 180.296674 L 394.108744 180.72735 L 394.356497 179.865998 L 394.480373 180.296674 L 394.604249 179.865998 L 394.728125 180.296674 L 394.852001 179.865998 L 394.975877 180.296674 L 395.099753 179.865998 L 395.223629 180.296674 L 395.347506 179.865998 L 395.471382 180.296674 L 396.090762 178.143293 L 396.586267 179.865998 L 396.710143 179.435321 L 396.957895 180.296674 L 397.329524 179.004645 L 397.4534 179.435321 L 397.577276 179.004645 L 397.825028 179.865998 L 397.948904 179.435321 L 398.07278 179.865998 L 398.320533 179.004645 L 398.568285 179.865998 L 398.939913 178.573969 L 399.063789 179.004645 L 399.311542 178.143293 L 399.435418 178.573969 L 399.68317 177.712617 L 400.302551 179.865998 L 400.550303 179.004645 L 400.674179 179.435321 L 400.921931 178.573969 L 401.169683 179.435321 L 401.417436 178.573969 L 401.665188 179.435321 L 402.036816 178.143293 L 402.160692 178.573969 L 402.408445 177.712617 L 402.532321 178.143293 L 402.780073 177.281941 L 402.903949 177.712617 L 403.027825 177.281941 L 403.399454 178.573969 L 403.647206 177.712617 L 403.771082 178.143293 L 403.894958 177.712617 L 404.018834 178.143293 L 404.638215 175.989912 L 404.762091 176.420588 L 404.885967 175.989912 L 405.009843 176.420588 L 405.133719 175.989912 L 405.257596 176.420588 L 405.7531 174.697884 L 405.876976 175.12856 L 406.372481 173.405855 L 406.496357 173.836532 L 407.36349 170.821799 L 407.487366 171.252475 L 408.106746 169.099094 L 408.354499 169.960446 L 408.726127 168.668418 L 408.850003 169.099094 L 408.973879 168.668418 L 409.221631 169.52977 L 409.59326 168.237742 L 409.717136 168.668418 L 410.336517 166.515037 L 410.460393 166.945713 L 411.079773 164.792333 L 411.203649 165.223009 L 411.82303 163.069628 L 412.070782 163.93098 L 412.194658 163.500304 L 412.318535 163.93098 L 412.937915 161.7776 L 413.061791 162.208276 L 413.309544 161.346924 L 413.681172 162.638952 L 413.928924 161.7776 L 414.424429 163.500304 L 414.548305 163.069628 L 414.672181 163.500304 L 415.291562 161.346924 L 415.415438 161.7776 L 415.539314 161.346924 L 415.910942 162.638952 L 416.034818 162.208276 L 416.282571 163.069628 L 416.530323 162.208276 L 416.778075 163.069628 L 417.025827 162.208276 L 417.149703 162.638952 L 417.27358 162.208276 L 417.397456 162.638952 L 418.016836 160.485571 L 418.140712 160.916248 L 418.264589 160.485571 L 418.760093 162.208276 L 419.131721 160.916248 L 419.255598 161.346924 L 419.50335 160.485571 L 419.627226 160.916248 L 420.12273 159.193543 L 420.246607 159.624219 L 420.370483 159.193543 L 420.494359 159.624219 L 420.865987 158.332191 L 420.989863 158.762867 L 421.113739 158.332191 L 421.361492 159.193543 L 421.609244 158.332191 L 421.980872 159.624219 L 422.104748 159.193543 L 422.228625 159.624219 L 422.352501 159.193543 L 422.476377 159.624219 L 422.724129 158.762867 L 422.971881 159.624219 L 423.095757 159.193543 L 423.219633 159.624219 L 423.467386 158.762867 L 423.591262 159.193543 L 423.715138 158.762867 L 423.839014 159.193543 L 424.334519 157.470838 L 424.458395 157.901515 L 424.706147 157.040162 L 424.830023 157.470838 L 424.953899 157.040162 L 425.077775 157.470838 L 425.201651 157.040162 L 425.325528 157.470838 L 425.57328 156.609486 L 425.821032 157.470838 L 427.059793 153.164077 L 427.307546 154.025429 L 427.431422 153.594753 L 427.555298 154.025429 L 427.679174 153.594753 L 428.050802 154.886782 L 428.174678 154.456105 L 428.298555 154.886782 L 428.422431 154.456105 L 428.670183 155.317458 L 428.794059 154.886782 L 428.917935 155.317458 L 429.289564 154.025429 L 429.41344 154.456105 L 429.537316 154.025429 L 429.661192 154.456105 L 430.280573 152.302725 L 430.528325 153.164077 L 430.776077 152.302725 L 430.899953 152.733401 L 431.395458 151.010696 L 431.519334 151.441372 L 431.64321 151.010696 L 431.767086 151.441372 L 432.262591 149.718668 L 432.510343 150.58002 L 432.758095 149.718668 L 432.881971 150.149344 L 433.377476 148.42664 L 433.501352 148.857316 L 433.625228 148.42664 L 433.87298 149.287992 L 434.120732 148.42664 L 434.492361 149.718668 L 434.863989 148.42664 L 435.235618 149.718668 L 435.48337 148.857316 L 435.978874 150.58002 L 436.226626 149.718668 L 436.474379 150.58002 L 436.598255 150.149344 L 436.722131 150.58002 L 437.589264 147.565287 L 437.71314 147.995963 L 437.837016 147.565287 L 437.960892 147.995963 L 438.332521 146.703935 L 438.456397 147.134611 L 439.447406 143.689202 L 439.571282 144.119878 L 439.695158 143.689202 L 439.819034 144.119878 L 440.190662 142.82785 L 440.314539 143.258526 L 441.181671 140.243793 L 441.305548 140.674469 L 441.5533 139.813117 L 441.801052 140.674469 L 442.17268 139.382441 L 442.296557 139.813117 L 443.163689 136.798384 L 443.287566 137.22906 L 443.659194 135.937032 L 443.78307 136.367708 L 443.906946 135.937032 L 444.030822 136.367708 L 444.278575 135.506355 L 444.526327 136.367708 L 444.650203 135.937032 L 445.021831 137.22906 L 445.145707 136.798384 L 445.269584 137.22906 L 445.765088 135.506355 L 445.888964 135.937032 L 446.260593 134.645003 L 446.632221 135.937032 L 447.251602 133.783651 L 447.375478 134.214327 L 447.499354 133.783651 L 447.62323 134.214327 L 447.747106 133.783651 L 447.870982 134.214327 L 448.118734 133.352975 L 448.366487 134.214327 L 448.985867 132.060946 L 449.109743 132.491622 L 449.729124 130.338242 L 449.853 130.768918 L 450.348505 129.046213 L 450.596257 129.907566 L 450.720133 129.47689 L 451.091761 130.768918 L 451.46339 129.47689 L 451.711142 130.338242 L 451.835018 129.907566 L 451.958894 130.338242 L 452.08277 129.907566 L 452.330523 130.768918 L 452.578275 129.907566 L 452.702151 130.338242 L 452.826027 129.907566 L 453.073779 130.768918 L 453.321532 129.907566 L 453.69316 131.199594 L 454.064788 129.907566 L 454.188664 130.338242 L 454.312541 129.907566 L 454.560293 130.768918 L 454.684169 130.338242 L 454.808045 130.768918 L 454.931921 130.338242 L 455.179673 131.199594 L 455.799054 129.046213 L 456.170682 130.338242 L 456.542311 129.046213 L 456.790063 129.907566 L 456.913939 129.47689 L 457.037815 129.907566 L 457.161691 129.47689 L 457.409444 130.338242 L 457.657196 129.47689 L 457.781072 129.907566 L 457.904948 129.47689 L 458.028824 129.907566 L 458.276577 129.046213 L 458.648205 130.338242 L 458.772081 129.907566 L 458.895957 130.338242 L 459.267586 129.046213 L 459.515338 129.907566 L 459.886966 128.615537 L 460.010842 129.046213 L 460.382471 127.754185 L 461.001851 129.907566 L 461.249604 129.046213 L 461.37348 129.47689 L 461.497356 129.046213 L 461.745108 129.907566 L 461.99286 129.046213 L 462.116736 129.47689 L 462.364489 128.615537 L 462.612241 129.47689 L 462.736117 129.046213 L 462.859993 129.47689 L 462.983869 129.046213 L 463.231622 129.907566 L 463.851002 127.754185 L 463.974878 128.184861 L 464.346507 126.892833 L 464.470383 127.323509 L 464.594259 126.892833 L 464.842011 127.754185 L 464.965887 127.323509 L 465.337516 128.615537 L 465.83302 126.892833 L 465.956896 127.323509 L 466.204648 126.462157 L 466.328525 126.892833 L 466.824029 125.170128 L 466.947905 125.600804 L 467.319534 124.308776 L 467.567286 125.170128 L 467.691162 124.739452 L 467.938914 125.600804 L 468.434419 123.8781 L 468.558295 124.308776 L 468.682171 123.8781 L 468.806047 124.308776 L 469.053799 123.447424 L 469.177675 123.8781 L 469.549304 122.586071 L 469.67318 123.016747 L 469.920932 122.155395 L 470.044808 122.586071 L 470.168684 122.155395 L 470.416437 123.016747 L 470.911941 121.294043 L 471.159693 122.155395 L 471.779074 120.002015 L 471.90295 120.432691 L 472.026826 120.002015 L 472.274579 120.863367 L 472.398455 120.432691 L 472.646207 121.294043 L 473.141711 119.571338 L 473.265588 120.002015 L 473.637216 118.709986 L 474.008844 120.002015 L 474.13272 119.571338 L 474.256597 120.002015 L 474.380473 119.571338 L 474.504349 120.002015 L 474.752101 119.140662 L 474.875977 119.571338 L 475.371482 117.848634 L 475.495358 118.27931 L 475.619234 117.848634 L 475.866986 118.709986 L 475.990862 118.27931 L 476.114738 118.709986 L 476.238615 118.27931 L 476.486367 119.140662 L 476.610243 118.709986 L 476.734119 119.140662 L 476.857995 118.709986 L 477.105747 119.571338 L 477.229624 119.140662 L 477.97288 121.724719 L 478.344509 120.432691 L 478.592261 121.294043 L 479.211641 119.140662 L 479.335518 119.571338 L 479.459394 119.140662 L 479.58327 119.571338 L 479.831022 118.709986 L 479.954898 119.140662 L 480.078774 118.709986 L 480.450403 120.002015 L 480.574279 119.571338 L 480.698155 120.002015 L 480.822031 119.571338 L 481.069783 120.432691 L 481.441412 119.140662 L 481.565288 119.571338 L 482.060792 117.848634 L 482.432421 119.140662 L 482.680173 118.27931 L 482.804049 118.709986 L 482.927925 118.27931 L 483.175677 119.140662 L 483.299554 118.709986 L 483.671182 120.002015 L 483.918934 119.140662 L 484.538315 121.294043 L 484.786067 120.432691 L 485.157695 121.724719 L 485.529324 120.432691 L 485.6532 120.863367 L 485.777076 120.432691 L 486.024828 121.294043 L 486.148704 120.863367 L 486.272581 121.294043 L 487.139713 118.27931 L 487.26359 118.709986 L 487.635218 117.417958 L 487.759094 117.848634 L 488.130722 116.556605 L 488.254599 116.987282 L 488.502351 116.125929 L 488.873979 117.417958 L 488.997855 116.987282 L 489.369484 118.27931 L 490.11274 115.695253 L 490.236617 116.125929 L 490.360493 115.695253 L 490.732121 116.987282 L 490.855997 116.556605 L 491.103749 117.417958 L 491.227625 116.987282 L 491.475378 117.848634 L 491.599254 117.417958 L 491.847006 118.27931 L 492.342511 116.556605 L 492.466387 116.987282 L 492.714139 116.125929 L 492.838015 116.556605 L 493.085767 115.695253 L 493.209643 116.125929 L 493.33352 115.695253 L 493.457396 116.125929 L 493.705148 115.264577 L 493.829024 115.695253 L 494.076776 114.833901 L 494.200652 115.264577 L 494.324529 114.833901 L 494.448405 115.264577 L 494.572281 114.833901 L 494.696157 115.264577 L 494.943909 114.403225 L 495.067785 114.833901 L 495.191661 114.403225 L 495.315538 114.833901 L 495.439414 114.403225 L 495.56329 114.833901 L 495.811042 113.972549 L 496.058794 114.833901 L 496.430423 113.541872 L 496.554299 113.972549 L 496.678175 113.541872 L 496.802051 113.972549 L 496.925927 113.541872 L 497.297556 114.833901 L 497.545308 113.972549 L 497.669184 114.403225 L 498.536317 111.388492 L 498.784069 112.249844 L 499.155697 110.957816 L 499.40345 111.819168 L 499.527326 111.388492 L 499.898954 112.68052 L 500.146706 111.819168 L 500.270583 112.249844 L 500.394459 111.819168 L 500.518335 112.249844 L 500.642211 111.819168 L 501.013839 113.111196 L 501.137715 112.68052 L 501.385468 113.541872 L 501.509344 113.111196 L 501.880972 114.403225 L 502.252601 113.111196 L 502.376477 113.541872 L 502.624229 112.68052 L 502.748105 113.111196 L 502.995857 112.249844 L 503.24361 113.111196 L 503.367486 112.68052 L 503.491362 113.111196 L 503.615238 112.68052 L 503.739114 113.111196 L 503.986866 112.249844 L 504.234619 113.111196 L 504.358495 112.68052 L 504.730123 113.972549 L 505.349504 111.819168 L 505.47338 112.249844 L 505.597256 111.819168 L 505.721132 112.249844 L 505.845008 111.819168 L 505.968884 112.249844 L 506.09276 111.819168 L 506.712141 113.972549 L 506.959893 113.111196 L 507.207645 113.972549 L 507.455398 113.111196 L 507.579274 113.541872 L 507.950902 112.249844 L 508.074778 112.68052 L 508.198654 112.249844 L 508.446407 113.111196 L 508.570283 112.68052 L 508.818035 113.541872 L 508.941911 113.111196 L 509.065787 113.541872 L 509.31354 112.68052 L 509.437416 113.111196 L 509.561292 112.68052 L 509.685168 113.111196 L 509.93292 112.249844 L 510.056796 112.68052 L 510.304549 111.819168 L 510.552301 112.68052 L 510.676177 112.249844 L 510.800053 112.68052 L 511.171681 111.388492 L 511.295558 111.819168 L 511.54331 110.957816 L 511.667186 111.388492 L 511.791062 110.957816 L 512.038814 111.819168 L 512.16269 111.388492 L 512.286567 111.819168 L 512.905947 109.665787 L 513.029823 110.096463 L 513.525328 108.373759 L 513.77308 109.235111 L 514.144708 107.943083 L 514.640213 109.665787 L 514.764089 109.235111 L 514.887965 109.665787 L 515.011841 109.235111 L 515.135717 109.665787 L 515.507346 108.373759 L 516.250603 110.957816 L 516.498355 110.096463 L 516.622231 110.52714 L 516.746107 110.096463 L 516.993859 110.957816 L 517.117735 110.52714 L 517.984868 113.541872 L 518.356497 112.249844 L 518.480373 112.68052 L 518.604249 112.249844 L 518.975877 113.541872 L 519.223629 112.68052 L 519.347506 113.111196 L 519.84301 111.388492 L 519.966886 111.819168 L 520.586267 109.665787 L 520.710143 110.096463 L 520.957895 109.235111 L 521.081771 109.665787 L 521.205647 109.235111 L 521.329524 109.665787 L 521.4534 109.235111 L 521.825028 110.52714 L 521.948904 110.096463 L 522.196656 110.957816 L 522.320533 110.52714 L 522.444409 110.957816 L 522.568285 110.52714 L 522.692161 110.957816 L 522.816037 110.52714 L 523.063789 111.388492 L 523.435418 110.096463 L 523.807046 111.388492 L 523.930922 110.957816 L 524.054798 111.388492 L 524.178674 110.957816 L 524.302551 111.388492 L 524.426427 110.957816 L 525.29356 113.972549 L 525.541312 113.111196 L 525.665188 113.541872 L 525.789064 113.111196 L 526.160692 114.403225 L 526.284569 113.972549 L 526.408445 114.403225 L 526.656197 113.541872 L 527.027825 114.833901 L 527.275578 113.972549 L 527.399454 114.403225 L 527.52333 113.972549 L 527.647206 114.403225 L 527.771082 113.972549 L 528.018834 114.833901 L 528.390463 113.541872 L 528.514339 113.972549 L 528.638215 113.541872 L 528.885967 114.403225 L 529.009843 113.972549 L 529.381472 115.264577 L 529.876976 113.541872 L 530.000852 113.972549 L 530.248605 113.111196 L 530.372481 113.541872 L 530.496357 113.111196 L 530.744109 113.972549 L 530.991861 113.111196 L 531.115737 113.541872 L 531.239614 113.111196 L 531.36349 113.541872 L 531.487366 113.111196 L 531.611242 113.541872 L 531.858994 112.68052 L 531.98287 113.111196 L 532.230623 112.249844 L 532.478375 113.111196 L 532.850003 111.819168 L 532.973879 112.249844 L 533.221631 111.388492 L 533.345508 111.819168 L 533.469384 111.388492 L 533.59326 111.819168 L 533.717136 111.388492 L 533.841012 111.819168 L 533.964888 111.388492 L 534.336517 112.68052 L 534.584269 111.819168 L 534.708145 112.249844 L 534.832021 111.819168 L 535.079773 112.68052 L 535.451402 111.388492 L 535.575278 111.819168 L 535.946906 110.52714 L 536.070782 110.957816 L 536.318535 110.096463 L 536.442411 110.52714 L 536.690163 109.665787 L 537.061791 110.957816 L 537.309544 110.096463 L 537.557296 110.957816 L 538.176676 108.804435 L 538.300553 109.235111 L 538.548305 108.373759 L 538.672181 108.804435 L 538.796057 108.373759 L 538.919933 108.804435 L 539.043809 108.373759 L 539.291562 109.235111 L 539.415438 108.804435 L 539.539314 109.235111 L 539.787066 108.373759 L 539.910942 108.804435 L 540.406447 107.08173 L 540.530323 107.512407 L 540.654199 107.08173 L 540.778075 107.512407 L 540.901951 107.08173 L 541.149703 107.943083 L 541.27358 107.512407 L 541.397456 107.943083 L 541.769084 106.651054 L 542.140712 107.943083 L 542.636217 106.220378 L 542.760093 106.651054 L 542.883969 106.220378 L 543.007845 106.651054 L 543.379474 105.359026 L 543.50335 105.789702 L 543.874978 104.497674 L 544.246607 105.789702 L 544.370483 105.359026 L 544.742111 106.651054 L 544.865987 106.220378 L 545.113739 107.08173 L 545.485368 105.789702 L 545.73312 106.651054 L 545.856996 106.220378 L 545.980872 106.651054 L 546.104748 106.220378 L 546.476377 107.512407 L 546.724129 106.651054 L 546.848005 107.08173 L 546.971881 106.651054 L 547.219633 107.512407 L 547.467386 106.651054 L 547.839014 107.943083 L 548.086766 107.08173 L 548.210642 107.512407 L 548.334519 107.08173 L 548.953899 109.235111 L 549.077775 108.804435 L 549.201651 109.235111 L 549.449404 108.373759 L 549.821032 109.665787 L 549.944908 109.235111 L 550.068784 109.665787 L 550.19266 109.235111 L 550.440413 110.096463 L 550.812041 108.804435 L 551.059793 109.665787 L 551.307546 108.804435 L 551.431422 109.235111 L 551.555298 108.804435 L 551.80305 109.665787 L 552.422431 107.512407 L 552.546307 107.943083 L 552.670183 107.512407 L 552.794059 107.943083 L 553.041811 107.08173 L 553.41344 108.373759 L 554.03282 106.220378 L 554.156696 106.651054 L 554.280573 106.220378 L 554.776077 107.943083 L 554.899953 107.512407 L 555.147705 108.373759 L 555.271582 107.943083 L 555.395458 108.373759 L 555.64321 107.512407 L 555.767086 107.943083 L 556.510343 105.359026 L 556.634219 105.789702 L 557.2536 103.636321 L 557.501352 104.497674 L 557.749104 103.636321 L 558.120732 104.92835 L 558.492361 103.636321 L 558.863989 104.92835 L 558.987865 104.497674 L 559.111741 104.92835 L 559.854998 102.344293 L 560.226626 103.636321 L 560.350503 103.205645 L 560.474379 103.636321 L 561.093759 101.482941 L 561.589264 103.205645 L 562.084768 101.482941 L 562.332521 102.344293 L 563.075777 99.760236 L 563.199653 100.190912 L 563.32353 99.760236 L 563.447406 100.190912 L 563.571282 99.760236 L 564.066786 101.482941 L 564.438415 100.190912 L 564.686167 101.052265 L 565.181671 99.32956 L 565.677176 101.052265 L 566.048804 99.760236 L 566.17268 100.190912 L 566.420433 99.32956 L 566.668185 100.190912 L 566.792061 99.760236 L 566.915937 100.190912 L 567.039813 99.760236 L 567.163689 100.190912 L 567.659194 98.468208 L 567.906946 99.32956 L 568.154698 98.468208 L 568.278575 98.898884 L 568.897955 96.745503 L 569.145707 97.606855 L 569.269584 97.176179 L 569.39346 97.606855 L 569.517336 97.176179 L 569.641212 97.606855 L 570.136716 95.884151 L 570.508345 97.176179 L 570.632221 96.745503 L 570.756097 97.176179 L 571.251602 95.453475 L 571.375478 95.884151 L 571.747106 94.592122 L 571.870982 95.022799 L 572.242611 93.73077 L 572.366487 94.161446 L 572.490363 93.73077 L 572.614239 94.161446 L 572.985867 92.869418 L 573.109743 93.300094 L 573.605248 91.577389 L 573.729124 92.008066 L 573.976876 91.146713 L 574.100752 91.577389 L 574.472381 90.285361 L 574.596257 90.716037 L 574.720133 90.285361 L 574.844009 90.716037 L 574.967885 90.285361 L 575.215637 91.146713 L 575.339514 90.716037 L 576.08277 93.300094 L 576.206646 92.869418 L 576.330523 93.300094 L 576.454399 92.869418 L 576.578275 93.300094 L 576.826027 92.438742 L 577.073779 93.300094 L 577.197655 92.869418 L 577.445408 93.73077 L 578.064788 91.577389 L 578.188664 92.008066 L 578.312541 91.577389 L 578.436417 92.008066 L 578.560293 91.577389 L 578.808045 92.438742 L 579.055797 91.577389 L 579.179673 92.008066 L 579.30355 91.577389 L 579.551302 92.438742 L 579.92293 91.146713 L 580.046806 91.577389 L 580.418435 90.285361 L 580.790063 91.577389 L 580.913939 91.146713 L 581.037815 91.577389 L 581.161691 91.146713 L 581.285568 91.577389 L 581.409444 91.146713 L 581.657196 92.008066 L 581.781072 91.577389 L 582.1527 92.869418 L 582.276577 92.438742 L 582.400453 92.869418 L 582.895957 91.146713 L 583.019833 91.577389 L 583.391462 90.285361 L 583.515338 90.716037 L 583.639214 90.285361 L 583.76309 90.716037 L 584.258595 88.993333 L 584.630223 90.285361 L 584.754099 89.854685 L 584.877975 90.285361 L 585.125727 89.424009 L 585.37348 90.285361 L 585.99286 88.13198 L 586.240613 88.993333 L 586.364489 88.562657 L 586.364489 88.562657 " style="fill:none;opacity:0.9;stroke:#ff7f0e;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_13"> <path clip-path="url(#p91285e6896)" d="M 79.091761 322.491578 L 79.215637 322.132681 L 79.339514 322.491578 L 79.958894 320.697094 L 80.206646 321.414888 L 80.330523 321.055991 L 80.578275 321.773785 L 80.826027 321.055991 L 80.949903 321.414888 L 81.197655 320.697094 L 81.321532 321.055991 L 81.69316 319.979301 L 81.817036 320.338197 L 82.188664 319.261507 L 82.436417 319.979301 L 82.808045 318.90261 L 82.931921 319.261507 L 83.30355 318.184817 L 83.427426 318.543714 L 83.799054 317.467023 L 83.92293 317.82592 L 84.046806 317.467023 L 84.170682 317.82592 L 84.294559 317.467023 L 84.542311 318.184817 L 84.666187 317.82592 L 84.790063 318.184817 L 84.913939 317.82592 L 85.161691 318.543714 L 85.53332 317.467023 L 85.781072 318.184817 L 85.904948 317.82592 L 86.028824 318.184817 L 86.276577 317.467023 L 86.772081 318.90261 L 86.895957 318.543714 L 87.267586 319.620404 L 87.391462 319.261507 L 87.515338 319.620404 L 87.639214 319.261507 L 87.76309 319.620404 L 87.886966 319.261507 L 88.754099 321.773785 L 89.497356 319.620404 L 89.868984 320.697094 L 90.859993 317.82592 L 90.983869 318.184817 L 91.231622 317.467023 L 91.727126 318.90261 L 92.470383 316.74923 L 92.718135 317.467023 L 92.965887 316.74923 L 93.089763 317.108126 L 94.204648 313.878055 L 94.452401 314.595849 L 94.576277 314.236952 L 94.700153 314.595849 L 94.947905 313.878055 L 95.319534 314.954746 L 95.691162 313.878055 L 95.815038 314.236952 L 96.310543 312.801365 L 96.434419 313.160262 L 96.682171 312.442468 L 96.806047 312.801365 L 96.929923 312.442468 L 97.053799 312.801365 L 97.177675 312.442468 L 97.301552 312.801365 L 97.425428 312.442468 L 97.549304 312.801365 L 97.67318 312.442468 L 97.920932 313.160262 L 98.168684 312.442468 L 98.540313 313.519159 L 99.035817 312.083571 L 99.159693 312.442468 L 99.28357 312.083571 L 99.407446 312.442468 L 99.779074 311.365778 L 100.026826 312.083571 L 100.398455 311.006881 L 100.646207 311.724675 L 100.893959 311.006881 L 101.017835 311.365778 L 101.141711 311.006881 L 101.51334 312.083571 L 101.637216 311.724675 L 101.884968 312.442468 L 102.13272 311.724675 L 102.256597 312.083571 L 102.628225 311.006881 L 102.752101 311.365778 L 103.123729 310.289088 L 103.247606 310.647984 L 103.371482 310.289088 L 103.495358 310.647984 L 103.74311 309.930191 L 103.990862 310.647984 L 104.238615 309.930191 L 104.857995 311.724675 L 104.981871 311.365778 L 105.229624 312.083571 L 105.725128 310.647984 L 106.344509 312.442468 L 106.468385 312.083571 L 106.840013 313.160262 L 107.335518 311.724675 L 107.459394 312.083571 L 107.58327 311.724675 L 107.954898 312.801365 L 108.326527 311.724675 L 108.574279 312.442468 L 109.81304 308.8535 L 109.936916 309.212397 L 110.184668 308.494604 L 110.308545 308.8535 L 110.556297 308.135707 L 110.804049 308.8535 L 111.051801 308.135707 L 111.175677 308.494604 L 111.42343 307.77681 L 111.547306 308.135707 L 111.671182 307.77681 L 111.795058 308.135707 L 112.04281 307.417913 L 112.166686 307.77681 L 112.414439 307.059017 L 113.033819 308.8535 L 113.157695 308.494604 L 113.281572 308.8535 L 113.529324 308.135707 L 113.6532 308.494604 L 114.520333 305.982326 L 114.644209 306.341223 L 114.891961 305.623429 L 115.139713 306.341223 L 115.26359 305.982326 L 115.387466 306.341223 L 115.759094 305.264533 L 115.88297 305.623429 L 116.254599 304.546739 L 116.502351 305.264533 L 116.873979 304.187842 L 117.245608 305.264533 L 117.369484 304.905636 L 117.49336 305.264533 L 117.617236 304.905636 L 117.864988 305.623429 L 117.988864 305.264533 L 118.11274 305.623429 L 118.236617 305.264533 L 118.484369 305.982326 L 118.732121 305.264533 L 118.855997 305.623429 L 118.979873 305.264533 L 119.351502 306.341223 L 119.475378 305.982326 L 119.599254 306.341223 L 119.970882 305.264533 L 120.342511 306.341223 L 120.466387 305.982326 L 120.590263 306.341223 L 120.714139 305.982326 L 120.961891 306.70012 L 121.33352 305.623429 L 121.457396 305.982326 L 121.581272 305.623429 L 121.829024 306.341223 L 121.9529 305.982326 L 122.076776 306.341223 L 123.067785 303.470049 L 123.191661 303.828946 L 123.439414 303.111152 L 123.56329 303.470049 L 123.687166 303.111152 L 123.811042 303.470049 L 123.934918 303.111152 L 124.18267 303.828946 L 124.306547 303.470049 L 124.430423 303.828946 L 124.554299 303.470049 L 124.678175 303.828946 L 125.421432 301.675565 L 125.545308 302.034462 L 126.164688 300.239978 L 126.288565 300.598874 L 126.660193 299.522184 L 127.031821 300.598874 L 127.527326 299.163287 L 127.775078 299.881081 L 128.02283 299.163287 L 128.146706 299.522184 L 128.270583 299.163287 L 128.518335 299.881081 L 128.889963 298.804391 L 129.013839 299.163287 L 129.385468 298.086597 L 129.509344 298.445494 L 129.63322 298.086597 L 129.757096 298.445494 L 130.004848 297.7277 L 130.128724 298.086597 L 130.252601 297.7277 L 130.376477 298.086597 L 131.367486 295.215423 L 131.615238 295.933216 L 131.86299 295.215423 L 131.986866 295.57432 L 132.110742 295.215423 L 132.358495 295.933216 L 133.101751 293.779836 L 133.47338 294.856526 L 133.597256 294.497629 L 133.721132 294.856526 L 133.845008 294.497629 L 133.968884 294.856526 L 134.09276 294.497629 L 134.216636 294.856526 L 134.340513 294.497629 L 134.464389 294.856526 L 134.959893 293.420939 L 135.083769 293.779836 L 135.455398 292.703145 L 135.579274 293.062042 L 135.950902 291.985352 L 136.074778 292.344249 L 136.570283 290.908661 L 136.694159 291.267558 L 137.561292 288.755281 L 138.056796 290.190868 L 138.180672 289.831971 L 138.304549 290.190868 L 138.428425 289.831971 L 138.552301 290.190868 L 138.676177 289.831971 L 139.171681 291.267558 L 139.914938 289.114178 L 140.16269 289.831971 L 140.782071 288.037487 L 141.029823 288.755281 L 141.525328 287.319694 L 141.649204 287.67859 L 141.77308 287.319694 L 142.268585 288.755281 L 142.392461 288.396384 L 142.640213 289.114178 L 142.764089 288.755281 L 143.135717 289.831971 L 143.259594 289.473074 L 143.38347 289.831971 L 144.126726 287.67859 L 144.250603 288.037487 L 144.622231 286.960797 L 144.746107 287.319694 L 145.241612 285.884106 L 145.737116 287.319694 L 145.984868 286.6019 L 146.108744 286.960797 L 146.356497 286.243003 L 146.604249 286.960797 L 146.975877 285.884106 L 147.099753 286.243003 L 147.223629 285.884106 L 147.595258 286.960797 L 147.966886 285.884106 L 148.090762 286.243003 L 148.214638 285.884106 L 148.338515 286.243003 L 148.462391 285.884106 L 148.586267 286.243003 L 148.957895 285.166313 L 149.205647 285.884106 L 149.825028 284.089623 L 150.07278 284.807416 L 150.196656 284.448519 L 150.568285 285.52521 L 150.692161 285.166313 L 150.816037 285.52521 L 151.187665 284.448519 L 151.559294 285.52521 L 151.68317 285.166313 L 151.930922 285.884106 L 152.054798 285.52521 L 152.178674 285.884106 L 152.426427 285.166313 L 152.550303 285.52521 L 152.674179 285.166313 L 152.798055 285.52521 L 153.045807 284.807416 L 153.29356 285.52521 L 153.417436 285.166313 L 153.789064 286.243003 L 154.284569 284.807416 L 154.532321 285.52521 L 155.027825 284.089623 L 155.151701 284.448519 L 155.275578 284.089623 L 155.399454 284.448519 L 155.894958 283.012932 L 156.018834 283.371829 L 156.266587 282.654035 L 156.514339 283.371829 L 156.885967 282.295139 L 157.629224 284.448519 L 158.000852 283.371829 L 158.124728 283.730726 L 158.867985 281.577345 L 159.115737 282.295139 L 159.239614 281.936242 L 159.487366 282.654035 L 159.735118 281.936242 L 160.230623 283.371829 L 160.354499 283.012932 L 160.726127 284.089623 L 161.221631 282.654035 L 161.345508 283.012932 L 161.469384 282.654035 L 161.59326 283.012932 L 161.964888 281.936242 L 162.21264 282.654035 L 162.336517 282.295139 L 162.584269 283.012932 L 163.327526 280.859552 L 163.946906 282.654035 L 164.070782 282.295139 L 164.690163 284.089623 L 165.061791 283.012932 L 165.185667 283.371829 L 165.557296 282.295139 L 165.681172 282.654035 L 165.805048 282.295139 L 165.928924 282.654035 L 166.0528 282.295139 L 166.176676 282.654035 L 166.300553 282.295139 L 166.424429 282.654035 L 166.548305 282.295139 L 166.672181 282.654035 L 166.796057 282.295139 L 167.167685 283.371829 L 167.415438 282.654035 L 167.66319 283.371829 L 168.034818 282.295139 L 168.158694 282.654035 L 168.282571 282.295139 L 168.406447 282.654035 L 168.530323 282.295139 L 169.025827 283.730726 L 169.769084 281.577345 L 170.016836 282.295139 L 170.388465 281.218448 L 170.512341 281.577345 L 170.636217 281.218448 L 170.760093 281.577345 L 171.874978 278.347274 L 172.12273 279.065068 L 172.370483 278.347274 L 172.494359 278.706171 L 172.618235 278.347274 L 173.361492 280.500655 L 173.609244 279.782861 L 173.73312 280.141758 L 174.476377 277.988377 L 174.724129 278.706171 L 175.095757 277.629481 L 175.219633 277.988377 L 176.086766 275.4761 L 176.210642 275.834997 L 176.334519 275.4761 L 176.582271 276.193893 L 176.830023 275.4761 L 176.953899 275.834997 L 177.697156 273.681616 L 177.821032 274.040513 L 177.944908 273.681616 L 178.068784 274.040513 L 178.440413 272.963822 L 178.688165 273.681616 L 179.183669 272.246029 L 179.431422 272.963822 L 179.555298 272.604926 L 179.80305 273.322719 L 179.926926 272.963822 L 180.174678 273.681616 L 180.422431 272.963822 L 180.917935 274.39941 L 181.165687 273.681616 L 181.289564 274.040513 L 182.652201 270.092648 L 182.776077 270.451545 L 183.271582 269.015958 L 183.890962 270.810442 L 184.262591 269.733751 L 184.510343 270.451545 L 184.634219 270.092648 L 184.758095 270.451545 L 185.005847 269.733751 L 185.2536 270.451545 L 185.749104 269.015958 L 185.996856 269.733751 L 186.244609 269.015958 L 186.368485 269.374855 L 186.492361 269.015958 L 186.616237 269.374855 L 187.359494 267.221474 L 187.607246 267.939267 L 187.978874 266.862577 L 188.474379 268.298164 L 188.598255 267.939267 L 188.722131 268.298164 L 188.969883 267.580371 L 189.217635 268.298164 L 189.341512 267.939267 L 189.465388 268.298164 L 189.589264 267.939267 L 189.71314 268.298164 L 190.704149 265.42699 L 190.828025 265.785887 L 190.951901 265.42699 L 191.075777 265.785887 L 191.447406 264.709196 L 191.571282 265.068093 L 191.695158 264.709196 L 191.819034 265.068093 L 192.066786 264.3503 L 192.190662 264.709196 L 192.438415 263.991403 L 192.562291 264.3503 L 192.810043 263.632506 L 192.933919 263.991403 L 193.057795 263.632506 L 193.429424 264.709196 L 193.5533 264.3503 L 193.677176 264.709196 L 194.048804 263.632506 L 194.17268 263.991403 L 194.296557 263.632506 L 194.420433 263.991403 L 195.039813 262.196919 L 195.163689 262.555816 L 195.287566 262.196919 L 195.411442 262.555816 L 195.535318 262.196919 L 195.78307 262.914713 L 195.906946 262.555816 L 196.030822 262.914713 L 196.154698 262.555816 L 196.278575 262.914713 L 196.402451 262.555816 L 196.650203 263.273609 L 196.774079 262.914713 L 197.021831 263.632506 L 197.39346 262.555816 L 197.517336 262.914713 L 197.641212 262.555816 L 198.01284 263.632506 L 198.136716 263.273609 L 198.384469 263.991403 L 198.508345 263.632506 L 198.632221 263.991403 L 199.127725 262.555816 L 199.251602 262.914713 L 199.870982 261.120229 L 200.242611 262.196919 L 200.490363 261.479125 L 200.861991 262.555816 L 201.109743 261.838022 L 201.23362 262.196919 L 201.357496 261.838022 L 201.481372 262.196919 L 201.976876 260.761332 L 202.100752 261.120229 L 202.348505 260.402435 L 202.472381 260.761332 L 202.844009 259.684642 L 203.215637 260.761332 L 203.339514 260.402435 L 203.46339 260.761332 L 203.835018 259.684642 L 203.958894 260.043538 L 205.321532 256.095674 L 205.445408 256.45457 L 205.569284 256.095674 L 205.940912 257.172364 L 206.064788 256.813467 L 206.188664 257.172364 L 206.312541 256.813467 L 206.684169 257.890158 L 206.808045 257.531261 L 207.179673 258.607951 L 207.427426 257.890158 L 207.551302 258.249054 L 207.799054 257.531261 L 207.92293 257.890158 L 208.170682 257.172364 L 208.294559 257.531261 L 208.542311 256.813467 L 208.666187 257.172364 L 208.913939 256.45457 L 209.037815 256.813467 L 209.53332 255.37788 L 209.657196 255.736777 L 210.028824 254.660087 L 210.1527 255.018983 L 210.276577 254.660087 L 210.524329 255.37788 L 210.648205 255.018983 L 210.772081 255.37788 L 211.019833 254.660087 L 211.143709 255.018983 L 211.76309 253.224499 L 212.258595 254.660087 L 212.506347 253.942293 L 212.877975 255.018983 L 213.001851 254.660087 L 213.249604 255.37788 L 213.37348 255.018983 L 213.621232 255.736777 L 214.240613 253.942293 L 214.488365 254.660087 L 214.612241 254.30119 L 214.736117 254.660087 L 214.983869 253.942293 L 215.107745 254.30119 L 215.355498 253.583396 L 215.479374 253.942293 L 215.60325 253.583396 L 215.851002 254.30119 L 216.470383 252.506706 L 216.594259 252.865603 L 216.842011 252.147809 L 216.965887 252.506706 L 217.213639 251.788912 L 217.83302 253.583396 L 217.956896 253.224499 L 218.080772 253.583396 L 218.328525 252.865603 L 218.452401 253.224499 L 219.071781 251.430016 L 219.195657 251.788912 L 219.691162 250.353325 L 219.815038 250.712222 L 220.310543 249.276635 L 220.434419 249.635532 L 220.929923 248.199945 L 221.053799 248.558841 L 221.797056 246.405461 L 221.920932 246.764357 L 222.788065 244.25208 L 222.911941 244.610977 L 223.655198 242.457596 L 224.026826 243.534286 L 224.274579 242.816493 L 224.398455 243.17539 L 224.770083 242.098699 L 224.893959 242.457596 L 225.017835 242.098699 L 225.389464 243.17539 L 225.51334 242.816493 L 225.884968 243.893183 L 226.008844 243.534286 L 226.504349 244.969874 L 226.628225 244.610977 L 226.752101 244.969874 L 226.875977 244.610977 L 226.999853 244.969874 L 227.123729 244.610977 L 227.247606 244.969874 L 227.371482 244.610977 L 227.495358 244.969874 L 228.610243 241.739802 L 228.734119 242.098699 L 229.105747 241.022009 L 229.229624 241.380906 L 229.477376 240.663112 L 229.849004 241.739802 L 230.096756 241.022009 L 230.220632 241.380906 L 230.468385 240.663112 L 230.592261 241.022009 L 230.716137 240.663112 L 230.963889 241.380906 L 231.087765 241.022009 L 231.211641 241.380906 L 231.459394 240.663112 L 231.58327 241.022009 L 231.954898 239.945319 L 232.078774 240.304215 L 232.20265 239.945319 L 232.450403 240.663112 L 232.822031 239.586422 L 232.945907 239.945319 L 233.317536 238.868628 L 233.441412 239.227525 L 233.689164 238.509731 L 233.936916 239.227525 L 234.060792 238.868628 L 234.184668 239.227525 L 234.432421 238.509731 L 234.556297 238.868628 L 234.804049 238.150835 L 234.927925 238.509731 L 235.299554 237.433041 L 235.42343 237.791938 L 235.547306 237.433041 L 235.671182 237.791938 L 235.795058 237.433041 L 236.04281 238.150835 L 236.166686 237.791938 L 236.290563 238.150835 L 236.538315 237.433041 L 236.662191 237.791938 L 236.909943 237.074144 L 237.033819 237.433041 L 237.157695 237.074144 L 237.281572 237.433041 L 237.529324 236.715248 L 237.777076 237.433041 L 237.900952 237.074144 L 238.024828 237.433041 L 238.272581 236.715248 L 238.396457 237.074144 L 238.520333 236.715248 L 239.015837 238.150835 L 239.511342 236.715248 L 240.006846 238.150835 L 240.130722 237.791938 L 240.254599 238.150835 L 240.502351 237.433041 L 240.626227 237.791938 L 240.997855 236.715248 L 241.369484 237.791938 L 241.49336 237.433041 L 241.741112 238.150835 L 241.864988 237.791938 L 242.732121 240.304215 L 242.979873 239.586422 L 243.227625 240.304215 L 243.599254 239.227525 L 243.970882 240.304215 L 244.094758 239.945319 L 244.218634 240.304215 L 244.342511 239.945319 L 244.590263 240.663112 L 245.209643 238.868628 L 245.33352 239.227525 L 245.457396 238.868628 L 245.705148 239.586422 L 246.200652 238.150835 L 246.324529 238.509731 L 246.448405 238.150835 L 246.572281 238.509731 L 247.067785 237.074144 L 247.191661 237.433041 L 247.315538 237.074144 L 247.439414 237.433041 L 247.811042 236.356351 L 247.934918 236.715248 L 248.058794 236.356351 L 248.430423 237.433041 L 248.678175 236.715248 L 249.173679 238.150835 L 249.421432 237.433041 L 249.669184 238.150835 L 249.916936 237.433041 L 250.164688 238.150835 L 250.412441 237.433041 L 250.660193 238.150835 L 250.907945 237.433041 L 251.031821 237.791938 L 251.155697 237.433041 L 251.40345 238.150835 L 251.651202 237.433041 L 251.775078 237.791938 L 251.898954 237.433041 L 252.02283 237.791938 L 253.137715 234.561867 L 253.261592 234.920764 L 253.63322 233.844073 L 253.880972 234.561867 L 254.128724 233.844073 L 254.252601 234.20297 L 254.624229 233.12628 L 254.748105 233.485177 L 254.871981 233.12628 L 254.995857 233.485177 L 255.119733 233.12628 L 255.24361 233.485177 L 255.615238 232.408486 L 255.739114 232.767383 L 255.86299 232.408486 L 256.110742 233.12628 L 256.482371 232.049589 L 256.606247 232.408486 L 256.730123 232.049589 L 256.977875 232.767383 L 257.47338 231.331796 L 257.845008 232.408486 L 258.216636 231.331796 L 258.464389 232.049589 L 258.836017 230.972899 L 259.083769 231.690693 L 259.207645 231.331796 L 259.455398 232.049589 L 259.579274 231.690693 L 259.827026 232.408486 L 260.074778 231.690693 L 260.694159 233.485177 L 261.065787 232.408486 L 261.189663 232.767383 L 261.31354 232.408486 L 261.685168 233.485177 L 261.809044 233.12628 L 261.93292 233.485177 L 262.304549 232.408486 L 262.552301 233.12628 L 262.676177 232.767383 L 263.047805 233.844073 L 263.295558 233.12628 L 263.419434 233.485177 L 263.54331 233.12628 L 263.667186 233.485177 L 263.791062 233.12628 L 264.16269 234.20297 L 264.286567 233.844073 L 264.410443 234.20297 L 264.782071 233.12628 L 265.029823 233.844073 L 265.277576 233.12628 L 266.268585 235.997454 L 266.640213 234.920764 L 266.764089 235.27966 L 267.135717 234.20297 L 267.38347 234.920764 L 267.631222 234.20297 L 267.755098 234.561867 L 267.878974 234.20297 L 268.126726 234.920764 L 268.374479 234.20297 L 268.746107 235.27966 L 270.232621 230.972899 L 270.604249 232.049589 L 270.852001 231.331796 L 270.975877 231.690693 L 271.223629 230.972899 L 271.595258 232.049589 L 271.84301 231.331796 L 272.214638 232.408486 L 272.338515 232.049589 L 272.462391 232.408486 L 273.081771 230.614002 L 273.329524 231.331796 L 273.577276 230.614002 L 273.701152 230.972899 L 274.939913 227.383931 L 275.187665 228.101725 L 275.435418 227.383931 L 275.559294 227.742828 L 275.68317 227.383931 L 275.807046 227.742828 L 276.054798 227.025034 L 276.178674 227.383931 L 276.426427 226.666138 L 276.674179 227.383931 L 277.045807 226.307241 L 277.789064 228.460622 L 277.91294 228.101725 L 278.036816 228.460622 L 278.160692 228.101725 L 278.408445 228.819518 L 279.151701 226.666138 L 279.52333 227.742828 L 279.647206 227.383931 L 279.894958 228.101725 L 280.638215 225.948344 L 280.762091 226.307241 L 280.885967 225.948344 L 281.009843 226.307241 L 281.7531 224.15386 L 282.372481 225.948344 L 282.867985 224.512757 L 282.991861 224.871654 L 283.239614 224.15386 L 283.487366 224.871654 L 283.611242 224.512757 L 283.735118 224.871654 L 283.98287 224.15386 L 284.106746 224.512757 L 284.230623 224.15386 L 284.478375 224.871654 L 284.602251 224.512757 L 284.726127 224.871654 L 285.221631 223.436067 L 285.59326 224.512757 L 285.717136 224.15386 L 285.841012 224.512757 L 285.964888 224.15386 L 286.088764 224.512757 L 286.336517 223.794963 L 286.460393 224.15386 L 286.584269 223.794963 L 286.955897 224.871654 L 287.203649 224.15386 L 287.327526 224.512757 L 287.575278 223.794963 L 287.699154 224.15386 L 288.194658 222.718273 L 288.318535 223.07717 L 288.690163 222.00048 L 289.061791 223.07717 L 289.185667 222.718273 L 289.309544 223.07717 L 289.43342 222.718273 L 289.557296 223.07717 L 289.681172 222.718273 L 289.805048 223.07717 L 290.796057 220.205996 L 291.043809 220.923789 L 291.415438 219.847099 L 291.66319 220.564892 L 292.158694 219.129305 L 292.282571 219.488202 L 292.406447 219.129305 L 292.654199 219.847099 L 292.901951 219.129305 L 293.025827 219.488202 L 293.149703 219.129305 L 293.27358 219.488202 L 294.016836 217.334821 L 294.264589 218.052615 L 295.007845 215.899234 L 295.131721 216.258131 L 295.379474 215.540338 L 295.50335 215.899234 L 295.627226 215.540338 L 295.751102 215.899234 L 295.874978 215.540338 L 296.246607 216.617028 L 296.494359 215.899234 L 296.618235 216.258131 L 296.742111 215.899234 L 297.113739 216.975925 L 297.361492 216.258131 L 297.485368 216.617028 L 297.609244 216.258131 L 297.73312 216.617028 L 297.980872 215.899234 L 298.104748 216.258131 L 298.476377 215.181441 L 298.848005 216.258131 L 299.34351 214.822544 L 299.467386 215.181441 L 299.591262 214.822544 L 299.715138 215.181441 L 300.210642 213.745854 L 300.458395 214.463647 L 300.582271 214.10475 L 300.706147 214.463647 L 300.830023 214.10475 L 301.201651 215.181441 L 301.57328 214.10475 L 301.697156 214.463647 L 302.068784 213.386957 L 302.19266 213.745854 L 302.688165 212.310266 L 302.812041 212.669163 L 303.431422 210.874679 L 303.679174 211.592473 L 303.926926 210.874679 L 304.050802 211.233576 L 304.546307 209.797989 L 304.670183 210.156886 L 305.289564 208.362402 L 306.03282 210.515783 L 306.156696 210.156886 L 306.404449 210.874679 L 306.528325 210.515783 L 306.652201 210.874679 L 306.776077 210.515783 L 306.899953 210.874679 L 307.023829 210.515783 L 307.147705 210.874679 L 307.271582 210.515783 L 307.395458 210.874679 L 307.64321 210.156886 L 307.767086 210.515783 L 308.510343 208.362402 L 309.005847 209.797989 L 309.129723 209.439092 L 309.2536 209.797989 L 309.501352 209.080195 L 309.749104 209.797989 L 309.87298 209.439092 L 310.244609 210.515783 L 310.368485 210.156886 L 310.492361 210.515783 L 310.863989 209.439092 L 311.111741 210.156886 L 311.359494 209.439092 L 311.48337 209.797989 L 311.731122 209.080195 L 312.226626 210.515783 L 312.598255 209.439092 L 312.722131 209.797989 L 313.093759 208.721299 L 313.589264 210.156886 L 313.837016 209.439092 L 314.208644 210.515783 L 314.951901 208.362402 L 315.075777 208.721299 L 315.447406 207.644608 L 315.571282 208.003505 L 315.695158 207.644608 L 315.819034 208.003505 L 315.94291 207.644608 L 316.066786 208.003505 L 316.438415 206.926815 L 316.562291 207.285712 L 316.686167 206.926815 L 316.810043 207.285712 L 317.677176 204.773434 L 317.801052 205.132331 L 318.296557 203.696744 L 318.420433 204.055641 L 318.668185 203.337847 L 319.039813 204.414537 L 319.411442 203.337847 L 320.278575 205.850124 L 320.402451 205.491228 L 320.526327 205.850124 L 320.897955 204.773434 L 321.021831 205.132331 L 321.145707 204.773434 L 321.641212 206.209021 L 321.888964 205.491228 L 322.01284 205.850124 L 322.136716 205.491228 L 322.508345 206.567918 L 322.632221 206.209021 L 322.756097 206.567918 L 322.879973 206.209021 L 323.003849 206.567918 L 323.375478 205.491228 L 323.499354 205.850124 L 324.118734 204.055641 L 324.242611 204.414537 L 324.366487 204.055641 L 324.490363 204.414537 L 324.614239 204.055641 L 324.738115 204.414537 L 325.23362 202.97895 L 325.357496 203.337847 L 325.481372 202.97895 L 325.605248 203.337847 L 325.853 202.620053 L 325.976876 202.97895 L 326.100752 202.620053 L 326.348505 203.337847 L 326.472381 202.97895 L 326.596257 203.337847 L 326.720133 202.97895 L 326.844009 203.337847 L 326.967885 202.97895 L 327.215637 203.696744 L 327.339514 203.337847 L 327.587266 204.055641 L 327.711142 203.696744 L 328.330523 205.491228 L 328.454399 205.132331 L 328.826027 206.209021 L 329.073779 205.491228 L 329.197655 205.850124 L 329.445408 205.132331 L 330.064788 206.926815 L 330.188664 206.567918 L 330.312541 206.926815 L 330.684169 205.850124 L 330.931921 206.567918 L 331.179673 205.850124 L 331.30355 206.209021 L 331.551302 205.491228 L 331.675178 205.850124 L 332.418435 203.696744 L 332.666187 204.414537 L 332.790063 204.055641 L 332.913939 204.414537 L 333.161691 203.696744 L 333.409444 204.414537 L 333.53332 204.055641 L 333.781072 204.773434 L 334.028824 204.055641 L 334.276577 204.773434 L 334.400453 204.414537 L 334.772081 205.491228 L 334.895957 205.132331 L 335.019833 205.491228 L 335.391462 204.414537 L 336.010842 206.209021 L 336.506347 204.773434 L 336.630223 205.132331 L 336.877975 204.414537 L 337.001851 204.773434 L 337.249604 204.055641 L 337.37348 204.414537 L 337.497356 204.055641 L 337.621232 204.414537 L 337.745108 204.055641 L 337.868984 204.414537 L 337.99286 204.055641 L 338.116736 204.414537 L 338.240613 204.055641 L 338.488365 204.773434 L 338.736117 204.055641 L 338.983869 204.773434 L 339.107745 204.414537 L 339.355498 205.132331 L 339.851002 203.696744 L 339.974878 204.055641 L 340.098754 203.696744 L 340.22263 204.055641 L 340.346507 203.696744 L 340.470383 204.055641 L 340.965887 202.620053 L 341.213639 203.337847 L 341.337516 202.97895 L 341.709144 204.055641 L 341.83302 203.696744 L 342.080772 204.414537 L 342.204648 204.055641 L 342.700153 205.491228 L 342.947905 204.773434 L 343.195657 205.491228 L 343.815038 203.696744 L 344.186666 204.773434 L 344.806047 202.97895 L 345.053799 203.696744 L 345.177675 203.337847 L 345.301552 203.696744 L 345.425428 203.337847 L 345.549304 203.696744 L 345.797056 202.97895 L 345.920932 203.337847 L 346.044808 202.97895 L 346.292561 203.696744 L 346.416437 203.337847 L 346.540313 203.696744 L 346.664189 203.337847 L 346.911941 204.055641 L 347.407446 202.620053 L 347.531322 202.97895 L 347.655198 202.620053 L 347.779074 202.97895 L 348.150702 201.90226 L 348.398455 202.620053 L 348.646207 201.90226 L 348.770083 202.261157 L 349.141711 201.184466 L 349.51334 202.261157 L 349.761092 201.543363 L 349.884968 201.90226 L 350.008844 201.543363 L 350.256597 202.261157 L 350.504349 201.543363 L 350.628225 201.90226 L 350.752101 201.543363 L 350.875977 201.90226 L 350.999853 201.543363 L 351.123729 201.90226 L 351.247606 201.543363 L 351.371482 201.90226 L 351.990862 200.107776 L 352.610243 201.90226 L 352.734119 201.543363 L 352.857995 201.90226 L 352.981871 201.543363 L 353.229624 202.261157 L 353.3535 201.90226 L 353.477376 202.261157 L 353.601252 201.90226 L 353.725128 202.261157 L 353.849004 201.90226 L 354.220632 202.97895 L 354.468385 202.261157 L 355.087765 204.055641 L 355.211641 203.696744 L 355.335518 204.055641 L 355.459394 203.696744 L 355.707146 204.414537 L 356.326527 202.620053 L 356.698155 203.696744 L 356.822031 203.337847 L 356.945907 203.696744 L 357.069783 203.337847 L 357.441412 204.414537 L 357.565288 204.055641 L 357.81304 204.773434 L 358.060792 204.055641 L 358.184668 204.414537 L 358.308545 204.055641 L 358.432421 204.414537 L 358.804049 203.337847 L 359.175677 204.414537 L 359.299554 204.055641 L 359.42343 204.414537 L 359.795058 203.337847 L 359.918934 203.696744 L 360.166686 202.97895 L 360.290563 203.337847 L 360.786067 201.90226 L 360.909943 202.261157 L 361.157695 201.543363 L 361.6532 202.97895 L 361.900952 202.261157 L 362.148704 202.97895 L 362.272581 202.620053 L 362.396457 202.97895 L 362.520333 202.620053 L 362.644209 202.97895 L 363.015837 201.90226 L 363.26359 202.620053 L 363.387466 202.261157 L 363.511342 202.620053 L 363.759094 201.90226 L 363.88297 202.261157 L 364.254599 201.184466 L 364.378475 201.543363 L 364.626227 200.82557 L 364.750103 201.184466 L 364.997855 200.466673 L 365.245608 201.184466 L 365.49336 200.466673 L 365.617236 200.82557 L 366.236617 199.031086 L 366.484369 199.748879 L 366.608245 199.389982 L 367.227625 201.184466 L 367.475378 200.466673 L 367.599254 200.82557 L 367.72313 200.466673 L 367.847006 200.82557 L 368.094758 200.107776 L 368.218634 200.466673 L 368.342511 200.107776 L 368.714139 201.184466 L 368.961891 200.466673 L 369.085767 200.82557 L 369.9529 198.313292 L 370.076776 198.672189 L 370.448405 197.595498 L 370.572281 197.954395 L 370.696157 197.595498 L 370.820033 197.954395 L 371.315538 196.518808 L 371.439414 196.877705 L 371.56329 196.518808 L 371.687166 196.877705 L 371.811042 196.518808 L 372.430423 198.313292 L 372.554299 197.954395 L 372.802051 198.672189 L 372.925927 198.313292 L 373.049803 198.672189 L 373.545308 197.236602 L 373.669184 197.595498 L 373.916936 196.877705 L 374.040812 197.236602 L 374.288565 196.518808 L 374.660193 197.595498 L 374.784069 197.236602 L 374.907945 197.595498 L 375.155697 196.877705 L 375.279574 197.236602 L 375.527326 196.518808 L 375.898954 197.595498 L 376.146706 196.877705 L 376.270583 197.236602 L 376.518335 196.518808 L 376.889963 197.595498 L 377.013839 197.236602 L 377.137715 197.595498 L 377.261592 197.236602 L 377.509344 197.954395 L 377.63322 197.595498 L 377.757096 197.954395 L 377.880972 197.595498 L 378.004848 197.954395 L 378.128724 197.595498 L 378.376477 198.313292 L 378.624229 197.595498 L 378.995857 198.672189 L 379.119733 198.313292 L 379.491362 199.389982 L 379.615238 199.031086 L 379.739114 199.389982 L 379.86299 199.031086 L 380.110742 199.748879 L 380.482371 198.672189 L 380.606247 199.031086 L 381.349504 196.877705 L 381.47338 197.236602 L 381.597256 196.877705 L 381.721132 197.236602 L 381.968884 196.518808 L 382.340513 197.595498 L 382.464389 197.236602 L 382.588265 197.595498 L 382.712141 197.236602 L 382.959893 197.954395 L 383.207645 197.236602 L 383.331522 197.595498 L 383.455398 197.236602 L 383.579274 197.595498 L 383.827026 196.877705 L 383.950902 197.236602 L 384.074778 196.877705 L 384.198654 197.236602 L 384.694159 195.801015 L 384.941911 196.518808 L 385.065787 196.159911 L 385.189663 196.518808 L 385.31354 196.159911 L 385.685168 197.236602 L 385.809044 196.877705 L 385.93292 197.236602 L 386.180672 196.518808 L 386.676177 197.954395 L 386.800053 197.595498 L 387.047805 198.313292 L 387.419434 197.236602 L 387.667186 197.954395 L 387.791062 197.595498 L 387.914938 197.954395 L 388.16269 197.236602 L 388.658195 198.672189 L 388.782071 198.313292 L 389.029823 199.031086 L 389.153699 198.672189 L 389.277576 199.031086 L 389.649204 197.954395 L 389.77308 198.313292 L 389.896956 197.954395 L 390.268585 199.031086 L 391.011841 196.877705 L 391.259594 197.595498 L 391.38347 197.236602 L 391.631222 197.954395 L 391.755098 197.595498 L 392.126726 198.672189 L 392.250603 198.313292 L 392.746107 199.748879 L 393.365488 197.954395 L 393.489364 198.313292 L 393.61324 197.954395 L 394.108744 199.389982 L 394.356497 198.672189 L 394.480373 199.031086 L 395.099753 197.236602 L 395.347506 197.954395 L 395.471382 197.595498 L 395.84301 198.672189 L 396.090762 197.954395 L 396.214638 198.313292 L 396.338515 197.954395 L 396.462391 198.313292 L 397.4534 195.442118 L 397.577276 195.801015 L 397.825028 195.083221 L 398.444409 196.877705 L 398.939913 195.442118 L 399.063789 195.801015 L 399.187665 195.442118 L 399.311542 195.801015 L 399.435418 195.442118 L 399.68317 196.159911 L 399.807046 195.801015 L 400.054798 196.518808 L 400.302551 195.801015 L 401.169683 198.313292 L 401.789064 196.518808 L 402.036816 197.236602 L 402.160692 196.877705 L 402.408445 197.595498 L 402.780073 196.518808 L 402.903949 196.877705 L 403.52333 195.083221 L 403.771082 195.801015 L 404.018834 195.083221 L 404.14271 195.442118 L 404.514339 194.365427 L 404.762091 195.083221 L 404.885967 194.724324 L 406.000852 197.954395 L 406.124728 197.595498 L 406.248605 197.954395 L 406.496357 197.236602 L 406.744109 197.954395 L 407.115737 196.877705 L 407.487366 197.954395 L 407.611242 197.595498 L 407.858994 198.313292 L 408.478375 196.518808 L 408.602251 196.877705 L 409.469384 194.365427 L 409.59326 194.724324 L 409.717136 194.365427 L 409.841012 194.724324 L 410.708145 192.212047 L 410.832021 192.570944 L 411.079773 191.85315 L 411.203649 192.212047 L 411.451402 191.494253 L 411.575278 191.85315 L 411.699154 191.494253 L 411.82303 191.85315 L 412.070782 191.135356 L 412.194658 191.494253 L 412.442411 190.77646 L 412.566287 191.135356 L 412.690163 190.77646 L 412.814039 191.135356 L 412.937915 190.77646 L 413.309544 191.85315 L 413.805048 190.417563 L 413.928924 190.77646 L 414.919933 187.905285 L 415.043809 188.264182 L 415.291562 187.546389 L 415.415438 187.905285 L 415.539314 187.546389 L 415.66319 187.905285 L 416.282571 186.110801 L 416.901951 187.905285 L 417.397456 186.469698 L 417.521332 186.828595 L 417.645208 186.469698 L 417.89296 187.187492 L 418.140712 186.469698 L 418.388465 187.187492 L 418.636217 186.469698 L 418.760093 186.828595 L 418.883969 186.469698 L 419.131721 187.187492 L 419.255598 186.828595 L 419.50335 187.546389 L 419.627226 187.187492 L 419.998854 188.264182 L 420.12273 187.905285 L 420.370483 188.623079 L 420.742111 187.546389 L 420.865987 187.905285 L 421.485368 186.110801 L 421.609244 186.469698 L 421.856996 185.751905 L 421.980872 186.110801 L 422.228625 185.393008 L 422.724129 186.828595 L 422.848005 186.469698 L 422.971881 186.828595 L 423.34351 185.751905 L 423.467386 186.110801 L 424.086766 184.316318 L 424.210642 184.675214 L 424.334519 184.316318 L 424.582271 185.034111 L 424.830023 184.316318 L 424.953899 184.675214 L 425.077775 184.316318 L 425.201651 184.675214 L 425.944908 182.521834 L 426.068784 182.88073 L 426.316537 182.162937 L 426.564289 182.88073 L 427.183669 181.086247 L 427.555298 182.162937 L 428.546307 179.291763 L 429.165687 181.086247 L 429.289564 180.72735 L 429.537316 181.445143 L 429.908944 180.368453 L 430.03282 180.72735 L 430.280573 180.009556 L 430.404449 180.368453 L 430.899953 178.932866 L 431.023829 179.291763 L 431.271582 178.573969 L 431.519334 179.291763 L 431.767086 178.573969 L 432.138714 179.650659 L 432.386467 178.932866 L 432.510343 179.291763 L 432.881971 178.215072 L 433.005847 178.573969 L 433.2536 177.856176 L 433.377476 178.215072 L 433.501352 177.856176 L 433.625228 178.215072 L 433.87298 177.497279 L 434.120732 178.215072 L 434.244609 177.856176 L 434.368485 178.215072 L 434.740113 177.138382 L 434.863989 177.497279 L 434.987865 177.138382 L 435.111741 177.497279 L 435.359494 176.779485 L 435.48337 177.138382 L 435.607246 176.779485 L 435.731122 177.138382 L 435.978874 176.420588 L 436.10275 176.779485 L 436.474379 175.702795 L 436.722131 176.420588 L 436.846007 176.061692 L 436.969883 176.420588 L 437.093759 176.061692 L 437.341512 176.779485 L 437.465388 176.420588 L 437.589264 176.779485 L 437.71314 176.420588 L 437.960892 177.138382 L 438.084768 176.779485 L 438.332521 177.497279 L 438.456397 177.138382 L 438.580273 177.497279 L 438.704149 177.138382 L 439.199653 178.573969 L 439.32353 178.215072 L 440.190662 180.72735 L 440.314539 180.368453 L 440.810043 181.80404 L 441.057795 181.086247 L 441.181671 181.445143 L 441.677176 180.009556 L 441.801052 180.368453 L 442.668185 177.856176 L 442.915937 178.573969 L 443.039813 178.215072 L 443.163689 178.573969 L 443.287566 178.215072 L 443.535318 178.932866 L 443.659194 178.573969 L 443.906946 179.291763 L 444.030822 178.932866 L 444.278575 179.650659 L 444.402451 179.291763 L 444.526327 179.650659 L 444.650203 179.291763 L 444.774079 179.650659 L 445.021831 178.932866 L 445.517336 180.368453 L 445.888964 179.291763 L 446.01284 179.650659 L 446.136716 179.291763 L 446.260593 179.650659 L 446.632221 178.573969 L 446.756097 178.932866 L 447.499354 176.779485 L 447.747106 177.497279 L 447.870982 177.138382 L 447.994858 177.497279 L 448.118734 177.138382 L 448.366487 177.856176 L 448.614239 177.138382 L 449.109743 178.573969 L 449.481372 177.497279 L 449.729124 178.215072 L 449.853 177.856176 L 449.976876 178.215072 L 450.224628 177.497279 L 450.472381 178.215072 L 452.454399 172.472724 L 452.578275 172.831621 L 452.949903 171.75493 L 453.073779 172.113827 L 453.321532 171.396033 L 453.445408 171.75493 L 453.940912 170.319343 L 454.064788 170.67824 L 454.312541 169.960446 L 454.436417 170.319343 L 455.055797 168.524859 L 455.179673 168.883756 L 455.30355 168.524859 L 455.551302 169.242653 L 455.675178 168.883756 L 455.799054 169.242653 L 455.92293 168.883756 L 456.046806 169.242653 L 456.170682 168.883756 L 456.418435 169.60155 L 456.913939 168.165962 L 457.037815 168.524859 L 457.409444 167.448169 L 457.53332 167.807066 L 457.904948 166.730375 L 458.276577 167.807066 L 458.524329 167.089272 L 458.772081 167.807066 L 458.895957 167.448169 L 459.143709 168.165962 L 459.886966 166.012582 L 460.010842 166.371479 L 460.877975 163.859201 L 461.497356 165.653685 L 461.621232 165.294788 L 461.745108 165.653685 L 462.116736 164.576995 L 462.488365 165.653685 L 462.612241 165.294788 L 462.736117 165.653685 L 462.859993 165.294788 L 462.983869 165.653685 L 463.231622 164.935891 L 463.355498 165.294788 L 463.479374 164.935891 L 463.727126 165.653685 L 464.965887 162.064717 L 465.089763 162.423614 L 465.709144 160.62913 L 465.956896 161.346924 L 466.328525 160.270233 L 466.576277 160.988027 L 466.700153 160.62913 L 466.824029 160.988027 L 466.947905 160.62913 L 467.195657 161.346924 L 467.319534 160.988027 L 467.44341 161.346924 L 467.567286 160.988027 L 467.691162 161.346924 L 467.815038 160.988027 L 467.938914 161.346924 L 468.186666 160.62913 L 468.310543 160.988027 L 468.558295 160.270233 L 468.682171 160.62913 L 468.806047 160.270233 L 468.929923 160.62913 L 469.425428 159.193543 L 469.549304 159.55244 L 469.920932 158.475749 L 470.168684 159.193543 L 470.416437 158.475749 L 470.540313 158.834646 L 470.664189 158.475749 L 470.911941 159.193543 L 471.28357 158.116853 L 471.531322 158.834646 L 471.90295 157.757956 L 472.026826 158.116853 L 472.522331 156.681265 L 472.646207 157.040162 L 472.893959 156.322369 L 473.017835 156.681265 L 473.141711 156.322369 L 473.51334 157.399059 L 473.761092 156.681265 L 473.884968 157.040162 L 474.008844 156.681265 L 474.13272 157.040162 L 474.256597 156.681265 L 474.380473 157.040162 L 474.504349 156.681265 L 474.628225 157.040162 L 474.999853 155.963472 L 475.123729 156.322369 L 475.371482 155.604575 L 475.495358 155.963472 L 476.114738 154.168988 L 476.238615 154.527885 L 476.362491 154.168988 L 476.486367 154.527885 L 476.734119 153.810091 L 476.857995 154.168988 L 477.105747 153.451194 L 477.229624 153.810091 L 477.477376 153.092298 L 477.601252 153.451194 L 478.096756 152.015607 L 478.468385 153.092298 L 478.592261 152.733401 L 478.716137 153.092298 L 479.087765 152.015607 L 479.211641 152.374504 L 479.831022 150.58002 L 479.954898 150.938917 L 480.20265 150.221123 L 480.326527 150.58002 L 480.450403 150.221123 L 480.574279 150.58002 L 481.069783 149.144433 L 481.317536 149.862227 L 481.565288 149.144433 L 481.81304 149.862227 L 481.936916 149.50333 L 482.184668 150.221123 L 482.432421 149.50333 L 482.556297 149.862227 L 482.680173 149.50333 L 482.804049 149.862227 L 483.175677 148.785536 L 483.299554 149.144433 L 483.671182 148.067743 L 483.795058 148.42664 L 483.918934 148.067743 L 484.04281 148.42664 L 484.166686 148.067743 L 484.290563 148.42664 L 484.538315 147.708846 L 484.786067 148.42664 L 484.909943 148.067743 L 485.033819 148.42664 L 485.405448 147.349949 L 485.529324 147.708846 L 485.6532 147.349949 L 485.777076 147.708846 L 486.024828 146.991052 L 486.148704 147.349949 L 486.272581 146.991052 L 486.520333 147.708846 L 486.644209 147.349949 L 486.768085 147.708846 L 487.26359 146.273259 L 487.387466 146.632156 L 487.511342 146.273259 L 487.635218 146.632156 L 487.759094 146.273259 L 488.130722 147.349949 L 488.254599 146.991052 L 488.502351 147.708846 L 488.626227 147.349949 L 488.750103 147.708846 L 488.873979 147.349949 L 488.997855 147.708846 L 489.49336 146.273259 L 489.741112 146.991052 L 490.11274 145.914362 L 490.236617 146.273259 L 490.360493 145.914362 L 490.608245 146.632156 L 490.732121 146.273259 L 490.855997 146.632156 L 490.979873 146.273259 L 491.103749 146.632156 L 491.351502 145.914362 L 491.475378 146.273259 L 491.72313 145.555465 L 491.847006 145.914362 L 492.218634 144.837672 L 492.342511 145.196569 L 492.466387 144.837672 L 492.590263 145.196569 L 492.714139 144.837672 L 493.085767 145.914362 L 493.33352 145.196569 L 493.457396 145.555465 L 493.705148 144.837672 L 493.829024 145.196569 L 493.9529 144.837672 L 494.200652 145.555465 L 494.572281 144.478775 L 494.820033 145.196569 L 495.315538 143.760981 L 495.439414 144.119878 L 495.687166 143.402085 L 495.811042 143.760981 L 495.934918 143.402085 L 496.18267 144.119878 L 496.430423 143.402085 L 496.554299 143.760981 L 496.678175 143.402085 L 496.925927 144.119878 L 497.297556 143.043188 L 497.421432 143.402085 L 497.669184 142.684291 L 497.916936 143.402085 L 498.040812 143.043188 L 498.164688 143.402085 L 498.288565 143.043188 L 498.536317 143.760981 L 498.784069 143.043188 L 499.031821 143.760981 L 499.527326 142.325394 L 499.651202 142.684291 L 499.898954 141.966497 L 500.02283 142.325394 L 500.146706 141.966497 L 500.518335 143.043188 L 501.137715 141.248704 L 501.261592 141.607601 L 501.385468 141.248704 L 501.509344 141.607601 L 501.63322 141.248704 L 501.757096 141.607601 L 502.004848 140.889807 L 502.376477 141.966497 L 503.367486 139.095323 L 503.615238 139.813117 L 503.86299 139.095323 L 503.986866 139.45422 L 504.234619 138.736426 L 504.358495 139.095323 L 504.606247 138.37753 L 504.730123 138.736426 L 504.853999 138.37753 L 505.225627 139.45422 L 505.349504 139.095323 L 505.721132 140.172014 L 506.836017 136.941943 L 506.959893 137.300839 L 507.579274 135.506355 L 507.950902 136.583046 L 508.198654 135.865252 L 508.322531 136.224149 L 508.694159 135.147459 L 508.941911 135.865252 L 509.31354 134.788562 L 509.437416 135.147459 L 509.561292 134.788562 L 509.685168 135.147459 L 510.304549 133.352975 L 510.428425 133.711872 L 510.676177 132.994078 L 510.923929 133.711872 L 511.047805 133.352975 L 511.171681 133.711872 L 511.295558 133.352975 L 511.54331 134.070768 L 511.791062 133.352975 L 512.038814 134.070768 L 512.286567 133.352975 L 512.534319 134.070768 L 513.153699 132.276284 L 513.77308 134.070768 L 513.896956 133.711872 L 514.020832 134.070768 L 514.764089 131.917388 L 514.887965 132.276284 L 515.135717 131.558491 L 515.259594 131.917388 L 515.507346 131.199594 L 515.631222 131.558491 L 516.00285 130.481801 L 516.126726 130.840697 L 516.622231 129.40511 L 516.746107 129.764007 L 516.869983 129.40511 L 517.241612 130.481801 L 517.984868 128.32842 L 518.232621 129.046213 L 518.356497 128.687317 L 518.604249 129.40511 L 518.728125 129.046213 L 518.975877 129.764007 L 519.099753 129.40511 L 519.347506 130.122904 L 519.719134 129.046213 L 519.84301 129.40511 L 519.966886 129.046213 L 520.090762 129.40511 L 520.338515 128.687317 L 520.586267 129.40511 L 520.710143 129.046213 L 520.834019 129.40511 L 521.4534 127.610626 L 521.577276 127.969523 L 521.701152 127.610626 L 521.948904 128.32842 L 522.07278 127.969523 L 522.196656 128.32842 L 522.568285 127.251729 L 522.816037 127.969523 L 522.939913 127.610626 L 523.063789 127.969523 L 523.187665 127.610626 L 523.311542 127.969523 L 523.435418 127.610626 L 523.559294 127.969523 L 523.68317 127.610626 L 523.930922 128.32842 L 524.054798 127.969523 L 524.178674 128.32842 L 524.550303 127.251729 L 524.674179 127.610626 L 525.045807 126.533936 L 525.169683 126.892833 L 525.417436 126.175039 L 525.789064 127.251729 L 525.91294 126.892833 L 526.160692 127.610626 L 527.151701 124.739452 L 527.399454 125.457246 L 528.018834 123.662762 L 528.14271 124.021658 L 528.390463 123.303865 L 528.638215 124.021658 L 529.505348 121.509381 L 529.629224 121.868278 L 530.372481 119.714897 L 530.991861 121.509381 L 531.239614 120.791587 L 531.487366 121.509381 L 532.106746 119.714897 L 532.230623 120.073794 L 532.478375 119.356 L 532.602251 119.714897 L 532.726127 119.356 L 533.221631 120.791587 L 533.59326 119.714897 L 533.717136 120.073794 L 533.964888 119.356 L 534.088764 119.714897 L 534.21264 119.356 L 534.584269 120.432691 L 534.708145 120.073794 L 534.955897 120.791587 L 535.079773 120.432691 L 535.203649 120.791587 L 535.327526 120.432691 L 535.451402 120.791587 L 535.699154 120.073794 L 535.82303 120.432691 L 536.194658 119.356 L 536.937915 121.509381 L 537.061791 121.150484 L 537.309544 121.868278 L 537.805048 120.432691 L 537.928924 120.791587 L 538.0528 120.432691 L 538.176676 120.791587 L 538.300553 120.432691 L 538.424429 120.791587 L 538.672181 120.073794 L 538.796057 120.432691 L 539.167685 119.356 L 539.291562 119.714897 L 539.539314 118.997104 L 539.787066 119.714897 L 539.910942 119.356 L 540.282571 120.432691 L 540.530323 119.714897 L 540.654199 120.073794 L 541.025827 118.997104 L 541.27358 119.714897 L 541.397456 119.356 L 541.521332 119.714897 L 541.89296 118.638207 L 542.016836 118.997104 L 542.264589 118.27931 L 542.512341 118.997104 L 542.760093 118.27931 L 542.883969 118.638207 L 543.131721 117.920413 L 543.255598 118.27931 L 543.627226 117.20262 L 543.751102 117.561516 L 544.12273 116.484826 L 544.246607 116.843723 L 544.494359 116.125929 L 544.742111 116.843723 L 544.989863 116.125929 L 545.361492 117.20262 L 545.73312 116.125929 L 546.104748 117.20262 L 546.228625 116.843723 L 546.352501 117.20262 L 546.476377 116.843723 L 546.724129 117.561516 L 547.095757 116.484826 L 547.467386 117.561516 L 547.591262 117.20262 L 547.715138 117.561516 L 547.839014 117.20262 L 547.96289 117.561516 L 548.086766 117.20262 L 548.210642 117.561516 L 548.334519 117.20262 L 548.458395 117.561516 L 548.953899 116.125929 L 549.077775 116.484826 L 549.325528 115.767033 L 549.449404 116.125929 L 549.944908 114.690342 L 550.068784 115.049239 L 550.19266 114.690342 L 550.688165 116.125929 L 551.059793 115.049239 L 551.183669 115.408136 L 551.307546 115.049239 L 551.431422 115.408136 L 551.926926 113.972549 L 552.050802 114.331445 L 552.174678 113.972549 L 552.298555 114.331445 L 552.422431 113.972549 L 552.546307 114.331445 L 552.670183 113.972549 L 553.041811 115.049239 L 553.41344 113.972549 L 553.537316 114.331445 L 553.661192 113.972549 L 553.908944 114.690342 L 554.280573 113.613652 L 554.404449 113.972549 L 554.528325 113.613652 L 554.652201 113.972549 L 554.899953 113.254755 L 555.023829 113.613652 L 555.890962 111.101374 L 556.386467 112.536961 L 557.501352 109.30689 L 557.625228 109.665787 L 557.996856 108.589097 L 558.120732 108.947994 L 558.368485 108.2302 L 558.492361 108.589097 L 558.740113 107.871303 L 559.359494 109.665787 L 559.607246 108.947994 L 559.731122 109.30689 L 559.978874 108.589097 L 560.10275 108.947994 L 560.226626 108.589097 L 560.350503 108.947994 L 560.598255 108.2302 L 560.846007 108.947994 L 561.093759 108.2302 L 561.217635 108.589097 L 561.465388 107.871303 L 561.71314 108.589097 L 561.960892 107.871303 L 562.084768 108.2302 L 562.580273 106.794613 L 562.828025 107.512407 L 562.951901 107.15351 L 563.075777 107.512407 L 563.199653 107.15351 L 563.447406 107.871303 L 563.571282 107.512407 L 563.695158 107.871303 L 564.066786 106.794613 L 564.314539 107.512407 L 564.933919 105.717923 L 565.057795 106.076819 L 565.429424 105.000129 L 565.5533 105.359026 L 565.677176 105.000129 L 566.420433 107.15351 L 566.544309 106.794613 L 566.668185 107.15351 L 566.792061 106.794613 L 566.915937 107.15351 L 567.163689 106.435716 L 567.659194 107.871303 L 568.030822 106.794613 L 568.154698 107.15351 L 568.650203 105.717923 L 568.774079 106.076819 L 568.897955 105.717923 L 569.021831 106.076819 L 569.145707 105.717923 L 569.269584 106.076819 L 569.517336 105.359026 L 569.641212 105.717923 L 569.765088 105.359026 L 570.01284 106.076819 L 570.508345 104.641232 L 570.632221 105.000129 L 570.756097 104.641232 L 571.003849 105.359026 L 571.127725 105.000129 L 571.251602 105.359026 L 571.375478 105.000129 L 571.499354 105.359026 L 572.242611 103.205645 L 572.366487 103.564542 L 572.490363 103.205645 L 572.861991 104.282336 L 573.109743 103.564542 L 573.23362 103.923439 L 573.605248 102.846748 L 573.729124 103.205645 L 573.853 102.846748 L 573.976876 103.205645 L 574.100752 102.846748 L 574.224628 103.205645 L 574.472381 102.487852 L 574.844009 103.564542 L 574.967885 103.205645 L 575.587266 105.000129 L 576.08277 103.564542 L 576.330523 104.282336 L 576.949903 102.487852 L 577.197655 103.205645 L 577.321532 102.846748 L 577.569284 103.564542 L 577.817036 102.846748 L 577.940912 103.205645 L 578.808045 100.693368 L 579.055797 101.411161 L 579.179673 101.052265 L 579.427426 101.770058 L 579.799054 100.693368 L 579.92293 101.052265 L 580.294559 99.975574 L 580.542311 100.693368 L 580.666187 100.334471 L 580.790063 100.693368 L 581.037815 99.975574 L 581.285568 100.693368 L 581.409444 100.334471 L 581.53332 100.693368 L 581.657196 100.334471 L 581.904948 101.052265 L 582.1527 100.334471 L 582.276577 100.693368 L 582.524329 99.975574 L 582.772081 100.693368 L 583.019833 99.975574 L 583.515338 101.411161 L 583.639214 101.052265 L 584.010842 102.128955 L 584.134718 101.770058 L 584.258595 102.128955 L 584.630223 101.052265 L 584.877975 101.770058 L 585.621232 99.616677 L 585.745108 99.975574 L 585.99286 99.257781 L 586.364489 100.334471 L 586.364489 100.334471 " style="fill:none;opacity:0.9;stroke:#2ca02c;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_14"> <path clip-path="url(#p91285e6896)" d="M 79.091761 323.137592 L 79.339514 322.563357 L 79.46339 322.850475 L 79.587266 322.563357 L 79.711142 322.850475 L 79.835018 322.563357 L 79.958894 322.850475 L 80.08277 322.563357 L 80.206646 322.850475 L 80.454399 322.27624 L 80.826027 323.137592 L 81.321532 321.989123 L 81.445408 322.27624 L 81.569284 321.989123 L 81.69316 322.27624 L 81.817036 321.989123 L 82.064788 322.563357 L 82.684169 321.12777 L 82.808045 321.414888 L 83.179673 320.553535 L 83.427426 321.12777 L 83.551302 320.840653 L 83.799054 321.414888 L 84.170682 320.553535 L 84.294559 320.840653 L 84.418435 320.553535 L 84.542311 320.840653 L 84.913939 319.979301 L 85.037815 320.266418 L 85.161691 319.979301 L 85.285568 320.266418 L 85.409444 319.979301 L 85.53332 320.266418 L 85.904948 319.405066 L 86.400453 320.553535 L 86.772081 319.692183 L 86.895957 319.979301 L 87.019833 319.692183 L 87.143709 319.979301 L 88.134718 317.682361 L 88.258595 317.969479 L 88.382471 317.682361 L 88.506347 317.969479 L 89.37348 315.959657 L 89.497356 316.246774 L 89.868984 315.385422 L 89.99286 315.672539 L 90.240613 315.098304 L 90.364489 315.385422 L 90.612241 314.811187 L 90.736117 315.098304 L 90.859993 314.811187 L 90.983869 315.098304 L 91.107745 314.811187 L 91.231622 315.098304 L 91.479374 314.52407 L 91.60325 314.811187 L 91.974878 313.949835 L 92.098754 314.236952 L 92.22263 313.949835 L 92.346507 314.236952 L 92.718135 313.3756 L 92.965887 313.949835 L 93.089763 313.662717 L 93.956896 315.672539 L 94.080772 315.385422 L 94.824029 317.108126 L 95.071781 316.533892 L 95.195657 316.821009 L 95.44341 316.246774 L 95.567286 316.533892 L 96.06279 315.385422 L 96.310543 315.959657 L 97.425428 313.3756 L 97.549304 313.662717 L 97.797056 313.088482 L 97.920932 313.3756 L 98.044808 313.088482 L 98.168684 313.3756 L 98.416437 312.801365 L 98.540313 313.088482 L 98.788065 312.514248 L 99.035817 313.088482 L 99.407446 312.22713 L 99.531322 312.514248 L 100.646207 309.930191 L 100.893959 310.504426 L 101.017835 310.217308 L 101.141711 310.504426 L 101.265588 310.217308 L 101.389464 310.504426 L 101.884968 309.355956 L 102.13272 309.930191 L 102.380473 309.355956 L 102.504349 309.643073 L 102.875977 308.781721 L 102.999853 309.068839 L 103.123729 308.781721 L 103.247606 309.068839 L 103.371482 308.781721 L 103.495358 309.068839 L 104.114738 307.633251 L 104.362491 308.207486 L 104.486367 307.920369 L 104.734119 308.494604 L 105.601252 306.484782 L 105.725128 306.771899 L 105.97288 306.197664 L 106.096756 306.484782 L 106.716137 305.049195 L 106.963889 305.623429 L 107.211641 305.049195 L 107.335518 305.336312 L 107.459394 305.049195 L 107.58327 305.336312 L 107.707146 305.049195 L 107.954898 305.623429 L 108.574279 304.187842 L 108.698155 304.47496 L 108.822031 304.187842 L 109.317536 305.336312 L 109.565288 304.762077 L 109.689164 305.049195 L 109.81304 304.762077 L 109.936916 305.049195 L 110.060792 304.762077 L 110.184668 305.049195 L 110.432421 304.47496 L 110.556297 304.762077 L 110.804049 304.187842 L 110.927925 304.47496 L 111.051801 304.187842 L 111.175677 304.47496 L 112.04281 302.465138 L 112.166686 302.752255 L 112.290563 302.465138 L 112.414439 302.752255 L 112.662191 302.17802 L 112.786067 302.465138 L 113.405448 301.029551 L 113.6532 301.603785 L 114.520333 299.593964 L 114.644209 299.881081 L 114.768085 299.593964 L 115.015837 300.168198 L 115.139713 299.881081 L 115.26359 300.168198 L 115.511342 299.593964 L 115.635218 299.881081 L 115.759094 299.593964 L 115.88297 299.881081 L 116.130722 299.306846 L 116.254599 299.593964 L 116.502351 299.019729 L 116.626227 299.306846 L 116.997855 298.445494 L 117.245608 299.019729 L 118.484369 296.148554 L 118.608245 296.435672 L 118.732121 296.148554 L 118.855997 296.435672 L 118.979873 296.148554 L 119.103749 296.435672 L 119.351502 295.861437 L 119.72313 296.722789 L 119.847006 296.435672 L 119.970882 296.722789 L 120.094758 296.435672 L 120.218634 296.722789 L 120.714139 295.57432 L 120.838015 295.861437 L 120.961891 295.57432 L 121.085767 295.861437 L 121.457396 295.000085 L 121.829024 295.861437 L 122.076776 295.287202 L 122.200652 295.57432 L 122.448405 295.000085 L 122.572281 295.287202 L 122.943909 294.42585 L 123.067785 294.712967 L 123.315538 294.138732 L 123.934918 295.57432 L 124.058794 295.287202 L 124.306547 295.861437 L 124.430423 295.57432 L 124.554299 295.861437 L 125.049803 294.712967 L 125.173679 295.000085 L 125.297556 294.712967 L 125.669184 295.57432 L 125.916936 295.000085 L 126.164688 295.57432 L 126.412441 295.000085 L 126.660193 295.57432 L 126.907945 295.000085 L 127.279574 295.861437 L 127.898954 294.42585 L 128.02283 294.712967 L 128.518335 293.564498 L 128.642211 293.851615 L 128.766087 293.564498 L 128.889963 293.851615 L 129.137715 293.27738 L 129.261592 293.564498 L 129.385468 293.27738 L 129.509344 293.564498 L 129.757096 292.990263 L 129.880972 293.27738 L 130.128724 292.703145 L 130.500353 293.564498 L 130.995857 292.416028 L 131.119733 292.703145 L 131.491362 291.841793 L 131.86299 292.703145 L 131.986866 292.416028 L 132.358495 293.27738 L 132.606247 292.703145 L 132.977875 293.564498 L 133.101751 293.27738 L 133.47338 294.138732 L 133.721132 293.564498 L 134.216636 294.712967 L 134.340513 294.42585 L 134.464389 294.712967 L 134.588265 294.42585 L 135.083769 295.57432 L 135.331522 295.000085 L 135.579274 295.57432 L 135.70315 295.287202 L 135.950902 295.861437 L 136.074778 295.57432 L 136.446407 296.435672 L 136.570283 296.148554 L 136.818035 296.722789 L 136.941911 296.435672 L 137.065787 296.722789 L 138.056796 294.42585 L 138.180672 294.712967 L 138.304549 294.42585 L 138.428425 294.712967 L 138.676177 294.138732 L 138.800053 294.42585 L 138.923929 294.138732 L 139.047805 294.42585 L 139.171681 294.138732 L 139.295558 294.42585 L 139.419434 294.138732 L 139.667186 294.712967 L 139.791062 294.42585 L 139.914938 294.712967 L 140.16269 294.138732 L 140.534319 295.000085 L 140.905947 294.138732 L 141.029823 294.42585 L 141.77308 292.703145 L 141.896956 292.990263 L 142.392461 291.841793 L 142.516337 292.12891 L 142.764089 291.554676 L 142.887965 291.841793 L 143.38347 290.693323 L 143.507346 290.980441 L 143.631222 290.693323 L 143.755098 290.980441 L 143.878974 290.693323 L 144.00285 290.980441 L 144.250603 290.406206 L 144.374479 290.693323 L 144.498355 290.406206 L 144.746107 290.980441 L 144.869983 290.693323 L 144.993859 290.980441 L 145.117735 290.693323 L 145.241612 290.980441 L 146.232621 288.683501 L 146.604249 289.544854 L 146.975877 288.683501 L 147.966886 290.980441 L 148.214638 290.406206 L 148.338515 290.693323 L 148.462391 290.406206 L 148.586267 290.693323 L 148.710143 290.406206 L 148.834019 290.693323 L 149.329524 289.544854 L 149.577276 290.119089 L 150.692161 287.535032 L 150.816037 287.822149 L 150.939913 287.535032 L 151.063789 287.822149 L 151.187665 287.535032 L 151.435418 288.109267 L 152.178674 286.386562 L 152.302551 286.673679 L 152.798055 285.52521 L 153.045807 286.099445 L 153.541312 284.950975 L 153.665188 285.238092 L 154.532321 283.22827 L 154.903949 284.089623 L 155.027825 283.802505 L 155.151701 284.089623 L 155.52333 283.22827 L 155.771082 283.802505 L 156.018834 283.22827 L 156.266587 283.802505 L 156.514339 283.22827 L 156.638215 283.515388 L 156.762091 283.22827 L 156.885967 283.515388 L 157.257596 282.654035 L 157.381472 282.941153 L 157.505348 282.654035 L 157.629224 282.941153 L 157.7531 282.654035 L 157.876976 282.941153 L 158.744109 280.931331 L 158.867985 281.218448 L 158.991861 280.931331 L 159.115737 281.218448 L 159.239614 280.931331 L 159.36349 281.218448 L 159.611242 280.644213 L 159.858994 281.218448 L 159.98287 280.931331 L 160.106746 281.218448 L 160.230623 280.931331 L 160.478375 281.505566 L 161.097755 280.069979 L 161.221631 280.357096 L 161.469384 279.782861 L 161.59326 280.069979 L 162.088764 278.921509 L 162.336517 279.495744 L 162.460393 279.208626 L 162.584269 279.495744 L 162.832021 278.921509 L 162.955897 279.208626 L 163.203649 278.634392 L 163.327526 278.921509 L 163.575278 278.347274 L 163.699154 278.634392 L 163.82303 278.347274 L 163.946906 278.634392 L 164.070782 278.347274 L 164.194658 278.634392 L 164.566287 277.773039 L 164.814039 278.347274 L 164.937915 278.060157 L 165.309544 278.921509 L 166.0528 277.198804 L 166.176676 277.485922 L 166.424429 276.911687 L 166.672181 277.485922 L 167.415438 275.763217 L 167.787066 276.62457 L 168.158694 275.763217 L 168.530323 276.62457 L 168.901951 275.763217 L 169.025827 276.050335 L 169.149703 275.763217 L 169.27358 276.050335 L 169.521332 275.4761 L 169.645208 275.763217 L 169.89296 275.188982 L 170.016836 275.4761 L 170.760093 273.753395 L 170.883969 274.040513 L 171.255598 273.17916 L 171.379474 273.466278 L 171.627226 272.892043 L 171.751102 273.17916 L 171.874978 272.892043 L 171.998854 273.17916 L 172.246607 272.604926 L 172.370483 272.892043 L 172.865987 271.743573 L 173.113739 272.317808 L 173.485368 271.456456 L 173.856996 272.317808 L 174.104748 271.743573 L 174.228625 272.030691 L 174.724129 270.882221 L 174.848005 271.169338 L 175.095757 270.595104 L 175.219633 270.882221 L 175.467386 270.307986 L 175.715138 270.882221 L 175.839014 270.595104 L 176.086766 271.169338 L 176.582271 270.020869 L 176.953899 270.882221 L 177.201651 270.307986 L 177.449404 270.882221 L 177.57328 270.595104 L 177.697156 270.882221 L 178.19266 269.733751 L 178.316537 270.020869 L 178.564289 269.446634 L 178.812041 270.020869 L 178.935917 269.733751 L 179.059793 270.020869 L 179.431422 269.159517 L 179.679174 269.733751 L 180.422431 268.011047 L 180.546307 268.298164 L 180.670183 268.011047 L 180.794059 268.298164 L 181.289564 267.149695 L 182.156696 269.159517 L 182.404449 268.585282 L 182.528325 268.872399 L 183.271582 267.149695 L 183.395458 267.436812 L 183.64321 266.862577 L 183.767086 267.149695 L 183.890962 266.862577 L 184.138714 267.436812 L 184.510343 266.57546 L 184.634219 266.862577 L 185.005847 266.001225 L 185.2536 266.57546 L 185.377476 266.288342 L 185.501352 266.57546 L 185.996856 265.42699 L 186.120732 265.714107 L 186.244609 265.42699 L 186.368485 265.714107 L 186.616237 265.139873 L 186.740113 265.42699 L 187.48337 263.704285 L 187.607246 263.991403 L 187.731122 263.704285 L 187.854998 263.991403 L 187.978874 263.704285 L 188.226626 264.27852 L 188.350503 263.991403 L 188.474379 264.27852 L 188.722131 263.704285 L 188.846007 263.991403 L 189.217635 263.130051 L 189.589264 263.991403 L 189.837016 263.417168 L 189.960892 263.704285 L 190.208644 263.130051 L 190.332521 263.417168 L 190.580273 262.842933 L 190.704149 263.130051 L 191.075777 262.268698 L 191.199653 262.555816 L 191.447406 261.981581 L 191.571282 262.268698 L 191.695158 261.981581 L 192.066786 262.842933 L 192.686167 261.407346 L 192.810043 261.694463 L 192.933919 261.407346 L 193.181671 261.981581 L 193.5533 261.120229 L 193.801052 261.694463 L 194.17268 260.833111 L 194.296557 261.120229 L 194.544309 260.545994 L 194.792061 261.120229 L 195.163689 260.258876 L 195.287566 260.545994 L 195.78307 259.397524 L 195.906946 259.684642 L 196.774079 257.67482 L 197.39346 259.110407 L 197.517336 258.823289 L 197.888964 259.684642 L 198.01284 259.397524 L 198.260593 259.971759 L 198.508345 259.397524 L 198.632221 259.684642 L 198.756097 259.397524 L 198.879973 259.684642 L 199.003849 259.397524 L 199.127725 259.684642 L 199.375478 259.110407 L 199.499354 259.397524 L 199.62323 259.110407 L 200.242611 260.545994 L 200.614239 259.684642 L 200.738115 259.971759 L 201.23362 258.823289 L 201.357496 259.110407 L 201.729124 258.249054 L 201.853 258.536172 L 201.976876 258.249054 L 202.100752 258.536172 L 202.844009 256.813467 L 203.339514 257.961937 L 204.08277 256.239232 L 204.330523 256.813467 L 204.702151 255.952115 L 204.826027 256.239232 L 205.197655 255.37788 L 205.321532 255.664998 L 205.445408 255.37788 L 205.569284 255.664998 L 206.188664 254.22941 L 206.560293 255.090763 L 206.684169 254.803645 L 206.808045 255.090763 L 207.427426 253.655176 L 207.551302 253.942293 L 207.799054 253.368058 L 207.92293 253.655176 L 208.418435 252.506706 L 208.542311 252.793823 L 208.913939 251.932471 L 209.037815 252.219588 L 209.161691 251.932471 L 209.409444 252.506706 L 209.657196 251.932471 L 209.904948 252.506706 L 210.028824 252.219588 L 210.1527 252.506706 L 210.400453 251.932471 L 210.524329 252.219588 L 210.648205 251.932471 L 210.772081 252.219588 L 210.895957 251.932471 L 211.019833 252.219588 L 211.143709 251.932471 L 211.267586 252.219588 L 211.515338 251.645354 L 211.639214 251.932471 L 211.76309 251.645354 L 212.010842 252.219588 L 212.134718 251.932471 L 212.258595 252.219588 L 212.754099 251.071119 L 212.877975 251.358236 L 213.001851 251.071119 L 213.125727 251.358236 L 213.249604 251.071119 L 213.37348 251.358236 L 213.745108 250.496884 L 213.868984 250.784001 L 213.99286 250.496884 L 214.116736 250.784001 L 214.240613 250.496884 L 214.364489 250.784001 L 214.736117 249.922649 L 214.859993 250.209767 L 215.231622 249.348414 L 215.479374 249.922649 L 215.851002 249.061297 L 215.974878 249.348414 L 216.098754 249.061297 L 216.22263 249.348414 L 216.594259 248.487062 L 216.718135 248.774179 L 216.965887 248.199945 L 217.213639 248.774179 L 217.585268 247.912827 L 217.709144 248.199945 L 218.080772 247.338592 L 218.328525 247.912827 L 218.452401 247.62571 L 218.576277 247.912827 L 218.947905 247.051475 L 219.071781 247.338592 L 219.319534 246.764357 L 219.44341 247.051475 L 220.186666 245.32877 L 220.806047 246.764357 L 220.929923 246.47724 L 221.053799 246.764357 L 221.425428 245.903005 L 222.044808 247.338592 L 222.292561 246.764357 L 222.664189 247.62571 L 222.788065 247.338592 L 223.035817 247.912827 L 223.28357 247.338592 L 223.407446 247.62571 L 223.531322 247.338592 L 223.655198 247.62571 L 223.779074 247.338592 L 223.90295 247.62571 L 224.026826 247.338592 L 224.150702 247.62571 L 224.522331 246.764357 L 224.646207 247.051475 L 224.893959 246.47724 L 225.141711 247.051475 L 225.761092 245.615888 L 225.884968 245.903005 L 226.008844 245.615888 L 226.256597 246.190123 L 226.752101 245.041653 L 226.875977 245.32877 L 227.247606 244.467418 L 227.495358 245.041653 L 227.74311 244.467418 L 227.866986 244.754535 L 227.990862 244.467418 L 228.362491 245.32877 L 228.486367 245.041653 L 228.610243 245.32877 L 228.857995 244.754535 L 229.105747 245.32877 L 229.229624 245.041653 L 229.477376 245.615888 L 229.849004 244.754535 L 229.97288 245.041653 L 230.096756 244.754535 L 230.716137 246.190123 L 230.963889 245.615888 L 231.211641 246.190123 L 231.58327 245.32877 L 231.954898 246.190123 L 232.20265 245.615888 L 232.326527 245.903005 L 232.574279 245.32877 L 232.698155 245.615888 L 233.317536 244.180301 L 233.565288 244.754535 L 233.936916 243.893183 L 234.184668 244.467418 L 234.432421 243.893183 L 234.556297 244.180301 L 234.927925 243.318948 L 235.051801 243.606066 L 236.290563 240.734892 L 236.414439 241.022009 L 236.786067 240.160657 L 237.033819 240.734892 L 237.529324 239.586422 L 237.6532 239.873539 L 237.777076 239.586422 L 237.900952 239.873539 L 238.024828 239.586422 L 238.148704 239.873539 L 238.520333 239.012187 L 238.644209 239.299304 L 239.139713 238.150835 L 239.26359 238.437952 L 239.759094 237.289482 L 239.88297 237.5766 L 240.254599 236.715248 L 240.502351 237.289482 L 240.626227 237.002365 L 240.873979 237.5766 L 241.49336 236.141013 L 241.741112 236.715248 L 242.236617 235.566778 L 242.360493 235.853895 L 242.732121 234.992543 L 242.855997 235.27966 L 243.103749 234.705426 L 243.227625 234.992543 L 243.72313 233.844073 L 243.970882 234.418308 L 244.094758 234.131191 L 244.342511 234.705426 L 244.466387 234.418308 L 244.838015 235.27966 L 244.961891 234.992543 L 245.085767 235.27966 L 245.705148 233.844073 L 245.9529 234.418308 L 246.076776 234.131191 L 246.200652 234.418308 L 246.324529 234.131191 L 246.448405 234.418308 L 246.696157 233.844073 L 246.820033 234.131191 L 247.315538 232.982721 L 247.439414 233.269838 L 247.934918 232.121369 L 248.058794 232.408486 L 248.18267 232.121369 L 248.306547 232.408486 L 248.430423 232.121369 L 248.554299 232.408486 L 249.173679 230.972899 L 249.297556 231.260016 L 249.669184 230.398664 L 249.79306 230.685782 L 250.412441 229.250195 L 250.660193 229.824429 L 250.784069 229.537312 L 250.907945 229.824429 L 251.279574 228.963077 L 251.40345 229.250195 L 251.898954 228.101725 L 252.518335 229.537312 L 252.642211 229.250195 L 253.013839 230.111547 L 253.261592 229.537312 L 253.385468 229.824429 L 253.509344 229.537312 L 253.63322 229.824429 L 253.880972 229.250195 L 254.128724 229.824429 L 254.871981 228.101725 L 255.119733 228.67596 L 255.367486 228.101725 L 255.491362 228.388842 L 255.615238 228.101725 L 255.739114 228.388842 L 256.110742 227.52749 L 256.234619 227.814607 L 256.358495 227.52749 L 256.482371 227.814607 L 256.853999 226.953255 L 256.977875 227.240373 L 257.101751 226.953255 L 257.225627 227.240373 L 257.349504 226.953255 L 257.47338 227.240373 L 257.721132 226.666138 L 257.968884 227.240373 L 258.340513 226.37902 L 258.464389 226.666138 L 258.588265 226.37902 L 258.836017 226.953255 L 259.455398 225.517668 L 259.579274 225.804785 L 260.322531 224.082081 L 260.570283 224.656316 L 260.694159 224.369198 L 260.818035 224.656316 L 261.065787 224.082081 L 261.189663 224.369198 L 262.056796 222.359376 L 262.180672 222.646494 L 262.552301 221.785141 L 262.676177 222.072259 L 262.923929 221.498024 L 263.171681 222.072259 L 263.295558 221.785141 L 263.419434 222.072259 L 264.16269 220.349554 L 264.410443 220.923789 L 264.534319 220.636672 L 264.782071 221.210907 L 265.029823 220.636672 L 265.153699 220.923789 L 266.392461 218.052615 L 266.516337 218.339732 L 267.755098 215.468558 L 267.878974 215.755676 L 268.00285 215.468558 L 268.126726 215.755676 L 268.250603 215.468558 L 268.374479 215.755676 L 269.117735 214.032971 L 269.241612 214.320088 L 269.365488 214.032971 L 269.489364 214.320088 L 269.737116 213.745854 L 269.984868 214.320088 L 270.480373 213.171619 L 270.604249 213.458736 L 270.975877 212.597384 L 271.223629 213.171619 L 271.347506 212.884501 L 271.471382 213.171619 L 271.595258 212.884501 L 271.719134 213.171619 L 271.84301 212.884501 L 271.966886 213.171619 L 272.090762 212.884501 L 272.214638 213.171619 L 272.586267 212.310266 L 272.710143 212.597384 L 273.205647 211.448914 L 273.4534 212.023149 L 273.825028 211.161797 L 274.07278 211.736032 L 274.196656 211.448914 L 274.692161 212.597384 L 274.816037 212.310266 L 274.939913 212.597384 L 275.435418 211.448914 L 275.930922 212.597384 L 276.054798 212.310266 L 276.178674 212.597384 L 276.302551 212.310266 L 276.426427 212.597384 L 276.798055 211.736032 L 276.921931 212.023149 L 277.91294 209.72621 L 278.160692 210.300445 L 278.284569 210.013327 L 278.408445 210.300445 L 278.532321 210.013327 L 278.656197 210.300445 L 278.780073 210.013327 L 279.027825 210.587562 L 279.275578 210.013327 L 279.399454 210.300445 L 279.894958 209.151975 L 280.14271 209.72621 L 280.514339 208.864857 L 280.638215 209.151975 L 280.885967 208.57774 L 281.009843 208.864857 L 281.133719 208.57774 L 281.257596 208.864857 L 281.381472 208.57774 L 281.505348 208.864857 L 281.7531 208.290623 L 281.876976 208.57774 L 282.372481 207.42927 L 282.496357 207.716388 L 283.115737 206.280801 L 283.36349 206.855035 L 283.98287 205.419448 L 284.106746 205.706566 L 284.230623 205.419448 L 284.478375 205.993683 L 284.602251 205.706566 L 284.726127 205.993683 L 285.097755 205.132331 L 285.221631 205.419448 L 285.59326 204.558096 L 285.717136 204.845213 L 285.841012 204.558096 L 286.088764 205.132331 L 286.584269 203.983861 L 286.955897 204.845213 L 287.327526 203.983861 L 287.575278 204.558096 L 287.946906 203.696744 L 288.070782 203.983861 L 288.194658 203.696744 L 288.318535 203.983861 L 288.442411 203.696744 L 288.814039 204.558096 L 289.185667 203.696744 L 289.309544 203.983861 L 289.681172 203.122509 L 289.805048 203.409626 L 290.300553 202.261157 L 290.424429 202.548274 L 291.539314 199.964217 L 291.787066 200.538452 L 291.910942 200.251335 L 292.034818 200.538452 L 292.158694 200.251335 L 292.282571 200.538452 L 292.530323 199.964217 L 292.654199 200.251335 L 292.901951 199.6771 L 293.397456 200.82557 L 293.645208 200.251335 L 293.769084 200.538452 L 294.140712 199.6771 L 294.512341 200.538452 L 294.883969 199.6771 L 295.131721 200.251335 L 295.50335 199.389982 L 295.627226 199.6771 L 295.874978 199.102865 L 295.998854 199.389982 L 296.12273 199.102865 L 296.370483 199.6771 L 298.971881 193.647634 L 299.095757 193.934751 L 299.839014 192.212047 L 299.96289 192.499164 L 300.086766 192.212047 L 300.210642 192.499164 L 300.706147 191.350694 L 300.830023 191.637812 L 300.953899 191.350694 L 301.325528 192.212047 L 301.449404 191.924929 L 301.697156 192.499164 L 302.440413 190.77646 L 302.688165 191.350694 L 302.935917 190.77646 L 303.059793 191.063577 L 303.679174 189.62799 L 303.80305 189.915107 L 304.794059 187.618168 L 304.917935 187.905285 L 305.041811 187.618168 L 305.289564 188.192403 L 305.537316 187.618168 L 305.661192 187.905285 L 306.404449 186.182581 L 306.528325 186.469698 L 307.023829 185.321229 L 307.147705 185.608346 L 307.395458 185.034111 L 307.519334 185.321229 L 307.890962 184.459876 L 308.014838 184.746994 L 308.138714 184.459876 L 308.510343 185.321229 L 310.120732 181.588702 L 310.244609 181.875819 L 310.616237 181.014467 L 310.740113 181.301585 L 310.987865 180.72735 L 311.111741 181.014467 L 311.359494 180.440232 L 311.48337 180.72735 L 311.978874 179.57888 L 312.10275 179.865998 L 312.226626 179.57888 L 312.350503 179.865998 L 312.969883 178.43041 L 313.093759 178.717528 L 313.465388 177.856176 L 313.589264 178.143293 L 314.332521 176.420588 L 314.580273 176.994823 L 314.951901 176.133471 L 315.199653 176.707706 L 315.32353 176.420588 L 315.447406 176.707706 L 315.819034 175.846354 L 316.066786 176.420588 L 316.190662 176.133471 L 316.438415 176.707706 L 316.933919 175.559236 L 317.429424 176.707706 L 317.677176 176.133471 L 317.801052 176.420588 L 318.17268 175.559236 L 318.296557 175.846354 L 318.420433 175.559236 L 318.544309 175.846354 L 319.039813 174.697884 L 319.163689 174.985001 L 319.287566 174.697884 L 319.411442 174.985001 L 320.526327 172.400944 L 320.650203 172.688062 L 321.145707 171.539592 L 321.269584 171.82671 L 321.517336 171.252475 L 321.641212 171.539592 L 321.765088 171.252475 L 321.888964 171.539592 L 322.01284 171.252475 L 322.260593 171.82671 L 322.508345 171.252475 L 322.632221 171.539592 L 322.756097 171.252475 L 322.879973 171.539592 L 323.003849 171.252475 L 323.251602 171.82671 L 323.499354 171.252475 L 323.62323 171.539592 L 323.747106 171.252475 L 324.118734 172.113827 L 324.985867 170.104005 L 325.23362 170.67824 L 325.357496 170.391123 L 325.481372 170.67824 L 325.729124 170.104005 L 325.853 170.391123 L 326.348505 169.242653 L 326.720133 170.104005 L 327.339514 168.668418 L 327.587266 169.242653 L 327.711142 168.955535 L 327.835018 169.242653 L 328.454399 167.807066 L 328.578275 168.094183 L 328.826027 167.519948 L 328.949903 167.807066 L 329.197655 167.232831 L 329.321532 167.519948 L 330.064788 165.797244 L 330.312541 166.371479 L 330.436417 166.084361 L 330.808045 166.945713 L 330.931921 166.658596 L 331.179673 167.232831 L 332.046806 165.223009 L 332.294559 165.797244 L 332.542311 165.223009 L 332.913939 166.084361 L 333.161691 165.510126 L 333.285568 165.797244 L 333.53332 165.223009 L 333.657196 165.510126 L 334.028824 164.648774 L 334.276577 165.223009 L 334.400453 164.935891 L 334.648205 165.510126 L 334.895957 164.935891 L 335.143709 165.510126 L 335.267586 165.223009 L 335.391462 165.510126 L 336.506347 162.926069 L 336.630223 163.213187 L 337.249604 161.7776 L 337.37348 162.064717 L 337.745108 161.203365 L 337.868984 161.490482 L 337.99286 161.203365 L 338.240613 161.7776 L 338.983869 160.054895 L 339.107745 160.342013 L 340.346507 157.470838 L 340.470383 157.757956 L 340.718135 157.183721 L 340.842011 157.470838 L 340.965887 157.183721 L 341.337516 158.045073 L 341.461392 157.757956 L 341.585268 158.045073 L 341.83302 157.470838 L 341.956896 157.757956 L 342.328525 156.896604 L 342.576277 157.470838 L 342.700153 157.183721 L 343.071781 158.045073 L 343.319534 157.470838 L 343.44341 157.757956 L 343.567286 157.470838 L 343.815038 158.045073 L 344.06279 157.470838 L 344.186666 157.757956 L 344.558295 156.896604 L 344.682171 157.183721 L 344.929923 156.609486 L 345.053799 156.896604 L 345.425428 156.035251 L 345.67318 156.609486 L 345.797056 156.322369 L 346.292561 157.470838 L 346.664189 156.609486 L 346.788065 156.896604 L 347.531322 155.173899 L 347.779074 155.748134 L 348.150702 154.886782 L 348.398455 155.461016 L 348.522331 155.173899 L 348.770083 155.748134 L 348.893959 155.461016 L 349.017835 155.748134 L 349.637216 154.312547 L 349.761092 154.599664 L 350.008844 154.025429 L 350.628225 155.461016 L 351.123729 154.312547 L 351.74311 155.748134 L 351.866986 155.461016 L 351.990862 155.748134 L 352.610243 154.312547 L 352.981871 155.173899 L 353.477376 154.025429 L 353.601252 154.312547 L 353.725128 154.025429 L 353.849004 154.312547 L 354.096756 153.738312 L 354.220632 154.025429 L 354.468385 153.451194 L 354.592261 153.738312 L 354.963889 152.87696 L 355.087765 153.164077 L 355.58327 152.015607 L 355.707146 152.302725 L 356.078774 151.441372 L 356.450403 152.302725 L 357.565288 149.718668 L 357.689164 150.005785 L 357.936916 149.431551 L 358.308545 150.292903 L 358.432421 150.005785 L 358.556297 150.292903 L 358.680173 150.005785 L 358.804049 150.292903 L 358.927925 150.005785 L 359.051801 150.292903 L 359.299554 149.718668 L 359.42343 150.005785 L 360.538315 147.421729 L 360.909943 148.283081 L 362.148704 145.411907 L 362.396457 145.986141 L 363.139713 144.263437 L 363.26359 144.550554 L 363.88297 143.114967 L 364.130722 143.689202 L 364.750103 142.253615 L 364.873979 142.540732 L 364.997855 142.253615 L 365.49336 143.402085 L 365.741112 142.82785 L 365.864988 143.114967 L 366.11274 142.540732 L 366.236617 142.82785 L 366.732121 141.67938 L 367.227625 142.82785 L 367.351502 142.540732 L 367.475378 142.82785 L 367.847006 141.966497 L 367.970882 142.253615 L 368.838015 140.243793 L 369.33352 141.392263 L 369.457396 141.105145 L 369.705148 141.67938 L 370.076776 140.818028 L 370.324529 141.392263 L 370.572281 140.818028 L 370.696157 141.105145 L 371.191661 139.956676 L 371.315538 140.243793 L 371.687166 139.382441 L 371.811042 139.669558 L 371.934918 139.382441 L 372.18267 139.956676 L 372.430423 139.382441 L 372.554299 139.669558 L 372.678175 139.382441 L 372.802051 139.669558 L 373.049803 139.095323 L 373.297556 139.669558 L 373.421432 139.382441 L 373.545308 139.669558 L 373.79306 139.095323 L 374.536317 140.818028 L 374.660193 140.53091 L 375.155697 141.67938 L 375.279574 141.392263 L 375.527326 141.966497 L 375.651202 141.67938 L 375.898954 142.253615 L 376.146706 141.67938 L 376.394459 142.253615 L 376.889963 141.105145 L 377.385468 142.253615 L 377.880972 141.105145 L 378.004848 141.392263 L 378.252601 140.818028 L 378.624229 141.67938 L 378.995857 140.818028 L 379.119733 141.105145 L 379.615238 139.956676 L 379.739114 140.243793 L 380.234619 139.095323 L 380.358495 139.382441 L 380.482371 139.095323 L 380.606247 139.382441 L 381.225627 137.946854 L 381.47338 138.521088 L 381.721132 137.946854 L 381.968884 138.521088 L 382.09276 138.233971 L 382.216636 138.521088 L 382.588265 137.659736 L 382.959893 138.521088 L 383.083769 138.233971 L 383.207645 138.521088 L 383.331522 138.233971 L 383.827026 139.382441 L 383.950902 139.095323 L 384.074778 139.382441 L 384.198654 139.095323 L 384.322531 139.382441 L 384.446407 139.095323 L 384.570283 139.382441 L 384.941911 138.521088 L 385.065787 138.808206 L 385.189663 138.521088 L 385.31354 138.808206 L 385.809044 137.659736 L 386.180672 138.521088 L 386.304549 138.233971 L 386.428425 138.521088 L 386.800053 137.659736 L 386.923929 137.946854 L 387.047805 137.659736 L 387.171681 137.946854 L 387.295558 137.659736 L 387.419434 137.946854 L 387.667186 137.372619 L 387.791062 137.659736 L 387.914938 137.372619 L 388.16269 137.946854 L 388.534319 137.085501 L 388.658195 137.372619 L 389.277576 135.937032 L 389.525328 136.511266 L 389.896956 135.649914 L 390.268585 136.511266 L 390.516337 135.937032 L 390.640213 136.224149 L 390.764089 135.937032 L 391.135717 136.798384 L 392.374479 133.92721 L 392.622231 134.501444 L 392.993859 133.640092 L 393.365488 134.501444 L 393.489364 134.214327 L 393.737116 134.788562 L 394.232621 133.640092 L 394.480373 134.214327 L 395.223629 132.491622 L 395.595258 133.352975 L 395.84301 132.77874 L 396.090762 133.352975 L 396.214638 133.065857 L 396.462391 133.640092 L 396.586267 133.352975 L 396.834019 133.92721 L 396.957895 133.640092 L 397.081771 133.92721 L 397.329524 133.352975 L 397.577276 133.92721 L 397.825028 133.352975 L 397.948904 133.640092 L 398.196656 133.065857 L 398.816037 134.501444 L 399.063789 133.92721 L 399.187665 134.214327 L 400.178674 131.917388 L 400.302551 132.204505 L 400.798055 131.056035 L 401.045807 131.63027 L 402.036816 129.333331 L 402.160692 129.620448 L 402.780073 128.184861 L 402.903949 128.471979 L 403.151701 127.897744 L 403.275578 128.184861 L 403.399454 127.897744 L 403.647206 128.471979 L 403.894958 127.897744 L 404.018834 128.184861 L 404.390463 127.323509 L 404.514339 127.610626 L 404.885967 126.749274 L 405.133719 127.323509 L 405.381472 126.749274 L 405.505348 127.036391 L 405.876976 126.175039 L 406.124728 126.749274 L 406.248605 126.462157 L 406.496357 127.036391 L 406.744109 126.462157 L 406.991861 127.036391 L 407.115737 126.749274 L 407.239614 127.036391 L 407.487366 126.462157 L 407.98287 127.610626 L 408.106746 127.323509 L 408.230623 127.610626 L 408.354499 127.323509 L 408.478375 127.610626 L 408.602251 127.323509 L 408.850003 127.897744 L 409.097755 127.323509 L 409.221631 127.610626 L 409.841012 126.175039 L 409.964888 126.462157 L 410.21264 125.887922 L 410.336517 126.175039 L 410.460393 125.887922 L 411.079773 127.323509 L 411.451402 126.462157 L 411.575278 126.749274 L 411.82303 126.175039 L 412.194658 127.036391 L 412.318535 126.749274 L 412.442411 127.036391 L 412.566287 126.749274 L 412.690163 127.036391 L 412.814039 126.749274 L 412.937915 127.036391 L 413.557296 125.600804 L 413.681172 125.887922 L 414.0528 125.026569 L 414.176676 125.313687 L 414.672181 124.165217 L 414.919933 124.739452 L 415.787066 122.72963 L 416.034818 123.303865 L 416.530323 122.155395 L 416.654199 122.442513 L 417.397456 120.719808 L 417.521332 121.006926 L 417.645208 120.719808 L 417.89296 121.294043 L 418.388465 120.145573 L 418.512341 120.432691 L 419.007845 119.284221 L 419.131721 119.571338 L 419.379474 118.997104 L 419.751102 119.858456 L 419.874978 119.571338 L 419.998854 119.858456 L 420.618235 118.422869 L 420.742111 118.709986 L 420.865987 118.422869 L 420.989863 118.709986 L 421.113739 118.422869 L 421.237616 118.709986 L 422.476377 115.838812 L 422.600253 116.125929 L 422.724129 115.838812 L 422.848005 116.125929 L 422.971881 115.838812 L 423.095757 116.125929 L 423.219633 115.838812 L 423.34351 116.125929 L 423.96289 114.690342 L 424.210642 115.264577 L 425.325528 112.68052 L 425.449404 112.967638 L 425.57328 112.68052 L 425.697156 112.967638 L 426.19266 111.819168 L 426.316537 112.106285 L 426.688165 111.244933 L 426.812041 111.53205 L 426.935917 111.244933 L 427.183669 111.819168 L 427.555298 110.957816 L 427.679174 111.244933 L 427.80305 110.957816 L 427.926926 111.244933 L 428.174678 110.670698 L 428.298555 110.957816 L 428.422431 110.670698 L 428.546307 110.957816 L 429.041811 109.809346 L 429.165687 110.096463 L 430.280573 107.512407 L 430.528325 108.086641 L 430.776077 107.512407 L 430.899953 107.799524 L 431.147705 107.225289 L 431.395458 107.799524 L 431.519334 107.512407 L 431.64321 107.799524 L 432.014838 106.938172 L 432.386467 107.799524 L 432.510343 107.512407 L 432.634219 107.799524 L 432.881971 107.225289 L 433.005847 107.512407 L 433.129723 107.225289 L 433.377476 107.799524 L 433.501352 107.512407 L 433.749104 108.086641 L 433.87298 107.799524 L 433.996856 108.086641 L 434.120732 107.799524 L 434.244609 108.086641 L 434.368485 107.799524 L 434.492361 108.086641 L 434.616237 107.799524 L 434.740113 108.086641 L 434.863989 107.799524 L 434.987865 108.086641 L 435.111741 107.799524 L 435.235618 108.086641 L 435.359494 107.799524 L 435.607246 108.373759 L 435.731122 108.086641 L 435.978874 108.660876 L 436.226626 108.086641 L 436.350503 108.373759 L 436.969883 106.938172 L 437.093759 107.225289 L 437.341512 106.651054 L 437.465388 106.938172 L 438.084768 105.502585 L 438.332521 106.076819 L 438.456397 105.789702 L 438.704149 106.363937 L 438.828025 106.076819 L 438.951901 106.363937 L 439.199653 105.789702 L 439.32353 106.076819 L 439.447406 105.789702 L 439.571282 106.076819 L 439.819034 105.502585 L 440.314539 106.651054 L 440.438415 106.363937 L 440.562291 106.651054 L 440.810043 106.076819 L 441.057795 106.651054 L 441.5533 105.502585 L 441.677176 105.789702 L 442.048804 104.92835 L 442.17268 105.215467 L 442.296557 104.92835 L 442.420433 105.215467 L 442.544309 104.92835 L 442.668185 105.215467 L 443.411442 103.492763 L 443.535318 103.77988 L 443.906946 102.918528 L 444.030822 103.205645 L 444.154698 102.918528 L 444.278575 103.205645 L 444.774079 102.057175 L 445.021831 102.63141 L 445.145707 102.344293 L 445.39346 102.918528 L 446.01284 101.482941 L 446.136716 101.770058 L 446.508345 100.908706 L 446.632221 101.195823 L 446.756097 100.908706 L 446.879973 101.195823 L 447.127725 100.621588 L 447.251602 100.908706 L 447.62323 100.047354 L 447.870982 100.621588 L 447.994858 100.334471 L 448.118734 100.621588 L 448.366487 100.047354 L 448.490363 100.334471 L 448.614239 100.047354 L 448.738115 100.334471 L 448.861991 100.047354 L 448.985867 100.334471 L 449.481372 99.186001 L 449.605248 99.473119 L 449.853 98.898884 L 449.976876 99.186001 L 450.100752 98.898884 L 450.348505 99.473119 L 450.472381 99.186001 L 450.844009 100.047354 L 450.967885 99.760236 L 451.091761 100.047354 L 451.215637 99.760236 L 451.587266 100.621588 L 451.835018 100.047354 L 451.958894 100.334471 L 452.206646 99.760236 L 452.578275 100.621588 L 452.826027 100.047354 L 452.949903 100.334471 L 453.073779 100.047354 L 453.445408 100.908706 L 453.569284 100.621588 L 453.69316 100.908706 L 453.940912 100.334471 L 454.064788 100.621588 L 454.436417 99.760236 L 454.684169 100.334471 L 454.808045 100.047354 L 455.055797 100.621588 L 455.427426 99.760236 L 455.551302 100.047354 L 455.799054 99.473119 L 455.92293 99.760236 L 456.418435 98.611766 L 456.666187 99.186001 L 457.781072 96.601944 L 457.904948 96.889062 L 458.1527 96.314827 L 458.276577 96.601944 L 458.524329 96.02771 L 459.143709 97.463297 L 459.391462 96.889062 L 459.515338 97.176179 L 459.76309 96.601944 L 460.010842 97.176179 L 460.258595 96.601944 L 460.506347 97.176179 L 460.754099 96.601944 L 460.877975 96.889062 L 461.001851 96.601944 L 461.249604 97.176179 L 461.745108 96.02771 L 462.364489 97.463297 L 462.612241 96.889062 L 462.736117 97.176179 L 462.859993 96.889062 L 462.983869 97.176179 L 463.231622 96.601944 L 463.355498 96.889062 L 463.479374 96.601944 L 463.60325 96.889062 L 464.346507 95.166357 L 464.594259 95.740592 L 464.842011 95.166357 L 464.965887 95.453475 L 465.089763 95.166357 L 465.213639 95.453475 L 465.585268 94.592122 L 465.956896 95.453475 L 466.080772 95.166357 L 466.204648 95.453475 L 466.452401 94.87924 L 466.576277 95.166357 L 467.071781 94.017888 L 467.195657 94.305005 L 467.691162 93.156535 L 467.815038 93.443653 L 468.186666 92.5823 L 468.682171 93.73077 L 469.425428 92.008066 L 469.67318 92.5823 L 470.168684 91.433831 L 470.292561 91.720948 L 470.788065 90.572479 L 470.911941 90.859596 L 471.035817 90.572479 L 471.159693 90.859596 L 471.407446 90.285361 L 471.531322 90.572479 L 471.90295 89.711126 L 472.026826 89.998244 L 472.398455 89.136891 L 472.522331 89.424009 L 472.646207 89.136891 L 473.017835 89.998244 L 473.389464 89.136891 L 473.51334 89.424009 L 473.637216 89.136891 L 473.761092 89.424009 L 473.884968 89.136891 L 474.13272 89.711126 L 474.628225 88.562657 L 474.752101 88.849774 L 474.875977 88.562657 L 475.123729 89.136891 L 475.247606 88.849774 L 475.371482 89.136891 L 475.866986 87.988422 L 476.114738 88.562657 L 476.362491 87.988422 L 476.486367 88.275539 L 476.734119 87.701304 L 476.857995 87.988422 L 477.229624 87.127069 L 477.3535 87.414187 L 477.601252 86.839952 L 477.849004 87.414187 L 478.220632 86.552835 L 478.344509 86.839952 L 478.963889 85.404365 L 479.087765 85.691482 L 479.211641 85.404365 L 479.335518 85.691482 L 479.707146 84.83013 L 479.831022 85.117247 L 479.954898 84.83013 L 480.078774 85.117247 L 480.20265 84.83013 L 480.326527 85.117247 L 480.574279 84.543013 L 480.698155 84.83013 L 480.945907 84.255895 L 481.069783 84.543013 L 481.317536 83.968778 L 481.565288 84.543013 L 481.689164 84.255895 L 481.81304 84.543013 L 482.184668 83.68166 L 482.432421 84.255895 L 483.175677 82.533191 L 483.299554 82.820308 L 483.42343 82.533191 L 483.795058 83.394543 L 484.662191 81.384721 L 484.786067 81.671838 L 485.529324 79.949134 L 485.777076 80.523369 L 486.148704 79.662016 L 486.396457 80.236251 L 486.520333 79.949134 L 486.768085 80.523369 L 487.015837 79.949134 L 487.26359 80.523369 L 487.387466 80.236251 L 487.511342 80.523369 L 487.635218 80.236251 L 488.130722 81.384721 L 488.378475 80.810486 L 488.502351 81.097604 L 488.750103 80.523369 L 488.997855 81.097604 L 489.121731 80.810486 L 489.245608 81.097604 L 489.369484 80.810486 L 490.236617 82.820308 L 490.484369 82.246073 L 490.855997 83.107425 L 491.847006 80.810486 L 491.970882 81.097604 L 492.094758 80.810486 L 492.466387 81.671838 L 492.714139 81.097604 L 492.838015 81.384721 L 493.457396 79.949134 L 493.581272 80.236251 L 493.705148 79.949134 L 493.9529 80.523369 L 494.324529 79.662016 L 494.448405 79.949134 L 494.820033 79.087782 L 494.943909 79.374899 L 495.315538 78.513547 L 495.439414 78.800664 L 495.934918 77.652194 L 496.306547 78.513547 L 497.049803 76.790842 L 497.297556 77.365077 L 497.79306 76.216607 L 497.916936 76.503725 L 498.164688 75.92949 L 498.412441 76.503725 L 498.536317 76.216607 L 498.784069 76.790842 L 498.907945 76.503725 L 499.155697 77.07796 L 499.40345 76.503725 L 499.651202 77.07796 L 500.02283 76.216607 L 500.146706 76.503725 L 500.394459 75.92949 L 500.642211 76.503725 L 501.013839 75.642372 L 501.385468 76.503725 L 501.757096 75.642372 L 502.252601 76.790842 L 502.376477 76.503725 L 502.500353 76.790842 L 502.624229 76.503725 L 502.748105 76.790842 L 503.119733 75.92949 L 503.615238 77.07796 L 503.739114 76.790842 L 503.86299 77.07796 L 503.986866 76.790842 L 504.110742 77.07796 L 504.358495 76.503725 L 504.482371 76.790842 L 505.47338 74.493903 L 505.597256 74.78102 L 505.721132 74.493903 L 505.845008 74.78102 L 505.968884 74.493903 L 506.09276 74.78102 L 507.207645 72.196963 L 507.331522 72.484081 L 507.579274 71.909846 L 507.70315 72.196963 L 507.950902 71.622729 L 508.322531 72.484081 L 509.065787 70.761376 L 509.437416 71.622729 L 509.809044 70.761376 L 510.676177 72.771198 L 511.047805 71.909846 L 511.171681 72.196963 L 511.419434 71.622729 L 511.667186 72.196963 L 512.410443 70.474259 L 512.658195 71.048494 L 513.153699 69.900024 L 513.277576 70.187141 L 513.401452 69.900024 L 513.525328 70.187141 L 514.020832 69.038672 L 514.144708 69.325789 L 514.516337 68.464437 L 514.764089 69.038672 L 515.259594 67.890202 L 515.507346 68.464437 L 515.631222 68.177319 L 515.755098 68.464437 L 516.498355 66.741732 L 516.869983 67.603085 L 517.61324 65.88038 L 517.984868 66.741732 L 518.232621 66.167497 L 518.480373 66.741732 L 518.975877 65.593263 L 519.223629 66.167497 L 519.719134 65.019028 L 519.84301 65.306145 L 520.834019 63.009206 L 521.081771 63.583441 L 521.205647 63.296323 L 521.329524 63.583441 L 522.320533 61.286501 L 522.568285 61.860736 L 522.692161 61.573619 L 522.816037 61.860736 L 524.054798 58.989562 L 524.674179 60.425149 L 524.921931 59.850914 L 525.045807 60.138032 L 525.29356 59.563797 L 525.541312 60.138032 L 525.665188 59.850914 L 525.789064 60.138032 L 526.160692 59.276679 L 526.284569 59.563797 L 526.408445 59.276679 L 526.780073 60.138032 L 527.275578 58.989562 L 527.894958 60.425149 L 528.018834 60.138032 L 528.266587 60.712266 L 528.390463 60.425149 L 528.514339 60.712266 L 528.638215 60.425149 L 528.762091 60.712266 L 529.505348 58.989562 L 529.629224 59.276679 L 529.7531 58.989562 L 530.000852 59.563797 L 530.248605 58.989562 L 530.372481 59.276679 L 530.744109 58.415327 L 530.867985 58.702444 L 530.991861 58.415327 L 531.115737 58.702444 L 531.36349 58.12821 L 531.487366 58.415327 L 531.611242 58.12821 L 531.735118 58.415327 L 532.230623 57.266857 L 532.354499 57.553975 L 533.469384 54.969918 L 533.59326 55.257035 L 533.841012 54.6828 L 533.964888 54.969918 L 534.088764 54.6828 L 534.460393 55.544153 L 534.584269 55.257035 L 534.955897 56.118388 L 535.079773 55.83127 L 535.327526 56.405505 L 535.699154 55.544153 L 535.82303 55.83127 L 535.946906 55.544153 L 536.070782 55.83127 L 536.566287 54.6828 L 536.690163 54.969918 L 537.557296 52.960096 L 537.805048 53.534331 L 537.928924 53.247213 L 538.0528 53.534331 L 538.176676 53.247213 L 538.300553 53.534331 L 538.919933 52.098744 L 539.043809 52.385861 L 539.66319 50.950274 L 539.787066 51.237391 L 540.158694 50.376039 L 540.282571 50.663157 L 540.654199 49.801804 L 540.778075 50.088922 L 541.149703 49.227569 L 541.27358 49.514687 L 541.769084 48.366217 L 541.89296 48.653335 L 542.140712 48.0791 L 542.264589 48.366217 L 542.388465 48.0791 L 542.512341 48.366217 L 542.636217 48.0791 L 542.760093 48.366217 L 542.883969 48.0791 L 543.379474 49.227569 L 543.998854 47.791982 L 544.12273 48.0791 L 544.246607 47.791982 L 544.370483 48.0791 L 544.742111 47.217747 L 544.989863 47.791982 L 545.485368 46.643513 L 545.856996 47.504865 L 545.980872 47.217747 L 546.228625 47.791982 L 546.971881 46.069278 L 547.095757 46.356395 L 547.839014 44.633691 L 547.96289 44.920808 L 548.210642 44.346573 L 548.334519 44.633691 L 548.458395 44.346573 L 548.582271 44.633691 L 548.830023 44.059456 L 548.953899 44.346573 L 549.201651 43.772338 L 549.821032 45.207925 L 550.440413 43.772338 L 550.564289 44.059456 L 550.688165 43.772338 L 550.812041 44.059456 L 550.935917 43.772338 L 551.183669 44.346573 L 551.679174 43.198103 L 551.926926 43.772338 L 552.050802 43.485221 L 552.174678 43.772338 L 552.298555 43.485221 L 552.422431 43.772338 L 553.041811 42.336751 L 553.41344 43.198103 L 553.661192 42.623869 L 554.03282 43.485221 L 554.776077 41.762516 L 554.899953 42.049634 L 555.271582 41.188282 L 555.519334 41.762516 L 555.890962 40.901164 L 556.014838 41.188282 L 556.386467 40.326929 L 556.634219 40.901164 L 556.758095 40.614047 L 556.881971 40.901164 L 557.005847 40.614047 L 557.129723 40.901164 L 557.625228 39.752694 L 557.749104 40.039812 L 557.87298 39.752694 L 558.120732 40.326929 L 558.244609 40.039812 L 558.368485 40.326929 L 558.492361 40.039812 L 558.616237 40.326929 L 558.863989 39.752694 L 558.987865 40.039812 L 559.731122 38.317107 L 559.854998 38.604225 L 560.226626 37.742872 L 560.350503 38.02999 L 561.465388 35.445933 L 561.71314 36.020168 L 562.456397 34.297463 L 562.828025 35.158816 L 563.447406 33.723228 L 563.695158 34.297463 L 563.94291 33.723228 L 564.066786 34.010346 L 564.314539 33.436111 L 564.562291 34.010346 L 564.810043 33.436111 L 564.933919 33.723228 L 565.057795 33.436111 L 565.181671 33.723228 L 565.305548 33.436111 L 565.429424 33.723228 L 565.5533 33.436111 L 565.801052 34.010346 L 565.924928 33.723228 L 566.048804 34.010346 L 566.296557 33.436111 L 566.544309 34.010346 L 567.039813 32.861876 L 567.287566 33.436111 L 567.659194 32.574759 L 568.278575 34.010346 L 569.269584 31.713407 L 569.39346 32.000524 L 569.517336 31.713407 L 569.641212 32.000524 L 569.765088 31.713407 L 569.888964 32.000524 L 570.136716 31.426289 L 570.384469 32.000524 L 570.632221 31.426289 L 571.127725 32.574759 L 571.375478 32.000524 L 571.62323 32.574759 L 571.747106 32.287641 L 571.870982 32.574759 L 572.118734 32.000524 L 572.366487 32.574759 L 572.861991 31.426289 L 573.23362 32.287641 L 573.729124 31.139172 L 573.976876 31.713407 L 574.224628 31.139172 L 574.348505 31.426289 L 575.711142 28.267997 L 575.958894 28.842232 L 576.454399 27.693763 L 576.702151 28.267997 L 576.826027 27.98088 L 577.073779 28.555115 L 577.197655 28.267997 L 577.569284 29.12935 L 578.064788 27.98088 L 578.312541 28.555115 L 578.684169 27.693763 L 578.931921 28.267997 L 579.179673 27.693763 L 579.427426 28.267997 L 579.799054 27.406645 L 579.92293 27.693763 L 580.046806 27.406645 L 580.170682 27.693763 L 580.294559 27.406645 L 580.418435 27.693763 L 580.542311 27.406645 L 580.666187 27.693763 L 580.913939 27.119528 L 581.161691 27.693763 L 581.285568 27.406645 L 581.409444 27.693763 L 581.53332 27.406645 L 581.657196 27.693763 L 581.904948 27.119528 L 582.028824 27.406645 L 582.1527 27.119528 L 582.276577 27.406645 L 582.524329 26.83241 L 582.648205 27.119528 L 583.019833 26.258175 L 583.143709 26.545293 L 583.391462 25.971058 L 584.010842 27.406645 L 584.134718 27.119528 L 584.258595 27.406645 L 584.506347 26.83241 L 584.630223 27.119528 L 584.754099 26.83241 L 584.877975 27.119528 L 585.001851 26.83241 L 585.125727 27.119528 L 585.37348 26.545293 L 585.497356 26.83241 L 585.621232 26.545293 L 585.745108 26.83241 L 585.868984 26.545293 L 585.99286 26.83241 L 586.240613 26.258175 L 586.364489 26.545293 L 586.364489 26.545293 " style="fill:none;opacity:0.9;stroke:#d62728;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_15"> <path clip-path="url(#p91285e6896)" d="M 79.091761 322.635137 L 79.215637 322.850475 L 79.711142 321.989123 L 79.835018 322.204461 L 79.958894 321.989123 L 80.08277 322.204461 L 80.206646 321.989123 L 80.454399 322.419799 L 80.826027 321.773785 L 80.949903 321.989123 L 81.197655 321.558446 L 81.321532 321.773785 L 82.312541 320.05108 L 82.436417 320.266418 L 82.684169 319.835742 L 82.808045 320.05108 L 82.931921 319.835742 L 83.055797 320.05108 L 83.427426 319.405066 L 83.675178 319.835742 L 83.799054 319.620404 L 84.046806 320.05108 L 84.170682 319.835742 L 84.294559 320.05108 L 84.418435 319.835742 L 84.666187 320.266418 L 85.161691 319.405066 L 85.409444 319.835742 L 85.53332 319.620404 L 85.657196 319.835742 L 85.781072 319.620404 L 85.904948 319.835742 L 86.648205 318.543714 L 86.772081 318.759052 L 86.895957 318.543714 L 87.019833 318.759052 L 87.267586 318.328375 L 87.515338 318.759052 L 87.639214 318.543714 L 88.134718 319.405066 L 88.258595 319.189728 L 88.506347 319.620404 L 88.877975 318.97439 L 89.249604 319.620404 L 89.745108 318.759052 L 89.868984 318.97439 L 90.116736 318.543714 L 90.364489 318.97439 L 90.736117 318.328375 L 90.859993 318.543714 L 91.107745 318.113037 L 91.231622 318.328375 L 91.60325 317.682361 L 91.727126 317.897699 L 91.851002 317.682361 L 91.974878 317.897699 L 92.098754 317.682361 L 92.22263 317.897699 L 92.346507 317.682361 L 92.470383 317.897699 L 92.718135 317.467023 L 92.842011 317.682361 L 93.585268 316.390333 L 93.709144 316.605671 L 93.83302 316.390333 L 94.080772 316.821009 L 94.328525 316.390333 L 94.576277 316.821009 L 94.824029 316.390333 L 95.071781 316.821009 L 95.195657 316.605671 L 95.319534 316.821009 L 95.567286 316.390333 L 95.691162 316.605671 L 95.815038 316.390333 L 95.938914 316.605671 L 96.434419 315.744319 L 96.558295 315.959657 L 96.682171 315.744319 L 96.929923 316.174995 L 97.920932 314.45229 L 98.168684 314.882966 L 98.292561 314.667628 L 98.540313 315.098304 L 98.788065 314.667628 L 98.911941 314.882966 L 99.035817 314.667628 L 99.407446 315.313643 L 99.655198 314.882966 L 99.779074 315.098304 L 99.90295 314.882966 L 100.026826 315.098304 L 100.274579 314.667628 L 100.522331 315.098304 L 100.646207 314.882966 L 100.770083 315.098304 L 100.893959 314.882966 L 101.265588 315.528981 L 101.51334 315.098304 L 101.761092 315.528981 L 102.256597 314.667628 L 102.380473 314.882966 L 102.628225 314.45229 L 102.875977 314.882966 L 103.371482 314.021614 L 103.619234 314.45229 L 103.990862 313.806276 L 104.238615 314.236952 L 104.362491 314.021614 L 104.486367 314.236952 L 104.857995 313.590938 L 104.981871 313.806276 L 105.725128 312.514248 L 105.97288 312.944924 L 106.220632 312.514248 L 106.344509 312.729586 L 106.468385 312.514248 L 106.592261 312.729586 L 106.963889 312.083571 L 107.087765 312.29891 L 107.58327 311.437557 L 107.707146 311.652895 L 108.574279 310.145529 L 108.822031 310.576205 L 108.945907 310.360867 L 109.069783 310.576205 L 109.317536 310.145529 L 109.81304 311.006881 L 110.060792 310.576205 L 110.308545 311.006881 L 110.432421 310.791543 L 110.680173 311.222219 L 110.804049 311.006881 L 110.927925 311.222219 L 111.299554 310.576205 L 111.42343 310.791543 L 111.671182 310.360867 L 111.795058 310.576205 L 111.918934 310.360867 L 112.04281 310.576205 L 112.166686 310.360867 L 112.538315 311.006881 L 112.662191 310.791543 L 113.033819 311.437557 L 113.405448 310.791543 L 113.529324 311.006881 L 113.6532 310.791543 L 113.900952 311.222219 L 114.272581 310.576205 L 114.520333 311.006881 L 114.644209 310.791543 L 114.768085 311.006881 L 115.26359 310.145529 L 115.511342 310.576205 L 116.006846 309.714853 L 116.130722 309.930191 L 116.254599 309.714853 L 116.378475 309.930191 L 116.502351 309.714853 L 116.626227 309.930191 L 116.750103 309.714853 L 116.997855 310.145529 L 117.121731 309.930191 L 117.245608 310.145529 L 117.369484 309.930191 L 117.617236 310.360867 L 117.864988 309.930191 L 118.360493 310.791543 L 118.608245 310.360867 L 118.855997 310.791543 L 119.103749 310.360867 L 119.351502 310.791543 L 119.599254 310.360867 L 119.72313 310.576205 L 120.094758 309.930191 L 120.218634 310.145529 L 120.342511 309.930191 L 120.466387 310.145529 L 120.590263 309.930191 L 120.714139 310.145529 L 121.33352 309.068839 L 121.457396 309.284177 L 121.829024 308.638162 L 122.076776 309.068839 L 122.200652 308.8535 L 122.324529 309.068839 L 122.448405 308.8535 L 122.696157 309.284177 L 122.820033 309.068839 L 122.943909 309.284177 L 123.067785 309.068839 L 123.315538 309.499515 L 124.430423 307.561472 L 124.678175 307.992148 L 124.802051 307.77681 L 125.297556 308.638162 L 126.164688 307.130796 L 126.288565 307.346134 L 126.412441 307.130796 L 126.536317 307.346134 L 127.775078 305.192753 L 127.898954 305.408091 L 128.146706 304.977415 L 128.394459 305.408091 L 129.261592 303.900725 L 129.509344 304.331401 L 129.880972 303.685387 L 130.252601 304.331401 L 130.376477 304.116063 L 130.500353 304.331401 L 130.624229 304.116063 L 130.995857 304.762077 L 131.24361 304.331401 L 131.367486 304.546739 L 132.358495 302.824035 L 132.853999 303.685387 L 134.588265 300.670654 L 134.712141 300.885992 L 135.083769 300.239978 L 135.331522 300.670654 L 135.70315 300.02464 L 135.827026 300.239978 L 136.074778 299.809302 L 136.570283 300.670654 L 136.818035 300.239978 L 136.941911 300.455316 L 137.189663 300.02464 L 137.437416 300.455316 L 137.561292 300.239978 L 137.93292 300.885992 L 138.552301 299.809302 L 138.676177 300.02464 L 139.047805 299.378625 L 139.54331 300.239978 L 139.914938 299.593964 L 140.038814 299.809302 L 140.286567 299.378625 L 140.410443 299.593964 L 140.658195 299.163287 L 140.905947 299.593964 L 141.153699 299.163287 L 141.525328 299.809302 L 141.77308 299.378625 L 141.896956 299.593964 L 142.268585 298.947949 L 142.392461 299.163287 L 142.640213 298.732611 L 142.887965 299.163287 L 143.507346 298.086597 L 143.878974 298.732611 L 144.00285 298.517273 L 144.126726 298.732611 L 144.993859 297.225245 L 145.241612 297.655921 L 145.860992 296.579231 L 146.232621 297.225245 L 146.604249 296.579231 L 146.728125 296.794569 L 147.347506 295.717878 L 147.471382 295.933216 L 147.719134 295.50254 L 147.84301 295.717878 L 148.338515 294.856526 L 148.462391 295.071864 L 148.710143 294.641188 L 148.834019 294.856526 L 148.957895 294.641188 L 149.081771 294.856526 L 149.205647 294.641188 L 149.329524 294.856526 L 149.577276 294.42585 L 149.825028 294.856526 L 150.196656 294.210512 L 150.320533 294.42585 L 151.435418 292.487807 L 151.68317 292.918483 L 151.930922 292.487807 L 152.054798 292.703145 L 152.178674 292.487807 L 152.302551 292.703145 L 152.674179 292.057131 L 152.921931 292.487807 L 153.29356 291.841793 L 153.417436 292.057131 L 153.541312 291.841793 L 153.665188 292.057131 L 153.789064 291.841793 L 153.91294 292.057131 L 154.408445 291.195779 L 154.656197 291.626455 L 154.903949 291.195779 L 155.275578 291.841793 L 155.771082 290.980441 L 155.894958 291.195779 L 156.266587 290.549765 L 156.390463 290.765103 L 156.638215 290.334427 L 156.762091 290.549765 L 157.133719 289.90375 L 157.257596 290.119089 L 157.629224 289.473074 L 157.7531 289.688412 L 157.876976 289.473074 L 158.496357 290.549765 L 158.620233 290.334427 L 158.744109 290.549765 L 158.867985 290.334427 L 158.991861 290.549765 L 159.239614 290.119089 L 159.611242 290.765103 L 160.106746 289.90375 L 160.230623 290.119089 L 160.354499 289.90375 L 160.726127 290.549765 L 161.221631 289.688412 L 161.469384 290.119089 L 162.088764 289.042398 L 162.460393 289.688412 L 162.584269 289.473074 L 162.708145 289.688412 L 163.327526 288.611722 L 163.451402 288.82706 L 163.699154 288.396384 L 163.82303 288.611722 L 164.318535 287.75037 L 164.566287 288.181046 L 164.814039 287.75037 L 164.937915 287.965708 L 165.43342 287.104356 L 165.805048 287.75037 L 166.176676 287.104356 L 166.424429 287.535032 L 166.919933 286.673679 L 167.415438 287.535032 L 168.158694 286.243003 L 168.282571 286.458341 L 168.778075 285.596989 L 169.521332 286.889017 L 169.645208 286.673679 L 169.89296 287.104356 L 170.264589 286.458341 L 170.388465 286.673679 L 170.883969 285.812327 L 171.007845 286.027665 L 171.131721 285.812327 L 171.255598 286.027665 L 171.379474 285.812327 L 171.50335 286.027665 L 171.751102 285.596989 L 171.874978 285.812327 L 171.998854 285.596989 L 172.12273 285.812327 L 172.246607 285.596989 L 172.742111 286.458341 L 173.113739 285.812327 L 173.361492 286.243003 L 173.856996 285.381651 L 174.228625 286.027665 L 174.600253 285.381651 L 174.848005 285.812327 L 175.34351 284.950975 L 175.591262 285.381651 L 175.839014 284.950975 L 175.96289 285.166313 L 176.086766 284.950975 L 176.582271 285.812327 L 176.830023 285.381651 L 177.201651 286.027665 L 178.068784 284.520299 L 178.19266 284.735637 L 178.316537 284.520299 L 178.440413 284.735637 L 178.688165 284.304961 L 178.935917 284.735637 L 179.307546 284.089623 L 179.431422 284.304961 L 179.679174 283.874285 L 179.80305 284.089623 L 180.298555 283.22827 L 180.422431 283.443608 L 181.041811 282.366918 L 181.289564 282.797594 L 181.537316 282.366918 L 181.661192 282.582256 L 181.785068 282.366918 L 181.908944 282.582256 L 182.03282 282.366918 L 182.404449 283.012932 L 182.528325 282.797594 L 182.652201 283.012932 L 182.776077 282.797594 L 183.147705 283.443608 L 183.519334 282.797594 L 183.890962 283.443608 L 184.386467 282.582256 L 184.634219 283.012932 L 185.129723 282.15158 L 185.377476 282.582256 L 185.501352 282.366918 L 185.87298 283.012932 L 186.863989 281.290228 L 186.987865 281.505566 L 187.235618 281.07489 L 187.48337 281.505566 L 187.731122 281.07489 L 188.10275 281.720904 L 188.474379 281.07489 L 188.722131 281.505566 L 188.846007 281.290228 L 189.217635 281.936242 L 189.341512 281.720904 L 189.960892 282.797594 L 190.084768 282.582256 L 190.208644 282.797594 L 190.332521 282.582256 L 190.580273 283.012932 L 190.951901 282.366918 L 191.199653 282.797594 L 191.571282 282.15158 L 191.695158 282.366918 L 192.066786 281.720904 L 192.190662 281.936242 L 193.305548 279.998199 L 193.429424 280.213537 L 193.677176 279.782861 L 193.924928 280.213537 L 194.048804 279.998199 L 194.17268 280.213537 L 195.163689 278.490833 L 195.287566 278.706171 L 195.535318 278.275495 L 195.659194 278.490833 L 196.030822 277.844819 L 196.154698 278.060157 L 196.278575 277.844819 L 196.402451 278.060157 L 196.650203 277.629481 L 196.897955 278.060157 L 197.021831 277.844819 L 197.145707 278.060157 L 197.641212 277.198804 L 197.765088 277.414142 L 197.888964 277.198804 L 198.136716 277.629481 L 198.260593 277.414142 L 198.384469 277.629481 L 199.62323 275.4761 L 199.747106 275.691438 L 200.490363 274.39941 L 200.614239 274.614748 L 200.738115 274.39941 L 201.109743 275.045424 L 201.481372 274.39941 L 201.605248 274.614748 L 202.472381 273.107381 L 202.596257 273.322719 L 202.720133 273.107381 L 202.844009 273.322719 L 203.339514 272.461367 L 203.587266 272.892043 L 203.835018 272.461367 L 203.958894 272.676705 L 204.206646 272.246029 L 204.454399 272.676705 L 204.949903 271.815353 L 205.073779 272.030691 L 205.321532 271.600015 L 205.445408 271.815353 L 205.569284 271.600015 L 205.817036 272.030691 L 205.940912 271.815353 L 206.188664 272.246029 L 206.312541 272.030691 L 206.436417 272.246029 L 206.684169 271.815353 L 206.808045 272.030691 L 207.179673 271.384677 L 207.30355 271.600015 L 207.551302 271.169338 L 207.799054 271.600015 L 208.170682 270.954 L 208.542311 271.600015 L 208.666187 271.384677 L 209.037815 272.030691 L 209.161691 271.815353 L 209.285568 272.030691 L 209.409444 271.815353 L 209.53332 272.030691 L 210.276577 270.738662 L 210.648205 271.384677 L 211.391462 270.092648 L 211.515338 270.307986 L 212.258595 269.015958 L 212.630223 269.661972 L 212.877975 269.231296 L 213.125727 269.661972 L 213.868984 268.369944 L 213.99286 268.585282 L 214.116736 268.369944 L 214.240613 268.585282 L 214.364489 268.369944 L 214.612241 268.80062 L 214.736117 268.585282 L 214.859993 268.80062 L 215.355498 267.939267 L 215.851002 268.80062 L 215.974878 268.585282 L 216.22263 269.015958 L 216.346507 268.80062 L 216.470383 269.015958 L 217.337516 267.508591 L 217.461392 267.723929 L 217.585268 267.508591 L 217.709144 267.723929 L 217.83302 267.508591 L 217.956896 267.723929 L 218.204648 267.293253 L 218.452401 267.723929 L 218.700153 267.293253 L 218.824029 267.508591 L 218.947905 267.293253 L 219.071781 267.508591 L 219.195657 267.293253 L 219.319534 267.508591 L 219.567286 267.077915 L 219.815038 267.508591 L 220.186666 266.862577 L 220.310543 267.077915 L 220.806047 266.216563 L 221.301552 267.077915 L 222.044808 265.785887 L 222.168684 266.001225 L 222.416437 265.570549 L 222.540313 265.785887 L 222.664189 265.570549 L 222.788065 265.785887 L 223.159693 265.139873 L 223.28357 265.355211 L 224.398455 263.417168 L 224.522331 263.632506 L 224.770083 263.20183 L 224.893959 263.417168 L 225.389464 262.555816 L 225.761092 263.20183 L 225.884968 262.986492 L 226.13272 263.417168 L 226.380473 262.986492 L 226.628225 263.417168 L 226.999853 262.771154 L 227.371482 263.417168 L 227.866986 262.555816 L 227.990862 262.771154 L 228.114738 262.555816 L 228.238615 262.771154 L 228.362491 262.555816 L 228.610243 262.986492 L 229.477376 261.479125 L 229.601252 261.694463 L 230.096756 260.833111 L 230.344509 261.263787 L 230.716137 260.617773 L 230.840013 260.833111 L 231.087765 260.402435 L 231.211641 260.617773 L 232.078774 259.110407 L 232.326527 259.541083 L 232.450403 259.325745 L 232.574279 259.541083 L 232.698155 259.325745 L 232.822031 259.541083 L 233.193659 258.895069 L 233.317536 259.110407 L 234.184668 257.60304 L 234.308545 257.818378 L 234.804049 256.957026 L 234.927925 257.172364 L 235.051801 256.957026 L 235.175677 257.172364 L 235.299554 256.957026 L 235.42343 257.172364 L 235.671182 256.741688 L 235.918934 257.172364 L 236.290563 256.52635 L 236.786067 257.387702 L 237.157695 256.741688 L 237.281572 256.957026 L 237.405448 256.741688 L 237.529324 256.957026 L 237.6532 256.741688 L 237.777076 256.957026 L 238.148704 256.311012 L 238.520333 256.957026 L 238.644209 256.741688 L 238.768085 256.957026 L 239.26359 256.095674 L 239.387466 256.311012 L 239.635218 255.880336 L 239.759094 256.095674 L 239.88297 255.880336 L 240.006846 256.095674 L 240.873979 254.588307 L 240.997855 254.803645 L 241.245608 254.372969 L 241.369484 254.588307 L 241.617236 254.157631 L 242.11274 255.018983 L 242.360493 254.588307 L 242.608245 255.018983 L 242.979873 254.372969 L 243.227625 254.803645 L 243.351502 254.588307 L 243.475378 254.803645 L 243.599254 254.588307 L 243.72313 254.803645 L 244.961891 252.650265 L 245.209643 253.080941 L 245.457396 252.650265 L 245.829024 253.296279 L 246.200652 252.650265 L 246.324529 252.865603 L 246.572281 252.434927 L 246.696157 252.650265 L 246.943909 252.219588 L 247.067785 252.434927 L 247.191661 252.219588 L 247.315538 252.434927 L 247.439414 252.219588 L 247.56329 252.434927 L 247.811042 252.00425 L 247.934918 252.219588 L 248.058794 252.00425 L 248.18267 252.219588 L 248.306547 252.00425 L 248.430423 252.219588 L 248.678175 251.788912 L 248.802051 252.00425 L 249.049803 251.573574 L 249.669184 252.650265 L 249.916936 252.219588 L 250.040812 252.434927 L 250.164688 252.219588 L 250.288565 252.434927 L 250.660193 251.788912 L 250.784069 252.00425 L 251.031821 251.573574 L 251.155697 251.788912 L 251.279574 251.573574 L 251.40345 251.788912 L 251.898954 250.92756 L 252.02283 251.142898 L 252.270583 250.712222 L 252.394459 250.92756 L 253.013839 249.85087 L 253.261592 250.281546 L 253.757096 249.420194 L 253.880972 249.635532 L 254.252601 248.989517 L 254.376477 249.204856 L 254.748105 248.558841 L 254.871981 248.774179 L 255.119733 248.343503 L 255.24361 248.558841 L 255.739114 247.697489 L 255.86299 247.912827 L 256.234619 247.266813 L 256.358495 247.482151 L 256.482371 247.266813 L 256.730123 247.697489 L 256.853999 247.482151 L 257.101751 247.912827 L 257.225627 247.697489 L 257.349504 247.912827 L 257.47338 247.697489 L 257.597256 247.912827 L 257.968884 247.266813 L 258.216636 247.697489 L 259.083769 246.190123 L 259.207645 246.405461 L 260.074778 244.898094 L 260.322531 245.32877 L 260.941911 244.25208 L 261.065787 244.467418 L 261.189663 244.25208 L 261.31354 244.467418 L 261.437416 244.25208 L 261.809044 244.898094 L 262.304549 244.036742 L 262.428425 244.25208 L 262.676177 243.821404 L 263.171681 244.682756 L 263.791062 243.606066 L 263.914938 243.821404 L 264.038814 243.606066 L 264.16269 243.821404 L 264.410443 243.390728 L 264.534319 243.606066 L 265.401452 242.098699 L 265.525328 242.314037 L 265.77308 241.883361 L 265.896956 242.098699 L 266.516337 241.022009 L 266.640213 241.237347 L 266.887965 240.806671 L 267.135717 241.237347 L 267.38347 240.806671 L 267.631222 241.237347 L 268.00285 240.591333 L 268.126726 240.806671 L 268.498355 240.160657 L 268.622231 240.375995 L 268.746107 240.160657 L 268.993859 240.591333 L 269.117735 240.375995 L 269.365488 240.806671 L 269.61324 240.375995 L 269.737116 240.591333 L 269.984868 240.160657 L 270.232621 240.591333 L 270.480373 240.160657 L 270.604249 240.375995 L 270.728125 240.160657 L 270.975877 240.591333 L 271.347506 239.945319 L 271.471382 240.160657 L 271.719134 239.729981 L 271.84301 239.945319 L 272.338515 239.083966 L 272.586267 239.514642 L 272.957895 238.868628 L 273.081771 239.083966 L 273.701152 238.007276 L 273.825028 238.222614 L 274.07278 237.791938 L 274.196656 238.007276 L 274.816037 236.930586 L 274.939913 237.145924 L 275.063789 236.930586 L 275.435418 237.5766 L 276.302551 236.069233 L 276.674179 236.715248 L 276.921931 236.284571 L 277.045807 236.499909 L 277.91294 234.992543 L 278.160692 235.423219 L 278.656197 234.561867 L 278.780073 234.777205 L 278.903949 234.561867 L 279.027825 234.777205 L 279.399454 234.131191 L 279.771082 234.777205 L 279.894958 234.561867 L 280.018834 234.777205 L 280.14271 234.561867 L 280.390463 234.992543 L 281.381472 233.269838 L 281.7531 233.915853 L 281.876976 233.700515 L 282.000852 233.915853 L 282.496357 233.0545 L 282.620233 233.269838 L 282.744109 233.0545 L 282.867985 233.269838 L 283.239614 232.623824 L 283.36349 232.839162 L 283.487366 232.623824 L 283.611242 232.839162 L 283.98287 232.193148 L 284.230623 232.623824 L 284.478375 232.193148 L 284.726127 232.623824 L 284.850003 232.408486 L 285.59326 233.700515 L 285.964888 233.0545 L 286.336517 233.700515 L 286.460393 233.485177 L 286.584269 233.700515 L 287.079773 232.839162 L 287.203649 233.0545 L 288.070782 231.547134 L 288.442411 232.193148 L 288.566287 231.97781 L 288.690163 232.193148 L 288.814039 231.97781 L 288.937915 232.193148 L 289.309544 231.547134 L 289.43342 231.762472 L 289.805048 231.116458 L 290.0528 231.547134 L 290.176676 231.331796 L 290.300553 231.547134 L 290.424429 231.331796 L 290.548305 231.547134 L 290.919933 230.90112 L 291.043809 231.116458 L 291.291562 230.685782 L 291.415438 230.90112 L 291.66319 230.470444 L 291.910942 230.90112 L 292.034818 230.685782 L 292.158694 230.90112 L 292.282571 230.685782 L 292.406447 230.90112 L 292.654199 230.470444 L 292.901951 230.90112 L 293.025827 230.685782 L 293.149703 230.90112 L 293.89296 229.609091 L 294.016836 229.824429 L 294.760093 228.532401 L 294.883969 228.747739 L 295.131721 228.317063 L 295.255598 228.532401 L 295.50335 228.101725 L 295.751102 228.532401 L 295.998854 228.101725 L 296.12273 228.317063 L 296.742111 227.240373 L 297.361492 228.317063 L 297.485368 228.101725 L 298.104748 229.178415 L 298.228625 228.963077 L 298.352501 229.178415 L 298.476377 228.963077 L 299.095757 230.039767 L 299.467386 229.393753 L 299.591262 229.609091 L 300.210642 228.532401 L 300.582271 229.178415 L 301.325528 227.886387 L 301.57328 228.317063 L 301.697156 228.101725 L 301.821032 228.317063 L 302.068784 227.886387 L 302.440413 228.532401 L 302.688165 228.101725 L 302.935917 228.532401 L 303.059793 228.317063 L 303.183669 228.532401 L 303.926926 227.240373 L 304.422431 228.101725 L 304.917935 227.240373 L 305.041811 227.455711 L 305.289564 227.025034 L 305.41344 227.240373 L 306.03282 226.163682 L 306.156696 226.37902 L 306.280573 226.163682 L 306.404449 226.37902 L 306.652201 225.948344 L 306.899953 226.37902 L 307.395458 225.517668 L 307.519334 225.733006 L 308.262591 224.440978 L 308.386467 224.656316 L 308.634219 224.22564 L 308.758095 224.440978 L 309.2536 223.579625 L 309.501352 224.010302 L 309.749104 223.579625 L 309.87298 223.794963 L 310.120732 223.364287 L 310.492361 224.010302 L 310.616237 223.794963 L 310.863989 224.22564 L 311.359494 223.364287 L 311.854998 224.22564 L 312.350503 223.364287 L 312.474379 223.579625 L 312.598255 223.364287 L 312.722131 223.579625 L 312.846007 223.364287 L 313.093759 223.794963 L 313.589264 222.933611 L 313.837016 223.364287 L 314.084768 222.933611 L 314.208644 223.148949 L 314.332521 222.933611 L 314.456397 223.148949 L 314.704149 222.718273 L 314.951901 223.148949 L 315.075777 222.933611 L 315.571282 223.794963 L 317.181671 220.995569 L 317.305548 221.210907 L 317.801052 220.349554 L 317.924928 220.564892 L 318.048804 220.349554 L 318.17268 220.564892 L 318.668185 219.70354 L 319.163689 220.564892 L 319.411442 220.134216 L 319.659194 220.564892 L 319.78307 220.349554 L 319.906946 220.564892 L 320.030822 220.349554 L 320.278575 220.780231 L 320.774079 219.918878 L 321.145707 220.564892 L 321.765088 219.488202 L 322.01284 219.918878 L 322.260593 219.488202 L 322.384469 219.70354 L 322.756097 219.057526 L 322.879973 219.272864 L 323.62323 217.980836 L 323.747106 218.196174 L 324.118734 217.550159 L 324.242611 217.765498 L 324.366487 217.550159 L 324.490363 217.765498 L 324.614239 217.550159 L 324.738115 217.765498 L 324.861991 217.550159 L 324.985867 217.765498 L 325.23362 217.334821 L 325.357496 217.550159 L 325.605248 217.119483 L 325.853 217.550159 L 326.224628 216.904145 L 326.348505 217.119483 L 326.596257 216.688807 L 327.091761 217.550159 L 327.711142 216.473469 L 328.206646 217.334821 L 328.330523 217.119483 L 328.454399 217.334821 L 328.702151 216.904145 L 328.826027 217.119483 L 329.073779 216.688807 L 329.197655 216.904145 L 329.445408 216.473469 L 329.69316 216.904145 L 330.064788 216.258131 L 330.188664 216.473469 L 330.560293 215.827455 L 330.684169 216.042793 L 330.808045 215.827455 L 330.931921 216.042793 L 331.179673 215.612117 L 331.30355 215.827455 L 331.427426 215.612117 L 331.551302 215.827455 L 331.675178 215.612117 L 332.170682 216.473469 L 332.294559 216.258131 L 332.418435 216.473469 L 333.409444 214.750765 L 333.53332 214.966103 L 334.276577 213.674074 L 334.400453 213.889412 L 335.143709 212.597384 L 335.267586 212.812722 L 335.515338 212.382046 L 335.886966 213.02806 L 336.010842 212.812722 L 336.382471 213.458736 L 336.506347 213.243398 L 336.630223 213.458736 L 336.754099 213.243398 L 337.249604 214.10475 L 337.37348 213.889412 L 337.745108 214.535427 L 337.868984 214.320088 L 337.99286 214.535427 L 338.240613 214.10475 L 338.364489 214.320088 L 338.859993 213.458736 L 338.983869 213.674074 L 339.355498 213.02806 L 339.479374 213.243398 L 339.974878 212.382046 L 340.098754 212.597384 L 340.22263 212.382046 L 340.594259 213.02806 L 341.585268 211.305355 L 341.83302 211.736032 L 342.080772 211.305355 L 342.328525 211.736032 L 342.700153 211.090017 L 342.824029 211.305355 L 343.071781 210.874679 L 343.319534 211.305355 L 343.44341 211.090017 L 343.567286 211.305355 L 343.691162 211.090017 L 343.815038 211.305355 L 343.938914 211.090017 L 344.06279 211.305355 L 344.186666 211.090017 L 344.310543 211.305355 L 345.177675 209.797989 L 345.301552 210.013327 L 345.67318 209.367313 L 345.797056 209.582651 L 346.292561 208.721299 L 346.416437 208.936637 L 346.540313 208.721299 L 346.664189 208.936637 L 346.788065 208.721299 L 347.035817 209.151975 L 347.779074 207.859946 L 347.90295 208.075284 L 348.398455 207.213932 L 348.646207 207.644608 L 349.51334 206.137242 L 349.637216 206.35258 L 349.761092 206.137242 L 349.884968 206.35258 L 350.13272 205.921904 L 350.256597 206.137242 L 350.628225 205.491228 L 350.875977 205.921904 L 351.123729 205.491228 L 351.247606 205.706566 L 352.238615 203.983861 L 352.486367 204.414537 L 353.601252 202.476495 L 353.725128 202.691833 L 353.849004 202.476495 L 354.096756 202.907171 L 354.220632 202.691833 L 354.468385 203.122509 L 354.716137 202.691833 L 354.840013 202.907171 L 354.963889 202.691833 L 355.211641 203.122509 L 355.335518 202.907171 L 355.459394 203.122509 L 355.831022 202.476495 L 355.954898 202.691833 L 356.326527 202.045819 L 356.450403 202.261157 L 356.698155 201.83048 L 357.069783 202.476495 L 357.193659 202.261157 L 357.317536 202.476495 L 358.556297 200.323114 L 358.804049 200.75379 L 359.175677 200.107776 L 359.299554 200.323114 L 359.42343 200.107776 L 359.671182 200.538452 L 359.795058 200.323114 L 360.04281 200.75379 L 360.786067 199.461762 L 360.909943 199.6771 L 361.777076 198.169733 L 361.900952 198.385071 L 362.148704 197.954395 L 362.396457 198.385071 L 362.644209 197.954395 L 362.768085 198.169733 L 362.891961 197.954395 L 363.015837 198.169733 L 364.130722 196.231691 L 364.254599 196.447029 L 364.378475 196.231691 L 364.502351 196.447029 L 364.626227 196.231691 L 364.750103 196.447029 L 364.873979 196.231691 L 364.997855 196.447029 L 365.245608 196.016353 L 365.369484 196.231691 L 365.617236 195.801015 L 365.988864 196.447029 L 366.484369 195.585677 L 366.855997 196.231691 L 367.227625 195.585677 L 367.72313 196.447029 L 367.847006 196.231691 L 367.970882 196.447029 L 368.218634 196.016353 L 368.466387 196.447029 L 369.209643 195.155 L 369.33352 195.370338 L 369.457396 195.155 L 369.581272 195.370338 L 369.705148 195.155 L 369.9529 195.585677 L 370.820033 194.07831 L 370.943909 194.293648 L 373.049803 190.632901 L 373.173679 190.848239 L 373.297556 190.632901 L 373.421432 190.848239 L 373.669184 190.417563 L 373.79306 190.632901 L 374.164688 189.986887 L 374.288565 190.202225 L 374.536317 189.771549 L 374.660193 189.986887 L 374.784069 189.771549 L 374.907945 189.986887 L 375.155697 189.556211 L 375.40345 189.986887 L 375.651202 189.556211 L 375.898954 189.986887 L 376.02283 189.771549 L 376.146706 189.986887 L 376.394459 189.556211 L 376.518335 189.771549 L 377.385468 188.264182 L 377.509344 188.47952 L 377.757096 188.048844 L 377.880972 188.264182 L 378.252601 187.618168 L 378.500353 188.048844 L 378.624229 187.833506 L 378.748105 188.048844 L 379.119733 187.40283 L 379.24361 187.618168 L 379.367486 187.40283 L 379.615238 187.833506 L 380.110742 186.972154 L 380.234619 187.187492 L 380.358495 186.972154 L 380.482371 187.187492 L 381.101751 186.110801 L 381.225627 186.32614 L 381.47338 185.895463 L 381.721132 186.32614 L 382.464389 185.034111 L 382.588265 185.249449 L 383.950902 182.88073 L 384.198654 183.311407 L 384.322531 183.096069 L 384.570283 183.526745 L 384.694159 183.311407 L 384.818035 183.526745 L 385.065787 183.096069 L 385.189663 183.311407 L 385.437416 182.88073 L 385.809044 183.526745 L 386.923929 181.588702 L 387.171681 182.019378 L 388.16269 180.296674 L 388.286567 180.512012 L 389.029823 179.219983 L 389.153699 179.435321 L 389.77308 178.358631 L 389.896956 178.573969 L 390.144708 178.143293 L 390.268585 178.358631 L 390.392461 178.143293 L 390.640213 178.573969 L 391.259594 177.497279 L 391.507346 177.927955 L 391.631222 177.712617 L 392.00285 178.358631 L 392.126726 178.143293 L 392.250603 178.358631 L 392.622231 177.712617 L 392.993859 178.358631 L 393.860992 176.851265 L 393.984868 177.066603 L 394.108744 176.851265 L 394.232621 177.066603 L 394.480373 176.635926 L 394.604249 176.851265 L 394.728125 176.635926 L 395.099753 177.281941 L 395.595258 176.420588 L 395.84301 176.851265 L 396.462391 175.774574 L 396.586267 175.989912 L 397.205647 174.913222 L 397.329524 175.12856 L 397.577276 174.697884 L 397.825028 175.12856 L 397.948904 174.913222 L 398.196656 175.343898 L 398.816037 174.267208 L 398.939913 174.482546 L 399.311542 173.836532 L 399.435418 174.05187 L 399.559294 173.836532 L 399.930922 174.482546 L 400.302551 173.836532 L 400.550303 174.267208 L 400.798055 173.836532 L 400.921931 174.05187 L 401.29356 173.405855 L 401.417436 173.621194 L 401.541312 173.405855 L 401.665188 173.621194 L 402.160692 172.759841 L 402.284569 172.975179 L 402.408445 172.759841 L 402.780073 173.405855 L 403.151701 172.759841 L 403.52333 173.405855 L 403.647206 173.190517 L 403.894958 173.621194 L 404.14271 173.190517 L 404.390463 173.621194 L 405.7531 171.252475 L 405.876976 171.467813 L 406.124728 171.037137 L 406.248605 171.252475 L 406.496357 170.821799 L 406.620233 171.037137 L 407.735118 169.099094 L 407.858994 169.314432 L 407.98287 169.099094 L 408.106746 169.314432 L 408.478375 168.668418 L 408.602251 168.883756 L 408.850003 168.45308 L 409.097755 168.883756 L 409.221631 168.668418 L 409.469384 169.099094 L 409.717136 168.668418 L 409.841012 168.883756 L 410.336517 168.022404 L 410.584269 168.45308 L 410.955897 167.807066 L 411.451402 168.668418 L 411.575278 168.45308 L 411.699154 168.668418 L 412.070782 168.022404 L 412.318535 168.45308 L 412.814039 167.591728 L 413.43342 168.668418 L 413.928924 167.807066 L 414.0528 168.022404 L 414.176676 167.807066 L 414.300553 168.022404 L 414.919933 166.945713 L 415.043809 167.161051 L 415.415438 166.515037 L 415.539314 166.730375 L 416.654199 164.792333 L 416.778075 165.007671 L 417.149703 164.361657 L 417.397456 164.792333 L 417.521332 164.576995 L 417.645208 164.792333 L 418.016836 164.146319 L 418.140712 164.361657 L 419.007845 162.85429 L 419.131721 163.069628 L 419.255598 162.85429 L 419.50335 163.284966 L 419.751102 162.85429 L 419.874978 163.069628 L 419.998854 162.85429 L 420.12273 163.069628 L 420.370483 162.638952 L 420.494359 162.85429 L 420.865987 162.208276 L 421.361492 163.069628 L 421.485368 162.85429 L 421.609244 163.069628 L 421.73312 162.85429 L 421.856996 163.069628 L 421.980872 162.85429 L 422.104748 163.069628 L 423.095757 161.346924 L 423.219633 161.562262 L 423.34351 161.346924 L 423.467386 161.562262 L 423.715138 161.131586 L 423.96289 161.562262 L 424.086766 161.346924 L 424.334519 161.7776 L 424.458395 161.562262 L 424.706147 161.992938 L 424.830023 161.7776 L 424.953899 161.992938 L 425.201651 161.562262 L 425.325528 161.7776 L 425.944908 160.700909 L 426.068784 160.916248 L 426.19266 160.700909 L 426.688165 161.562262 L 426.812041 161.346924 L 427.183669 161.992938 L 427.431422 161.562262 L 427.555298 161.7776 L 427.679174 161.562262 L 428.174678 162.423614 L 428.298555 162.208276 L 428.422431 162.423614 L 429.289564 160.916248 L 429.537316 161.346924 L 429.785068 160.916248 L 429.908944 161.131586 L 430.03282 160.916248 L 430.280573 161.346924 L 430.528325 160.916248 L 430.652201 161.131586 L 430.899953 160.700909 L 431.271582 161.346924 L 431.64321 160.700909 L 431.890962 161.131586 L 432.634219 159.839557 L 432.881971 160.270233 L 433.501352 159.193543 L 434.120732 160.270233 L 434.492361 159.624219 L 434.616237 159.839557 L 434.987865 159.193543 L 435.111741 159.408881 L 435.359494 158.978205 L 435.48337 159.193543 L 436.350503 157.686176 L 436.598255 158.116853 L 436.846007 157.686176 L 436.969883 157.901515 L 437.093759 157.686176 L 437.217635 157.901515 L 438.332521 155.963472 L 438.580273 156.394148 L 438.704149 156.17881 L 439.075777 156.824824 L 439.32353 156.394148 L 439.447406 156.609486 L 440.810043 154.240767 L 440.933919 154.456105 L 441.305548 153.810091 L 441.5533 154.240767 L 441.924928 153.594753 L 442.048804 153.810091 L 442.17268 153.594753 L 442.296557 153.810091 L 442.544309 153.379415 L 442.668185 153.594753 L 443.163689 152.733401 L 443.287566 152.948739 L 444.030822 151.656711 L 444.154698 151.872049 L 444.897955 150.58002 L 445.021831 150.795358 L 445.765088 149.50333 L 445.888964 149.718668 L 446.01284 149.50333 L 446.260593 149.934006 L 446.384469 149.718668 L 446.508345 149.934006 L 447.251602 148.641978 L 447.499354 149.072654 L 447.747106 148.641978 L 447.870982 148.857316 L 447.994858 148.641978 L 448.118734 148.857316 L 448.738115 147.780625 L 448.861991 147.995963 L 449.109743 147.565287 L 449.23362 147.780625 L 449.357496 147.565287 L 449.729124 148.211301 L 449.976876 147.780625 L 450.100752 147.995963 L 450.224628 147.780625 L 450.348505 147.995963 L 450.472381 147.780625 L 451.091761 148.857316 L 451.587266 147.995963 L 451.835018 148.42664 L 451.958894 148.211301 L 452.206646 148.641978 L 452.702151 147.780625 L 452.826027 147.995963 L 453.197655 147.349949 L 453.321532 147.565287 L 453.445408 147.349949 L 453.569284 147.565287 L 453.817036 147.134611 L 454.188664 147.780625 L 454.312541 147.565287 L 454.436417 147.780625 L 454.931921 146.919273 L 455.179673 147.349949 L 455.30355 147.134611 L 455.427426 147.349949 L 455.675178 146.919273 L 455.799054 147.134611 L 456.294559 146.273259 L 456.418435 146.488597 L 456.666187 146.057921 L 456.913939 146.488597 L 457.409444 145.627245 L 457.53332 145.842583 L 457.657196 145.627245 L 457.904948 146.057921 L 458.028824 145.842583 L 458.1527 146.057921 L 458.400453 145.627245 L 458.524329 145.842583 L 458.772081 145.411907 L 459.019833 145.842583 L 459.267586 145.411907 L 459.515338 145.842583 L 460.010842 144.98123 L 460.134718 145.196569 L 460.630223 144.335216 L 460.754099 144.550554 L 461.497356 143.258526 L 461.621232 143.473864 L 461.99286 142.82785 L 462.116736 143.043188 L 462.240613 142.82785 L 462.488365 143.258526 L 462.612241 143.043188 L 462.736117 143.258526 L 462.983869 142.82785 L 463.107745 143.043188 L 463.231622 142.82785 L 463.479374 143.258526 L 463.60325 143.043188 L 463.851002 143.473864 L 463.974878 143.258526 L 464.098754 143.473864 L 464.22263 143.258526 L 464.346507 143.473864 L 464.594259 143.043188 L 464.842011 143.473864 L 465.213639 142.82785 L 465.337516 143.043188 L 465.461392 142.82785 L 465.709144 143.258526 L 465.956896 142.82785 L 466.080772 143.043188 L 466.204648 142.82785 L 466.328525 143.043188 L 466.576277 142.612512 L 467.071781 143.473864 L 467.44341 142.82785 L 467.691162 143.258526 L 467.938914 142.82785 L 468.310543 143.473864 L 468.682171 142.82785 L 468.929923 143.258526 L 469.549304 142.181836 L 469.920932 142.82785 L 470.540313 141.751159 L 470.664189 141.966497 L 470.911941 141.535821 L 471.035817 141.751159 L 471.159693 141.535821 L 471.407446 141.966497 L 471.779074 141.320483 L 472.026826 141.751159 L 472.150702 141.535821 L 472.274579 141.751159 L 472.646207 141.105145 L 472.770083 141.320483 L 473.265588 140.459131 L 473.389464 140.674469 L 474.13272 139.382441 L 474.380473 139.813117 L 474.504349 139.597779 L 474.628225 139.813117 L 474.999853 139.167103 L 475.123729 139.382441 L 475.74311 138.30575 L 475.866986 138.521088 L 476.114738 138.090412 L 476.362491 138.521088 L 476.610243 138.090412 L 476.734119 138.30575 L 477.105747 137.659736 L 477.229624 137.875074 L 477.477376 137.444398 L 477.601252 137.659736 L 477.725128 137.444398 L 477.849004 137.659736 L 478.344509 136.798384 L 478.468385 137.013722 L 478.592261 136.798384 L 478.716137 137.013722 L 479.211641 136.15237 L 479.459394 136.583046 L 479.58327 136.367708 L 479.831022 136.798384 L 480.078774 136.367708 L 480.20265 136.583046 L 480.326527 136.367708 L 480.450403 136.583046 L 481.193659 135.291017 L 481.317536 135.506355 L 481.689164 134.860341 L 481.81304 135.075679 L 481.936916 134.860341 L 482.060792 135.075679 L 482.556297 134.214327 L 482.804049 134.645003 L 483.175677 133.998989 L 483.299554 134.214327 L 483.42343 133.998989 L 483.547306 134.214327 L 483.918934 133.568313 L 484.166686 133.998989 L 484.414439 133.568313 L 484.538315 133.783651 L 485.033819 132.922299 L 485.157695 133.137637 L 486.148704 131.414932 L 486.272581 131.63027 L 486.768085 130.768918 L 486.891961 130.984256 L 487.139713 130.55358 L 487.26359 130.768918 L 487.635218 130.122904 L 487.88297 130.55358 L 488.006846 130.338242 L 488.130722 130.55358 L 488.254599 130.338242 L 488.378475 130.55358 L 488.502351 130.338242 L 488.626227 130.55358 L 488.997855 129.907566 L 489.245608 130.338242 L 489.864988 129.261551 L 489.988864 129.47689 L 490.360493 128.830875 L 490.484369 129.046213 L 490.732121 128.615537 L 490.979873 129.046213 L 491.103749 128.830875 L 491.351502 129.261551 L 491.475378 129.046213 L 491.599254 129.261551 L 492.342511 127.969523 L 492.590263 128.400199 L 492.838015 127.969523 L 492.961891 128.184861 L 493.33352 127.538847 L 493.705148 128.184861 L 494.076776 127.538847 L 494.324529 127.969523 L 494.572281 127.538847 L 494.943909 128.184861 L 495.067785 127.969523 L 495.191661 128.184861 L 495.315538 127.969523 L 495.687166 128.615537 L 495.811042 128.400199 L 495.934918 128.615537 L 496.306547 127.969523 L 496.678175 128.615537 L 496.802051 128.400199 L 497.049803 128.830875 L 497.297556 128.400199 L 497.669184 129.046213 L 497.916936 128.615537 L 498.164688 129.046213 L 498.784069 127.969523 L 498.907945 128.184861 L 499.651202 126.892833 L 499.775078 127.108171 L 500.642211 125.600804 L 501.137715 126.462157 L 501.261592 126.246819 L 501.63322 126.892833 L 501.880972 126.462157 L 502.004848 126.677495 L 502.252601 126.246819 L 502.376477 126.462157 L 502.871981 125.600804 L 502.995857 125.816142 L 503.119733 125.600804 L 503.24361 125.816142 L 503.615238 125.170128 L 503.86299 125.600804 L 504.234619 124.95479 L 504.358495 125.170128 L 504.606247 124.739452 L 504.853999 125.170128 L 504.977875 124.95479 L 505.225627 125.385466 L 505.721132 124.524114 L 505.968884 124.95479 L 506.712141 123.662762 L 507.083769 124.308776 L 507.331522 123.8781 L 507.455398 124.093438 L 507.70315 123.662762 L 507.827026 123.8781 L 508.322531 123.016747 L 508.570283 123.447424 L 508.694159 123.232086 L 508.818035 123.447424 L 509.065787 123.016747 L 509.189663 123.232086 L 509.437416 122.801409 L 509.561292 123.016747 L 509.93292 122.370733 L 510.056796 122.586071 L 510.800053 121.294043 L 510.923929 121.509381 L 512.038814 119.571338 L 512.16269 119.786676 L 512.782071 118.709986 L 513.029823 119.140662 L 513.153699 118.925324 L 513.401452 119.356 L 513.649204 118.925324 L 513.896956 119.356 L 514.268585 118.709986 L 514.392461 118.925324 L 515.878974 116.341267 L 516.498355 117.417958 L 516.993859 116.556605 L 517.241612 116.987282 L 517.489364 116.556605 L 517.61324 116.771943 L 517.860992 116.341267 L 517.984868 116.556605 L 518.108744 116.341267 L 518.232621 116.556605 L 518.480373 116.125929 L 518.604249 116.341267 L 518.852001 115.910591 L 518.975877 116.125929 L 519.099753 115.910591 L 519.471382 116.556605 L 519.719134 116.125929 L 519.966886 116.556605 L 520.338515 115.910591 L 520.462391 116.125929 L 520.710143 115.695253 L 520.834019 115.910591 L 521.329524 115.049239 L 521.4534 115.264577 L 521.577276 115.049239 L 521.701152 115.264577 L 521.825028 115.049239 L 521.948904 115.264577 L 522.196656 114.833901 L 522.320533 115.049239 L 522.816037 114.187887 L 522.939913 114.403225 L 523.063789 114.187887 L 523.187665 114.403225 L 523.435418 113.972549 L 523.68317 114.403225 L 523.930922 113.972549 L 524.054798 114.187887 L 524.302551 113.757211 L 524.426427 113.972549 L 524.921931 113.111196 L 525.045807 113.326534 L 525.169683 113.111196 L 525.29356 113.326534 L 526.408445 111.388492 L 526.780073 112.034506 L 527.771082 110.311801 L 528.018834 110.742478 L 528.514339 109.881125 L 529.257596 111.173154 L 529.381472 110.957816 L 529.876976 111.819168 L 530.744109 110.311801 L 530.991861 110.742478 L 531.115737 110.52714 L 531.239614 110.742478 L 531.735118 109.881125 L 531.858994 110.096463 L 531.98287 109.881125 L 532.106746 110.096463 L 532.354499 109.665787 L 532.478375 109.881125 L 532.602251 109.665787 L 532.726127 109.881125 L 532.973879 109.450449 L 533.097755 109.665787 L 534.460393 107.297068 L 534.584269 107.512407 L 535.079773 106.651054 L 535.203649 106.866392 L 535.327526 106.651054 L 535.451402 106.866392 L 535.575278 106.651054 L 535.946906 107.297068 L 536.070782 107.08173 L 536.194658 107.297068 L 536.318535 107.08173 L 536.566287 107.512407 L 536.937915 106.866392 L 537.185667 107.297068 L 537.309544 107.08173 L 537.557296 107.512407 L 538.300553 106.220378 L 538.424429 106.435716 L 539.291562 104.92835 L 539.415438 105.143688 L 539.787066 104.497674 L 540.034818 104.92835 L 540.282571 104.497674 L 540.530323 104.92835 L 540.778075 104.497674 L 541.025827 104.92835 L 541.27358 104.497674 L 541.397456 104.713012 L 541.645208 104.282336 L 541.769084 104.497674 L 542.264589 103.636321 L 542.388465 103.851659 L 542.512341 103.636321 L 543.007845 104.497674 L 543.255598 104.066997 L 543.379474 104.282336 L 543.751102 103.636321 L 543.998854 104.066997 L 544.12273 103.851659 L 544.246607 104.066997 L 544.494359 103.636321 L 544.865987 104.282336 L 545.237616 103.636321 L 545.485368 104.066997 L 545.73312 103.636321 L 545.980872 104.066997 L 546.476377 103.205645 L 546.600253 103.420983 L 546.848005 102.990307 L 546.971881 103.205645 L 547.34351 102.559631 L 547.467386 102.774969 L 547.96289 101.913617 L 548.086766 102.128955 L 548.706147 101.052265 L 548.830023 101.267603 L 548.953899 101.052265 L 549.449404 101.913617 L 549.697156 101.482941 L 549.821032 101.698279 L 549.944908 101.482941 L 550.068784 101.698279 L 550.19266 101.482941 L 550.316537 101.698279 L 550.812041 100.836926 L 550.935917 101.052265 L 551.431422 100.190912 L 551.679174 100.621588 L 552.174678 99.760236 L 552.298555 99.975574 L 552.422431 99.760236 L 552.794059 100.40625 L 552.917935 100.190912 L 553.041811 100.40625 L 553.165687 100.190912 L 553.289564 100.40625 L 554.03282 99.114222 L 554.280573 99.544898 L 554.404449 99.32956 L 554.528325 99.544898 L 554.652201 99.32956 L 554.776077 99.544898 L 555.767086 97.822193 L 555.890962 98.037532 L 556.014838 97.822193 L 556.510343 98.683546 L 556.634219 98.468208 L 556.758095 98.683546 L 557.2536 97.822193 L 557.377476 98.037532 L 557.501352 97.822193 L 557.625228 98.037532 L 558.120732 97.176179 L 558.244609 97.391517 L 559.235618 95.668813 L 559.731122 96.530165 L 559.854998 96.314827 L 560.350503 97.176179 L 560.598255 96.745503 L 560.846007 97.176179 L 560.969883 96.960841 L 561.465388 97.822193 L 561.71314 97.391517 L 561.837016 97.606855 L 561.960892 97.391517 L 562.084768 97.606855 L 562.828025 96.314827 L 562.951901 96.530165 L 563.447406 95.668813 L 563.571282 95.884151 L 563.695158 95.668813 L 564.066786 96.314827 L 564.190662 96.099489 L 564.314539 96.314827 L 564.933919 95.238137 L 565.057795 95.453475 L 565.429424 94.807461 L 565.5533 95.022799 L 565.801052 94.592122 L 565.924928 94.807461 L 566.17268 94.376784 L 566.296557 94.592122 L 566.544309 94.161446 L 566.668185 94.376784 L 566.792061 94.161446 L 567.039813 94.592122 L 567.411442 93.946108 L 567.659194 94.376784 L 567.78307 94.161446 L 567.906946 94.376784 L 568.402451 93.515432 L 568.526327 93.73077 L 568.774079 93.300094 L 568.897955 93.515432 L 569.145707 93.084756 L 569.269584 93.300094 L 569.888964 92.223404 L 570.01284 92.438742 L 570.384469 91.792728 L 570.756097 92.438742 L 571.499354 91.146713 L 571.747106 91.577389 L 571.994858 91.146713 L 572.242611 91.577389 L 572.490363 91.146713 L 572.738115 91.577389 L 572.861991 91.362051 L 573.109743 91.792728 L 573.23362 91.577389 L 573.605248 92.223404 L 574.100752 91.362051 L 574.348505 91.792728 L 574.596257 91.362051 L 574.720133 91.577389 L 574.967885 91.146713 L 575.091761 91.362051 L 575.587266 90.500699 L 575.711142 90.716037 L 575.958894 90.285361 L 576.08277 90.500699 L 576.702151 89.424009 L 576.826027 89.639347 L 577.445408 88.562657 L 577.69316 88.993333 L 577.817036 88.777995 L 578.188664 89.424009 L 578.560293 88.777995 L 578.808045 89.208671 L 579.179673 88.562657 L 579.30355 88.777995 L 579.551302 88.347318 L 579.92293 88.993333 L 580.046806 88.777995 L 580.294559 89.208671 L 580.790063 88.347318 L 580.913939 88.562657 L 582.028824 86.624614 L 582.276577 87.05529 L 582.524329 86.624614 L 582.772081 87.05529 L 583.019833 86.624614 L 583.391462 87.270628 L 583.886966 86.409276 L 584.134718 86.839952 L 584.382471 86.409276 L 584.506347 86.624614 L 584.877975 85.9786 L 585.125727 86.409276 L 585.745108 85.332586 L 585.99286 85.763262 L 586.240613 85.332586 L 586.364489 85.547924 L 586.364489 85.547924 " style="fill:none;opacity:0.9;stroke:#9467bd;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_16"> <path clip-path="url(#p91285e6896)" d="M 79.091761 322.994034 L 79.339514 322.706916 L 79.46339 322.850475 L 79.835018 322.419799 L 79.958894 322.563357 L 80.206646 322.27624 L 80.454399 322.563357 L 80.578275 322.419799 L 80.702151 322.563357 L 81.073779 322.132681 L 81.321532 322.419799 L 81.445408 322.27624 L 81.69316 322.563357 L 82.808045 321.271329 L 82.931921 321.414888 L 83.179673 321.12777 L 83.30355 321.271329 L 83.427426 321.12777 L 83.551302 321.271329 L 83.92293 320.840653 L 84.046806 320.984212 L 84.666187 320.266418 L 84.790063 320.409977 L 85.285568 319.835742 L 85.409444 319.979301 L 85.53332 319.835742 L 85.657196 319.979301 L 86.028824 319.548625 L 86.276577 319.835742 L 86.400453 319.692183 L 86.524329 319.835742 L 87.019833 319.261507 L 87.143709 319.405066 L 87.391462 319.117948 L 87.639214 319.405066 L 88.506347 318.400155 L 88.630223 318.543714 L 89.125727 317.969479 L 89.37348 318.256596 L 89.497356 318.113037 L 89.621232 318.256596 L 90.488365 317.251685 L 90.859993 317.682361 L 92.22263 316.103215 L 92.346507 316.246774 L 92.842011 315.672539 L 93.089763 315.959657 L 93.461392 315.528981 L 93.585268 315.672539 L 94.080772 315.098304 L 94.328525 315.385422 L 94.947905 314.667628 L 95.071781 314.811187 L 95.567286 314.236952 L 95.691162 314.380511 L 96.186666 313.806276 L 96.434419 314.093393 L 96.682171 313.806276 L 96.806047 313.949835 L 96.929923 313.806276 L 97.177675 314.093393 L 97.920932 313.232041 L 98.044808 313.3756 L 98.540313 312.801365 L 98.664189 312.944924 L 99.035817 312.514248 L 99.159693 312.657806 L 99.531322 312.22713 L 99.655198 312.370689 L 100.274579 311.652895 L 100.398455 311.796454 L 100.770083 311.365778 L 100.893959 311.509337 L 101.51334 310.791543 L 101.637216 310.935102 L 101.761092 310.791543 L 102.008844 311.07866 L 102.380473 310.647984 L 102.504349 310.791543 L 102.752101 310.504426 L 102.875977 310.647984 L 103.123729 310.360867 L 103.247606 310.504426 L 103.619234 310.07375 L 103.866986 310.360867 L 105.477376 308.494604 L 105.725128 308.781721 L 106.840013 307.489693 L 106.963889 307.633251 L 107.459394 307.059017 L 107.58327 307.202575 L 108.078774 306.62834 L 108.20265 306.771899 L 109.193659 305.623429 L 109.317536 305.766988 L 110.184668 304.762077 L 110.432421 305.049195 L 111.051801 304.331401 L 111.175677 304.47496 L 111.671182 303.900725 L 111.795058 304.044284 L 111.918934 303.900725 L 112.04281 304.044284 L 112.414439 303.613607 L 112.662191 303.900725 L 112.909943 303.613607 L 113.157695 303.900725 L 113.6532 303.32649 L 113.900952 303.613607 L 114.024828 303.470049 L 114.148704 303.613607 L 114.272581 303.470049 L 114.396457 303.613607 L 114.644209 303.32649 L 114.768085 303.470049 L 115.759094 302.321579 L 115.88297 302.465138 L 116.006846 302.321579 L 116.130722 302.465138 L 116.873979 301.603785 L 116.997855 301.747344 L 117.245608 301.460227 L 117.369484 301.603785 L 117.864988 301.029551 L 118.11274 301.316668 L 118.855997 300.455316 L 118.979873 300.598874 L 119.103749 300.455316 L 119.227625 300.598874 L 119.351502 300.455316 L 119.475378 300.598874 L 119.847006 300.168198 L 120.094758 300.455316 L 120.342511 300.168198 L 120.714139 300.598874 L 121.085767 300.168198 L 121.209643 300.311757 L 121.33352 300.168198 L 121.457396 300.311757 L 121.829024 299.881081 L 121.9529 300.02464 L 122.076776 299.881081 L 122.200652 300.02464 L 122.324529 299.881081 L 122.448405 300.02464 L 123.315538 299.019729 L 123.439414 299.163287 L 123.687166 298.87617 L 123.934918 299.163287 L 124.18267 298.87617 L 124.430423 299.163287 L 124.678175 298.87617 L 124.802051 299.019729 L 124.925927 298.87617 L 125.049803 299.019729 L 125.421432 298.589053 L 125.545308 298.732611 L 125.916936 298.301935 L 126.040812 298.445494 L 127.031821 297.297024 L 127.155697 297.440583 L 127.279574 297.297024 L 127.651202 297.7277 L 128.270583 297.009907 L 128.518335 297.297024 L 129.509344 296.148554 L 129.880972 296.579231 L 130.624229 295.717878 L 130.748105 295.861437 L 130.995857 295.57432 L 131.119733 295.717878 L 131.367486 295.430761 L 131.86299 296.004996 L 132.110742 295.717878 L 132.234619 295.861437 L 132.358495 295.717878 L 132.606247 296.004996 L 132.853999 295.717878 L 133.225627 296.148554 L 133.349504 296.004996 L 133.47338 296.148554 L 133.597256 296.004996 L 133.721132 296.148554 L 134.340513 295.430761 L 134.464389 295.57432 L 134.836017 295.143643 L 134.959893 295.287202 L 135.207645 295.000085 L 135.331522 295.143643 L 135.950902 294.42585 L 136.074778 294.569409 L 136.446407 294.138732 L 136.570283 294.282291 L 137.065787 293.708056 L 137.189663 293.851615 L 138.056796 292.846704 L 138.180672 292.990263 L 138.304549 292.846704 L 138.676177 293.27738 L 139.667186 292.12891 L 139.791062 292.272469 L 139.914938 292.12891 L 140.286567 292.559587 L 140.410443 292.416028 L 140.658195 292.703145 L 141.029823 292.272469 L 141.153699 292.416028 L 142.020832 291.411117 L 142.392461 291.841793 L 142.640213 291.554676 L 142.764089 291.698234 L 143.135717 291.267558 L 143.38347 291.554676 L 143.755098 291.123999 L 143.878974 291.267558 L 144.00285 291.123999 L 144.126726 291.267558 L 145.241612 289.97553 L 145.365488 290.119089 L 145.61324 289.831971 L 145.737116 289.97553 L 146.232621 289.401295 L 146.356497 289.544854 L 146.852001 288.970619 L 146.975877 289.114178 L 147.223629 288.82706 L 147.347506 288.970619 L 147.595258 288.683501 L 147.719134 288.82706 L 147.84301 288.683501 L 148.214638 289.114178 L 148.338515 288.970619 L 148.462391 289.114178 L 148.834019 288.683501 L 148.957895 288.82706 L 149.081771 288.683501 L 149.329524 288.970619 L 149.701152 288.539943 L 149.825028 288.683501 L 150.320533 288.109267 L 150.444409 288.252825 L 151.063789 287.535032 L 151.187665 287.67859 L 151.68317 287.104356 L 151.807046 287.247914 L 151.930922 287.104356 L 152.178674 287.391473 L 152.426427 287.104356 L 152.674179 287.391473 L 154.160692 285.668768 L 154.532321 286.099445 L 155.151701 285.381651 L 155.275578 285.52521 L 155.52333 285.238092 L 155.647206 285.381651 L 155.771082 285.238092 L 155.894958 285.381651 L 156.390463 284.807416 L 156.514339 284.950975 L 156.762091 284.663857 L 157.133719 285.094534 L 157.7531 284.37674 L 157.876976 284.520299 L 158.124728 284.233181 L 158.372481 284.520299 L 158.991861 283.802505 L 159.239614 284.089623 L 159.611242 283.658946 L 159.735118 283.802505 L 159.98287 283.515388 L 160.230623 283.802505 L 160.726127 283.22827 L 160.850003 283.371829 L 160.973879 283.22827 L 161.097755 283.371829 L 161.841012 282.510477 L 162.088764 282.797594 L 162.460393 282.366918 L 162.584269 282.510477 L 163.327526 281.649124 L 163.451402 281.792683 L 163.575278 281.649124 L 163.82303 281.936242 L 163.946906 281.792683 L 164.070782 281.936242 L 164.690163 281.218448 L 164.937915 281.505566 L 165.061791 281.362007 L 165.185667 281.505566 L 165.43342 281.218448 L 165.681172 281.505566 L 165.928924 281.218448 L 166.0528 281.362007 L 166.176676 281.218448 L 166.300553 281.362007 L 166.672181 280.931331 L 166.796057 281.07489 L 166.919933 280.931331 L 167.043809 281.07489 L 167.415438 280.644213 L 167.539314 280.787772 L 167.787066 280.500655 L 167.910942 280.644213 L 168.034818 280.500655 L 168.158694 280.644213 L 168.530323 280.213537 L 168.654199 280.357096 L 169.025827 279.92642 L 169.149703 280.069979 L 169.397456 279.782861 L 169.521332 279.92642 L 169.645208 279.782861 L 169.769084 279.92642 L 170.388465 279.208626 L 170.512341 279.352185 L 170.636217 279.208626 L 170.760093 279.352185 L 171.627226 278.347274 L 171.751102 278.490833 L 172.742111 277.342363 L 172.865987 277.485922 L 173.237616 277.055246 L 173.361492 277.198804 L 174.228625 276.193893 L 174.600253 276.62457 L 175.219633 275.906776 L 175.34351 276.050335 L 175.715138 275.619659 L 175.839014 275.763217 L 176.086766 275.4761 L 176.210642 275.619659 L 177.201651 274.471189 L 177.325528 274.614748 L 177.57328 274.32763 L 177.821032 274.614748 L 179.059793 273.17916 L 179.431422 273.609837 L 179.80305 273.17916 L 179.926926 273.322719 L 180.050802 273.17916 L 180.298555 273.466278 L 180.917935 272.748484 L 181.041811 272.892043 L 182.899953 270.738662 L 183.023829 270.882221 L 183.519334 270.307986 L 183.64321 270.451545 L 183.890962 270.164428 L 184.014838 270.307986 L 184.758095 269.446634 L 185.005847 269.733751 L 185.377476 269.303075 L 185.625228 269.590193 L 185.996856 269.159517 L 186.120732 269.303075 L 186.492361 268.872399 L 186.740113 269.159517 L 187.111741 268.72884 L 187.235618 268.872399 L 187.48337 268.585282 L 187.607246 268.72884 L 188.226626 268.011047 L 188.350503 268.154606 L 188.474379 268.011047 L 188.598255 268.154606 L 188.722131 268.011047 L 188.846007 268.154606 L 188.969883 268.011047 L 189.217635 268.298164 L 189.960892 267.436812 L 190.084768 267.580371 L 190.332521 267.293253 L 190.580273 267.580371 L 190.951901 267.149695 L 191.075777 267.293253 L 191.32353 267.006136 L 191.447406 267.149695 L 191.94291 266.57546 L 192.066786 266.719018 L 192.190662 266.57546 L 192.438415 266.862577 L 192.933919 266.288342 L 193.057795 266.431901 L 193.924928 265.42699 L 194.048804 265.570549 L 194.296557 265.283431 L 194.420433 265.42699 L 194.544309 265.283431 L 194.668185 265.42699 L 194.792061 265.283431 L 194.915937 265.42699 L 195.287566 264.996314 L 195.411442 265.139873 L 196.030822 264.422079 L 196.278575 264.709196 L 196.650203 264.27852 L 196.774079 264.422079 L 198.384469 262.555816 L 198.508345 262.699374 L 198.632221 262.555816 L 198.756097 262.699374 L 198.879973 262.555816 L 199.003849 262.699374 L 199.127725 262.555816 L 199.499354 262.986492 L 199.870982 262.555816 L 199.994858 262.699374 L 200.366487 262.268698 L 200.490363 262.412257 L 200.614239 262.268698 L 200.861991 262.555816 L 201.109743 262.268698 L 201.23362 262.412257 L 201.605248 261.981581 L 201.729124 262.12514 L 201.853 261.981581 L 201.976876 262.12514 L 202.348505 261.694463 L 202.472381 261.838022 L 202.596257 261.694463 L 202.720133 261.838022 L 203.711142 260.689553 L 203.835018 260.833111 L 204.08277 260.545994 L 204.206646 260.689553 L 204.330523 260.545994 L 204.578275 260.833111 L 206.931921 258.105496 L 207.179673 258.392613 L 207.30355 258.249054 L 207.427426 258.392613 L 207.799054 257.961937 L 207.92293 258.105496 L 208.542311 257.387702 L 208.666187 257.531261 L 208.790063 257.387702 L 208.913939 257.531261 L 209.53332 256.813467 L 209.657196 256.957026 L 209.904948 256.669909 L 210.1527 256.957026 L 210.276577 256.813467 L 210.400453 256.957026 L 210.524329 256.813467 L 210.772081 257.100585 L 211.76309 255.952115 L 211.886966 256.095674 L 212.010842 255.952115 L 212.258595 256.239232 L 212.630223 255.808556 L 212.754099 255.952115 L 213.125727 255.521439 L 213.249604 255.664998 L 213.621232 255.234321 L 213.745108 255.37788 L 214.116736 254.947204 L 214.240613 255.090763 L 214.983869 254.22941 L 215.107745 254.372969 L 215.231622 254.22941 L 215.355498 254.372969 L 215.479374 254.22941 L 215.60325 254.372969 L 215.851002 254.085852 L 215.974878 254.22941 L 216.346507 253.798734 L 216.470383 253.942293 L 216.718135 253.655176 L 216.842011 253.798734 L 216.965887 253.655176 L 217.089763 253.798734 L 217.337516 253.511617 L 217.461392 253.655176 L 218.328525 252.650265 L 218.576277 252.937382 L 218.700153 252.793823 L 218.824029 252.937382 L 219.195657 252.506706 L 219.319534 252.650265 L 219.44341 252.506706 L 219.567286 252.650265 L 219.938914 252.219588 L 220.06279 252.363147 L 220.310543 252.07603 L 220.558295 252.363147 L 220.806047 252.07603 L 220.929923 252.219588 L 221.053799 252.07603 L 221.301552 252.363147 L 221.549304 252.07603 L 221.797056 252.363147 L 221.920932 252.219588 L 222.168684 252.506706 L 222.788065 251.788912 L 222.911941 251.932471 L 223.28357 251.501795 L 223.407446 251.645354 L 223.655198 251.358236 L 223.779074 251.501795 L 224.150702 251.071119 L 224.274579 251.214677 L 224.522331 250.92756 L 224.770083 251.214677 L 225.017835 250.92756 L 225.141711 251.071119 L 226.256597 249.77909 L 226.380473 249.922649 L 226.875977 249.348414 L 227.123729 249.635532 L 227.74311 248.917738 L 227.866986 249.061297 L 227.990862 248.917738 L 228.114738 249.061297 L 228.238615 248.917738 L 228.362491 249.061297 L 228.981871 248.343503 L 229.105747 248.487062 L 229.601252 247.912827 L 229.97288 248.343503 L 230.468385 247.769268 L 230.716137 248.056386 L 230.963889 247.769268 L 231.087765 247.912827 L 231.211641 247.769268 L 231.459394 248.056386 L 231.707146 247.769268 L 231.831022 247.912827 L 231.954898 247.769268 L 232.078774 247.912827 L 232.822031 247.051475 L 233.317536 247.62571 L 233.441412 247.482151 L 233.565288 247.62571 L 233.81304 247.338592 L 233.936916 247.482151 L 234.804049 246.47724 L 235.051801 246.764357 L 235.299554 246.47724 L 235.42343 246.620799 L 235.547306 246.47724 L 236.04281 247.051475 L 236.166686 246.907916 L 236.290563 247.051475 L 236.414439 246.907916 L 236.538315 247.051475 L 237.281572 246.190123 L 237.405448 246.333681 L 237.529324 246.190123 L 237.6532 246.333681 L 237.900952 246.046564 L 238.272581 246.47724 L 238.396457 246.333681 L 238.520333 246.47724 L 238.891961 246.046564 L 239.139713 246.333681 L 240.997855 244.180301 L 241.369484 244.610977 L 241.49336 244.467418 L 241.617236 244.610977 L 241.988864 244.180301 L 242.236617 244.467418 L 242.484369 244.180301 L 242.608245 244.323859 L 242.732121 244.180301 L 242.855997 244.323859 L 243.351502 243.749624 L 243.475378 243.893183 L 243.599254 243.749624 L 243.72313 243.893183 L 243.847006 243.749624 L 243.970882 243.893183 L 244.590263 243.17539 L 244.714139 243.318948 L 244.838015 243.17539 L 244.961891 243.318948 L 245.457396 242.744713 L 245.705148 243.031831 L 245.9529 242.744713 L 246.076776 242.888272 L 246.696157 242.170479 L 246.820033 242.314037 L 247.315538 241.739802 L 247.439414 241.883361 L 247.56329 241.739802 L 247.811042 242.02692 L 247.934918 241.883361 L 248.058794 242.02692 L 248.430423 241.596244 L 248.678175 241.883361 L 248.925927 241.596244 L 249.049803 241.739802 L 250.040812 240.591333 L 250.164688 240.734892 L 250.412441 240.447774 L 250.660193 240.734892 L 251.40345 239.873539 L 251.651202 240.160657 L 252.02283 239.729981 L 252.146706 239.873539 L 252.518335 239.442863 L 252.642211 239.586422 L 252.889963 239.299304 L 253.013839 239.442863 L 253.509344 238.868628 L 253.63322 239.012187 L 253.880972 238.72507 L 254.128724 239.012187 L 254.376477 238.72507 L 254.500353 238.868628 L 255.24361 238.007276 L 255.367486 238.150835 L 255.491362 238.007276 L 255.739114 238.294393 L 256.482371 237.433041 L 256.853999 237.863717 L 257.597256 237.002365 L 257.721132 237.145924 L 258.09276 236.715248 L 258.216636 236.858806 L 258.340513 236.715248 L 258.959893 237.433041 L 259.455398 236.858806 L 259.579274 237.002365 L 260.198654 236.284571 L 260.322531 236.42813 L 260.941911 235.710337 L 261.065787 235.853895 L 261.93292 234.848984 L 262.056796 234.992543 L 262.180672 234.848984 L 262.304549 234.992543 L 263.914938 233.12628 L 264.038814 233.269838 L 264.16269 233.12628 L 264.410443 233.413397 L 265.029823 232.695604 L 265.525328 233.269838 L 266.020832 232.695604 L 266.640213 233.413397 L 269.489364 230.111547 L 269.61324 230.255106 L 269.860992 229.967988 L 269.984868 230.111547 L 270.852001 229.106636 L 270.975877 229.250195 L 273.577276 226.235462 L 273.701152 226.37902 L 273.948904 226.091903 L 274.07278 226.235462 L 274.196656 226.091903 L 274.320533 226.235462 L 274.692161 225.804785 L 274.816037 225.948344 L 275.68317 224.943433 L 275.807046 225.086992 L 276.798055 223.938522 L 276.921931 224.082081 L 278.656197 222.072259 L 278.903949 222.359376 L 279.647206 221.498024 L 279.894958 221.785141 L 280.14271 221.498024 L 280.266587 221.641583 L 280.514339 221.354465 L 280.638215 221.498024 L 280.762091 221.354465 L 281.009843 221.641583 L 281.505348 221.067348 L 281.629224 221.210907 L 281.876976 220.923789 L 282.000852 221.067348 L 282.248605 220.780231 L 282.372481 220.923789 L 282.496357 220.780231 L 282.620233 220.923789 L 282.867985 220.636672 L 282.991861 220.780231 L 283.115737 220.636672 L 283.239614 220.780231 L 283.36349 220.636672 L 283.487366 220.780231 L 284.354499 219.77532 L 284.602251 220.062437 L 284.726127 219.918878 L 284.850003 220.062437 L 286.088764 218.62685 L 286.336517 218.913967 L 286.460393 218.770409 L 286.584269 218.913967 L 287.575278 217.765498 L 287.699154 217.909056 L 288.442411 217.047704 L 288.566287 217.191263 L 289.557296 216.042793 L 289.928924 216.473469 L 290.0528 216.32991 L 290.176676 216.473469 L 290.424429 216.186352 L 290.548305 216.32991 L 290.796057 216.042793 L 290.919933 216.186352 L 291.787066 215.181441 L 292.034818 215.468558 L 292.158694 215.324999 L 292.282571 215.468558 L 292.778075 214.894323 L 292.901951 215.037882 L 293.645208 214.17653 L 293.769084 214.320088 L 293.89296 214.17653 L 294.140712 214.463647 L 294.264589 214.320088 L 294.388465 214.463647 L 295.255598 213.458736 L 295.379474 213.602295 L 295.627226 213.315177 L 295.874978 213.602295 L 296.370483 213.02806 L 296.494359 213.171619 L 296.618235 213.02806 L 296.742111 213.171619 L 296.865987 213.02806 L 296.989863 213.171619 L 297.361492 212.740943 L 297.485368 212.884501 L 297.609244 212.740943 L 297.73312 212.884501 L 297.856996 212.740943 L 297.980872 212.884501 L 298.104748 212.740943 L 298.228625 212.884501 L 298.724129 212.310266 L 298.971881 212.597384 L 299.34351 212.166708 L 299.467386 212.310266 L 299.591262 212.166708 L 300.086766 212.740943 L 301.821032 210.731121 L 302.19266 211.161797 L 302.440413 210.874679 L 302.564289 211.018238 L 302.812041 210.731121 L 303.059793 211.018238 L 303.679174 210.300445 L 303.80305 210.444003 L 304.298555 209.869768 L 304.422431 210.013327 L 304.546307 209.869768 L 304.917935 210.300445 L 305.041811 210.156886 L 305.289564 210.444003 L 305.785068 209.869768 L 305.908944 210.013327 L 306.280573 209.582651 L 306.404449 209.72621 L 306.652201 209.439092 L 306.776077 209.582651 L 306.899953 209.439092 L 307.023829 209.582651 L 307.271582 209.295534 L 307.395458 209.439092 L 307.64321 209.151975 L 307.767086 209.295534 L 308.881971 208.003505 L 309.005847 208.147064 L 309.129723 208.003505 L 309.2536 208.147064 L 309.377476 208.003505 L 309.749104 208.434181 L 310.368485 207.716388 L 310.616237 208.003505 L 310.863989 207.716388 L 310.987865 207.859946 L 311.978874 206.711477 L 312.10275 206.855035 L 312.350503 206.567918 L 312.474379 206.711477 L 312.598255 206.567918 L 312.722131 206.711477 L 312.846007 206.567918 L 312.969883 206.711477 L 313.589264 205.993683 L 313.71314 206.137242 L 314.456397 205.27589 L 314.580273 205.419448 L 314.704149 205.27589 L 314.951901 205.563007 L 315.199653 205.27589 L 315.32353 205.419448 L 315.571282 205.132331 L 315.695158 205.27589 L 316.066786 204.845213 L 316.314539 205.132331 L 316.810043 204.558096 L 316.933919 204.701655 L 317.429424 204.12742 L 317.5533 204.270979 L 317.677176 204.12742 L 318.048804 204.558096 L 318.17268 204.414537 L 318.296557 204.558096 L 318.420433 204.414537 L 318.792061 204.845213 L 318.915937 204.701655 L 319.039813 204.845213 L 319.163689 204.701655 L 319.287566 204.845213 L 319.411442 204.701655 L 319.535318 204.845213 L 320.030822 204.270979 L 320.278575 204.558096 L 320.650203 204.12742 L 320.774079 204.270979 L 322.508345 202.261157 L 322.632221 202.404715 L 323.251602 201.686922 L 323.375478 201.83048 L 323.499354 201.686922 L 323.62323 201.83048 L 323.747106 201.686922 L 324.118734 202.117598 L 324.614239 201.543363 L 324.861991 201.83048 L 325.481372 201.112687 L 325.729124 201.399804 L 325.853 201.256246 L 326.100752 201.543363 L 326.720133 200.82557 L 326.967885 201.112687 L 327.835018 200.107776 L 327.958894 200.251335 L 328.826027 199.246424 L 329.073779 199.533541 L 329.69316 198.815748 L 329.817036 198.959306 L 330.312541 198.385071 L 330.560293 198.672189 L 331.92293 197.093043 L 332.046806 197.236602 L 332.170682 197.093043 L 332.294559 197.236602 L 332.418435 197.093043 L 332.542311 197.236602 L 332.666187 197.093043 L 332.790063 197.236602 L 332.913939 197.093043 L 333.037815 197.236602 L 333.161691 197.093043 L 333.409444 197.38016 L 333.657196 197.093043 L 333.904948 197.38016 L 334.028824 197.236602 L 334.1527 197.38016 L 334.524329 196.949484 L 334.648205 197.093043 L 334.772081 196.949484 L 334.895957 197.093043 L 335.019833 196.949484 L 335.143709 197.093043 L 335.886966 196.231691 L 336.134718 196.518808 L 336.630223 195.944573 L 336.877975 196.231691 L 337.001851 196.088132 L 337.125727 196.231691 L 337.621232 195.657456 L 337.868984 195.944573 L 337.99286 195.801015 L 338.240613 196.088132 L 338.736117 195.513897 L 338.859993 195.657456 L 339.355498 195.083221 L 339.60325 195.370338 L 340.470383 194.365427 L 340.594259 194.508986 L 340.842011 194.221869 L 341.089763 194.508986 L 341.337516 194.221869 L 341.585268 194.508986 L 341.709144 194.365427 L 341.83302 194.508986 L 342.204648 194.07831 L 342.328525 194.221869 L 343.071781 193.360516 L 343.319534 193.647634 L 343.567286 193.360516 L 343.691162 193.504075 L 343.815038 193.360516 L 343.938914 193.504075 L 344.310543 193.073399 L 344.434419 193.216958 L 344.806047 192.786282 L 344.929923 192.92984 L 346.168684 191.494253 L 346.292561 191.637812 L 346.664189 191.207136 L 346.911941 191.494253 L 347.035817 191.350694 L 347.28357 191.637812 L 347.655198 191.207136 L 347.779074 191.350694 L 348.274579 190.77646 L 348.398455 190.920018 L 348.646207 190.632901 L 348.893959 190.920018 L 349.141711 190.632901 L 349.265588 190.77646 L 349.637216 190.345784 L 350.008844 190.77646 L 350.380473 190.345784 L 350.504349 190.489342 L 350.628225 190.345784 L 350.875977 190.632901 L 351.619234 189.771549 L 351.866986 190.058666 L 352.114738 189.771549 L 352.238615 189.915107 L 352.610243 189.484431 L 352.734119 189.62799 L 353.229624 189.053755 L 353.3535 189.197314 L 353.477376 189.053755 L 353.601252 189.197314 L 354.592261 188.048844 L 354.716137 188.192403 L 354.840013 188.048844 L 354.963889 188.192403 L 355.087765 188.048844 L 355.211641 188.192403 L 355.459394 187.905285 L 355.58327 188.048844 L 356.078774 187.474609 L 356.20265 187.618168 L 356.822031 186.900374 L 357.069783 187.187492 L 357.441412 186.756816 L 357.565288 186.900374 L 357.936916 186.469698 L 358.060792 186.613257 L 358.556297 186.039022 L 358.680173 186.182581 L 358.804049 186.039022 L 358.927925 186.182581 L 359.051801 186.039022 L 359.299554 186.32614 L 359.42343 186.182581 L 359.671182 186.469698 L 360.414439 185.608346 L 360.538315 185.751905 L 360.909943 185.321229 L 361.033819 185.464787 L 361.157695 185.321229 L 361.281572 185.464787 L 361.6532 185.034111 L 361.777076 185.17767 L 361.900952 185.034111 L 362.024828 185.17767 L 362.396457 184.746994 L 362.520333 184.890552 L 362.644209 184.746994 L 362.768085 184.890552 L 363.015837 184.603435 L 363.139713 184.746994 L 363.26359 184.603435 L 363.387466 184.746994 L 363.511342 184.603435 L 363.759094 184.890552 L 364.006846 184.603435 L 364.130722 184.746994 L 364.626227 184.172759 L 364.750103 184.316318 L 365.121731 183.885641 L 365.245608 184.0292 L 365.864988 183.311407 L 365.988864 183.454965 L 366.236617 183.167848 L 366.732121 183.742083 L 366.855997 183.598524 L 366.979873 183.742083 L 367.103749 183.598524 L 367.351502 183.885641 L 367.599254 183.598524 L 367.72313 183.742083 L 368.466387 182.88073 L 368.838015 183.311407 L 369.085767 183.024289 L 369.209643 183.167848 L 369.581272 182.737172 L 369.705148 182.88073 L 369.9529 182.593613 L 370.200652 182.88073 L 371.439414 181.445143 L 371.934918 182.019378 L 372.306547 181.588702 L 372.430423 181.732261 L 372.554299 181.588702 L 372.678175 181.732261 L 372.802051 181.588702 L 372.925927 181.732261 L 373.173679 181.445143 L 373.297556 181.588702 L 374.040812 180.72735 L 374.164688 180.870909 L 374.660193 180.296674 L 374.784069 180.440232 L 375.527326 179.57888 L 375.651202 179.722439 L 376.02283 179.291763 L 376.146706 179.435321 L 376.394459 179.148204 L 376.518335 179.291763 L 376.642211 179.148204 L 376.766087 179.291763 L 377.509344 178.43041 L 377.63322 178.573969 L 378.128724 177.999734 L 378.252601 178.143293 L 378.624229 177.712617 L 378.871981 177.999734 L 378.995857 177.856176 L 379.119733 177.999734 L 379.24361 177.856176 L 379.615238 178.286852 L 379.739114 178.143293 L 379.86299 178.286852 L 379.986866 178.143293 L 380.110742 178.286852 L 380.234619 178.143293 L 380.358495 178.286852 L 380.730123 177.856176 L 380.853999 177.999734 L 381.349504 177.425499 L 381.597256 177.712617 L 382.216636 176.994823 L 382.464389 177.281941 L 382.959893 176.707706 L 383.083769 176.851265 L 383.207645 176.707706 L 383.331522 176.851265 L 383.579274 176.564147 L 383.70315 176.707706 L 384.074778 176.27703 L 384.198654 176.420588 L 384.941911 175.559236 L 385.065787 175.702795 L 386.304549 174.267208 L 386.428425 174.410766 L 387.295558 173.405855 L 387.54331 173.692973 L 388.038814 173.118738 L 388.16269 173.262297 L 388.286567 173.118738 L 388.410443 173.262297 L 389.153699 172.400944 L 389.277576 172.544503 L 389.525328 172.257386 L 389.896956 172.688062 L 390.268585 172.257386 L 390.516337 172.544503 L 390.764089 172.257386 L 390.887965 172.400944 L 391.135717 172.113827 L 391.259594 172.257386 L 391.507346 171.970268 L 391.631222 172.113827 L 391.755098 171.970268 L 392.126726 172.400944 L 392.993859 171.396033 L 393.241612 171.683151 L 393.860992 170.965357 L 393.984868 171.108916 L 394.232621 170.821799 L 394.356497 170.965357 L 394.728125 170.534681 L 394.852001 170.67824 L 395.347506 170.104005 L 395.471382 170.247564 L 395.595258 170.104005 L 395.719134 170.247564 L 396.834019 168.955535 L 396.957895 169.099094 L 397.081771 168.955535 L 397.205647 169.099094 L 397.329524 168.955535 L 397.4534 169.099094 L 397.825028 168.668418 L 397.948904 168.811977 L 398.568285 168.094183 L 398.692161 168.237742 L 399.187665 167.663507 L 399.311542 167.807066 L 400.054798 166.945713 L 400.178674 167.089272 L 401.045807 166.084361 L 401.417436 166.515037 L 401.541312 166.371479 L 401.665188 166.515037 L 402.408445 165.653685 L 402.532321 165.797244 L 402.903949 165.366568 L 403.027825 165.510126 L 403.275578 165.223009 L 403.399454 165.366568 L 404.018834 164.648774 L 404.514339 165.223009 L 405.009843 164.648774 L 405.257596 164.935891 L 405.629224 164.505215 L 405.7531 164.648774 L 406.000852 164.361657 L 406.124728 164.505215 L 406.372481 164.218098 L 406.496357 164.361657 L 407.239614 163.500304 L 407.36349 163.643863 L 407.487366 163.500304 L 407.611242 163.643863 L 407.98287 163.213187 L 408.230623 163.500304 L 408.354499 163.356746 L 408.602251 163.643863 L 409.097755 163.069628 L 409.221631 163.213187 L 409.469384 162.926069 L 409.59326 163.069628 L 409.717136 162.926069 L 409.841012 163.069628 L 410.21264 162.638952 L 410.460393 162.926069 L 410.832021 162.495393 L 410.955897 162.638952 L 411.451402 162.064717 L 412.070782 162.782511 L 412.442411 162.351835 L 412.566287 162.495393 L 412.690163 162.351835 L 412.814039 162.495393 L 413.185667 162.064717 L 413.681172 162.638952 L 413.805048 162.495393 L 413.928924 162.638952 L 414.0528 162.495393 L 414.176676 162.638952 L 414.548305 162.208276 L 414.672181 162.351835 L 414.796057 162.208276 L 415.043809 162.495393 L 415.167685 162.351835 L 415.291562 162.495393 L 415.415438 162.351835 L 415.539314 162.495393 L 415.66319 162.351835 L 416.034818 162.782511 L 416.282571 162.495393 L 416.406447 162.638952 L 416.901951 162.064717 L 417.025827 162.208276 L 417.27358 161.921158 L 417.397456 162.064717 L 418.264589 161.059806 L 418.636217 161.490482 L 418.760093 161.346924 L 419.007845 161.634041 L 419.131721 161.490482 L 419.255598 161.634041 L 419.751102 161.059806 L 419.874978 161.203365 L 419.998854 161.059806 L 420.12273 161.203365 L 420.370483 160.916248 L 420.742111 161.346924 L 421.361492 160.62913 L 421.485368 160.772689 L 421.609244 160.62913 L 421.73312 160.772689 L 421.856996 160.62913 L 421.980872 160.772689 L 422.104748 160.62913 L 422.228625 160.772689 L 422.476377 160.485571 L 422.600253 160.62913 L 422.724129 160.485571 L 422.848005 160.62913 L 423.34351 160.054895 L 423.467386 160.198454 L 423.839014 159.767778 L 423.96289 159.911337 L 424.334519 159.48066 L 424.458395 159.624219 L 424.582271 159.48066 L 424.706147 159.624219 L 424.953899 159.337102 L 425.077775 159.48066 L 425.944908 158.475749 L 426.068784 158.619308 L 426.564289 158.045073 L 426.812041 158.332191 L 427.555298 157.470838 L 427.80305 157.757956 L 427.926926 157.614397 L 428.174678 157.901515 L 428.298555 157.757956 L 428.422431 157.901515 L 428.546307 157.757956 L 428.670183 157.901515 L 429.661192 156.753045 L 429.785068 156.896604 L 431.64321 154.743223 L 431.767086 154.886782 L 432.386467 154.168988 L 432.634219 154.456105 L 432.881971 154.168988 L 433.005847 154.312547 L 433.2536 154.025429 L 433.501352 154.312547 L 433.749104 154.025429 L 433.87298 154.168988 L 433.996856 154.025429 L 434.120732 154.168988 L 434.863989 153.307636 L 434.987865 153.451194 L 435.111741 153.307636 L 435.359494 153.594753 L 435.48337 153.451194 L 435.607246 153.594753 L 435.731122 153.451194 L 435.854998 153.594753 L 435.978874 153.451194 L 436.10275 153.594753 L 436.969883 152.589842 L 437.093759 152.733401 L 437.217635 152.589842 L 437.341512 152.733401 L 437.837016 152.159166 L 437.960892 152.302725 L 438.084768 152.159166 L 438.332521 152.446283 L 439.695158 150.867138 L 439.819034 151.010696 L 440.066786 150.723579 L 440.314539 151.010696 L 440.438415 150.867138 L 440.810043 151.297814 L 441.057795 151.010696 L 441.181671 151.154255 L 441.5533 150.723579 L 441.677176 150.867138 L 442.048804 150.436462 L 442.17268 150.58002 L 442.792061 149.862227 L 442.915937 150.005785 L 443.039813 149.862227 L 443.287566 150.149344 L 443.411442 150.005785 L 443.535318 150.149344 L 443.659194 150.005785 L 443.906946 150.292903 L 444.402451 149.718668 L 444.526327 149.862227 L 445.39346 148.857316 L 445.517336 149.000874 L 445.641212 148.857316 L 445.888964 149.144433 L 446.879973 147.995963 L 447.251602 148.42664 L 447.375478 148.283081 L 447.499354 148.42664 L 447.870982 147.995963 L 447.994858 148.139522 L 448.242611 147.852405 L 448.366487 147.995963 L 448.738115 147.565287 L 448.861991 147.708846 L 451.339514 144.837672 L 451.46339 144.98123 L 451.711142 144.694113 L 452.08277 145.124789 L 452.330523 144.837672 L 452.454399 144.98123 L 452.578275 144.837672 L 452.949903 145.268348 L 453.817036 144.263437 L 453.940912 144.406996 L 454.064788 144.263437 L 454.188664 144.406996 L 454.684169 143.832761 L 454.808045 143.976319 L 455.179673 143.545643 L 455.30355 143.689202 L 455.551302 143.402085 L 455.92293 143.832761 L 456.294559 143.402085 L 456.418435 143.545643 L 456.790063 143.114967 L 456.913939 143.258526 L 457.161691 142.971408 L 457.409444 143.258526 L 458.1527 142.397174 L 458.276577 142.540732 L 459.019833 141.67938 L 459.267586 141.966497 L 460.258595 140.818028 L 460.382471 140.961587 L 461.249604 139.956676 L 461.37348 140.100234 L 461.868984 139.525999 L 461.99286 139.669558 L 462.116736 139.525999 L 462.240613 139.669558 L 463.60325 138.090412 L 463.851002 138.37753 L 463.974878 138.233971 L 464.098754 138.37753 L 464.22263 138.233971 L 464.346507 138.37753 L 464.594259 138.090412 L 464.718135 138.233971 L 465.089763 137.803295 L 465.337516 138.090412 L 466.080772 137.22906 L 466.204648 137.372619 L 466.947905 136.511266 L 467.071781 136.654825 L 467.195657 136.511266 L 467.319534 136.654825 L 467.815038 136.08059 L 468.06279 136.367708 L 468.806047 135.506355 L 468.929923 135.649914 L 469.177675 135.362797 L 469.301552 135.506355 L 469.67318 135.075679 L 469.797056 135.219238 L 469.920932 135.075679 L 470.044808 135.219238 L 470.292561 134.932121 L 470.416437 135.075679 L 471.28357 134.070768 L 471.407446 134.214327 L 471.655198 133.92721 L 471.90295 134.214327 L 472.026826 134.070768 L 472.150702 134.214327 L 472.398455 133.92721 L 472.522331 134.070768 L 473.017835 133.496533 L 473.141711 133.640092 L 474.380473 132.204505 L 474.504349 132.348064 L 474.628225 132.204505 L 474.999853 132.635181 L 475.247606 132.348064 L 475.371482 132.491622 L 475.495358 132.348064 L 475.619234 132.491622 L 475.866986 132.204505 L 476.114738 132.491622 L 476.486367 132.060946 L 476.610243 132.204505 L 476.857995 131.917388 L 476.981871 132.060946 L 477.3535 131.63027 L 477.477376 131.773829 L 477.601252 131.63027 L 477.725128 131.773829 L 478.220632 131.199594 L 478.344509 131.343153 L 478.468385 131.199594 L 478.592261 131.343153 L 479.58327 130.194683 L 479.707146 130.338242 L 479.831022 130.194683 L 479.954898 130.338242 L 480.574279 129.620448 L 480.945907 130.051124 L 481.069783 129.907566 L 481.193659 130.051124 L 481.565288 129.620448 L 481.689164 129.764007 L 482.060792 129.333331 L 482.184668 129.47689 L 482.804049 128.759096 L 483.175677 129.189772 L 483.299554 129.046213 L 483.42343 129.189772 L 483.795058 128.759096 L 483.918934 128.902655 L 484.662191 128.041302 L 485.157695 128.615537 L 485.6532 128.041302 L 485.777076 128.184861 L 486.272581 127.610626 L 486.396457 127.754185 L 486.891961 127.17995 L 487.015837 127.323509 L 487.26359 127.036391 L 487.511342 127.323509 L 488.626227 126.03148 L 488.873979 126.318598 L 489.245608 125.887922 L 489.369484 126.03148 L 489.49336 125.887922 L 489.617236 126.03148 L 489.988864 125.600804 L 490.11274 125.744363 L 490.855997 124.883011 L 491.103749 125.170128 L 491.227625 125.026569 L 491.351502 125.170128 L 491.72313 124.739452 L 491.970882 125.026569 L 492.590263 124.308776 L 492.714139 124.452335 L 493.581272 123.447424 L 493.705148 123.590982 L 493.829024 123.447424 L 493.9529 123.590982 L 494.200652 123.303865 L 494.324529 123.447424 L 494.448405 123.303865 L 494.572281 123.447424 L 495.067785 122.873189 L 495.191661 123.016747 L 495.56329 122.586071 L 495.811042 122.873189 L 496.678175 121.868278 L 496.925927 122.155395 L 497.297556 121.724719 L 497.545308 122.011836 L 497.669184 121.868278 L 497.916936 122.155395 L 498.536317 121.437602 L 498.660193 121.58116 L 498.784069 121.437602 L 498.907945 121.58116 L 499.775078 120.576249 L 499.898954 120.719808 L 500.146706 120.432691 L 500.394459 120.719808 L 500.766087 120.289132 L 500.889963 120.432691 L 502.004848 119.140662 L 502.128724 119.284221 L 502.500353 118.853545 L 502.624229 118.997104 L 502.871981 118.709986 L 502.995857 118.853545 L 503.986866 117.705075 L 504.110742 117.848634 L 504.482371 117.417958 L 504.606247 117.561516 L 504.853999 117.274399 L 504.977875 117.417958 L 505.225627 117.13084 L 505.349504 117.274399 L 505.47338 117.13084 L 505.597256 117.274399 L 506.712141 115.982371 L 506.959893 116.269488 L 507.083769 116.125929 L 507.207645 116.269488 L 507.455398 115.982371 L 507.579274 116.125929 L 507.827026 115.838812 L 508.074778 116.125929 L 510.428425 113.398314 L 510.800053 113.82899 L 511.047805 113.541872 L 511.419434 113.972549 L 511.54331 113.82899 L 511.791062 114.116107 L 511.914938 113.972549 L 512.038814 114.116107 L 512.410443 113.685431 L 512.534319 113.82899 L 512.658195 113.685431 L 512.905947 113.972549 L 513.77308 112.967638 L 513.896956 113.111196 L 515.011841 111.819168 L 515.135717 111.962727 L 515.38347 111.675609 L 515.631222 111.962727 L 517.489364 109.809346 L 517.61324 109.952905 L 517.984868 109.522229 L 518.232621 109.809346 L 518.728125 109.235111 L 518.852001 109.37867 L 519.471382 108.660876 L 519.719134 108.947994 L 520.090762 108.517318 L 520.338515 108.804435 L 521.081771 107.943083 L 521.205647 108.086641 L 521.825028 107.368848 L 521.948904 107.512407 L 522.196656 107.225289 L 522.320533 107.368848 L 522.444409 107.225289 L 522.692161 107.512407 L 522.816037 107.368848 L 523.063789 107.655965 L 523.187665 107.512407 L 523.311542 107.655965 L 523.559294 107.368848 L 523.68317 107.512407 L 523.807046 107.368848 L 523.930922 107.512407 L 524.426427 106.938172 L 524.550303 107.08173 L 525.045807 106.507496 L 525.169683 106.651054 L 525.789064 105.933261 L 526.036816 106.220378 L 526.780073 105.359026 L 526.903949 105.502585 L 527.027825 105.359026 L 527.151701 105.502585 L 527.399454 105.215467 L 527.52333 105.359026 L 527.647206 105.215467 L 527.771082 105.359026 L 528.514339 104.497674 L 528.638215 104.641232 L 528.885967 104.354115 L 529.133719 104.641232 L 529.876976 103.77988 L 530.000852 103.923439 L 531.487366 102.200734 L 531.611242 102.344293 L 531.735118 102.200734 L 531.858994 102.344293 L 532.602251 101.482941 L 532.726127 101.626499 L 532.850003 101.482941 L 532.973879 101.626499 L 533.097755 101.482941 L 533.221631 101.626499 L 533.345508 101.482941 L 533.59326 101.770058 L 533.841012 101.482941 L 534.088764 101.770058 L 534.336517 101.482941 L 534.460393 101.626499 L 534.584269 101.482941 L 534.708145 101.626499 L 535.203649 101.052265 L 535.327526 101.195823 L 535.451402 101.052265 L 535.575278 101.195823 L 536.814039 99.760236 L 536.937915 99.903795 L 537.061791 99.760236 L 537.309544 100.047354 L 537.681172 99.616677 L 538.0528 100.047354 L 539.167685 98.755325 L 539.291562 98.898884 L 539.66319 98.468208 L 539.787066 98.611766 L 539.910942 98.468208 L 540.034818 98.611766 L 540.282571 98.324649 L 540.406447 98.468208 L 540.654199 98.18109 L 540.778075 98.324649 L 541.025827 98.037532 L 541.397456 98.468208 L 541.521332 98.324649 L 541.645208 98.468208 L 541.89296 98.18109 L 542.016836 98.324649 L 542.140712 98.18109 L 542.388465 98.468208 L 543.50335 97.176179 L 543.627226 97.319738 L 544.370483 96.458386 L 544.494359 96.601944 L 545.113739 95.884151 L 545.237616 96.02771 L 545.361492 95.884151 L 545.609244 96.171268 L 546.228625 95.453475 L 546.476377 95.740592 L 547.095757 95.022799 L 547.839014 95.884151 L 548.458395 95.166357 L 548.706147 95.453475 L 548.830023 95.309916 L 548.953899 95.453475 L 549.077775 95.309916 L 549.201651 95.453475 L 549.821032 94.735681 L 549.944908 94.87924 L 550.440413 94.305005 L 550.564289 94.448564 L 550.688165 94.305005 L 550.812041 94.448564 L 551.183669 94.017888 L 551.307546 94.161446 L 551.431422 94.017888 L 551.555298 94.161446 L 551.679174 94.017888 L 551.926926 94.305005 L 552.917935 93.156535 L 553.041811 93.300094 L 553.661192 92.5823 L 553.785068 92.725859 L 554.280573 92.151624 L 554.404449 92.295183 L 554.528325 92.151624 L 554.776077 92.438742 L 555.767086 91.290272 L 555.890962 91.433831 L 556.138714 91.146713 L 556.262591 91.290272 L 556.510343 91.003155 L 556.634219 91.146713 L 556.758095 91.003155 L 556.881971 91.146713 L 557.005847 91.003155 L 557.129723 91.146713 L 558.368485 89.711126 L 558.616237 89.998244 L 558.863989 89.711126 L 559.111741 89.998244 L 559.731122 89.28045 L 559.978874 89.567568 L 560.350503 89.136891 L 560.474379 89.28045 L 560.722131 88.993333 L 560.969883 89.28045 L 561.71314 88.419098 L 561.837016 88.562657 L 562.208644 88.13198 L 562.456397 88.419098 L 563.695158 86.983511 L 563.94291 87.270628 L 564.066786 87.127069 L 564.190662 87.270628 L 564.562291 86.839952 L 564.686167 86.983511 L 565.677176 85.835041 L 566.048804 86.265717 L 566.17268 86.122158 L 566.296557 86.265717 L 567.163689 85.260806 L 567.287566 85.404365 L 567.659194 84.973689 L 567.78307 85.117247 L 568.154698 84.686571 L 568.278575 84.83013 L 568.402451 84.686571 L 568.650203 84.973689 L 569.145707 84.399454 L 569.269584 84.543013 L 569.39346 84.399454 L 569.517336 84.543013 L 569.641212 84.399454 L 569.765088 84.543013 L 570.508345 83.68166 L 570.632221 83.825219 L 570.756097 83.68166 L 570.879973 83.825219 L 571.003849 83.68166 L 571.127725 83.825219 L 571.375478 83.538102 L 571.499354 83.68166 L 571.747106 83.394543 L 571.870982 83.538102 L 572.614239 82.676749 L 572.861991 82.963867 L 573.109743 82.676749 L 573.357496 82.963867 L 573.853 82.389632 L 573.976876 82.533191 L 574.596257 81.815397 L 574.720133 81.958956 L 575.091761 81.52828 L 575.215637 81.671838 L 575.46339 81.384721 L 575.587266 81.52828 L 575.711142 81.384721 L 575.835018 81.52828 L 575.958894 81.384721 L 576.08277 81.52828 L 577.073779 80.37981 L 577.197655 80.523369 L 577.69316 79.949134 L 577.817036 80.092693 L 578.188664 79.662016 L 578.312541 79.805575 L 578.560293 79.518458 L 578.684169 79.662016 L 580.294559 77.795753 L 580.418435 77.939312 L 580.790063 77.508636 L 581.037815 77.795753 L 581.53332 77.221518 L 581.657196 77.365077 L 581.781072 77.221518 L 581.904948 77.365077 L 582.772081 76.360166 L 582.895957 76.503725 L 583.267586 76.073049 L 583.391462 76.216607 L 583.515338 76.073049 L 583.639214 76.216607 L 584.258595 75.498814 L 584.382471 75.642372 L 584.506347 75.498814 L 584.630223 75.642372 L 585.125727 75.068138 L 585.37348 75.355255 L 585.497356 75.211696 L 585.621232 75.355255 L 585.745108 75.211696 L 585.868984 75.355255 L 586.116736 75.068138 L 586.240613 75.211696 L 586.364489 75.068138 L 586.364489 75.068138 " style="fill:none;opacity:0.9;stroke:#8c564b;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_17"> <path clip-path="url(#p91285e6896)" d="M 79.091761 322.778696 L 79.215637 322.706916 L 79.339514 322.778696 L 79.587266 322.635137 L 79.835018 322.778696 L 80.826027 322.204461 L 80.949903 322.27624 L 81.817036 321.773785 L 81.940912 321.845564 L 82.436417 321.558446 L 82.684169 321.702005 L 83.30355 321.343108 L 83.427426 321.414888 L 83.675178 321.271329 L 83.799054 321.343108 L 84.046806 321.19955 L 84.170682 321.271329 L 84.542311 321.055991 L 84.666187 321.12777 L 84.913939 320.984212 L 85.037815 321.055991 L 85.781072 320.625315 L 86.028824 320.768874 L 86.524329 320.481756 L 86.648205 320.553535 L 86.895957 320.409977 L 87.019833 320.481756 L 87.143709 320.409977 L 87.391462 320.553535 L 88.754099 319.763963 L 89.125727 319.979301 L 89.37348 319.835742 L 89.497356 319.907521 L 89.621232 319.835742 L 89.745108 319.907521 L 89.868984 319.835742 L 90.240613 320.05108 L 90.859993 319.692183 L 90.983869 319.763963 L 91.231622 319.620404 L 91.355498 319.692183 L 91.479374 319.620404 L 91.727126 319.763963 L 91.851002 319.692183 L 91.974878 319.763963 L 92.098754 319.692183 L 92.22263 319.763963 L 92.470383 319.620404 L 92.594259 319.692183 L 93.337516 319.261507 L 93.461392 319.333286 L 93.956896 319.046169 L 94.080772 319.117948 L 94.824029 318.687272 L 94.947905 318.759052 L 95.195657 318.615493 L 95.319534 318.687272 L 95.44341 318.615493 L 95.567286 318.687272 L 95.691162 318.615493 L 95.815038 318.687272 L 95.938914 318.615493 L 96.06279 318.687272 L 96.434419 318.471934 L 96.558295 318.543714 L 97.177675 318.184817 L 97.425428 318.328375 L 98.168684 317.897699 L 98.416437 318.041258 L 98.664189 317.897699 L 98.788065 317.969479 L 98.911941 317.897699 L 99.035817 317.969479 L 100.150702 317.323464 L 100.274579 317.395244 L 101.389464 316.74923 L 101.51334 316.821009 L 101.637216 316.74923 L 101.761092 316.821009 L 102.008844 316.67745 L 102.256597 316.821009 L 102.504349 316.67745 L 102.752101 316.821009 L 104.238615 315.959657 L 104.486367 316.103215 L 104.734119 315.959657 L 104.857995 316.031436 L 105.725128 315.528981 L 105.849004 315.60076 L 106.344509 315.313643 L 106.468385 315.385422 L 106.592261 315.313643 L 106.840013 315.457201 L 106.963889 315.385422 L 107.087765 315.457201 L 107.211641 315.385422 L 107.335518 315.457201 L 107.707146 315.241863 L 107.831022 315.313643 L 108.450403 314.954746 L 108.574279 315.026525 L 108.698155 314.954746 L 108.822031 315.026525 L 109.069783 314.882966 L 109.193659 314.954746 L 109.317536 314.882966 L 109.565288 315.026525 L 109.936916 314.811187 L 110.060792 314.882966 L 110.680173 314.52407 L 110.804049 314.595849 L 111.299554 314.308732 L 111.42343 314.380511 L 111.795058 314.165173 L 111.918934 314.236952 L 112.04281 314.165173 L 112.290563 314.308732 L 112.786067 314.021614 L 112.909943 314.093393 L 113.157695 313.949835 L 113.405448 314.093393 L 113.900952 313.806276 L 114.024828 313.878055 L 114.768085 313.447379 L 114.891961 313.519159 L 115.26359 313.303821 L 115.387466 313.3756 L 115.511342 313.303821 L 115.635218 313.3756 L 116.254599 313.016703 L 116.502351 313.160262 L 117.369484 312.657806 L 117.49336 312.729586 L 118.11274 312.370689 L 118.236617 312.442468 L 118.484369 312.29891 L 118.608245 312.370689 L 120.218634 311.437557 L 120.342511 311.509337 L 120.838015 311.222219 L 121.085767 311.365778 L 121.457396 311.15044 L 121.581272 311.222219 L 122.200652 310.863322 L 122.324529 310.935102 L 122.820033 310.647984 L 123.067785 310.791543 L 123.191661 310.719764 L 123.315538 310.791543 L 123.439414 310.719764 L 123.687166 310.863322 L 125.669184 309.714853 L 125.916936 309.858411 L 126.040812 309.786632 L 126.288565 309.930191 L 126.907945 309.571294 L 127.031821 309.643073 L 127.651202 309.284177 L 127.775078 309.355956 L 127.898954 309.284177 L 128.146706 309.427735 L 128.889963 308.997059 L 129.137715 309.140618 L 129.261592 309.068839 L 129.385468 309.140618 L 130.004848 308.781721 L 130.128724 308.8535 L 130.500353 308.638162 L 130.624229 308.709942 L 130.748105 308.638162 L 130.871981 308.709942 L 131.24361 308.494604 L 131.367486 308.566383 L 131.86299 308.279266 L 131.986866 308.351045 L 133.47338 307.489693 L 133.597256 307.561472 L 134.216636 307.202575 L 134.340513 307.274355 L 134.464389 307.202575 L 134.588265 307.274355 L 135.083769 306.987237 L 135.207645 307.059017 L 135.331522 306.987237 L 135.455398 307.059017 L 135.579274 306.987237 L 135.70315 307.059017 L 135.827026 306.987237 L 135.950902 307.059017 L 136.570283 306.70012 L 136.694159 306.771899 L 136.818035 306.70012 L 136.941911 306.771899 L 137.93292 306.197664 L 138.056796 306.269444 L 138.180672 306.197664 L 138.304549 306.269444 L 139.295558 305.695209 L 139.419434 305.766988 L 139.54331 305.695209 L 139.667186 305.766988 L 141.277576 304.833857 L 141.401452 304.905636 L 141.525328 304.833857 L 141.649204 304.905636 L 142.516337 304.40318 L 142.640213 304.47496 L 143.011841 304.259622 L 143.135717 304.331401 L 143.878974 303.900725 L 144.00285 303.972504 L 144.126726 303.900725 L 144.869983 304.331401 L 145.365488 304.044284 L 145.61324 304.187842 L 145.737116 304.116063 L 145.860992 304.187842 L 146.604249 303.757166 L 146.728125 303.828946 L 147.099753 303.613607 L 147.223629 303.685387 L 147.471382 303.541828 L 147.595258 303.613607 L 148.214638 303.254711 L 148.338515 303.32649 L 148.462391 303.254711 L 148.710143 303.398269 L 148.957895 303.254711 L 149.081771 303.32649 L 149.577276 303.039373 L 149.701152 303.111152 L 149.825028 303.039373 L 150.196656 303.254711 L 150.444409 303.111152 L 150.568285 303.182931 L 150.692161 303.111152 L 150.816037 303.182931 L 151.559294 302.752255 L 151.68317 302.824035 L 153.169683 301.962682 L 153.417436 302.106241 L 153.665188 301.962682 L 153.789064 302.034462 L 153.91294 301.962682 L 154.160692 302.106241 L 154.656197 301.819124 L 154.780073 301.890903 L 155.894958 301.244889 L 156.018834 301.316668 L 156.14271 301.244889 L 156.266587 301.316668 L 157.133719 300.814213 L 157.381472 300.957771 L 157.505348 300.885992 L 157.629224 300.957771 L 157.876976 300.814213 L 158.000852 300.885992 L 158.620233 300.527095 L 158.867985 300.670654 L 159.858994 300.096419 L 159.98287 300.168198 L 160.230623 300.02464 L 160.354499 300.096419 L 161.097755 299.665743 L 161.221631 299.737522 L 161.345508 299.665743 L 161.469384 299.737522 L 161.59326 299.665743 L 161.841012 299.809302 L 162.336517 299.522184 L 162.460393 299.593964 L 162.708145 299.450405 L 162.832021 299.522184 L 163.079773 299.378625 L 163.203649 299.450405 L 163.82303 299.091508 L 163.946906 299.163287 L 164.937915 298.589053 L 165.061791 298.660832 L 165.185667 298.589053 L 165.43342 298.732611 L 166.0528 298.373714 L 166.176676 298.445494 L 166.424429 298.301935 L 166.672181 298.445494 L 167.167685 298.158376 L 167.291562 298.230156 L 167.539314 298.086597 L 167.787066 298.230156 L 169.27358 297.368803 L 169.397456 297.440583 L 169.521332 297.368803 L 169.645208 297.440583 L 170.140712 297.153465 L 170.264589 297.225245 L 170.512341 297.081686 L 170.636217 297.153465 L 171.751102 296.507451 L 171.874978 296.579231 L 171.998854 296.507451 L 172.12273 296.579231 L 172.370483 296.435672 L 172.742111 296.65101 L 172.989863 296.507451 L 173.113739 296.579231 L 173.361492 296.435672 L 173.485368 296.507451 L 173.609244 296.435672 L 174.104748 296.722789 L 174.971881 296.220334 L 175.095757 296.292113 L 176.334519 295.57432 L 176.458395 295.646099 L 176.582271 295.57432 L 176.706147 295.646099 L 177.449404 295.215423 L 177.57328 295.287202 L 177.944908 295.071864 L 178.19266 295.215423 L 178.316537 295.143643 L 178.440413 295.215423 L 179.679174 294.497629 L 179.80305 294.569409 L 179.926926 294.497629 L 180.050802 294.569409 L 181.165687 293.923394 L 181.537316 294.138732 L 181.661192 294.066953 L 181.785068 294.138732 L 182.156696 293.923394 L 182.404449 294.066953 L 182.528325 293.995174 L 182.652201 294.066953 L 183.395458 293.636277 L 183.519334 293.708056 L 184.014838 293.420939 L 184.262591 293.564498 L 185.005847 293.133821 L 185.129723 293.205601 L 185.749104 292.846704 L 185.87298 292.918483 L 186.120732 292.774925 L 186.368485 292.918483 L 186.740113 292.703145 L 186.987865 292.846704 L 187.235618 292.703145 L 187.48337 292.846704 L 187.854998 292.631366 L 187.978874 292.703145 L 188.846007 292.20069 L 188.969883 292.272469 L 189.589264 291.913572 L 189.837016 292.057131 L 191.199653 291.267558 L 191.32353 291.339338 L 191.447406 291.267558 L 191.819034 291.482896 L 192.686167 290.980441 L 192.933919 291.123999 L 193.181671 290.980441 L 193.429424 291.123999 L 194.048804 290.765103 L 194.17268 290.836882 L 195.411442 290.119089 L 195.535318 290.190868 L 195.78307 290.047309 L 196.030822 290.190868 L 196.402451 289.97553 L 196.526327 290.047309 L 197.145707 289.688412 L 197.517336 289.90375 L 197.888964 289.688412 L 198.01284 289.760192 L 198.136716 289.688412 L 198.384469 289.831971 L 198.508345 289.760192 L 198.632221 289.831971 L 198.756097 289.760192 L 198.879973 289.831971 L 199.747106 289.329516 L 199.870982 289.401295 L 200.861991 288.82706 L 201.109743 288.970619 L 201.23362 288.898839 L 201.605248 289.114178 L 201.729124 289.042398 L 201.853 289.114178 L 202.224628 288.898839 L 202.348505 288.970619 L 202.720133 288.755281 L 203.339514 289.114178 L 204.702151 288.324605 L 204.826027 288.396384 L 205.197655 288.181046 L 205.321532 288.252825 L 205.445408 288.181046 L 206.064788 288.539943 L 206.188664 288.468163 L 206.312541 288.539943 L 206.436417 288.468163 L 206.684169 288.611722 L 207.675178 288.037487 L 207.799054 288.109267 L 207.92293 288.037487 L 208.170682 288.181046 L 208.294559 288.109267 L 208.418435 288.181046 L 209.037815 287.822149 L 209.161691 287.893928 L 210.1527 287.319694 L 210.276577 287.391473 L 210.772081 287.104356 L 210.895957 287.176135 L 211.019833 287.104356 L 211.515338 287.391473 L 212.258595 286.960797 L 212.382471 287.032576 L 212.506347 286.960797 L 212.630223 287.032576 L 212.754099 286.960797 L 212.877975 287.032576 L 213.249604 286.817238 L 213.497356 286.960797 L 213.868984 286.745459 L 213.99286 286.817238 L 214.364489 286.6019 L 214.488365 286.673679 L 214.612241 286.6019 L 214.736117 286.673679 L 215.107745 286.458341 L 215.231622 286.530121 L 215.974878 286.099445 L 216.098754 286.171224 L 216.22263 286.099445 L 216.346507 286.171224 L 216.470383 286.099445 L 216.594259 286.171224 L 216.842011 286.027665 L 216.965887 286.099445 L 217.213639 285.955886 L 217.337516 286.027665 L 217.709144 285.812327 L 217.83302 285.884106 L 218.080772 285.740548 L 218.204648 285.812327 L 218.824029 285.45343 L 218.947905 285.52521 L 219.319534 285.309872 L 219.44341 285.381651 L 219.567286 285.309872 L 219.691162 285.381651 L 220.06279 285.166313 L 220.186666 285.238092 L 220.682171 284.950975 L 220.806047 285.022754 L 221.797056 284.448519 L 221.920932 284.520299 L 222.168684 284.37674 L 222.416437 284.520299 L 222.540313 284.448519 L 222.788065 284.592078 L 223.035817 284.448519 L 223.28357 284.592078 L 223.407446 284.520299 L 223.655198 284.663857 L 223.90295 284.520299 L 224.026826 284.592078 L 224.398455 284.37674 L 224.522331 284.448519 L 225.389464 283.946064 L 225.51334 284.017843 L 225.761092 283.874285 L 226.008844 284.017843 L 226.504349 283.730726 L 226.628225 283.802505 L 226.752101 283.730726 L 226.875977 283.802505 L 227.371482 283.515388 L 227.619234 283.658946 L 228.610243 283.084712 L 228.857995 283.22827 L 229.105747 283.084712 L 229.229624 283.156491 L 229.3535 283.084712 L 229.477376 283.156491 L 229.97288 282.869374 L 230.096756 282.941153 L 231.58327 282.079801 L 231.707146 282.15158 L 232.326527 281.792683 L 232.450403 281.864463 L 232.698155 281.720904 L 232.822031 281.792683 L 233.689164 281.290228 L 233.81304 281.362007 L 234.680173 280.859552 L 234.804049 280.931331 L 235.175677 280.715993 L 235.299554 280.787772 L 236.04281 280.357096 L 236.166686 280.428875 L 236.538315 280.213537 L 236.909943 280.428875 L 237.6532 279.998199 L 237.777076 280.069979 L 238.644209 279.567523 L 238.891961 279.711082 L 239.139713 279.567523 L 239.26359 279.639303 L 239.88297 279.280406 L 240.254599 279.495744 L 240.502351 279.352185 L 240.873979 279.567523 L 241.741112 279.065068 L 241.864988 279.136847 L 242.360493 278.84973 L 242.484369 278.921509 L 242.608245 278.84973 L 242.732121 278.921509 L 243.227625 278.634392 L 243.351502 278.706171 L 243.970882 278.347274 L 244.094758 278.419053 L 244.218634 278.347274 L 244.342511 278.419053 L 244.466387 278.347274 L 244.590263 278.419053 L 244.714139 278.347274 L 244.838015 278.419053 L 245.209643 278.203715 L 245.457396 278.347274 L 245.829024 278.131936 L 245.9529 278.203715 L 246.076776 278.131936 L 246.324529 278.275495 L 246.448405 278.203715 L 246.572281 278.275495 L 246.820033 278.131936 L 246.943909 278.203715 L 247.191661 278.060157 L 247.315538 278.131936 L 247.439414 278.060157 L 247.56329 278.131936 L 248.058794 277.844819 L 248.430423 278.060157 L 249.669184 277.342363 L 249.79306 277.414142 L 250.288565 277.127025 L 250.412441 277.198804 L 250.784069 276.983466 L 250.907945 277.055246 L 251.775078 276.55279 L 251.898954 276.62457 L 252.146706 276.481011 L 252.270583 276.55279 L 252.766087 276.265673 L 252.889963 276.337452 L 253.013839 276.265673 L 253.137715 276.337452 L 253.385468 276.193893 L 253.509344 276.265673 L 253.63322 276.193893 L 253.757096 276.265673 L 254.128724 276.050335 L 254.252601 276.122114 L 254.748105 275.834997 L 254.871981 275.906776 L 254.995857 275.834997 L 255.119733 275.906776 L 255.367486 275.763217 L 255.491362 275.834997 L 255.86299 275.619659 L 256.358495 275.906776 L 256.977875 275.547879 L 257.597256 275.906776 L 257.721132 275.834997 L 257.968884 275.978555 L 258.216636 275.834997 L 258.340513 275.906776 L 259.083769 275.4761 L 259.207645 275.547879 L 259.579274 275.332541 L 259.70315 275.404321 L 260.570283 274.901865 L 260.694159 274.973644 L 261.31354 274.614748 L 261.437416 274.686527 L 261.561292 274.614748 L 261.93292 274.830086 L 262.428425 274.542968 L 262.552301 274.614748 L 262.800053 274.471189 L 262.923929 274.542968 L 263.171681 274.39941 L 263.419434 274.542968 L 263.667186 274.39941 L 263.791062 274.471189 L 264.038814 274.32763 L 264.16269 274.39941 L 264.658195 274.112292 L 264.905947 274.255851 L 265.525328 273.896954 L 265.649204 273.968733 L 265.896956 273.825175 L 266.020832 273.896954 L 267.135717 273.25094 L 267.259594 273.322719 L 267.878974 272.963822 L 268.00285 273.035602 L 268.126726 272.963822 L 268.250603 273.035602 L 269.241612 272.461367 L 269.365488 272.533146 L 269.737116 272.317808 L 269.860992 272.389588 L 269.984868 272.317808 L 270.232621 272.461367 L 270.356497 272.389588 L 270.480373 272.461367 L 270.728125 272.317808 L 270.852001 272.389588 L 271.099753 272.246029 L 271.347506 272.389588 L 271.471382 272.317808 L 271.719134 272.461367 L 271.966886 272.317808 L 272.090762 272.389588 L 272.462391 272.174249 L 272.586267 272.246029 L 273.4534 271.743573 L 273.577276 271.815353 L 273.701152 271.743573 L 273.825028 271.815353 L 274.320533 271.528235 L 274.444409 271.600015 L 274.568285 271.528235 L 274.692161 271.600015 L 274.939913 271.456456 L 275.063789 271.528235 L 275.435418 271.312897 L 275.68317 271.456456 L 275.807046 271.384677 L 275.930922 271.456456 L 276.054798 271.384677 L 276.302551 271.528235 L 277.417436 270.882221 L 277.789064 271.097559 L 278.160692 270.882221 L 278.284569 270.954 L 278.408445 270.882221 L 278.656197 271.02578 L 279.151701 270.738662 L 279.275578 270.810442 L 280.266587 270.236207 L 280.390463 270.307986 L 280.638215 270.164428 L 280.762091 270.236207 L 281.009843 270.092648 L 281.133719 270.164428 L 281.257596 270.092648 L 281.381472 270.164428 L 281.629224 270.020869 L 281.876976 270.164428 L 282.124728 270.020869 L 282.248605 270.092648 L 282.620233 269.87731 L 282.744109 269.949089 L 282.991861 269.805531 L 283.115737 269.87731 L 283.487366 269.661972 L 283.858994 269.87731 L 284.106746 269.733751 L 284.354499 269.87731 L 284.973879 269.518413 L 285.097755 269.590193 L 285.221631 269.518413 L 285.469384 269.661972 L 285.59326 269.590193 L 285.717136 269.661972 L 286.955897 268.944178 L 287.203649 269.087737 L 287.327526 269.015958 L 287.575278 269.159517 L 287.699154 269.087737 L 287.946906 269.231296 L 288.318535 269.015958 L 288.442411 269.087737 L 288.690163 268.944178 L 288.814039 269.015958 L 288.937915 268.944178 L 289.061791 269.015958 L 289.43342 268.80062 L 289.557296 268.872399 L 290.176676 268.513502 L 290.300553 268.585282 L 290.548305 268.441723 L 290.672181 268.513502 L 290.919933 268.369944 L 291.291562 268.585282 L 292.282571 268.011047 L 292.406447 268.082826 L 292.654199 267.939267 L 292.778075 268.011047 L 292.901951 267.939267 L 293.025827 268.011047 L 294.636217 267.077915 L 294.760093 267.149695 L 295.379474 266.790798 L 295.50335 266.862577 L 295.998854 266.57546 L 296.370483 266.790798 L 296.494359 266.719018 L 296.618235 266.790798 L 297.113739 266.50368 L 297.237616 266.57546 L 297.485368 266.431901 L 297.609244 266.50368 L 297.980872 266.288342 L 298.104748 266.360122 L 298.228625 266.288342 L 298.352501 266.360122 L 298.600253 266.216563 L 298.724129 266.288342 L 299.095757 266.073004 L 299.219633 266.144784 L 300.458395 265.42699 L 300.706147 265.570549 L 300.830023 265.498769 L 301.449404 265.857666 L 301.57328 265.785887 L 301.821032 265.929445 L 302.19266 265.714107 L 302.316537 265.785887 L 302.564289 265.642328 L 302.688165 265.714107 L 303.059793 265.498769 L 303.183669 265.570549 L 303.555298 265.355211 L 303.679174 265.42699 L 303.926926 265.283431 L 304.050802 265.355211 L 304.174678 265.283431 L 304.298555 265.355211 L 304.917935 264.996314 L 305.041811 265.068093 L 305.41344 264.852755 L 305.537316 264.924535 L 306.156696 264.565638 L 306.280573 264.637417 L 307.147705 264.134962 L 307.271582 264.206741 L 307.519334 264.063182 L 307.64321 264.134962 L 307.767086 264.063182 L 308.262591 264.3503 L 308.386467 264.27852 L 308.758095 264.493858 L 309.005847 264.3503 L 309.129723 264.422079 L 309.749104 264.063182 L 309.996856 264.206741 L 310.740113 263.776065 L 310.863989 263.847844 L 311.607246 263.417168 L 311.854998 263.560727 L 312.10275 263.417168 L 312.226626 263.488947 L 312.474379 263.345389 L 312.598255 263.417168 L 312.722131 263.345389 L 312.846007 263.417168 L 313.093759 263.273609 L 313.217635 263.345389 L 313.341512 263.273609 L 313.589264 263.417168 L 313.71314 263.345389 L 313.960892 263.488947 L 314.580273 263.130051 L 314.704149 263.20183 L 315.695158 262.627595 L 316.066786 262.842933 L 316.314539 262.699374 L 316.562291 262.842933 L 316.686167 262.771154 L 316.810043 262.842933 L 316.933919 262.771154 L 317.181671 262.914713 L 317.5533 262.699374 L 317.677176 262.771154 L 318.048804 262.555816 L 318.17268 262.627595 L 318.792061 262.268698 L 318.915937 262.340478 L 319.287566 262.12514 L 319.411442 262.196919 L 319.906946 261.909802 L 320.030822 261.981581 L 320.278575 261.838022 L 320.526327 261.981581 L 320.774079 261.838022 L 321.145707 262.05336 L 322.136716 261.479125 L 322.260593 261.550905 L 323.62323 260.761332 L 323.747106 260.833111 L 324.118734 260.617773 L 324.242611 260.689553 L 324.366487 260.617773 L 324.490363 260.689553 L 325.109743 260.330656 L 325.23362 260.402435 L 326.100752 259.89998 L 326.348505 260.043538 L 327.091761 259.612862 L 327.215637 259.684642 L 328.206646 259.110407 L 328.454399 259.253965 L 328.702151 259.110407 L 328.826027 259.182186 L 329.817036 258.607951 L 329.940912 258.679731 L 330.188664 258.536172 L 330.312541 258.607951 L 330.684169 258.392613 L 330.808045 258.464392 L 330.931921 258.392613 L 331.427426 258.679731 L 331.551302 258.607951 L 331.92293 258.823289 L 332.542311 258.464392 L 332.666187 258.536172 L 333.037815 258.320834 L 333.161691 258.392613 L 333.409444 258.249054 L 333.53332 258.320834 L 334.400453 257.818378 L 334.524329 257.890158 L 334.648205 257.818378 L 334.772081 257.890158 L 334.895957 257.818378 L 335.019833 257.890158 L 335.143709 257.818378 L 335.391462 257.961937 L 335.515338 257.890158 L 335.639214 257.961937 L 335.76309 257.890158 L 335.886966 257.961937 L 336.258595 257.746599 L 336.506347 257.890158 L 337.125727 257.531261 L 337.249604 257.60304 L 338.240613 257.028805 L 338.488365 257.172364 L 338.612241 257.100585 L 338.736117 257.172364 L 339.107745 256.957026 L 339.231622 257.028805 L 339.727126 256.741688 L 339.851002 256.813467 L 340.098754 256.669909 L 340.346507 256.813467 L 340.594259 256.669909 L 340.718135 256.741688 L 341.213639 256.45457 L 341.337516 256.52635 L 341.585268 256.382791 L 341.709144 256.45457 L 342.080772 256.239232 L 342.204648 256.311012 L 342.576277 256.095674 L 342.700153 256.167453 L 342.824029 256.095674 L 343.071781 256.239232 L 343.319534 256.095674 L 343.567286 256.239232 L 343.938914 256.023894 L 344.06279 256.095674 L 344.186666 256.023894 L 344.310543 256.095674 L 344.434419 256.023894 L 344.558295 256.095674 L 344.682171 256.023894 L 344.806047 256.095674 L 345.053799 255.952115 L 345.177675 256.023894 L 345.301552 255.952115 L 345.425428 256.023894 L 345.549304 255.952115 L 345.67318 256.023894 L 345.920932 255.880336 L 346.168684 256.023894 L 346.416437 255.880336 L 346.540313 255.952115 L 346.911941 255.736777 L 347.035817 255.808556 L 347.407446 255.593218 L 347.655198 255.736777 L 347.779074 255.664998 L 347.90295 255.736777 L 348.398455 255.44966 L 348.522331 255.521439 L 349.265588 255.090763 L 349.637216 255.306101 L 350.256597 254.947204 L 350.380473 255.018983 L 350.875977 254.731866 L 350.999853 254.803645 L 351.495358 254.516528 L 351.619234 254.588307 L 351.990862 254.372969 L 352.114738 254.444749 L 352.857995 254.014072 L 353.105747 254.157631 L 354.220632 253.511617 L 354.468385 253.655176 L 355.211641 253.224499 L 355.459394 253.368058 L 355.58327 253.296279 L 355.954898 253.511617 L 356.450403 253.224499 L 356.574279 253.296279 L 357.317536 252.865603 L 357.441412 252.937382 L 357.565288 252.865603 L 357.81304 253.009161 L 358.184668 252.793823 L 358.308545 252.865603 L 359.299554 252.291368 L 359.42343 252.363147 L 359.671182 252.219588 L 359.795058 252.291368 L 360.04281 252.147809 L 360.414439 252.363147 L 360.538315 252.291368 L 360.662191 252.363147 L 361.033819 252.147809 L 361.157695 252.219588 L 361.405448 252.07603 L 361.6532 252.219588 L 361.777076 252.147809 L 361.900952 252.219588 L 362.024828 252.147809 L 362.148704 252.219588 L 362.520333 252.00425 L 362.644209 252.07603 L 362.768085 252.00425 L 363.015837 252.147809 L 364.254599 251.430016 L 364.378475 251.501795 L 364.502351 251.430016 L 364.626227 251.501795 L 364.997855 251.286457 L 365.121731 251.358236 L 365.369484 251.214677 L 365.617236 251.358236 L 367.970882 249.994428 L 368.094758 250.066208 L 369.829024 249.061297 L 369.9529 249.133076 L 370.200652 248.989517 L 370.448405 249.133076 L 371.067785 248.774179 L 371.191661 248.845959 L 372.18267 248.271724 L 372.306547 248.343503 L 372.678175 248.128165 L 372.802051 248.199945 L 373.297556 247.912827 L 373.421432 247.984606 L 373.669184 247.841048 L 373.79306 247.912827 L 374.412441 247.55393 L 374.536317 247.62571 L 374.907945 247.410372 L 375.031821 247.482151 L 375.40345 247.266813 L 375.527326 247.338592 L 375.898954 247.123254 L 376.02283 247.195034 L 376.270583 247.051475 L 376.394459 247.123254 L 376.518335 247.051475 L 376.642211 247.123254 L 377.757096 246.47724 L 377.880972 246.549019 L 378.871981 245.974784 L 378.995857 246.046564 L 379.119733 245.974784 L 379.24361 246.046564 L 379.86299 245.687667 L 379.986866 245.759446 L 380.110742 245.687667 L 380.234619 245.759446 L 380.358495 245.687667 L 380.482371 245.759446 L 380.606247 245.687667 L 380.730123 245.759446 L 380.853999 245.687667 L 380.977875 245.759446 L 381.101751 245.687667 L 381.349504 245.831226 L 381.721132 245.615888 L 381.845008 245.687667 L 382.09276 245.544108 L 382.216636 245.615888 L 382.588265 245.40055 L 382.836017 245.544108 L 383.827026 244.969874 L 383.950902 245.041653 L 384.694159 244.610977 L 384.818035 244.682756 L 385.31354 244.395639 L 385.437416 244.467418 L 386.056796 244.108521 L 386.304549 244.25208 L 386.552301 244.108521 L 386.676177 244.180301 L 386.800053 244.108521 L 386.923929 244.180301 L 387.54331 243.821404 L 387.667186 243.893183 L 387.914938 243.749624 L 388.038814 243.821404 L 388.534319 243.534286 L 389.029823 243.821404 L 390.640213 242.888272 L 390.764089 242.960052 L 391.259594 242.672934 L 391.38347 242.744713 L 392.622231 242.02692 L 392.993859 242.242258 L 393.241612 242.098699 L 393.365488 242.170479 L 393.489364 242.098699 L 393.61324 242.170479 L 393.737116 242.098699 L 393.860992 242.170479 L 394.108744 242.02692 L 394.232621 242.098699 L 394.975877 241.668023 L 395.099753 241.739802 L 395.719134 241.380906 L 396.214638 241.668023 L 396.710143 241.380906 L 396.834019 241.452685 L 396.957895 241.380906 L 397.081771 241.452685 L 397.205647 241.380906 L 397.329524 241.452685 L 397.4534 241.380906 L 397.577276 241.452685 L 397.701152 241.380906 L 397.825028 241.452685 L 398.196656 241.237347 L 398.320533 241.309126 L 398.692161 241.093788 L 398.939913 241.237347 L 399.063789 241.165568 L 399.187665 241.237347 L 399.311542 241.165568 L 399.559294 241.309126 L 399.68317 241.237347 L 399.807046 241.309126 L 400.178674 241.093788 L 400.550303 241.309126 L 400.674179 241.237347 L 400.798055 241.309126 L 401.789064 240.734892 L 402.408445 241.093788 L 402.532321 241.022009 L 402.780073 241.165568 L 404.638215 240.088877 L 404.762091 240.160657 L 406.496357 239.155746 L 407.115737 239.514642 L 407.36349 239.371084 L 407.487366 239.442863 L 408.602251 238.796849 L 408.726127 238.868628 L 408.850003 238.796849 L 408.973879 238.868628 L 409.841012 238.366173 L 410.21264 238.581511 L 410.708145 238.294393 L 410.832021 238.366173 L 411.203649 238.150835 L 411.451402 238.294393 L 412.194658 237.863717 L 412.442411 238.007276 L 413.061791 237.648379 L 413.185667 237.720159 L 413.681172 237.433041 L 413.805048 237.50482 L 417.025827 235.638557 L 417.27358 235.782116 L 417.645208 235.566778 L 417.769084 235.638557 L 418.016836 235.494999 L 418.264589 235.638557 L 419.50335 234.920764 L 419.627226 234.992543 L 419.874978 234.848984 L 419.998854 234.920764 L 420.12273 234.848984 L 420.370483 234.992543 L 421.485368 234.346529 L 421.609244 234.418308 L 421.980872 234.20297 L 422.104748 234.274749 L 422.228625 234.20297 L 422.352501 234.274749 L 423.591262 233.556956 L 423.839014 233.700515 L 423.96289 233.628735 L 424.086766 233.700515 L 424.830023 233.269838 L 424.953899 233.341618 L 425.325528 233.12628 L 425.57328 233.269838 L 425.697156 233.198059 L 425.944908 233.341618 L 426.440413 233.0545 L 426.564289 233.12628 L 426.812041 232.982721 L 426.935917 233.0545 L 427.183669 232.910942 L 427.431422 233.0545 L 428.422431 232.480266 L 428.546307 232.552045 L 429.165687 232.193148 L 429.289564 232.264927 L 429.41344 232.193148 L 429.661192 232.336707 L 429.785068 232.264927 L 429.908944 232.336707 L 430.528325 231.97781 L 430.776077 232.121369 L 432.014838 231.403575 L 432.386467 231.618913 L 432.634219 231.475355 L 432.881971 231.618913 L 433.129723 231.475355 L 433.2536 231.547134 L 434.244609 230.972899 L 434.368485 231.044678 L 435.607246 230.326885 L 435.731122 230.398664 L 435.854998 230.326885 L 435.978874 230.398664 L 436.10275 230.326885 L 436.350503 230.470444 L 436.722131 230.255106 L 436.969883 230.398664 L 437.093759 230.326885 L 437.217635 230.398664 L 437.341512 230.326885 L 437.465388 230.398664 L 437.589264 230.326885 L 437.71314 230.398664 L 438.580273 229.896209 L 438.704149 229.967988 L 439.32353 229.609091 L 439.447406 229.680871 L 440.314539 229.178415 L 440.438415 229.250195 L 441.305548 228.747739 L 441.5533 228.891298 L 442.296557 228.460622 L 442.544309 228.60418 L 443.535318 228.029945 L 443.659194 228.101725 L 443.906946 227.958166 L 444.154698 228.101725 L 444.278575 228.029945 L 444.402451 228.101725 L 444.526327 228.029945 L 444.774079 228.173504 L 445.021831 228.029945 L 445.145707 228.101725 L 446.260593 227.455711 L 446.632221 227.671049 L 447.499354 227.168593 L 447.62323 227.240373 L 448.118734 226.953255 L 448.242611 227.025034 L 448.490363 226.881476 L 448.738115 227.025034 L 449.109743 226.809696 L 449.481372 227.025034 L 449.853 226.809696 L 450.224628 227.025034 L 450.348505 226.953255 L 450.472381 227.025034 L 450.844009 226.809696 L 450.967885 226.881476 L 451.091761 226.809696 L 451.339514 226.953255 L 452.08277 226.522579 L 452.206646 226.594358 L 452.454399 226.4508 L 452.578275 226.522579 L 452.949903 226.307241 L 453.073779 226.37902 L 453.445408 226.163682 L 453.817036 226.37902 L 454.436417 226.020123 L 454.560293 226.091903 L 454.808045 225.948344 L 454.931921 226.020123 L 455.30355 225.804785 L 455.427426 225.876565 L 456.418435 225.30233 L 456.666187 225.445889 L 457.657196 224.871654 L 457.781072 224.943433 L 457.904948 224.871654 L 458.1527 225.015213 L 459.639214 224.15386 L 459.76309 224.22564 L 460.010842 224.082081 L 460.134718 224.15386 L 460.382471 224.010302 L 460.506347 224.082081 L 460.877975 223.866743 L 461.001851 223.938522 L 461.37348 223.723184 L 461.497356 223.794963 L 461.621232 223.723184 L 461.868984 223.866743 L 462.983869 223.220729 L 463.231622 223.364287 L 463.355498 223.292508 L 463.479374 223.364287 L 463.851002 223.148949 L 463.974878 223.220729 L 464.098754 223.148949 L 464.22263 223.220729 L 464.470383 223.07717 L 464.594259 223.148949 L 464.718135 223.07717 L 465.089763 223.292508 L 465.337516 223.148949 L 465.461392 223.220729 L 465.709144 223.07717 L 465.83302 223.148949 L 465.956896 223.07717 L 466.080772 223.148949 L 466.328525 223.005391 L 466.452401 223.07717 L 466.576277 223.005391 L 466.700153 223.07717 L 466.824029 223.005391 L 466.947905 223.07717 L 467.071781 223.005391 L 467.195657 223.07717 L 467.691162 222.790052 L 467.815038 222.861832 L 468.06279 222.718273 L 468.186666 222.790052 L 468.310543 222.718273 L 468.434419 222.790052 L 468.558295 222.718273 L 468.682171 222.790052 L 470.044808 222.00048 L 470.168684 222.072259 L 470.416437 221.9287 L 470.664189 222.072259 L 470.911941 221.9287 L 471.28357 222.144038 L 471.407446 222.072259 L 471.655198 222.215818 L 472.274579 221.856921 L 472.398455 221.9287 L 472.522331 221.856921 L 472.646207 221.9287 L 472.770083 221.856921 L 472.893959 221.9287 L 473.265588 221.713362 L 473.761092 222.00048 L 474.008844 221.856921 L 474.256597 222.00048 L 475.123729 221.498024 L 475.247606 221.569803 L 475.74311 221.282686 L 475.866986 221.354465 L 476.238615 221.139127 L 476.362491 221.210907 L 476.734119 220.995569 L 476.857995 221.067348 L 476.981871 220.995569 L 477.105747 221.067348 L 477.849004 220.636672 L 478.220632 220.85201 L 478.963889 220.421334 L 479.211641 220.564892 L 480.078774 220.062437 L 480.20265 220.134216 L 480.945907 219.70354 L 481.069783 219.77532 L 481.193659 219.70354 L 481.317536 219.77532 L 482.308545 219.201085 L 482.432421 219.272864 L 484.04281 218.339732 L 484.290563 218.483291 L 485.281572 217.909056 L 485.6532 218.124394 L 485.900952 217.980836 L 486.148704 218.124394 L 486.396457 217.980836 L 486.520333 218.052615 L 486.644209 217.980836 L 486.891961 218.124394 L 487.511342 217.765498 L 487.635218 217.837277 L 489.617236 216.688807 L 489.864988 216.832366 L 491.103749 216.114572 L 491.227625 216.186352 L 491.351502 216.114572 L 491.72313 216.32991 L 492.218634 216.042793 L 492.342511 216.114572 L 492.466387 216.042793 L 492.590263 216.114572 L 492.961891 215.899234 L 493.085767 215.971014 L 493.209643 215.899234 L 493.33352 215.971014 L 493.9529 215.612117 L 494.076776 215.683896 L 494.324529 215.540338 L 494.448405 215.612117 L 494.943909 215.324999 L 495.067785 215.396779 L 495.191661 215.324999 L 495.315538 215.396779 L 495.811042 215.109661 L 495.934918 215.181441 L 496.058794 215.109661 L 496.18267 215.181441 L 497.173679 214.607206 L 497.297556 214.678985 L 497.916936 214.320088 L 498.164688 214.463647 L 498.907945 214.032971 L 499.031821 214.10475 L 499.40345 213.889412 L 499.527326 213.961192 L 499.898954 213.745854 L 500.146706 213.889412 L 500.889963 213.458736 L 501.013839 213.530516 L 502.376477 212.740943 L 502.500353 212.812722 L 502.624229 212.740943 L 502.748105 212.812722 L 502.995857 212.669163 L 503.119733 212.740943 L 503.24361 212.669163 L 503.367486 212.740943 L 503.491362 212.669163 L 503.615238 212.740943 L 504.110742 212.453825 L 504.234619 212.525605 L 504.358495 212.453825 L 504.482371 212.525605 L 504.730123 212.382046 L 504.853999 212.453825 L 505.597256 212.023149 L 505.721132 212.094928 L 506.216636 211.807811 L 506.340513 211.87959 L 506.588265 211.736032 L 506.712141 211.807811 L 506.959893 211.664252 L 507.083769 211.736032 L 507.207645 211.664252 L 507.331522 211.736032 L 508.322531 211.161797 L 508.694159 211.377135 L 508.818035 211.305355 L 509.065787 211.448914 L 509.189663 211.377135 L 509.31354 211.448914 L 509.437416 211.377135 L 509.561292 211.448914 L 509.809044 211.305355 L 509.93292 211.377135 L 510.056796 211.305355 L 510.180672 211.377135 L 511.419434 210.659341 L 511.54331 210.731121 L 512.038814 210.444003 L 512.286567 210.587562 L 513.277576 210.013327 L 513.401452 210.085106 L 513.525328 210.013327 L 513.649204 210.085106 L 513.896956 209.941548 L 514.144708 210.085106 L 514.392461 209.941548 L 514.516337 210.013327 L 514.887965 209.797989 L 515.011841 209.869768 L 515.259594 209.72621 L 515.38347 209.797989 L 515.755098 209.582651 L 515.878974 209.65443 L 516.126726 209.510872 L 516.622231 209.797989 L 517.365488 209.367313 L 517.489364 209.439092 L 518.232621 209.008416 L 518.356497 209.080195 L 518.480373 209.008416 L 518.604249 209.080195 L 520.834019 207.788167 L 521.081771 207.931726 L 521.205647 207.859946 L 521.329524 207.931726 L 521.701152 207.716388 L 521.825028 207.788167 L 523.063789 207.070373 L 523.187665 207.142153 L 523.311542 207.070373 L 523.435418 207.142153 L 523.930922 206.855035 L 524.054798 206.926815 L 524.178674 206.855035 L 524.302551 206.926815 L 525.169683 206.424359 L 525.665188 206.711477 L 526.036816 206.496139 L 526.160692 206.567918 L 526.903949 206.137242 L 527.027825 206.209021 L 527.52333 205.921904 L 527.647206 205.993683 L 528.14271 205.706566 L 528.266587 205.778345 L 528.762091 205.491228 L 528.885967 205.563007 L 529.133719 205.419448 L 529.505348 205.634786 L 530.124728 205.27589 L 530.744109 205.634786 L 530.867985 205.563007 L 531.115737 205.706566 L 531.36349 205.563007 L 531.487366 205.634786 L 531.611242 205.563007 L 531.735118 205.634786 L 531.98287 205.491228 L 532.106746 205.563007 L 532.354499 205.419448 L 532.602251 205.563007 L 532.726127 205.491228 L 532.850003 205.563007 L 532.973879 205.491228 L 533.097755 205.563007 L 534.460393 204.773434 L 534.584269 204.845213 L 534.955897 204.629875 L 535.079773 204.701655 L 535.327526 204.558096 L 535.451402 204.629875 L 535.575278 204.558096 L 535.699154 204.629875 L 536.194658 204.342758 L 536.318535 204.414537 L 536.442411 204.342758 L 536.814039 204.558096 L 537.557296 204.12742 L 537.681172 204.199199 L 538.0528 203.983861 L 538.176676 204.055641 L 538.548305 203.840302 L 538.796057 203.983861 L 539.291562 203.696744 L 539.415438 203.768523 L 539.787066 203.553185 L 539.910942 203.624964 L 540.034818 203.553185 L 540.158694 203.624964 L 540.778075 203.266068 L 540.901951 203.337847 L 541.397456 203.05073 L 541.521332 203.122509 L 542.016836 202.835391 L 542.140712 202.907171 L 542.512341 202.691833 L 542.636217 202.763612 L 543.627226 202.189377 L 543.874978 202.332936 L 543.998854 202.261157 L 544.12273 202.332936 L 544.246607 202.261157 L 544.370483 202.332936 L 546.104748 201.328025 L 546.228625 201.399804 L 546.848005 201.040908 L 546.971881 201.112687 L 547.96289 200.538452 L 548.086766 200.610231 L 548.210642 200.538452 L 548.458395 200.682011 L 549.57328 200.035997 L 549.697156 200.107776 L 550.316537 199.748879 L 550.440413 199.820659 L 550.564289 199.748879 L 550.688165 199.820659 L 550.935917 199.6771 L 551.183669 199.820659 L 551.307546 199.748879 L 551.431422 199.820659 L 551.926926 199.533541 L 552.174678 199.6771 L 552.298555 199.60532 L 552.422431 199.6771 L 553.41344 199.102865 L 553.661192 199.246424 L 553.908944 199.102865 L 554.156696 199.246424 L 554.404449 199.102865 L 554.528325 199.174644 L 554.899953 198.959306 L 555.271582 199.174644 L 555.519334 199.031086 L 555.767086 199.174644 L 555.890962 199.102865 L 556.138714 199.246424 L 556.634219 198.959306 L 556.758095 199.031086 L 557.2536 198.743968 L 557.377476 198.815748 L 557.501352 198.743968 L 557.996856 199.031086 L 558.244609 198.887527 L 558.368485 198.959306 L 558.616237 198.815748 L 558.740113 198.887527 L 559.48337 198.456851 L 559.731122 198.600409 L 560.598255 198.097954 L 560.722131 198.169733 L 561.960892 197.45194 L 562.084768 197.523719 L 562.456397 197.308381 L 562.828025 197.523719 L 564.438415 196.590587 L 564.562291 196.662367 L 564.933919 196.447029 L 565.305548 196.662367 L 565.5533 196.518808 L 565.677176 196.590587 L 566.048804 196.375249 L 566.17268 196.447029 L 566.420433 196.30347 L 566.544309 196.375249 L 566.668185 196.30347 L 566.792061 196.375249 L 566.915937 196.30347 L 567.039813 196.375249 L 567.535318 196.088132 L 567.659194 196.159911 L 567.906946 196.016353 L 568.030822 196.088132 L 568.897955 195.585677 L 569.021831 195.657456 L 569.269584 195.513897 L 569.39346 195.585677 L 569.765088 195.370338 L 570.136716 195.585677 L 570.384469 195.442118 L 570.508345 195.513897 L 570.879973 195.298559 L 571.003849 195.370338 L 571.127725 195.298559 L 571.375478 195.442118 L 571.62323 195.298559 L 571.747106 195.370338 L 573.481372 194.365427 L 573.853 194.580766 L 575.215637 193.791193 L 575.46339 193.934751 L 575.587266 193.862972 L 575.711142 193.934751 L 575.835018 193.862972 L 575.958894 193.934751 L 576.330523 193.719413 L 576.454399 193.791193 L 576.702151 193.647634 L 576.949903 193.791193 L 577.197655 193.647634 L 577.321532 193.719413 L 577.817036 193.432296 L 577.940912 193.504075 L 578.436417 193.216958 L 578.560293 193.288737 L 578.808045 193.145178 L 579.055797 193.288737 L 579.551302 193.00162 L 579.675178 193.073399 L 579.92293 192.92984 L 580.046806 193.00162 L 580.170682 192.92984 L 580.294559 193.00162 L 580.418435 192.92984 L 580.542311 193.00162 L 580.666187 192.92984 L 580.790063 193.00162 L 581.161691 192.786282 L 581.285568 192.858061 L 581.657196 192.642723 L 581.781072 192.714502 L 581.904948 192.642723 L 582.028824 192.714502 L 582.895957 192.212047 L 583.019833 192.283826 L 583.143709 192.212047 L 583.267586 192.283826 L 583.76309 191.996709 L 583.886966 192.068488 L 584.010842 191.996709 L 584.134718 192.068488 L 584.382471 191.924929 L 584.506347 191.996709 L 584.630223 191.924929 L 584.754099 191.996709 L 584.877975 191.924929 L 585.001851 191.996709 L 585.99286 191.422474 L 586.116736 191.494253 L 586.364489 191.350694 L 586.364489 191.350694 " style="fill:none;opacity:0.9;stroke:#e377c2;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_18"> <path clip-path="url(#p91285e6896)" d="M 79.091761 322.850475 L 586.364489 322.850475 L 586.364489 322.850475 " style="fill:none;opacity:0.9;stroke:#7f7f7f;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="patch_3"> <path d="M 53.728125 346.663276 L 53.728125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 611.728125 346.663276 L 611.728125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 53.728125 346.663276 L 611.728125 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 53.728125 10.7 L 611.728125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="legend_1"> <g id="patch_7"> <path d="M 60.728125 136.125 L 161.789062 136.125 Q 163.789062 136.125 163.789062 134.125 L 163.789062 17.7 Q 163.789062 15.7 161.789062 15.7 L 60.728125 15.7 Q 58.728125 15.7 58.728125 17.7 L 58.728125 134.125 Q 58.728125 136.125 60.728125 136.125 z " style="fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;"/> </g> <g id="line2d_19"> <path d="M 62.728125 23.798437 L 82.728125 23.798437 " style="fill:none;opacity:0.9;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_20"/> <g id="text_13"> <defs> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> </defs> <g transform="translate(90.728125 27.298437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> </g> </g> <g id="line2d_21"> <path d="M 62.728125 38.476562 L 82.728125 38.476562 " style="fill:none;opacity:0.9;stroke:#ff7f0e;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_22"/> <g id="text_14"> <g transform="translate(90.728125 41.976562)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> </g> </g> <g id="line2d_23"> <path d="M 62.728125 53.154687 L 82.728125 53.154687 " style="fill:none;opacity:0.9;stroke:#2ca02c;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_24"/> <g id="text_15"> <g transform="translate(90.728125 56.654687)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_25"> <path d="M 62.728125 67.832812 L 82.728125 67.832812 " style="fill:none;opacity:0.9;stroke:#d62728;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_26"/> <g id="text_16"> <g transform="translate(90.728125 71.332812)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_27"> <path d="M 62.728125 82.510938 L 82.728125 82.510938 " style="fill:none;opacity:0.9;stroke:#9467bd;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_28"/> <g id="text_17"> <g transform="translate(90.728125 86.010938)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_29"> <path d="M 62.728125 97.189062 L 82.728125 97.189062 " style="fill:none;opacity:0.9;stroke:#8c564b;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_30"/> <g id="text_18"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(90.728125 100.689062)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_31"> <path d="M 62.728125 111.867187 L 82.728125 111.867187 " style="fill:none;opacity:0.9;stroke:#e377c2;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_32"/> <g id="text_19"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(90.728125 115.367187)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_33"> <path d="M 62.728125 126.545312 L 82.728125 126.545312 " style="fill:none;opacity:0.9;stroke:#7f7f7f;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_34"/> <g id="text_20"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(90.728125 130.045312)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> </g> </g> </g> <defs> <clipPath id="p91285e6896"> <rect height="335.963276" width="558" x="53.728125" y="10.7"/> </clipPath> </defs> </svg>

Les tendances sont nettes et on observe bien que la stratégie optimale est vite payante. Notez toutefois, que par le jeu du hasard, ce n'étatit peut-être pas vrai au tout début.

une deuxième stratégie: choix au fil de l'eau

Nous avons qualifié cette stratégie de tétue car elle décidait a priori quel était le nombre optimal de ballons à voir sans examiner ce qui venait d'être observé dans un test particulier. Par exemple, les chances sont complétement différentes si on a observé deux ballons de même type contre deux ballons différents. De la même façon, notre stratégie devrait dépendre en fonction de ce qu'on vient de voir.

Mais ce que nous avons vu au dessus peut nous être utile. Imaginons que nous avons vu un certain nombre de ballons, on peut alors faire assez de tests pour anticiper en moyenne les gains que l'on peut espérer si on attend un tour ou plus. La stratégie consiste alors à parier si le gain présent est supérieur à celui auquel qui est prédit si on attend un tour ou plus.

Il faut juste modifier l'agent ci-dessus en lui donnant la possibilité d'avoir un nombre différent de ballons de baskets ou de ballons de foot:

In [60]:
class AgentTétuAvecInit:

    def __init__(self, N_test=2**13, N_basket=4, N_foot=4, verbose=True):
        self.verbose = verbose
        self.N_test = N_test
        self.N_ballons = N_basket + N_foot
        self.N_foot = N_foot
        self.N_basket = N_basket

    def generate_test(self):
        return generate_test(N_ballons=self.N_ballons, N_basket=self.N_basket, N_test=self.N_test)

    def agent_tetu(self, tests, N_ballons_vus):
        gains = np.zeros(tests.shape[0])
        for i_test in range(tests.shape[0]):
            information = tests[i_test, :(N_ballons_vus)]
            N_ballons_restant = self.N_ballons - N_ballons_vus
            proba_True_restant = (self.N_basket - sum(information)) / N_ballons_restant 
            if proba_True_restant==.5:
                if self.N_test is None:
                    gains[i_test] = 0.
                else:
                    choix = np.random.rand() > .5
                    réussite = (tests[i_test, N_ballons_vus] == choix)
                    gain_esperé = N_ballons_restant - 1
                    gains[i_test] = gain_esperé * (réussite*2 - 1)
            else:
                choix = proba_True_restant > .5
                réussite = (tests[i_test, N_ballons_vus] == choix)
                gain_esperé = N_ballons_restant - 1
                gains[i_test] = gain_esperé * (réussite*2 - 1)

        return gains

    def test(self):
        tests = self.generate_test()
        
        gains = np.zeros((self.N_ballons, tests.shape[0]))
        for N_ballons_vus in range(self.N_ballons):
            gains[N_ballons_vus, :] = self.agent_tetu(tests, N_ballons_vus)
            if self.verbose: print('Moyenne des gains avec', N_ballons_vus, 'ballons vus =', np.mean(gains[N_ballons_vus, :]) , 
                  ' +/- ', np.std(gains[N_ballons_vus, :]) )
        return gains
    
    def razor(self):
        gains = self.test() 
        gain_moyen = gains.mean(axis=1)
        return gain_moyen[0]>gain_moyen[1:].max()

    def plot(self):
        gains = self.test()
        fig, ax = plt.subplots(figsize=figsize)
        ax.errorbar(np.arange(self.N_ballons), y=np.mean(gains, axis=(1)), yerr=np.std(gains, axis=(1))/10, alpha=.5, lw=2)

        ax.set_xlabel(' # ballons vus ')
        ax.set_ylabel(' gain moyen par jeu (+/- SEM / 10 ) ')
        return fig, ax
    
agent = AgentTétuAvecInit(N_basket=5, N_foot=3)
agent.plot();
Moyenne des gains avec 0 ballons vus = 1.74829101562  +/-  6.77816188392
Moyenne des gains avec 1 ballons vus = 1.55712890625  +/-  5.79442400669
Moyenne des gains avec 2 ballons vus = 1.11206054688  +/-  4.87476372146
Moyenne des gains avec 3 ballons vus = 1.3076171875  +/-  3.78022979341
Moyenne des gains avec 4 ballons vus = 1.03125  +/-  2.81718360025
Moyenne des gains avec 5 ballons vus = 0.900390625  +/-  1.78586021917
Moyenne des gains avec 6 ballons vus = 0.491943359375  +/-  0.870627205621
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 612 384" width="612pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 612.48125 384.219526 L 612.48125 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 L 601.78125 10.7 L 43.78125 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m764c8b8cf1" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="69.144886" xlink:href="#m764c8b8cf1" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(65.963636 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="141.612419" xlink:href="#m764c8b8cf1" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(138.431169 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="214.079951" xlink:href="#m764c8b8cf1" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(210.898701 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="286.547484" xlink:href="#m764c8b8cf1" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(283.366234 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="359.015016" xlink:href="#m764c8b8cf1" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(355.833766 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="431.482549" xlink:href="#m764c8b8cf1" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(428.301299 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="503.950081" xlink:href="#m764c8b8cf1" y="346.663276"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(500.768831 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="576.417614" xlink:href="#m764c8b8cf1" y="346.663276"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(573.236364 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> </g> </g> </g> <g id="text_9"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(285.653125 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="mdf6b4c7dda" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mdf6b4c7dda" y="331.392218"/> </g> </g> <g id="text_10"> <defs> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 335.191437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mdf6b4c7dda" y="268.447522"/> </g> </g> <g id="text_11"> <g transform="translate(20.878125 272.246741)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mdf6b4c7dda" y="205.502827"/> </g> </g> <g id="text_12"> <g transform="translate(20.878125 209.302045)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mdf6b4c7dda" y="142.558131"/> </g> </g> <g id="text_13"> <g transform="translate(20.878125 146.357349)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mdf6b4c7dda" y="79.613435"/> </g> </g> <g id="text_14"> <g transform="translate(20.878125 83.412654)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mdf6b4c7dda" y="16.668739"/> </g> </g> <g id="text_15"> <g transform="translate(20.878125 20.467958)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_16"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#pf7ed4eda8a)" d="M 69.144886 196.630793 L 69.144886 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf7ed4eda8a)" d="M 141.612419 208.311859 L 141.612419 62.420556 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf7ed4eda8a)" d="M 214.079951 252.763696 L 214.079951 130.027488 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf7ed4eda8a)" d="M 286.547484 214.366169 L 286.547484 119.188003 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf7ed4eda8a)" d="M 359.015016 237.034136 L 359.015016 166.10343 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf7ed4eda8a)" d="M 431.482549 240.524676 L 431.482549 195.560504 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf7ed4eda8a)" d="M 503.950081 280.422041 L 503.950081 258.501495 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf7ed4eda8a)" d="M 576.417614 331.392218 L 576.417614 331.392218 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_15"> <path clip-path="url(#pf7ed4eda8a)" d="M 69.144886 111.300926 L 141.612419 135.366207 L 214.079951 191.395592 L 286.547484 166.777086 L 359.015016 201.568783 L 431.482549 218.04259 L 503.950081 269.461768 L 576.417614 331.392218 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 43.78125 346.663276 L 43.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 601.78125 346.663276 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 43.78125 10.7 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="pf7ed4eda8a"> <rect height="335.963276" width="558" x="43.78125" y="10.7"/> </clipPath> </defs> </svg>

On vérifie que l'on retrouve l'agent initial avec un nombre balancé de ballons:

In [61]:
agent = AgentTétuAvecInit(N_basket=4, N_foot=4)
agent.plot();
Moyenne des gains avec 0 ballons vus = 0.0888671875  +/-  6.99943587891
Moyenne des gains avec 1 ballons vus = 0.908203125  +/-  5.93086562685
Moyenne des gains avec 2 ballons vus = 0.679931640625  +/-  4.95355356932
Moyenne des gains avec 3 ballons vus = 1.0625  +/-  3.85630571273
Moyenne des gains avec 4 ballons vus = 0.746337890625  +/-  2.90568060065
Moyenne des gains avec 5 ballons vus = 0.845703125  +/-  1.81239792109
Moyenne des gains avec 6 ballons vus = 0.429931640625  +/-  0.90286144252
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 620 384" width="620pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 620.860937 384.219526 L 620.860937 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 L 610.160938 10.7 L 52.160938 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m9a77dd3c6e" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="77.524574" xlink:href="#m9a77dd3c6e" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(74.343324 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="149.992106" xlink:href="#m9a77dd3c6e" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(146.810856 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="222.459639" xlink:href="#m9a77dd3c6e" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(219.278389 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="294.927171" xlink:href="#m9a77dd3c6e" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(291.745921 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="367.394704" xlink:href="#m9a77dd3c6e" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(364.213454 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="439.862236" xlink:href="#m9a77dd3c6e" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(436.680986 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="512.329769" xlink:href="#m9a77dd3c6e" y="346.663276"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(509.148519 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="584.797301" xlink:href="#m9a77dd3c6e" y="346.663276"/> </g> </g> <g id="text_8"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(581.616051 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> </g> </g> </g> <g id="text_9"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(294.032813 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_9"> <defs> <path d="M 0 0 L -3.5 0 " id="m162d64c608" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m162d64c608" y="315.331989"/> </g> </g> <g id="text_10"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 319.131208)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m162d64c608" y="243.038375"/> </g> </g> <g id="text_11"> <g transform="translate(29.257813 246.837593)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m162d64c608" y="170.74476"/> </g> </g> <g id="text_12"> <g transform="translate(29.257813 174.543979)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m162d64c608" y="98.451145"/> </g> </g> <g id="text_13"> <g transform="translate(29.257813 102.250364)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="52.160938" xlink:href="#m162d64c608" y="26.15753"/> </g> </g> <g id="text_14"> <g transform="translate(29.257813 29.956749)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_15"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p76830f142f)" d="M 77.524574 331.392218 L 77.524574 128.98641 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p76830f142f)" d="M 149.992106 197.476544 L 149.992106 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p76830f142f)" d="M 222.459639 216.351001 L 222.459639 73.106884 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p76830f142f)" d="M 294.927171 145.171699 L 294.927171 33.657187 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p76830f142f)" d="M 367.394704 177.139877 L 367.394704 93.115016 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p76830f142f)" d="M 439.862236 146.965462 L 439.862236 94.555543 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p76830f142f)" d="M 512.329769 193.929973 L 512.329769 167.821526 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p76830f142f)" d="M 584.797301 243.038375 L 584.797301 243.038375 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_14"> <path clip-path="url(#p76830f142f)" d="M 77.524574 230.189314 L 149.992106 111.723801 L 222.459639 144.728942 L 294.927171 89.414443 L 367.394704 135.127447 L 439.862236 120.760503 L 512.329769 180.87575 L 584.797301 243.038375 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 52.160938 346.663276 L 52.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 610.160938 346.663276 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 52.160938 346.663276 L 610.160938 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 52.160938 10.7 L 610.160938 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p76830f142f"> <rect height="335.963276" width="558" x="52.160938" y="10.7"/> </clipPath> </defs> </svg>

En particulier, il semble qu'il vaille mieux attendre quand on a tiré un seul ballon car on peut espérer un gain moyen supérieur:

In [62]:
agent = AgentTétuAvecInit(N_basket=4, N_foot=3)
agent.plot();
Moyenne des gains avec 0 ballons vus = 0.87744140625  +/-  5.93549463639
Moyenne des gains avec 1 ballons vus = 0.579833984375  +/-  4.96626545309
Moyenne des gains avec 2 ballons vus = 1.02734375  +/-  3.86582007074
Moyenne des gains avec 3 ballons vus = 0.804931640625  +/-  2.88999741417
Moyenne des gains avec 4 ballons vus = 0.833984375  +/-  1.81782014024
Moyenne des gains avec 5 ballons vus = 0.443603515625  +/-  0.896223142373
Moyenne des gains avec 6 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 612 384" width="612pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 612.48125 384.219526 L 612.48125 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 L 601.78125 10.7 L 43.78125 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="md57ea93c5a" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="69.144886" xlink:href="#md57ea93c5a" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(65.963636 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="153.690341" xlink:href="#md57ea93c5a" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(150.509091 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="238.235795" xlink:href="#md57ea93c5a" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(235.054545 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="322.78125" xlink:href="#md57ea93c5a" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(319.6 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="407.326705" xlink:href="#md57ea93c5a" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(404.145455 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="491.872159" xlink:href="#md57ea93c5a" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(488.690909 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="576.417614" xlink:href="#md57ea93c5a" y="346.663276"/> </g> </g> <g id="text_7"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(573.236364 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="text_8"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(285.653125 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_8"> <defs> <path d="M 0 0 L -3.5 0 " id="m882607d6f5" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m882607d6f5" y="331.392218"/> </g> </g> <g id="text_9"> <defs> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 335.191437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m882607d6f5" y="289.86631"/> </g> </g> <g id="text_10"> <g transform="translate(20.878125 293.665529)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m882607d6f5" y="248.340402"/> </g> </g> <g id="text_11"> <g transform="translate(20.878125 252.13962)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m882607d6f5" y="206.814493"/> </g> </g> <g id="text_12"> <g transform="translate(20.878125 210.613712)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m882607d6f5" y="165.288585"/> </g> </g> <g id="text_13"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(20.878125 169.087804)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-38"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m882607d6f5" y="123.762677"/> </g> </g> <g id="text_14"> <g transform="translate(20.878125 127.561895)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m882607d6f5" y="82.236768"/> </g> </g> <g id="text_15"> <g transform="translate(20.878125 86.035987)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="ytick_8"> <g id="line2d_15"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m882607d6f5" y="40.71086"/> </g> </g> <g id="text_16"> <g transform="translate(20.878125 44.510079)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="text_17"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#pf2ec7021df)" d="M 69.144886 272.447864 L 69.144886 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf2ec7021df)" d="M 153.690341 314.115896 L 153.690341 107.887212 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf2ec7021df)" d="M 238.235795 198.351151 L 238.235795 37.819461 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf2ec7021df)" d="M 322.78125 224.269514 L 322.78125 104.259747 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf2ec7021df)" d="M 407.326705 195.975741 L 407.326705 120.489108 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf2ec7021df)" d="M 491.872159 257.895264 L 491.872159 220.678784 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pf2ec7021df)" d="M 576.417614 331.392218 L 576.417614 331.392218 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_16"> <path clip-path="url(#pf2ec7021df)" d="M 69.144886 149.209461 L 153.690341 211.001554 L 238.235795 118.085306 L 322.78125 164.264631 L 407.326705 158.232425 L 491.872159 239.287024 L 576.417614 331.392218 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 43.78125 346.663276 L 43.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 601.78125 346.663276 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 43.78125 10.7 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="pf2ec7021df"> <rect height="335.963276" width="558" x="43.78125" y="10.7"/> </clipPath> </defs> </svg>

Notre prédiction donne aussi l'information que le gain espéré sera meilleur dans exactement deux coups! Mais bien sûr, celà dépend de l'occurence suivante.

En particulier, si on tire encore un ballon de basket, il vaut mieux attendre:

In [63]:
agent = AgentTétuAvecInit(N_basket=3, N_foot=3)
agent.plot();
Moyenne des gains avec 0 ballons vus = -0.01953125  +/-  4.99996185288
Moyenne des gains avec 1 ballons vus = 0.76953125  +/-  3.92527981872
Moyenne des gains avec 2 ballons vus = 0.592529296875  +/-  2.94090275806
Moyenne des gains avec 3 ballons vus = 0.7861328125  +/-  1.8390201742
Moyenne des gains avec 4 ballons vus = 0.415771484375  +/-  0.909469115903
Moyenne des gains avec 5 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 627 384" width="627pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 627.223438 384.219526 L 627.223438 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 58.523438 346.663276 L 616.523438 346.663276 L 616.523438 10.7 L 58.523438 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m4554599ec3" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="83.887074" xlink:href="#m4554599ec3" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(80.705824 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="185.341619" xlink:href="#m4554599ec3" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(182.160369 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="286.796165" xlink:href="#m4554599ec3" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(283.614915 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="388.25071" xlink:href="#m4554599ec3" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(385.06946 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="489.705256" xlink:href="#m4554599ec3" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(486.524006 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="591.159801" xlink:href="#m4554599ec3" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(587.978551 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_7"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(300.395312 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_7"> <defs> <path d="M 0 0 L -3.5 0 " id="m314042ee96" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="58.523438" xlink:href="#m314042ee96" y="327.845513"/> </g> </g> <g id="text_8"> <defs> <path d="M 10.59375 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 10.59375 27.203125 z " id="DejaVuSans-2212"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 331.644732)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-35"/> <use x="242.822266" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="58.523438" xlink:href="#m314042ee96" y="282.43882"/> </g> </g> <g id="text_9"> <g transform="translate(20.878125 286.238039)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-2212"/> <use x="83.789062" xlink:href="#DejaVuSans-30"/> <use x="147.412109" xlink:href="#DejaVuSans-2e"/> <use x="179.199219" xlink:href="#DejaVuSans-32"/> <use x="242.822266" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="58.523438" xlink:href="#m314042ee96" y="237.032127"/> </g> </g> <g id="text_10"> <g transform="translate(29.257813 240.831345)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> <use x="159.033203" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="58.523438" xlink:href="#m314042ee96" y="191.625433"/> </g> </g> <g id="text_11"> <g transform="translate(29.257813 195.424652)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> <use x="159.033203" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="58.523438" xlink:href="#m314042ee96" y="146.21874"/> </g> </g> <g id="text_12"> <g transform="translate(29.257813 150.017959)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> <use x="159.033203" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="58.523438" xlink:href="#m314042ee96" y="100.812047"/> </g> </g> <g id="text_13"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(29.257813 104.611265)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-37"/> <use x="159.033203" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="58.523438" xlink:href="#m314042ee96" y="55.405353"/> </g> </g> <g id="text_14"> <g transform="translate(29.257813 59.204572)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> <use x="159.033203" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="text_15"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#pb63b6b08d9)" d="M 83.887074 331.392218 L 83.887074 149.766831 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pb63b6b08d9)" d="M 185.341619 168.55824 L 185.341619 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pb63b6b08d9)" d="M 286.796165 182.82761 L 286.796165 75.998275 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pb63b6b08d9)" d="M 388.25071 127.650891 L 388.25071 60.847831 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pb63b6b08d9)" d="M 489.705256 178.035288 L 489.705256 144.998499 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#pb63b6b08d9)" d="M 591.159801 237.032127 L 591.159801 237.032127 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_14"> <path clip-path="url(#pb63b6b08d9)" d="M 83.887074 240.579525 L 185.341619 97.264649 L 286.796165 129.412942 L 388.25071 94.249361 L 489.705256 161.516893 L 591.159801 237.032127 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 58.523438 346.663276 L 58.523438 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 616.523438 346.663276 L 616.523438 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 58.523438 346.663276 L 616.523438 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 58.523438 10.7 L 616.523438 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="pb63b6b08d9"> <rect height="335.963276" width="558" x="58.523438" y="10.7"/> </clipPath> </defs> </svg>

Alors que si on observe un ballon de foot, il vaut mieux parier:

In [64]:
agent = AgentTétuAvecInit(N_basket=4, N_foot=2)
agent.plot();
Moyenne des gains avec 0 ballons vus = 1.66381835938  +/-  4.71505126876
Moyenne des gains avec 1 ballons vus = 1.322265625  +/-  3.77513094037
Moyenne des gains avec 2 ballons vus = 0.99755859375  +/-  2.82928910718
Moyenne des gains avec 3 ballons vus = 0.953125  +/-  1.75828118752
Moyenne des gains avec 4 ballons vus = 0.473876953125  +/-  0.880591070416
Moyenne des gains avec 5 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 612 384" width="612pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 612.48125 384.219526 L 612.48125 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 L 601.78125 10.7 L 43.78125 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m2d2a2d619b" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="69.144886" xlink:href="#m2d2a2d619b" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(65.963636 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="170.599432" xlink:href="#m2d2a2d619b" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(167.418182 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="272.053977" xlink:href="#m2d2a2d619b" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(268.872727 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="373.508523" xlink:href="#m2d2a2d619b" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(370.327273 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="474.963068" xlink:href="#m2d2a2d619b" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(471.781818 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="576.417614" xlink:href="#m2d2a2d619b" y="346.663276"/> </g> </g> <g id="text_6"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(573.236364 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="text_7"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(285.653125 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_7"> <defs> <path d="M 0 0 L -3.5 0 " id="m9fa53391b0" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m9fa53391b0" y="331.392218"/> </g> </g> <g id="text_8"> <defs> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(20.878125 335.191437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m9fa53391b0" y="259.87585"/> </g> </g> <g id="text_9"> <g transform="translate(20.878125 263.675069)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m9fa53391b0" y="188.359482"/> </g> </g> <g id="text_10"> <g transform="translate(20.878125 192.158701)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m9fa53391b0" y="116.843114"/> </g> </g> <g id="text_11"> <g transform="translate(20.878125 120.642333)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#m9fa53391b0" y="45.326746"/> </g> </g> <g id="text_12"> <g transform="translate(20.878125 49.125965)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="text_13"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p37b527e5b6)" d="M 69.144886 160.852395 L 69.144886 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p37b527e5b6)" d="M 170.599432 196.261679 L 170.599432 88.268218 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p37b527e5b6)" d="M 272.053977 229.17678 L 272.053977 148.240587 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p37b527e5b6)" d="M 373.508523 220.213319 L 373.508523 169.914965 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p37b527e5b6)" d="M 474.963068 276.207636 L 474.963068 251.016966 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p37b527e5b6)" d="M 576.417614 331.392218 L 576.417614 331.392218 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_12"> <path clip-path="url(#p37b527e5b6)" d="M 69.144886 93.411726 L 170.599432 142.264948 L 272.053977 188.708683 L 373.508523 195.064142 L 474.963068 263.612301 L 576.417614 331.392218 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 43.78125 346.663276 L 43.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 601.78125 346.663276 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 43.78125 10.7 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p37b527e5b6"> <rect height="335.963276" width="558" x="43.78125" y="10.7"/> </clipPath> </defs> </svg>

En bref, notre nouvel agent permet de prendre une décision:

In [65]:
gains = agent.test() 
gain_moyen = gains.mean(axis=1)
print('Gain si on parie:', gain_moyen[0], 'Gain moyen max si on attend  :', gain_moyen[1:].max(),  )
print('Should I stay? ', gain_moyen[0]<gain_moyen[1:].max(), ' or should I go?  ', gain_moyen[0]>gain_moyen[1:].max() )
Moyenne des gains avec 0 ballons vus = 1.68823242188  +/-  4.70636497626
Moyenne des gains avec 1 ballons vus = 1.392578125  +/-  3.74976348131
Moyenne des gains avec 2 ballons vus = 0.985107421875  +/-  2.83364841986
Moyenne des gains avec 3 ballons vus = 0.91748046875  +/-  1.77714084683
Moyenne des gains avec 4 ballons vus = 0.463134765625  +/-  0.886287870203
Moyenne des gains avec 5 ballons vus = 0.0  +/-  0.0
Gain si on parie: 1.68823242188 Gain moyen max si on attend  : 1.392578125
Should I stay?  False  or should I go?   True

Dans ce cas particulier, il faut donc parier!

On peut obtenir cette décision via l'objet avec la fonction razor:

In [66]:
N_basket = 3
N_foot = 5
décision = AgentTétuAvecInit(N_basket=N_basket, N_foot=N_foot, verbose=False).razor()
print('Pour N_basket=', N_basket, ', N_foot= ', N_foot, ' Parier = ', décision)
Pour N_basket= 3 , N_foot=  5  Parier =  True

Finalement, on obtient une grille des stratégies optimales:

In [67]:
N_ballons = 8
go = np.zeros((N_ballons//2+1, N_ballons//2+1))*np.nan
go[0, :] = 1 # quand il n'y a plus de ballons, l'information est certaine
go[:, 0] = 1

for N_basket in range(1, N_ballons//2 + 1):
    for N_foot in range(1, N_ballons//2 + 1):
        go[N_basket, N_foot] = AgentTétuAvecInit(N_basket=N_basket, N_foot=N_foot, verbose=False, N_test=None).razor()
go
Out[67]:
array([[ 1.,  1.,  1.,  1.,  1.],
       [ 1.,  0.,  1.,  1.,  1.],
       [ 1.,  1.,  0.,  0.,  1.],
       [ 1.,  1.,  0.,  0.,  0.],
       [ 1.,  1.,  1.,  0.,  0.]])
In [68]:
fig, ax = plt.subplots(figsize=(figsize[0], figsize[0]))

ax.matshow(go)

ax.set_xlabel(' # ballons foot ')
ax.set_ylabel(' # ballons basket ');
<svg height="588pt" version="1.1" viewBox="0 0 588 588" width="588pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M -0 588.35625 L 588.540625 588.35625 L 588.540625 0 L -0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 34.240625 567.478125 L 577.840625 567.478125 L 577.840625 23.878125 L 34.240625 23.878125 z " style="fill:#ffffff;"/> </g> <g clip-path="url(#p4d941026cc)"> <image height="544" id="image32d29b9e48" transform="scale(1 -1)translate(0 -544)" width="544" x="34.240625" xlink:href="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAiAAAAIgCAYAAAC8idIcAAAABHNCSVQICAgIfAhkiAAACWNJREFUeJzt2MFtwgAURMEQuQqfKcBduGa6oAqoApFb7lak91E8U8Een/byel7fXwD82tdtegL8e9/TAwCA8xEgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDklukBcAb7uk1PAPgoHhAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADILdMDAOCvbo/79AQO8oAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAToAAADkBAgDkBAgAkBMgAEBOgAAAOQECAOQECACQEyAAQE6AAAA5AQIA5AQIAJATIABAbpkewHH7uk1P4KDb4z49AeCjeEAAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMhdXs/re3oEAHAuHhAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADICRAAICdAAICcAAEAcgIEAMgJEAAgJ0AAgJwAAQByAgQAyAkQACAnQACAnAABAHICBADI/QBdjBDkhIFoGAAAAABJRU5ErkJggg==" y="-23.478125"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m2e0c0ac54d" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="88.600625" xlink:href="#m2e0c0ac54d" y="567.478125"/> </g> </g> <g id="line2d_2"> <defs> <path d="M 0 0 L 0 -3.5 " id="md4205840fe" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="88.600625" xlink:href="#md4205840fe" y="23.878125"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(85.419375 14.798437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="197.320625" xlink:href="#m2e0c0ac54d" y="567.478125"/> </g> </g> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="197.320625" xlink:href="#md4205840fe" y="23.878125"/> </g> </g> <g id="text_2"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(194.139375 14.798437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="306.040625" xlink:href="#m2e0c0ac54d" y="567.478125"/> </g> </g> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="306.040625" xlink:href="#md4205840fe" y="23.878125"/> </g> </g> <g id="text_3"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(302.859375 14.798437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="414.760625" xlink:href="#m2e0c0ac54d" y="567.478125"/> </g> </g> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="414.760625" xlink:href="#md4205840fe" y="23.878125"/> </g> </g> <g id="text_4"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(411.579375 14.798437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="523.480625" xlink:href="#m2e0c0ac54d" y="567.478125"/> </g> </g> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="523.480625" xlink:href="#md4205840fe" y="23.878125"/> </g> </g> <g id="text_5"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(520.299375 14.798437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="text_6"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 37.109375 75.984375 L 37.109375 68.5 L 28.515625 68.5 Q 23.6875 68.5 21.796875 66.546875 Q 19.921875 64.59375 19.921875 59.515625 L 19.921875 54.6875 L 34.71875 54.6875 L 34.71875 47.703125 L 19.921875 47.703125 L 19.921875 0 L 10.890625 0 L 10.890625 47.703125 L 2.296875 47.703125 L 2.296875 54.6875 L 10.890625 54.6875 L 10.890625 58.5 Q 10.890625 67.625 15.140625 71.796875 Q 19.390625 75.984375 28.609375 75.984375 z " id="DejaVuSans-66"/> <path d="M 18.3125 70.21875 L 18.3125 54.6875 L 36.8125 54.6875 L 36.8125 47.703125 L 18.3125 47.703125 L 18.3125 18.015625 Q 18.3125 11.328125 20.140625 9.421875 Q 21.96875 7.515625 27.59375 7.515625 L 36.8125 7.515625 L 36.8125 0 L 27.59375 0 Q 17.1875 0 13.234375 3.875 Q 9.28125 7.765625 9.28125 18.015625 L 9.28125 47.703125 L 2.6875 47.703125 L 2.6875 54.6875 L 9.28125 54.6875 L 9.28125 70.21875 z " id="DejaVuSans-74"/> </defs> <g transform="translate(267.80625 579.076562)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-66"/> <use x="571.337891" xlink:href="#DejaVuSans-6f"/> <use x="632.519531" xlink:href="#DejaVuSans-6f"/> <use x="693.701172" xlink:href="#DejaVuSans-74"/> <use x="732.910156" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_11"> <defs> <path d="M 0 0 L -3.5 0 " id="maf48a1e8d0" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="34.240625" xlink:href="#maf48a1e8d0" y="78.238125"/> </g> </g> <g id="text_7"> <g transform="translate(20.878125 82.037344)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="34.240625" xlink:href="#maf48a1e8d0" y="186.958125"/> </g> </g> <g id="text_8"> <g transform="translate(20.878125 190.757344)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="34.240625" xlink:href="#maf48a1e8d0" y="295.678125"/> </g> </g> <g id="text_9"> <g transform="translate(20.878125 299.477344)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="34.240625" xlink:href="#maf48a1e8d0" y="404.398125"/> </g> </g> <g id="text_10"> <g transform="translate(20.878125 408.197344)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_15"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="34.240625" xlink:href="#maf48a1e8d0" y="513.118125"/> </g> </g> <g id="text_11"> <g transform="translate(20.878125 516.917344)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="text_12"> <defs> <path d="M 9.078125 75.984375 L 18.109375 75.984375 L 18.109375 31.109375 L 44.921875 54.6875 L 56.390625 54.6875 L 27.390625 29.109375 L 57.625 0 L 45.90625 0 L 18.109375 26.703125 L 18.109375 0 L 9.078125 0 z " id="DejaVuSans-6b"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> </defs> <g transform="translate(14.798438 340.846094)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-62"/> <use x="599.609375" xlink:href="#DejaVuSans-61"/> <use x="660.888672" xlink:href="#DejaVuSans-73"/> <use x="712.988281" xlink:href="#DejaVuSans-6b"/> <use x="770.851562" xlink:href="#DejaVuSans-65"/> <use x="832.375" xlink:href="#DejaVuSans-74"/> <use x="871.583984" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="patch_3"> <path d="M 34.240625 567.478125 L 34.240625 23.878125 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 577.840625 567.478125 L 577.840625 23.878125 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 34.240625 567.478125 L 577.840625 567.478125 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 34.240625 23.878125 L 577.840625 23.878125 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p4d941026cc"> <rect height="543.6" width="543.6" x="34.240625" y="23.878125"/> </clipPath> </defs> </svg>

La figure se lit comme suit: sur un axe, on a le nombre de foot restant, sur l'autre axe le nombre de ballons de basket restant. Notre jeu commence donc en bas à droite et on peu considérer chaque instance du jeu (toutes les combinaisons possibles) comme des trajectoires partant du point initial et en se déplaçant soit d'un pas vers la gauche, soit d'un pas vers le haut. Notre agent nous a montré une stratégie optimale donnée par la couleur des cases: si elle est bleue, on attend, si on touche une jaune, il faut parier (pour la direction correspondant bien sûr au plus probable, c'est-à-dire pour lequel le nombre de ballons restant est supérieur).

La stratégie de cet agent peut donc se résumer exactement par ce graphe: il faut parier quand l'écart en nombres de ballons est supérieur au quart du nombre total de ballons restant.

En mathématiques, un tel résultat peut être considéré comme un théorème: il permet de donner une stratégie simple (une heuristique) qui a été prouvée sur l'ensemble de tous les cas possibles.

In [69]:
N_ballons = 8
go = np.zeros((N_ballons//2+1, N_ballons//2+1))
go[0, :] = 1 # quand il n'y a plus de ballons, l'information est certaine
go[:, 0] = 1

for N_basket in range(1, N_ballons//2 + 1):
    for N_foot in range(1, N_ballons//2 + 1):
        if np.abs(N_basket - N_foot) > (N_basket + N_foot)/4:
            go[N_basket, N_foot] = 1
go
Out[69]:
array([[ 1.,  1.,  1.,  1.,  1.],
       [ 1.,  0.,  1.,  1.,  1.],
       [ 1.,  1.,  0.,  0.,  1.],
       [ 1.,  1.,  0.,  0.,  0.],
       [ 1.,  1.,  1.,  0.,  0.]])

à noter que le cas $(N_{basket}=3, N_{foot}=2)$ (ou symétriquement $(N_{basket}=2, N_{foot}=3)$) est indécis: on peut aussi bien passer que parier.

In [70]:
AgentTétuAvecInit(N_basket=3, N_foot=2, N_test=None).plot();
Moyenne des gains avec 0 ballons vus = 0.8  +/-  3.91918358845
Moyenne des gains avec 1 ballons vus = 0.6  +/-  1.8
Moyenne des gains avec 2 ballons vus = 0.8  +/-  1.83303027798
Moyenne des gains avec 3 ballons vus = 0.4  +/-  0.489897948557
Moyenne des gains avec 4 ballons vus = 0.0  +/-  0.0
<svg height="384pt" version="1.1" viewBox="0 0 612 384" width="612pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 612.48125 384.219526 L 612.48125 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 L 601.78125 10.7 L 43.78125 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="me54997399d" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="69.144886" xlink:href="#me54997399d" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> <path d="M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z " id="DejaVuSans-2e"/> </defs> <g transform="translate(61.193324 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="132.553977" xlink:href="#me54997399d" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(124.602415 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="195.963068" xlink:href="#me54997399d" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(188.011506 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="259.372159" xlink:href="#me54997399d" y="346.663276"/> </g> </g> <g id="text_4"> <g transform="translate(251.420597 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="322.78125" xlink:href="#me54997399d" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(314.829687 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_6"> <g id="line2d_6"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="386.190341" xlink:href="#me54997399d" y="346.663276"/> </g> </g> <g id="text_6"> <g transform="translate(378.238778 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_7"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="449.599432" xlink:href="#me54997399d" y="346.663276"/> </g> </g> <g id="text_7"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(441.647869 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_8"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="513.008523" xlink:href="#me54997399d" y="346.663276"/> </g> </g> <g id="text_8"> <g transform="translate(505.05696 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-35"/> </g> </g> </g> <g id="xtick_9"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="576.417614" xlink:href="#me54997399d" y="346.663276"/> </g> </g> <g id="text_9"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(568.466051 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="text_10"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> </defs> <g transform="translate(285.653125 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-62"/> <use x="210.839844" xlink:href="#DejaVuSans-61"/> <use x="272.119141" xlink:href="#DejaVuSans-6c"/> <use x="299.902344" xlink:href="#DejaVuSans-6c"/> <use x="327.685547" xlink:href="#DejaVuSans-6f"/> <use x="388.867188" xlink:href="#DejaVuSans-6e"/> <use x="452.246094" xlink:href="#DejaVuSans-73"/> <use x="504.345703" xlink:href="#DejaVuSans-20"/> <use x="536.132812" xlink:href="#DejaVuSans-76"/> <use x="595.3125" xlink:href="#DejaVuSans-75"/> <use x="658.691406" xlink:href="#DejaVuSans-73"/> <use x="710.791016" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_10"> <defs> <path d="M 0 0 L -3.5 0 " id="mbdce29abbe" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mbdce29abbe" y="331.392218"/> </g> </g> <g id="text_11"> <g transform="translate(20.878125 335.191437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mbdce29abbe" y="280.143547"/> </g> </g> <g id="text_12"> <g transform="translate(20.878125 283.942766)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_12"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mbdce29abbe" y="228.894876"/> </g> </g> <g id="text_13"> <g transform="translate(20.878125 232.694095)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-34"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_13"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mbdce29abbe" y="177.646205"/> </g> </g> <g id="text_14"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(20.878125 181.445423)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-36"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_14"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mbdce29abbe" y="126.397534"/> </g> </g> <g id="text_15"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(20.878125 130.196752)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-38"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_15"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mbdce29abbe" y="75.148862"/> </g> </g> <g id="text_16"> <g transform="translate(20.878125 78.948081)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_7"> <g id="line2d_16"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="43.78125" xlink:href="#mbdce29abbe" y="23.900191"/> </g> </g> <g id="text_17"> <g transform="translate(20.878125 27.69941)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-2e"/> <use x="95.410156" xlink:href="#DejaVuSans-32"/> </g> </g> </g> <g id="text_18"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z " id="DejaVuSans-79"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z " id="DejaVuSans-70"/> <path d="M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z " id="DejaVuSans-72"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 -0.984375 Q 18.40625 -11.421875 14.421875 -16.109375 Q 10.453125 -20.796875 1.609375 -20.796875 L -1.8125 -20.796875 L -1.8125 -13.1875 L 0.59375 -13.1875 Q 5.71875 -13.1875 7.5625 -10.8125 Q 9.421875 -8.453125 9.421875 -0.984375 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-6a"/> <path d="M 31 75.875 Q 24.46875 64.65625 21.28125 53.65625 Q 18.109375 42.671875 18.109375 31.390625 Q 18.109375 20.125 21.3125 9.0625 Q 24.515625 -2 31 -13.1875 L 23.1875 -13.1875 Q 15.875 -1.703125 12.234375 9.375 Q 8.59375 20.453125 8.59375 31.390625 Q 8.59375 42.28125 12.203125 53.3125 Q 15.828125 64.359375 23.1875 75.875 z " id="DejaVuSans-28"/> <path d="M 46 62.703125 L 46 35.5 L 73.1875 35.5 L 73.1875 27.203125 L 46 27.203125 L 46 0 L 37.796875 0 L 37.796875 27.203125 L 10.59375 27.203125 L 10.59375 35.5 L 37.796875 35.5 L 37.796875 62.703125 z " id="DejaVuSans-2b"/> <path d="M 25.390625 72.90625 L 33.6875 72.90625 L 8.296875 -9.28125 L 0 -9.28125 z " id="DejaVuSans-2f"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> <path d="M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z " id="DejaVuSans-53"/> <path d="M 9.8125 72.90625 L 55.90625 72.90625 L 55.90625 64.59375 L 19.671875 64.59375 L 19.671875 43.015625 L 54.390625 43.015625 L 54.390625 34.71875 L 19.671875 34.71875 L 19.671875 8.296875 L 56.78125 8.296875 L 56.78125 0 L 9.8125 0 z " id="DejaVuSans-45"/> <path d="M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z " id="DejaVuSans-4d"/> <path d="M 8.015625 75.875 L 15.828125 75.875 Q 23.140625 64.359375 26.78125 53.3125 Q 30.421875 42.28125 30.421875 31.390625 Q 30.421875 20.453125 26.78125 9.375 Q 23.140625 -1.703125 15.828125 -13.1875 L 8.015625 -13.1875 Q 14.5 -2 17.703125 9.0625 Q 20.90625 20.125 20.90625 31.390625 Q 20.90625 42.671875 17.703125 53.65625 Q 14.5 64.65625 8.015625 75.875 z " id="DejaVuSans-29"/> </defs> <g transform="translate(14.798438 268.705076)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-6d"/> <use x="376.904297" xlink:href="#DejaVuSans-6f"/> <use x="438.085938" xlink:href="#DejaVuSans-79"/> <use x="497.265625" xlink:href="#DejaVuSans-65"/> <use x="558.789062" xlink:href="#DejaVuSans-6e"/> <use x="622.167969" xlink:href="#DejaVuSans-20"/> <use x="653.955078" xlink:href="#DejaVuSans-70"/> <use x="717.431641" xlink:href="#DejaVuSans-61"/> <use x="778.710938" xlink:href="#DejaVuSans-72"/> <use x="819.824219" xlink:href="#DejaVuSans-20"/> <use x="851.611328" xlink:href="#DejaVuSans-6a"/> <use x="879.394531" xlink:href="#DejaVuSans-65"/> <use x="940.917969" xlink:href="#DejaVuSans-75"/> <use x="1004.296875" xlink:href="#DejaVuSans-20"/> <use x="1036.083984" xlink:href="#DejaVuSans-28"/> <use x="1075.097656" xlink:href="#DejaVuSans-2b"/> <use x="1158.886719" xlink:href="#DejaVuSans-2f"/> <use x="1192.578125" xlink:href="#DejaVuSans-2d"/> <use x="1228.662109" xlink:href="#DejaVuSans-20"/> <use x="1260.449219" xlink:href="#DejaVuSans-53"/> <use x="1323.925781" xlink:href="#DejaVuSans-45"/> <use x="1387.109375" xlink:href="#DejaVuSans-4d"/> <use x="1473.388672" xlink:href="#DejaVuSans-20"/> <use x="1505.175781" xlink:href="#DejaVuSans-2f"/> <use x="1538.867188" xlink:href="#DejaVuSans-20"/> <use x="1570.654297" xlink:href="#DejaVuSans-31"/> <use x="1634.277344" xlink:href="#DejaVuSans-30"/> <use x="1697.900391" xlink:href="#DejaVuSans-20"/> <use x="1729.6875" xlink:href="#DejaVuSans-29"/> <use x="1768.701172" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="LineCollection_1"> <path clip-path="url(#p10d30eb8e0)" d="M 69.144886 226.824009 L 69.144886 25.971058 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p10d30eb8e0)" d="M 195.963068 223.770009 L 195.963068 131.522401 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p10d30eb8e0)" d="M 322.78125 173.367717 L 322.78125 79.427351 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p10d30eb8e0)" d="M 449.599432 241.448185 L 449.599432 216.341566 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> <path clip-path="url(#p10d30eb8e0)" d="M 576.417614 331.392218 L 576.417614 331.392218 " style="fill:none;stroke:#1f77b4;stroke-opacity:0.5;stroke-width:2;"/> </g> <g id="line2d_17"> <path clip-path="url(#p10d30eb8e0)" d="M 69.144886 126.397534 L 195.963068 177.646205 L 322.78125 126.397534 L 449.599432 228.894876 L 576.417614 331.392218 " style="fill:none;opacity:0.5;stroke:#1f77b4;stroke-linecap:square;stroke-width:2;"/> </g> <g id="patch_3"> <path d="M 43.78125 346.663276 L 43.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 601.78125 346.663276 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 43.78125 346.663276 L 601.78125 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 43.78125 10.7 L 601.78125 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> </g> </g> <defs> <clipPath id="p10d30eb8e0"> <rect height="335.963276" width="558" x="43.78125" y="10.7"/> </clipPath> </defs> </svg>

on remarque aussi que le choix d'attendre de 2 tours est environ 2 fois moins indécis. C'est un point que l'on a pas pris en compte dans notre critère (gagner le plus en moyenne) mais qui pourrait être pris en compte par exemple si on exprime le désir de pas avoir perdu de l'argent au bout d'un certain temps avec un certain taux de confiance. Mais c'est l'objet d'un étude plus poussée... mais très intéressante quand on sait que l'aversion au risque peut varier d'une personne à l'autre.

C'est une symétrie que nous avons aussi observé pour le jeu avec $N_{ballons}=6$ ou $N_{ballons}=10$ et qu'il serait utile d'étudier si on veut étudier l'aversion au risque d'un joueur.

un "meta-agent"

Intéressons-nous plutôt à construire un agent qui va utiliser l'agent tétu (mais simplement sur l'ensemble des combinaisons pour gagner du temps de calcul) pour décider ce qu'il faut faire à chaque tour dans chaque jeu. À noter qu'on aurait pu aussi utiliser notre "théorème", mais cet agent reste plus général:

In [71]:
N_test = 2**13
N_test_agent = None

class MetaAgent:

    def __init__(self, N_test=N_test, N_test_agent=N_test_agent, N_basket=4, N_foot=4, verbose=True):
        self.N_test = N_test
        self.N_test_agent = N_test_agent
        self.N_basket = N_basket
        self.N_foot = N_foot
        self.N_ballons = N_basket + N_foot
        self.verbose = verbose

    def generate_test(self):
        return generate_test(N_ballons=self.N_ballons, N_basket=self.N_basket, N_test=self.N_test)

    def meta_agent(self, tests):
        gains = np.zeros(tests.shape[0])
        for i_test in range(tests.shape[0]):
            for N_ballons_vus in range(self.N_ballons):
                N_basket = self.N_basket - sum(tests[i_test, :(N_ballons_vus)]==1)
                N_foot = self.N_foot - sum(tests[i_test, :(N_ballons_vus)]==0)
                N_ballons_restant = self.N_ballons - N_ballons_vus
                assert(N_foot+N_basket == N_ballons_restant)
                if N_basket==0 or N_foot==0 :
                    break
                elif AgentTétuAvecInit(N_basket=N_basket, N_foot=N_foot, verbose=False, N_test=self.N_test_agent).razor():
                    break
                    
            proba_True_restant = N_basket / N_ballons_restant 
            if proba_True_restant==.5:
                if self.N_test is None:
                    gains[i_test] = 0.
                else:
                    choix = np.random.rand() > .5
                    réussite = (tests[i_test, N_ballons_vus] == choix)
                    gain_esperé = N_ballons_restant - 1
                    gains[i_test] = gain_esperé * (réussite*2 - 1)
            else:
                choix = proba_True_restant > .5
                réussite = (tests[i_test, N_ballons_vus] == choix)
                gain_esperé = N_ballons_restant - 1
                gains[i_test] = gain_esperé * (réussite*2 - 1)

        return gains

    def test(self):
        tests = self.generate_test()
        gains = self.meta_agent(tests)
        if self.verbose: print('Moyenne des gains =', np.mean(gains), 
                  ' +/- ', np.std(gains) )
        return gains
    
In [72]:
agent = AgentTétuAvecInit(N_test=N_test, N_basket=4, N_foot=4, verbose=True)
gains = agent.test() 
gains_cumulés = np.cumsum(gains, axis=1)
Moyenne des gains avec 0 ballons vus = -0.10595703125  +/-  6.99919803317
Moyenne des gains avec 1 ballons vus = 0.8583984375  +/-  5.93827854875
Moyenne des gains avec 2 ballons vus = 0.70068359375  +/-  4.95066081462
Moyenne des gains avec 3 ballons vus = 0.96484375  +/-  3.88189084572
Moyenne des gains avec 4 ballons vus = 0.8466796875  +/-  2.87804334692
Moyenne des gains avec 5 ballons vus = 0.8466796875  +/-  1.81194191595
Moyenne des gains avec 6 ballons vus = 0.43212890625  +/-  0.901811847551
Moyenne des gains avec 7 ballons vus = 0.0  +/-  0.0
In [73]:
agent = MetaAgent(N_test=N_test, N_basket=4, N_foot=4, verbose=True)
meta_gains = agent.test()
Moyenne des gains = 1.27648925781  +/-  3.54179068119

Au final, notre nouvel agent se révèle être plus performant que l'agent naïf...

In [74]:
fig, ax = plt.subplots(figsize=figsize)

for N_ballons_vus in range(agent.N_ballons):
    label = '%d ballons vu' % N_ballons_vus
    if N_ballons_vus>1: label += 's '
    ax.plot(gains_cumulés[N_ballons_vus, :], alpha=0.9, label=label)
    
ax.plot(np.cumsum(meta_gains), alpha=1., label='meta-agent')

ax.set_xlabel(' # essais ')
ax.set_ylabel(' gain cumulé ')
ax.legend();
<svg height="384pt" version="1.1" viewBox="0 0 628 384" width="628pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <style type="text/css"> *{stroke-linecap:butt;stroke-linejoin:round;} </style> </defs> <g id="figure_1"> <g id="patch_1"> <path d="M 0 384.219526 L 628.790625 384.219526 L 628.790625 0 L 0 0 z " style="fill:none;"/> </g> <g id="axes_1"> <g id="patch_2"> <path d="M 60.090625 346.663276 L 618.090625 346.663276 L 618.090625 10.7 L 60.090625 10.7 z " style="fill:#ffffff;"/> </g> <g id="matplotlib.axis_1"> <g id="xtick_1"> <g id="line2d_1"> <defs> <path d="M 0 0 L 0 3.5 " id="m5e0c2476ee" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="85.454261" xlink:href="#m5e0c2476ee" y="346.663276"/> </g> </g> <g id="text_1"> <defs> <path d="M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z " id="DejaVuSans-30"/> </defs> <g transform="translate(82.273011 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_2"> <g id="line2d_2"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="209.315262" xlink:href="#m5e0c2476ee" y="346.663276"/> </g> </g> <g id="text_2"> <defs> <path d="M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z " id="DejaVuSans-32"/> </defs> <g transform="translate(196.590262 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_3"> <g id="line2d_3"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="333.176262" xlink:href="#m5e0c2476ee" y="346.663276"/> </g> </g> <g id="text_3"> <defs> <path d="M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z " id="DejaVuSans-34"/> </defs> <g transform="translate(320.451262 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_4"> <g id="line2d_4"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="457.037263" xlink:href="#m5e0c2476ee" y="346.663276"/> </g> </g> <g id="text_4"> <defs> <path d="M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z " id="DejaVuSans-36"/> </defs> <g transform="translate(444.312263 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="xtick_5"> <g id="line2d_5"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="580.898263" xlink:href="#m5e0c2476ee" y="346.663276"/> </g> </g> <g id="text_5"> <defs> <path d="M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z " id="DejaVuSans-38"/> </defs> <g transform="translate(568.173263 361.261714)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-38"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="text_6"> <defs> <path id="DejaVuSans-20"/> <path d="M 51.125 44 L 36.921875 44 L 32.8125 27.6875 L 47.125 27.6875 z M 43.796875 71.78125 L 38.71875 51.515625 L 52.984375 51.515625 L 58.109375 71.78125 L 65.921875 71.78125 L 60.890625 51.515625 L 76.125 51.515625 L 76.125 44 L 58.984375 44 L 54.984375 27.6875 L 70.515625 27.6875 L 70.515625 20.21875 L 53.078125 20.21875 L 48 0 L 40.1875 0 L 45.21875 20.21875 L 30.90625 20.21875 L 25.875 0 L 18.015625 0 L 23.09375 20.21875 L 7.71875 20.21875 L 7.71875 27.6875 L 24.90625 27.6875 L 29 44 L 13.28125 44 L 13.28125 51.515625 L 30.90625 51.515625 L 35.890625 71.78125 z " id="DejaVuSans-23"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z " id="DejaVuSans-65"/> <path d="M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z " id="DejaVuSans-73"/> <path d="M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z " id="DejaVuSans-61"/> <path d="M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z " id="DejaVuSans-69"/> </defs> <g transform="translate(314.789844 374.939839)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-23"/> <use x="115.576172" xlink:href="#DejaVuSans-20"/> <use x="147.363281" xlink:href="#DejaVuSans-65"/> <use x="208.886719" xlink:href="#DejaVuSans-73"/> <use x="260.986328" xlink:href="#DejaVuSans-73"/> <use x="313.085938" xlink:href="#DejaVuSans-61"/> <use x="374.365234" xlink:href="#DejaVuSans-69"/> <use x="402.148438" xlink:href="#DejaVuSans-73"/> <use x="454.248047" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="matplotlib.axis_2"> <g id="ytick_1"> <g id="line2d_6"> <defs> <path d="M 0 0 L -3.5 0 " id="mc4ef88ec39" style="stroke:#000000;stroke-width:0.8;"/> </defs> <g> <use style="stroke:#000000;stroke-width:0.8;" x="60.090625" xlink:href="#mc4ef88ec39" y="307.645615"/> </g> </g> <g id="text_7"> <g transform="translate(46.728125 311.444834)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_2"> <g id="line2d_7"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="60.090625" xlink:href="#mc4ef88ec39" y="253.798443"/> </g> </g> <g id="text_8"> <g transform="translate(27.640625 257.597662)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_3"> <g id="line2d_8"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="60.090625" xlink:href="#mc4ef88ec39" y="199.951271"/> </g> </g> <g id="text_9"> <g transform="translate(27.640625 203.75049)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_4"> <g id="line2d_9"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="60.090625" xlink:href="#mc4ef88ec39" y="146.104099"/> </g> </g> <g id="text_10"> <g transform="translate(27.640625 149.903318)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_5"> <g id="line2d_10"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="60.090625" xlink:href="#mc4ef88ec39" y="92.256927"/> </g> </g> <g id="text_11"> <g transform="translate(27.640625 96.056146)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-38"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="ytick_6"> <g id="line2d_11"> <g> <use style="stroke:#000000;stroke-width:0.8;" x="60.090625" xlink:href="#mc4ef88ec39" y="38.409755"/> </g> </g> <g id="text_12"> <defs> <path d="M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z " id="DejaVuSans-31"/> </defs> <g transform="translate(21.278125 42.208974)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-30"/> <use x="127.246094" xlink:href="#DejaVuSans-30"/> <use x="190.869141" xlink:href="#DejaVuSans-30"/> <use x="254.492188" xlink:href="#DejaVuSans-30"/> </g> </g> </g> <g id="text_13"> <defs> <path d="M 45.40625 27.984375 Q 45.40625 37.75 41.375 43.109375 Q 37.359375 48.484375 30.078125 48.484375 Q 22.859375 48.484375 18.828125 43.109375 Q 14.796875 37.75 14.796875 27.984375 Q 14.796875 18.265625 18.828125 12.890625 Q 22.859375 7.515625 30.078125 7.515625 Q 37.359375 7.515625 41.375 12.890625 Q 45.40625 18.265625 45.40625 27.984375 z M 54.390625 6.78125 Q 54.390625 -7.171875 48.1875 -13.984375 Q 42 -20.796875 29.203125 -20.796875 Q 24.46875 -20.796875 20.265625 -20.09375 Q 16.0625 -19.390625 12.109375 -17.921875 L 12.109375 -9.1875 Q 16.0625 -11.328125 19.921875 -12.34375 Q 23.78125 -13.375 27.78125 -13.375 Q 36.625 -13.375 41.015625 -8.765625 Q 45.40625 -4.15625 45.40625 5.171875 L 45.40625 9.625 Q 42.625 4.78125 38.28125 2.390625 Q 33.9375 0 27.875 0 Q 17.828125 0 11.671875 7.65625 Q 5.515625 15.328125 5.515625 27.984375 Q 5.515625 40.671875 11.671875 48.328125 Q 17.828125 56 27.875 56 Q 33.9375 56 38.28125 53.609375 Q 42.625 51.21875 45.40625 46.390625 L 45.40625 54.6875 L 54.390625 54.6875 z " id="DejaVuSans-67"/> <path d="M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z " id="DejaVuSans-6e"/> <path d="M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z " id="DejaVuSans-63"/> <path d="M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z " id="DejaVuSans-75"/> <path d="M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z " id="DejaVuSans-6d"/> <path d="M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z " id="DejaVuSans-6c"/> <path d="M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z M 38.53125 79.984375 L 48.25 79.984375 L 32.34375 61.625 L 24.859375 61.625 z " id="DejaVuSans-e9"/> </defs> <g transform="translate(15.198438 212.667576)rotate(-90)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-20"/> <use x="31.787109" xlink:href="#DejaVuSans-67"/> <use x="95.263672" xlink:href="#DejaVuSans-61"/> <use x="156.542969" xlink:href="#DejaVuSans-69"/> <use x="184.326172" xlink:href="#DejaVuSans-6e"/> <use x="247.705078" xlink:href="#DejaVuSans-20"/> <use x="279.492188" xlink:href="#DejaVuSans-63"/> <use x="334.472656" xlink:href="#DejaVuSans-75"/> <use x="397.851562" xlink:href="#DejaVuSans-6d"/> <use x="495.263672" xlink:href="#DejaVuSans-75"/> <use x="558.642578" xlink:href="#DejaVuSans-6c"/> <use x="586.425781" xlink:href="#DejaVuSans-e9"/> <use x="647.949219" xlink:href="#DejaVuSans-20"/> </g> </g> </g> <g id="line2d_12"> <path clip-path="url(#pf8d0b4ca52)" d="M 85.454261 307.45715 L 85.640053 308.022546 L 85.701983 307.83408 L 85.763914 308.022546 L 85.825844 307.83408 L 85.887775 308.022546 L 85.949705 307.83408 L 86.011636 308.022546 L 86.073566 307.83408 L 86.135497 308.022546 L 86.321288 307.45715 L 86.445149 307.83408 L 86.692871 307.08022 L 86.754802 307.268685 L 86.816732 307.08022 L 86.940593 307.45715 L 87.002524 307.268685 L 87.250246 308.022546 L 87.374107 307.645615 L 87.559898 308.211011 L 87.621829 308.022546 L 87.683759 308.211011 L 87.74569 308.022546 L 87.993412 308.776406 L 88.241134 308.022546 L 88.364995 308.399476 L 88.426925 308.211011 L 88.488856 308.399476 L 88.798508 307.45715 L 88.9843 308.022546 L 89.108161 307.645615 L 89.170091 307.83408 L 89.232022 307.645615 L 89.355883 308.022546 L 89.417813 307.83408 L 89.789396 308.964871 L 89.975188 308.399476 L 90.346771 309.530266 L 90.408701 309.341801 L 90.470632 309.530266 L 90.532562 309.341801 L 90.594493 309.530266 L 90.718354 309.153336 L 90.904145 309.718731 L 90.966076 309.530266 L 91.337659 310.661057 L 91.399589 310.472592 L 91.709242 311.414917 L 91.895033 310.849522 L 92.142755 311.603383 L 92.266616 311.226452 L 92.390477 311.603383 L 92.452408 311.414917 L 92.576269 311.791848 L 92.885921 310.849522 L 93.195574 311.791848 L 93.381365 311.226452 L 93.443296 311.414917 L 93.505226 311.226452 L 93.629087 311.603383 L 93.691018 311.414917 L 93.752948 311.603383 L 93.814879 311.414917 L 93.93874 311.791848 L 94.00067 311.603383 L 94.310323 312.545708 L 94.372253 312.357243 L 94.434184 312.545708 L 94.619975 311.980313 L 94.743836 312.357243 L 94.867697 311.980313 L 94.929628 312.168778 L 94.991558 311.980313 L 95.053489 312.168778 L 95.17735 311.791848 L 95.23928 311.980313 L 95.487002 311.226452 L 95.858585 312.357243 L 96.044377 311.791848 L 96.106307 311.980313 L 96.168238 311.791848 L 96.230168 311.980313 L 96.292099 311.791848 L 96.41596 312.168778 L 96.849473 310.849522 L 96.911404 311.037987 L 96.973334 310.849522 L 97.344917 311.980313 L 97.468778 311.603383 L 97.65457 312.168778 L 97.778431 311.791848 L 97.964222 312.357243 L 98.150014 311.791848 L 98.459666 312.734173 L 98.645458 312.168778 L 98.89318 312.922638 L 99.017041 312.545708 L 99.078971 312.734173 L 99.202832 312.357243 L 99.512485 313.299568 L 100.13179 311.414917 L 100.19372 311.603383 L 100.255651 311.414917 L 100.379512 311.791848 L 100.441442 311.603383 L 100.565303 311.980313 L 100.627234 311.791848 L 100.751095 312.168778 L 100.813025 311.980313 L 100.874956 312.168778 L 101.060747 311.603383 L 101.122678 311.791848 L 101.184608 311.603383 L 101.741983 313.299568 L 101.803913 313.111103 L 101.927774 313.488034 L 101.989705 313.299568 L 102.051635 313.488034 L 102.113566 313.299568 L 102.361288 314.053429 L 102.423218 313.864964 L 102.547079 314.241894 L 102.60901 314.053429 L 102.67094 314.241894 L 102.794801 313.864964 L 103.104454 314.807289 L 103.476037 313.676499 L 103.537967 313.864964 L 103.661828 313.488034 L 103.723759 313.676499 L 103.971481 312.922638 L 104.033411 313.111103 L 104.343064 312.168778 L 104.404994 312.357243 L 104.466925 312.168778 L 104.590786 312.545708 L 104.714647 312.168778 L 104.776577 312.357243 L 104.838508 312.168778 L 104.900438 312.357243 L 105.024299 311.980313 L 105.14816 312.357243 L 105.210091 312.168778 L 105.333952 312.545708 L 105.395882 312.357243 L 105.457813 312.545708 L 105.519743 312.357243 L 105.829396 313.299568 L 105.891326 313.111103 L 106.262909 314.241894 L 106.634492 313.111103 L 106.696423 313.299568 L 106.758353 313.111103 L 106.882214 313.488034 L 106.944145 313.299568 L 107.068006 313.676499 L 107.129936 313.488034 L 107.253797 313.864964 L 107.439589 313.299568 L 107.501519 313.488034 L 107.56345 313.299568 L 107.873102 314.241894 L 107.935033 314.053429 L 108.058894 314.430359 L 108.182755 314.053429 L 108.244685 314.241894 L 108.368546 313.864964 L 108.678199 314.807289 L 108.740129 314.618824 L 108.80206 314.807289 L 109.173643 313.676499 L 109.235573 313.864964 L 109.359434 313.488034 L 109.421365 313.676499 L 109.483295 313.488034 L 109.669087 314.053429 L 109.792948 313.676499 L 110.164531 314.807289 L 110.536114 313.676499 L 110.659975 314.053429 L 110.783836 313.676499 L 110.845766 313.864964 L 110.907697 313.676499 L 110.969627 313.864964 L 111.155419 313.299568 L 111.27928 313.676499 L 111.34121 313.488034 L 111.403141 313.676499 L 111.527002 313.299568 L 111.588932 313.488034 L 111.712793 313.111103 L 111.836654 313.488034 L 111.898585 313.299568 L 111.960515 313.488034 L 112.022446 313.299568 L 112.270168 314.053429 L 112.332098 313.864964 L 112.455959 314.241894 L 112.51789 314.053429 L 112.57982 314.241894 L 112.641751 314.053429 L 112.703681 314.241894 L 113.137195 312.922638 L 113.199125 313.111103 L 113.261056 312.922638 L 113.384917 313.299568 L 113.446847 313.111103 L 113.508778 313.299568 L 113.570708 313.111103 L 113.694569 313.488034 L 113.942291 312.734173 L 114.004222 312.922638 L 114.066152 312.734173 L 114.128083 312.922638 L 114.251944 312.545708 L 114.313874 312.734173 L 114.375805 312.545708 L 114.499666 312.922638 L 114.561596 312.734173 L 114.623527 312.922638 L 114.685457 312.734173 L 114.747388 312.922638 L 114.809318 312.734173 L 114.933179 313.111103 L 115.118971 312.545708 L 115.242832 312.922638 L 115.304762 312.734173 L 115.366693 312.922638 L 115.428623 312.734173 L 115.490554 312.922638 L 115.552484 312.734173 L 115.614415 312.922638 L 115.738276 312.545708 L 115.800206 312.734173 L 115.985998 312.168778 L 116.171789 312.734173 L 116.23372 312.545708 L 116.29565 312.734173 L 116.419511 312.357243 L 116.481442 312.545708 L 116.543372 312.357243 L 116.914955 313.488034 L 116.976886 313.299568 L 117.162677 313.864964 L 117.348469 313.299568 L 117.410399 313.488034 L 117.47233 313.299568 L 117.53426 313.488034 L 117.658121 313.111103 L 117.720052 313.299568 L 117.843913 312.922638 L 118.029704 313.488034 L 118.215496 312.922638 L 118.401287 313.488034 L 118.463218 313.299568 L 118.587079 313.676499 L 118.649009 313.488034 L 118.71094 313.676499 L 118.77287 313.488034 L 119.020592 314.241894 L 119.082523 314.053429 L 119.206384 314.430359 L 119.330245 314.053429 L 119.454106 314.430359 L 119.516036 314.241894 L 119.577967 314.430359 L 119.763758 313.864964 L 119.887619 314.241894 L 119.94955 314.053429 L 120.01148 314.241894 L 120.073411 314.053429 L 120.259202 314.618824 L 120.444994 314.053429 L 120.568855 314.430359 L 120.630785 314.241894 L 120.692716 314.430359 L 121.002368 313.488034 L 121.064299 313.676499 L 121.18816 313.299568 L 121.25009 313.488034 L 121.373951 313.111103 L 121.621673 313.864964 L 121.683604 313.676499 L 121.807465 314.053429 L 121.993256 313.488034 L 122.055187 313.676499 L 122.179048 313.299568 L 122.364839 313.864964 L 122.42677 313.676499 L 122.550631 314.053429 L 122.860283 313.111103 L 122.922214 313.299568 L 122.984144 313.111103 L 123.046075 313.299568 L 123.108005 313.111103 L 123.355727 313.864964 L 123.417658 313.676499 L 123.479588 313.864964 L 123.789241 312.922638 L 123.851171 313.111103 L 123.913102 312.922638 L 124.036963 313.299568 L 124.098893 313.111103 L 124.160824 313.299568 L 124.408546 312.545708 L 124.532407 312.922638 L 124.656268 312.545708 L 124.780129 312.922638 L 124.84206 312.734173 L 124.90399 312.922638 L 125.027851 312.545708 L 125.089782 312.734173 L 125.275573 312.168778 L 125.337504 312.357243 L 125.461365 311.980313 L 125.585226 312.357243 L 125.647156 312.168778 L 125.771017 312.545708 L 125.832948 312.357243 L 125.956809 312.734173 L 126.1426 312.168778 L 126.204531 312.357243 L 126.266461 312.168778 L 126.699975 313.488034 L 126.761905 313.299568 L 126.823836 313.488034 L 127.009627 312.922638 L 127.257349 313.676499 L 127.31928 313.488034 L 127.38121 313.676499 L 127.443141 313.488034 L 127.505071 313.676499 L 127.567002 313.488034 L 127.752793 314.053429 L 127.938585 313.488034 L 128.310168 314.618824 L 128.55789 313.864964 L 128.805612 314.618824 L 128.991403 314.053429 L 129.053334 314.241894 L 129.177195 313.864964 L 129.301056 314.241894 L 129.486847 313.676499 L 129.548778 313.864964 L 129.610708 313.676499 L 129.672639 313.864964 L 129.734569 313.676499 L 129.920361 314.241894 L 130.044222 313.864964 L 130.353874 314.807289 L 130.539666 314.241894 L 130.725457 314.807289 L 130.849318 314.430359 L 130.911249 314.618824 L 131.282832 313.488034 L 131.468623 314.053429 L 131.530554 313.864964 L 131.592484 314.053429 L 131.654415 313.864964 L 131.964067 314.807289 L 132.025998 314.618824 L 132.087928 314.807289 L 132.27372 314.241894 L 132.33565 314.430359 L 132.521442 313.864964 L 132.583372 314.053429 L 132.707233 313.676499 L 132.893025 314.241894 L 133.016886 313.864964 L 133.202677 314.430359 L 133.326538 314.053429 L 133.388469 314.241894 L 133.51233 313.864964 L 133.57426 314.053429 L 133.698121 313.676499 L 133.821982 314.053429 L 133.945843 313.676499 L 134.255496 314.618824 L 134.317426 314.430359 L 134.874801 316.126545 L 134.936731 315.93808 L 134.998662 316.126545 L 135.060592 315.93808 L 135.308314 316.69194 L 135.432175 316.31501 L 135.741828 317.257336 L 136.175341 315.93808 L 136.299202 316.31501 L 136.361133 316.126545 L 136.423063 316.31501 L 136.484994 316.126545 L 136.608855 316.503475 L 136.794646 315.93808 L 136.980438 316.503475 L 137.042368 316.31501 L 137.104299 316.503475 L 137.29009 315.93808 L 137.413951 316.31501 L 137.599743 315.749615 L 137.971326 316.880405 L 138.157117 316.31501 L 138.342909 316.880405 L 138.404839 316.69194 L 138.5287 317.06887 L 138.714492 316.503475 L 138.776422 316.69194 L 138.900283 316.31501 L 138.962214 316.503475 L 139.024144 316.31501 L 139.209936 316.880405 L 139.271866 316.69194 L 139.457658 317.257336 L 139.519588 317.06887 L 139.581519 317.257336 L 139.643449 317.06887 L 139.70538 317.257336 L 139.76731 317.06887 L 139.829241 317.257336 L 140.076963 316.503475 L 140.262754 317.06887 L 140.386615 316.69194 L 140.572407 317.257336 L 140.634337 317.06887 L 140.696268 317.257336 L 140.758198 317.06887 L 140.820129 317.257336 L 140.882059 317.06887 L 140.94399 317.257336 L 141.00592 317.06887 L 141.129781 317.445801 L 141.439434 316.503475 L 141.811017 317.634266 L 141.934878 317.257336 L 142.120669 317.822731 L 142.306461 317.257336 L 142.430322 317.634266 L 142.492252 317.445801 L 142.616113 317.822731 L 142.739974 317.445801 L 142.801905 317.634266 L 142.863835 317.445801 L 142.987696 317.822731 L 143.173488 317.257336 L 143.235418 317.445801 L 143.359279 317.06887 L 143.42121 317.257336 L 143.792793 316.126545 L 143.978584 316.69194 L 144.164376 316.126545 L 144.288237 316.503475 L 144.350167 316.31501 L 144.535959 316.880405 L 144.597889 316.69194 L 144.65982 316.880405 L 144.907542 316.126545 L 144.969472 316.31501 L 145.155264 315.749615 L 145.217194 315.93808 L 145.526847 314.995754 L 145.588777 315.184219 L 145.650708 314.995754 L 145.712638 315.184219 L 145.774569 314.995754 L 145.96036 315.56115 L 146.022291 315.372685 L 146.208082 315.93808 L 146.331943 315.56115 L 146.393874 315.749615 L 146.641596 314.995754 L 146.765457 315.372685 L 146.889318 314.995754 L 146.951248 315.184219 L 147.075109 314.807289 L 147.260901 315.372685 L 147.384762 314.995754 L 147.446692 315.184219 L 147.508623 314.995754 L 147.570553 315.184219 L 147.694414 314.807289 L 147.756345 314.995754 L 147.880206 314.618824 L 147.942136 314.807289 L 148.004067 314.618824 L 148.127928 314.995754 L 148.251789 314.618824 L 148.313719 314.807289 L 148.37565 314.618824 L 148.499511 314.995754 L 148.561441 314.807289 L 148.623372 314.995754 L 148.809163 314.430359 L 148.871094 314.618824 L 148.933024 314.430359 L 149.056885 314.807289 L 149.118816 314.618824 L 149.242677 314.995754 L 149.428468 314.430359 L 149.490399 314.618824 L 149.552329 314.430359 L 149.738121 314.995754 L 149.800051 314.807289 L 149.923912 315.184219 L 149.985843 314.995754 L 150.047773 315.184219 L 150.171634 314.807289 L 150.543217 315.93808 L 150.667078 315.56115 L 150.729009 315.749615 L 150.9148 315.184219 L 150.976731 315.372685 L 151.038661 315.184219 L 151.286383 315.93808 L 151.410244 315.56115 L 151.472175 315.749615 L 151.534105 315.56115 L 151.657966 315.93808 L 151.719897 315.749615 L 151.781827 315.93808 L 152.029549 315.184219 L 152.09148 315.372685 L 152.277271 314.807289 L 152.463063 315.372685 L 152.524993 315.184219 L 152.648854 315.56115 L 152.772715 315.184219 L 152.896576 315.56115 L 152.958507 315.372685 L 153.020437 315.56115 L 153.082368 315.372685 L 153.268159 315.93808 L 153.33009 315.749615 L 153.515881 316.31501 L 153.577812 316.126545 L 153.763603 316.69194 L 153.949395 316.126545 L 154.259047 317.06887 L 154.320978 316.880405 L 154.444839 317.257336 L 154.506769 317.06887 L 154.5687 317.257336 L 154.63063 317.06887 L 154.692561 317.257336 L 154.878352 316.69194 L 154.940283 316.880405 L 155.002213 316.69194 L 155.249935 317.445801 L 155.373796 317.06887 L 155.435727 317.257336 L 155.497657 317.06887 L 155.683449 317.634266 L 155.80731 317.257336 L 155.86924 317.445801 L 155.931171 317.257336 L 155.993101 317.445801 L 156.178893 316.880405 L 156.240823 317.06887 L 156.550476 316.126545 L 156.612406 316.31501 L 156.860128 315.56115 L 156.922059 315.749615 L 156.983989 315.56115 L 157.231711 316.31501 L 157.293642 316.126545 L 157.355572 316.31501 L 157.417503 316.126545 L 157.541364 316.503475 L 157.727155 315.93808 L 157.974877 316.69194 L 158.036808 316.503475 L 158.222599 317.06887 L 158.34646 316.69194 L 158.408391 316.880405 L 158.470321 316.69194 L 158.779974 317.634266 L 159.027696 316.880405 L 159.089626 317.06887 L 159.151557 316.880405 L 159.213487 317.06887 L 159.52314 316.126545 L 159.58507 316.31501 L 159.770862 315.749615 L 160.018584 316.503475 L 160.080514 316.31501 L 160.142445 316.503475 L 160.204375 316.31501 L 160.390167 316.880405 L 160.452097 316.69194 L 160.575958 317.06887 L 160.699819 316.69194 L 160.76175 316.880405 L 160.82368 316.69194 L 161.071402 317.445801 L 161.133333 317.257336 L 161.257194 317.634266 L 161.319124 317.445801 L 161.442985 317.822731 L 161.566846 317.445801 L 161.752638 318.011196 L 161.876499 317.634266 L 162.06229 318.199661 L 162.124221 318.011196 L 162.186151 318.199661 L 162.248082 318.011196 L 162.371943 318.388126 L 162.743526 317.257336 L 162.805456 317.445801 L 163.115109 316.503475 L 163.177039 316.69194 L 163.362831 316.126545 L 163.424761 316.31501 L 163.486692 316.126545 L 163.672483 316.69194 L 163.734414 316.503475 L 163.920205 317.06887 L 163.982136 316.880405 L 164.105997 317.257336 L 164.229858 316.880405 L 164.291788 317.06887 L 164.353719 316.880405 L 164.601441 317.634266 L 164.849163 316.880405 L 164.911093 317.06887 L 164.973024 316.880405 L 165.096885 317.257336 L 165.282676 316.69194 L 165.344607 316.880405 L 165.530398 316.31501 L 165.592329 316.503475 L 165.71619 316.126545 L 165.77812 316.31501 L 165.840051 316.126545 L 165.901981 316.31501 L 165.963912 316.126545 L 166.025842 316.31501 L 166.149703 315.93808 L 166.211634 316.126545 L 166.397425 315.56115 L 166.769008 316.69194 L 166.830939 316.503475 L 167.01673 317.06887 L 167.078661 316.880405 L 167.140591 317.06887 L 167.326383 316.503475 L 167.512174 317.06887 L 167.574105 316.880405 L 167.697966 317.257336 L 167.759896 317.06887 L 167.821827 317.257336 L 168.007618 316.69194 L 168.19341 317.257336 L 168.441132 316.503475 L 168.626923 317.06887 L 168.874645 316.31501 L 168.998506 316.69194 L 169.060437 316.503475 L 169.246228 317.06887 L 169.555881 316.126545 L 169.617811 316.31501 L 169.865533 315.56115 L 170.051325 316.126545 L 170.113255 315.93808 L 170.299047 316.503475 L 170.360977 316.31501 L 170.422908 316.503475 L 170.546769 316.126545 L 170.73256 316.69194 L 170.918352 316.126545 L 171.042213 316.503475 L 171.104143 316.31501 L 171.166074 316.503475 L 171.289935 316.126545 L 171.413796 316.503475 L 171.475726 316.31501 L 171.661518 316.880405 L 171.847309 316.31501 L 172.095031 317.06887 L 172.466614 315.93808 L 172.528545 316.126545 L 172.714336 315.56115 L 172.838197 315.93808 L 172.900128 315.749615 L 173.085919 316.31501 L 173.14785 316.126545 L 173.457502 317.06887 L 173.643294 316.503475 L 173.829085 317.06887 L 173.891016 316.880405 L 173.952946 317.06887 L 174.076807 316.69194 L 174.138738 316.880405 L 174.262599 316.503475 L 174.324529 316.69194 L 174.44839 316.31501 L 174.510321 316.503475 L 174.572251 316.31501 L 174.634182 316.503475 L 174.758043 316.126545 L 174.943834 316.69194 L 175.129626 316.126545 L 175.253487 316.503475 L 175.563139 315.56115 L 175.62507 315.749615 L 175.687 315.56115 L 176.058583 316.69194 L 176.182444 316.31501 L 176.244375 316.503475 L 176.368236 316.126545 L 176.430166 316.31501 L 176.492097 316.126545 L 176.554027 316.31501 L 176.615958 316.126545 L 176.677888 316.31501 L 176.739819 316.126545 L 176.801749 316.31501 L 176.92561 315.93808 L 177.111402 316.503475 L 177.173332 316.31501 L 177.421054 317.06887 L 177.606846 316.503475 L 177.668776 316.69194 L 177.730707 316.503475 L 177.854568 316.880405 L 177.978429 316.503475 L 178.040359 316.69194 L 178.10229 316.503475 L 178.16422 316.69194 L 178.226151 316.503475 L 178.288081 316.69194 L 178.350012 316.503475 L 178.535803 317.06887 L 178.659664 316.69194 L 178.721595 316.880405 L 178.783525 316.69194 L 178.845456 316.880405 L 178.907386 316.69194 L 178.969317 316.880405 L 179.031247 316.69194 L 179.093178 316.880405 L 179.155108 316.69194 L 179.40283 317.445801 L 179.526691 317.06887 L 179.588622 317.257336 L 179.836344 316.503475 L 179.898274 316.69194 L 179.960205 316.503475 L 180.022135 316.69194 L 180.145996 316.31501 L 180.269857 316.69194 L 180.393718 316.31501 L 180.455649 316.503475 L 180.517579 316.31501 L 180.703371 316.880405 L 181.013023 315.93808 L 181.074954 316.126545 L 181.322676 315.372685 L 181.384606 315.56115 L 181.508467 315.184219 L 181.694259 315.749615 L 182.003911 314.807289 L 182.065842 314.995754 L 182.127772 314.807289 L 182.189703 314.995754 L 182.437425 314.241894 L 182.747077 315.184219 L 182.994799 314.430359 L 183.05673 314.618824 L 183.552174 313.111103 L 183.799896 313.864964 L 183.861826 313.676499 L 184.047618 314.241894 L 184.171479 313.864964 L 184.35727 314.430359 L 184.481131 314.053429 L 184.543062 314.241894 L 184.604992 314.053429 L 184.852714 314.807289 L 184.914645 314.618824 L 184.976575 314.807289 L 185.162367 314.241894 L 185.224297 314.430359 L 185.348158 314.053429 L 185.472019 314.430359 L 185.657811 313.864964 L 185.719741 314.053429 L 185.781672 313.864964 L 185.843602 314.053429 L 186.153255 313.111103 L 186.215185 313.299568 L 186.277116 313.111103 L 186.400977 313.488034 L 186.462907 313.299568 L 186.524838 313.488034 L 186.586768 313.299568 L 186.648699 313.488034 L 186.710629 313.299568 L 186.958351 314.053429 L 187.082212 313.676499 L 187.329934 314.430359 L 187.391865 314.241894 L 187.577656 314.807289 L 187.701517 314.430359 L 187.825378 314.807289 L 187.887309 314.618824 L 188.01117 314.995754 L 188.0731 314.807289 L 188.135031 314.995754 L 188.196961 314.807289 L 188.258892 314.995754 L 188.444683 314.430359 L 188.630475 314.995754 L 188.692405 314.807289 L 188.754336 314.995754 L 188.878197 314.618824 L 189.125919 315.372685 L 189.187849 315.184219 L 189.373641 315.749615 L 189.559432 315.184219 L 189.621363 315.372685 L 189.683293 315.184219 L 189.745224 315.372685 L 189.807154 315.184219 L 189.931015 315.56115 L 189.992946 315.372685 L 190.116807 315.749615 L 190.302598 315.184219 L 190.426459 315.56115 L 190.55032 315.184219 L 190.798042 315.93808 L 190.859973 315.749615 L 190.983834 316.126545 L 191.107695 315.749615 L 191.231556 316.126545 L 191.293486 315.93808 L 191.417347 316.31501 L 191.479278 316.126545 L 191.78893 317.06887 L 191.850861 316.880405 L 191.974722 317.257336 L 192.036652 317.06887 L 192.098583 317.257336 L 192.160513 317.06887 L 192.222444 317.257336 L 192.594027 316.126545 L 192.655957 316.31501 L 192.841749 315.749615 L 192.903679 315.93808 L 192.96561 315.749615 L 193.089471 316.126545 L 193.151401 315.93808 L 193.213332 316.126545 L 193.275262 315.93808 L 193.770706 317.445801 L 193.832637 317.257336 L 193.894567 317.445801 L 193.956498 317.257336 L 194.142289 317.822731 L 194.20422 317.634266 L 194.26615 317.822731 L 194.328081 317.634266 L 194.390011 317.822731 L 194.513872 317.445801 L 194.575803 317.634266 L 194.699664 317.257336 L 194.761594 317.445801 L 194.823525 317.257336 L 194.947386 317.634266 L 195.009316 317.445801 L 195.071247 317.634266 L 195.133177 317.445801 L 195.195108 317.634266 L 195.318969 317.257336 L 195.566691 318.011196 L 195.628621 317.822731 L 195.814413 318.388126 L 195.938274 318.011196 L 196.124065 318.576591 L 196.309857 318.011196 L 196.495648 318.576591 L 196.619509 318.199661 L 196.74337 318.576591 L 196.805301 318.388126 L 197.114953 319.330452 L 197.238814 318.953522 L 197.300745 319.141987 L 197.362675 318.953522 L 197.424606 319.141987 L 197.548467 318.765056 L 197.610397 318.953522 L 197.734258 318.576591 L 197.796189 318.765056 L 197.858119 318.576591 L 198.043911 319.141987 L 198.167772 318.765056 L 198.291633 319.141987 L 198.353563 318.953522 L 198.415494 319.141987 L 198.477424 318.953522 L 198.601285 319.330452 L 198.663216 319.141987 L 198.910938 319.895847 L 199.034799 319.518917 L 199.15866 319.895847 L 199.282521 319.518917 L 199.654104 320.649707 L 199.777965 320.272777 L 199.839895 320.461242 L 199.901826 320.272777 L 200.149548 321.026638 L 200.273409 320.649707 L 200.4592 321.215103 L 200.583061 320.838173 L 200.706922 321.215103 L 200.768853 321.026638 L 200.830783 321.215103 L 201.140436 320.272777 L 201.202366 320.461242 L 201.326227 320.084312 L 201.450088 320.461242 L 201.573949 320.084312 L 201.63588 320.272777 L 201.69781 320.084312 L 201.821671 320.461242 L 201.883602 320.272777 L 202.007463 320.649707 L 202.069393 320.461242 L 202.131324 320.649707 L 202.193254 320.461242 L 202.255185 320.649707 L 202.317115 320.461242 L 202.379046 320.649707 L 202.440976 320.461242 L 202.502907 320.649707 L 202.626768 320.272777 L 202.688698 320.461242 L 202.93642 319.707382 L 202.998351 319.895847 L 203.060281 319.707382 L 203.184142 320.084312 L 203.246073 319.895847 L 203.308003 320.084312 L 203.431864 319.707382 L 203.493795 319.895847 L 203.555725 319.707382 L 203.679586 320.084312 L 203.865378 319.518917 L 203.927308 319.707382 L 204.051169 319.330452 L 204.17503 319.707382 L 204.298891 319.330452 L 204.360822 319.518917 L 204.484683 319.141987 L 204.546613 319.330452 L 204.732405 318.765056 L 204.794335 318.953522 L 204.856266 318.765056 L 204.980127 319.141987 L 205.289779 318.199661 L 205.35171 318.388126 L 205.41364 318.199661 L 205.599432 318.765056 L 205.723293 318.388126 L 205.971015 319.141987 L 206.156806 318.576591 L 206.280667 318.953522 L 206.404528 318.576591 L 206.466459 318.765056 L 206.528389 318.576591 L 206.65225 318.953522 L 206.899972 318.199661 L 207.085764 318.765056 L 207.147694 318.576591 L 207.209625 318.765056 L 207.395416 318.199661 L 207.457347 318.388126 L 207.581208 318.011196 L 207.643138 318.199661 L 207.766999 317.822731 L 207.89086 318.199661 L 208.138582 317.445801 L 208.200513 317.634266 L 208.324374 317.257336 L 208.510165 317.822731 L 208.572096 317.634266 L 208.695957 318.011196 L 208.757887 317.822731 L 208.881748 318.199661 L 209.005609 317.822731 L 209.191401 318.388126 L 209.377192 317.822731 L 209.439123 318.011196 L 209.501053 317.822731 L 209.624914 318.199661 L 209.686845 318.011196 L 209.748775 318.199661 L 209.810706 318.011196 L 209.872636 318.199661 L 210.058428 317.634266 L 210.182289 318.011196 L 210.244219 317.822731 L 210.30615 318.011196 L 210.553872 317.257336 L 210.615802 317.445801 L 210.925455 316.503475 L 210.987385 316.69194 L 211.235107 315.93808 L 211.297038 316.126545 L 211.482829 315.56115 L 211.792482 316.503475 L 211.916343 316.126545 L 212.040204 316.503475 L 212.164065 316.126545 L 212.287926 316.503475 L 212.349856 316.31501 L 212.411787 316.503475 L 212.473717 316.31501 L 212.535648 316.503475 L 212.597578 316.31501 L 213.031092 317.634266 L 213.154953 317.257336 L 213.340744 317.822731 L 213.402675 317.634266 L 213.526536 318.011196 L 213.588466 317.822731 L 213.650397 318.011196 L 213.712327 317.822731 L 213.774258 318.011196 L 213.836188 317.822731 L 213.898119 318.011196 L 213.960049 317.822731 L 214.02198 318.011196 L 214.08391 317.822731 L 214.207771 318.199661 L 214.269702 318.011196 L 214.331632 318.199661 L 214.393563 318.011196 L 214.517424 318.388126 L 214.641285 318.011196 L 214.765146 318.388126 L 214.889007 318.011196 L 215.012868 318.388126 L 215.136729 318.011196 L 215.198659 318.199661 L 215.26059 318.011196 L 215.32252 318.199661 L 215.632173 317.257336 L 215.694103 317.445801 L 215.941825 316.69194 L 216.003756 316.880405 L 216.127617 316.503475 L 216.251478 316.880405 L 216.313408 316.69194 L 216.375339 316.880405 L 216.437269 316.69194 L 216.56113 317.06887 L 216.623061 316.880405 L 216.684991 317.06887 L 216.746922 316.880405 L 216.870783 317.257336 L 216.932713 317.06887 L 216.994644 317.257336 L 217.056574 317.06887 L 217.304296 317.822731 L 217.428157 317.445801 L 217.552018 317.822731 L 217.613949 317.634266 L 217.73781 318.011196 L 217.79974 317.822731 L 217.861671 318.011196 L 217.985532 317.634266 L 218.047462 317.822731 L 218.171323 317.445801 L 218.233254 317.634266 L 218.295184 317.445801 L 218.357115 317.634266 L 218.542906 317.06887 L 218.604837 317.257336 L 218.728698 316.880405 L 219.03835 317.822731 L 219.162211 317.445801 L 219.409933 318.199661 L 219.533794 317.822731 L 219.595725 318.011196 L 219.657655 317.822731 L 219.719586 318.011196 L 219.781516 317.822731 L 219.843447 318.011196 L 220.029238 317.445801 L 220.462752 318.765056 L 220.586613 318.388126 L 220.710474 318.765056 L 220.772404 318.576591 L 220.896265 318.953522 L 221.020126 318.576591 L 221.082057 318.765056 L 221.205918 318.388126 L 221.267848 318.576591 L 221.45364 318.011196 L 221.51557 318.199661 L 221.639431 317.822731 L 221.763292 318.199661 L 221.825223 318.011196 L 221.887153 318.199661 L 221.949084 318.011196 L 222.011014 318.199661 L 222.072945 318.011196 L 222.134875 318.199661 L 222.382597 317.445801 L 222.444528 317.634266 L 222.568389 317.257336 L 222.630319 317.445801 L 222.816111 316.880405 L 222.878041 317.06887 L 223.249624 315.93808 L 223.373485 316.31501 L 223.435416 316.126545 L 223.806999 317.257336 L 223.868929 317.06887 L 224.178582 318.011196 L 224.240512 317.822731 L 224.674026 319.141987 L 224.859817 318.576591 L 225.293331 319.895847 L 225.355261 319.707382 L 225.417192 319.895847 L 225.479122 319.707382 L 225.602983 320.084312 L 225.726844 319.707382 L 225.788775 319.895847 L 225.912636 319.518917 L 226.222288 320.461242 L 226.903524 318.388126 L 227.089315 318.953522 L 227.275107 318.388126 L 227.337037 318.576591 L 227.398968 318.388126 L 227.460898 318.576591 L 227.584759 318.199661 L 227.64669 318.388126 L 227.770551 318.011196 L 227.832481 318.199661 L 227.894412 318.011196 L 227.956342 318.199661 L 228.018273 318.011196 L 228.204064 318.576591 L 228.265995 318.388126 L 228.327925 318.576591 L 228.389856 318.388126 L 228.513717 318.765056 L 228.575647 318.576591 L 228.637578 318.765056 L 228.823369 318.199661 L 229.009161 318.765056 L 229.071091 318.576591 L 229.133022 318.765056 L 229.256883 318.388126 L 229.318813 318.576591 L 229.628466 317.634266 L 229.814257 318.199661 L 230.000049 317.634266 L 230.061979 317.822731 L 230.18584 317.445801 L 230.247771 317.634266 L 230.371632 317.257336 L 230.433562 317.445801 L 230.619354 316.880405 L 230.743215 317.257336 L 230.867076 316.880405 L 230.929006 317.06887 L 231.42445 315.56115 L 231.734103 316.503475 L 231.796033 316.31501 L 231.857964 316.503475 L 231.981825 316.126545 L 232.043755 316.31501 L 232.229547 315.749615 L 232.291477 315.93808 L 232.477269 315.372685 L 232.539199 315.56115 L 232.66306 315.184219 L 232.848852 315.749615 L 232.910782 315.56115 L 232.972713 315.749615 L 233.096574 315.372685 L 233.282365 315.93808 L 233.344296 315.749615 L 233.406226 315.93808 L 233.468157 315.749615 L 233.592018 316.126545 L 233.715879 315.749615 L 233.777809 315.93808 L 233.90167 315.56115 L 234.149392 316.31501 L 234.211323 316.126545 L 234.273253 316.31501 L 234.459045 315.749615 L 234.582906 316.126545 L 234.644836 315.93808 L 234.706767 316.126545 L 234.768697 315.93808 L 234.954489 316.503475 L 235.016419 316.31501 L 235.07835 316.503475 L 235.449933 315.372685 L 235.573794 315.749615 L 235.945377 314.618824 L 236.131168 315.184219 L 236.255029 314.807289 L 236.31696 314.995754 L 236.37889 314.807289 L 236.440821 314.995754 L 236.502751 314.807289 L 236.564682 314.995754 L 236.626612 314.807289 L 236.750473 315.184219 L 236.936265 314.618824 L 236.998195 314.807289 L 237.122056 314.430359 L 237.307848 314.995754 L 237.369778 314.807289 L 237.431709 314.995754 L 237.55557 314.618824 L 237.6175 314.807289 L 237.741361 314.430359 L 237.927153 314.995754 L 238.051014 314.618824 L 238.174875 314.995754 L 238.360666 314.430359 L 238.422597 314.618824 L 238.484527 314.430359 L 238.979971 315.93808 L 239.041902 315.749615 L 239.103832 315.93808 L 239.227693 315.56115 L 239.289624 315.749615 L 239.413485 315.372685 L 239.537346 315.749615 L 239.723137 315.184219 L 239.785068 315.372685 L 239.908929 314.995754 L 239.970859 315.184219 L 240.09472 314.807289 L 240.156651 314.995754 L 240.218581 314.807289 L 240.342442 315.184219 L 240.652095 314.241894 L 240.837886 314.807289 L 240.899817 314.618824 L 240.961747 314.807289 L 241.085608 314.430359 L 241.2714 314.995754 L 241.33333 314.807289 L 241.395261 314.995754 L 241.519122 314.618824 L 241.581052 314.807289 L 241.766844 314.241894 L 241.952635 314.807289 L 242.014566 314.618824 L 242.076496 314.807289 L 242.138427 314.618824 L 242.633871 316.126545 L 242.695801 315.93808 L 242.819662 316.31501 L 243.005454 315.749615 L 243.129315 316.126545 L 243.377037 315.372685 L 243.74862 316.503475 L 243.81055 316.31501 L 244.058272 317.06887 L 244.305994 316.31501 L 244.491786 316.880405 L 244.739508 316.126545 L 245.111091 317.257336 L 245.420743 316.31501 L 245.482674 316.503475 L 245.544604 316.31501 L 245.668465 316.69194 L 246.28777 314.807289 L 246.411631 315.184219 L 246.597423 314.618824 L 246.659353 314.807289 L 246.783214 314.430359 L 247.030936 315.184219 L 247.154797 314.807289 L 247.216728 314.995754 L 247.278658 314.807289 L 247.52638 315.56115 L 247.650241 315.184219 L 248.021824 316.31501 L 248.083755 316.126545 L 248.145685 316.31501 L 248.207616 316.126545 L 248.269546 316.31501 L 248.579199 315.372685 L 248.641129 315.56115 L 248.70306 315.372685 L 248.826921 315.749615 L 248.950782 315.372685 L 249.260434 316.31501 L 249.322365 316.126545 L 249.384295 316.31501 L 249.632017 315.56115 L 249.755878 315.93808 L 249.879739 315.56115 L 250.0036 315.93808 L 250.065531 315.749615 L 250.127461 315.93808 L 250.251322 315.56115 L 250.375183 315.93808 L 250.437114 315.749615 L 250.684836 316.503475 L 250.808697 316.126545 L 250.870627 316.31501 L 250.932558 316.126545 L 250.994488 316.31501 L 251.056419 316.126545 L 251.118349 316.31501 L 251.24221 315.93808 L 251.366071 316.31501 L 251.428002 316.126545 L 251.985376 317.822731 L 252.109237 317.445801 L 252.171168 317.634266 L 252.356959 317.06887 L 252.48082 317.445801 L 252.604681 317.06887 L 252.790473 317.634266 L 252.852403 317.445801 L 252.914334 317.634266 L 253.100125 317.06887 L 253.162056 317.257336 L 253.285917 316.880405 L 253.533639 317.634266 L 253.71943 317.06887 L 253.843291 317.445801 L 254.029083 316.880405 L 254.091013 317.06887 L 254.214874 316.69194 L 254.276805 316.880405 L 254.338735 316.69194 L 254.648388 317.634266 L 254.834179 317.06887 L 254.89611 317.257336 L 255.081901 316.69194 L 255.329623 317.445801 L 255.577345 316.69194 L 255.701206 317.06887 L 255.763137 316.880405 L 255.825067 317.06887 L 256.010859 316.503475 L 256.382442 317.634266 L 256.506303 317.257336 L 256.568233 317.445801 L 256.630164 317.257336 L 256.692094 317.445801 L 256.754025 317.257336 L 256.815955 317.445801 L 256.939816 317.06887 L 257.001747 317.257336 L 257.063677 317.06887 L 257.187538 317.445801 L 257.311399 317.06887 L 257.43526 317.445801 L 257.497191 317.257336 L 257.930704 318.576591 L 258.178426 317.822731 L 258.240357 318.011196 L 258.302287 317.822731 L 258.426148 318.199661 L 258.550009 317.822731 L 258.61194 318.011196 L 258.735801 317.634266 L 258.797731 317.822731 L 258.921592 317.445801 L 259.293175 318.576591 L 259.417036 318.199661 L 259.602828 318.765056 L 259.664758 318.576591 L 259.726689 318.765056 L 259.788619 318.576591 L 259.91248 318.953522 L 259.974411 318.765056 L 260.098272 319.141987 L 260.160202 318.953522 L 260.284063 319.330452 L 260.345994 319.141987 L 260.407924 319.330452 L 260.469855 319.141987 L 260.841438 320.272777 L 260.903368 320.084312 L 260.965299 320.272777 L 261.027229 320.084312 L 261.15109 320.461242 L 261.274951 320.084312 L 261.336882 320.272777 L 261.398812 320.084312 L 261.522673 320.461242 L 261.584604 320.272777 L 261.894256 321.215103 L 261.956187 321.026638 L 262.203909 321.780498 L 262.265839 321.592033 L 262.3897 321.968963 L 262.451631 321.780498 L 262.513561 321.968963 L 262.575492 321.780498 L 262.761283 322.345893 L 263.132866 321.215103 L 263.256727 321.592033 L 263.442519 321.026638 L 263.56638 321.403568 L 263.62831 321.215103 L 263.752171 321.592033 L 263.876032 321.215103 L 264.061824 321.780498 L 264.185685 321.403568 L 264.743059 323.099754 L 264.86692 322.722824 L 264.928851 322.911289 L 265.052712 322.534358 L 265.176573 322.911289 L 265.424295 322.157428 L 265.610086 322.722824 L 265.795878 322.157428 L 265.857808 322.345893 L 265.981669 321.968963 L 266.0436 322.157428 L 266.353252 321.215103 L 266.477113 321.592033 L 266.600974 321.215103 L 266.662905 321.403568 L 266.786766 321.026638 L 266.848696 321.215103 L 266.972557 320.838173 L 267.034488 321.026638 L 267.158349 320.649707 L 267.220279 320.838173 L 267.28221 320.649707 L 267.34414 320.838173 L 267.406071 320.649707 L 267.653793 321.403568 L 267.901515 320.649707 L 268.025376 321.026638 L 268.087307 320.838173 L 268.211168 321.215103 L 268.335029 320.838173 L 268.45889 321.215103 L 268.706612 320.461242 L 268.830473 320.838173 L 268.892403 320.649707 L 268.954334 320.838173 L 269.140125 320.272777 L 269.202056 320.461242 L 269.263986 320.272777 L 269.325917 320.461242 L 269.387847 320.272777 L 269.6975 321.215103 L 269.75943 321.026638 L 269.945222 321.592033 L 270.069083 321.215103 L 270.131013 321.403568 L 270.192944 321.215103 L 270.378735 321.780498 L 270.502596 321.403568 L 270.626457 321.780498 L 270.812249 321.215103 L 270.874179 321.403568 L 270.99804 321.026638 L 271.059971 321.215103 L 271.121901 321.026638 L 271.183832 321.215103 L 271.245762 321.026638 L 271.369623 321.403568 L 271.431554 321.215103 L 271.555415 321.592033 L 271.617345 321.403568 L 271.865067 322.157428 L 271.926998 321.968963 L 272.17472 322.722824 L 272.23665 322.534358 L 272.546303 323.476684 L 272.608233 323.288219 L 272.670164 323.476684 L 272.917886 322.722824 L 272.979816 322.911289 L 273.103677 322.534358 L 273.227538 322.911289 L 273.289469 322.722824 L 273.351399 322.911289 L 273.47526 322.534358 L 273.661052 323.099754 L 273.722982 322.911289 L 273.846843 323.288219 L 273.908774 323.099754 L 273.970704 323.288219 L 274.094565 322.911289 L 274.280357 323.476684 L 274.590009 322.534358 L 274.71387 322.911289 L 274.837731 322.534358 L 274.899662 322.722824 L 275.147384 321.968963 L 275.333175 322.534358 L 275.518967 321.968963 L 275.580897 322.157428 L 275.642828 321.968963 L 275.704758 322.157428 L 275.95248 321.403568 L 276.262133 322.345893 L 276.324063 322.157428 L 276.385994 322.345893 L 276.447924 322.157428 L 276.509855 322.345893 L 276.695646 321.780498 L 277.005299 322.722824 L 277.067229 322.534358 L 277.19109 322.911289 L 277.253021 322.722824 L 277.500743 323.476684 L 277.934256 322.157428 L 278.305839 323.288219 L 278.36777 323.099754 L 278.491631 323.476684 L 278.615492 323.099754 L 278.677422 323.288219 L 278.925144 322.534358 L 278.987075 322.722824 L 279.110936 322.345893 L 279.234797 322.722824 L 279.358658 322.345893 L 279.420588 322.534358 L 279.482519 322.345893 L 279.730241 323.099754 L 279.977963 322.345893 L 280.349546 323.476684 L 280.473407 323.099754 L 280.597268 323.476684 L 280.659198 323.288219 L 280.721129 323.476684 L 280.783059 323.288219 L 280.84499 323.476684 L 280.90692 323.288219 L 280.968851 323.476684 L 281.154642 322.911289 L 281.278503 323.288219 L 281.712017 321.968963 L 281.773947 322.157428 L 281.897808 321.780498 L 282.0836 322.345893 L 282.14553 322.157428 L 282.207461 322.345893 L 282.331322 321.968963 L 282.393252 322.157428 L 282.455183 321.968963 L 282.579044 322.345893 L 282.702905 321.968963 L 282.826766 322.345893 L 282.888696 322.157428 L 283.074488 322.722824 L 283.198349 322.345893 L 283.260279 322.534358 L 283.38414 322.157428 L 283.446071 322.345893 L 283.569932 321.968963 L 283.631862 322.157428 L 283.693793 321.968963 L 283.755723 322.157428 L 283.879584 321.780498 L 284.003445 322.157428 L 284.065376 321.968963 L 284.127306 322.157428 L 284.189237 321.968963 L 284.313098 322.345893 L 284.62275 321.403568 L 285.056264 322.722824 L 285.118194 322.534358 L 285.427847 323.476684 L 285.551708 323.099754 L 285.79943 323.853614 L 285.86136 323.665149 L 286.232943 324.79594 L 286.294874 324.607475 L 286.356804 324.79594 L 286.480665 324.419009 L 286.666457 324.984405 L 286.790318 324.607475 L 286.914179 324.984405 L 287.03804 324.607475 L 287.223831 325.17287 L 287.471553 324.419009 L 287.595414 324.79594 L 287.719275 324.419009 L 287.781206 324.607475 L 287.966997 324.042079 L 288.028928 324.230544 L 288.090858 324.042079 L 288.27665 324.607475 L 288.524372 323.853614 L 288.710163 324.419009 L 288.772094 324.230544 L 288.957885 324.79594 L 289.391399 323.476684 L 289.453329 323.665149 L 289.57719 323.288219 L 289.639121 323.476684 L 289.762982 323.099754 L 289.948773 323.665149 L 290.010704 323.476684 L 290.072634 323.665149 L 290.196495 323.288219 L 290.444217 324.042079 L 290.506148 323.853614 L 290.630009 324.230544 L 290.691939 324.042079 L 290.877731 324.607475 L 291.558966 322.534358 L 291.620897 322.722824 L 291.744758 322.345893 L 291.868619 322.722824 L 292.05441 322.157428 L 292.116341 322.345893 L 292.178271 322.157428 L 292.425993 322.911289 L 292.487924 322.722824 L 292.611785 323.099754 L 292.859507 322.345893 L 293.169159 323.288219 L 293.354951 322.722824 L 293.540742 323.288219 L 293.664603 322.911289 L 293.726534 323.099754 L 293.788464 322.911289 L 293.850395 323.099754 L 293.912325 322.911289 L 294.098117 323.476684 L 294.160047 323.288219 L 294.221978 323.476684 L 294.283908 323.288219 L 294.407769 323.665149 L 294.4697 323.476684 L 294.717422 324.230544 L 294.779352 324.042079 L 294.841283 324.230544 L 294.903213 324.042079 L 295.089005 324.607475 L 295.150935 324.419009 L 295.274796 324.79594 L 295.336727 324.607475 L 295.522518 325.17287 L 295.584449 324.984405 L 295.646379 325.17287 L 295.77024 324.79594 L 295.894101 325.17287 L 296.079893 324.607475 L 296.265684 325.17287 L 296.327615 324.984405 L 296.389545 325.17287 L 296.451476 324.984405 L 296.761128 325.92673 L 296.94692 325.361335 L 297.00885 325.5498 L 297.070781 325.361335 L 297.132711 325.5498 L 297.256572 325.17287 L 297.442364 325.738265 L 297.504294 325.5498 L 297.628155 325.92673 L 297.813947 325.361335 L 297.875877 325.5498 L 297.937808 325.361335 L 297.999738 325.5498 L 298.371321 324.419009 L 298.495182 324.79594 L 298.619043 324.419009 L 298.680974 324.607475 L 298.804835 324.230544 L 298.866765 324.419009 L 299.052557 323.853614 L 299.238348 324.419009 L 299.300279 324.230544 L 299.362209 324.419009 L 299.857653 322.911289 L 299.981514 323.288219 L 300.043445 323.099754 L 300.167306 323.476684 L 300.291167 323.099754 L 300.353097 323.288219 L 300.415028 323.099754 L 300.476958 323.288219 L 301.220124 321.026638 L 301.343985 321.403568 L 301.405916 321.215103 L 301.591707 321.780498 L 301.653638 321.592033 L 301.715568 321.780498 L 301.777499 321.592033 L 301.90136 321.968963 L 302.025221 321.592033 L 302.149082 321.968963 L 302.582595 320.649707 L 302.644526 320.838173 L 302.892248 320.084312 L 302.954178 320.272777 L 303.078039 319.895847 L 303.2019 320.272777 L 303.325761 319.895847 L 303.449622 320.272777 L 303.511553 320.084312 L 303.573483 320.272777 L 303.635414 320.084312 L 303.821205 320.649707 L 303.883136 320.461242 L 304.006997 320.838173 L 304.130858 320.461242 L 304.192788 320.649707 L 304.316649 320.272777 L 304.37858 320.461242 L 304.812093 319.141987 L 305.183676 320.272777 L 305.245607 320.084312 L 305.431398 320.649707 L 305.493329 320.461242 L 305.67912 321.026638 L 305.864912 320.461242 L 306.298425 321.780498 L 306.484217 321.215103 L 306.608078 321.592033 L 306.8558 320.838173 L 306.91773 321.026638 L 306.979661 320.838173 L 307.103522 321.215103 L 307.165452 321.026638 L 307.475105 321.968963 L 307.598966 321.592033 L 307.722827 321.968963 L 307.784757 321.780498 L 307.908618 322.157428 L 308.09441 321.592033 L 308.15634 321.780498 L 308.280201 321.403568 L 308.713715 322.722824 L 308.775645 322.534358 L 308.899506 322.911289 L 309.023367 322.534358 L 309.147228 322.911289 L 309.209159 322.722824 L 309.39495 323.288219 L 309.580742 322.722824 L 309.704603 323.099754 L 309.766533 322.911289 L 309.828464 323.099754 L 310.014255 322.534358 L 310.138116 322.911289 L 310.323908 322.345893 L 310.385838 322.534358 L 310.63356 321.780498 L 310.695491 321.968963 L 311.252865 320.272777 L 311.376726 320.649707 L 311.438657 320.461242 L 311.562518 320.838173 L 311.624448 320.649707 L 311.748309 321.026638 L 311.81024 320.838173 L 311.996031 321.403568 L 312.181823 320.838173 L 312.243753 321.026638 L 312.305684 320.838173 L 312.429545 321.215103 L 312.491475 321.026638 L 312.553406 321.215103 L 312.615336 321.026638 L 312.677267 321.215103 L 312.863058 320.649707 L 312.924989 320.838173 L 312.986919 320.649707 L 313.04885 320.838173 L 313.11078 320.649707 L 313.172711 320.838173 L 313.296572 320.461242 L 313.358502 320.649707 L 313.482363 320.272777 L 313.730085 321.026638 L 313.977807 320.272777 L 314.101668 320.649707 L 314.163599 320.461242 L 314.225529 320.649707 L 314.411321 320.084312 L 314.597112 320.649707 L 314.720973 320.272777 L 314.844834 320.649707 L 314.906765 320.461242 L 315.030626 320.838173 L 315.154487 320.461242 L 315.340278 321.026638 L 315.402209 320.838173 L 315.464139 321.026638 L 315.52607 320.838173 L 315.588 321.026638 L 315.711861 320.649707 L 315.835722 321.026638 L 315.897653 320.838173 L 316.083444 321.403568 L 316.145375 321.215103 L 316.269236 321.592033 L 316.331166 321.403568 L 316.393097 321.592033 L 316.455027 321.403568 L 316.640819 321.968963 L 316.76468 321.592033 L 317.260124 323.099754 L 317.383985 322.722824 L 317.693637 323.665149 L 317.879429 323.099754 L 318.00329 323.476684 L 318.127151 323.099754 L 318.189081 323.288219 L 318.251012 323.099754 L 318.374873 323.476684 L 318.498734 323.099754 L 318.560664 323.288219 L 318.622595 323.099754 L 318.746456 323.476684 L 318.808386 323.288219 L 318.870317 323.476684 L 318.932247 323.288219 L 318.994178 323.476684 L 319.056108 323.288219 L 319.179969 323.665149 L 319.2419 323.476684 L 319.30383 323.665149 L 319.427691 323.288219 L 319.489622 323.476684 L 319.551552 323.288219 L 319.675413 323.665149 L 319.737344 323.476684 L 319.799274 323.665149 L 319.861205 323.476684 L 320.046996 324.042079 L 320.170857 323.665149 L 320.294718 324.042079 L 320.356649 323.853614 L 320.48051 324.230544 L 320.604371 323.853614 L 320.728232 324.230544 L 320.790162 324.042079 L 320.914023 324.419009 L 321.037884 324.042079 L 321.099815 324.230544 L 321.161745 324.042079 L 321.347537 324.607475 L 321.471398 324.230544 L 321.78105 325.17287 L 321.842981 324.984405 L 321.904911 325.17287 L 321.966842 324.984405 L 322.028772 325.17287 L 322.214564 324.607475 L 322.400355 325.17287 L 322.462286 324.984405 L 322.710008 325.738265 L 322.771938 325.5498 L 322.833869 325.738265 L 323.143521 324.79594 L 323.205452 324.984405 L 323.267382 324.79594 L 323.329313 324.984405 L 323.886687 323.288219 L 323.948618 323.476684 L 324.010548 323.288219 L 324.072479 323.476684 L 324.134409 323.288219 L 324.444062 324.230544 L 324.505992 324.042079 L 324.753714 324.79594 L 324.939506 324.230544 L 325.063367 324.607475 L 325.187228 324.230544 L 325.311089 324.607475 L 325.558811 323.853614 L 325.682672 324.230544 L 325.744602 324.042079 L 325.868463 324.419009 L 326.178116 323.476684 L 326.240046 323.665149 L 326.363907 323.288219 L 326.549699 323.853614 L 326.611629 323.665149 L 326.797421 324.230544 L 326.983212 323.665149 L 327.107073 324.042079 L 327.169004 323.853614 L 327.292865 324.230544 L 327.416726 323.853614 L 327.478656 324.042079 L 327.540587 323.853614 L 327.726378 324.419009 L 327.850239 324.042079 L 327.91217 324.230544 L 327.9741 324.042079 L 328.036031 324.230544 L 328.097961 324.042079 L 328.159892 324.230544 L 328.221822 324.042079 L 328.345683 324.419009 L 328.407614 324.230544 L 328.779197 325.361335 L 329.274641 323.853614 L 329.460432 324.419009 L 329.522363 324.230544 L 329.584293 324.419009 L 329.770085 323.853614 L 329.832015 324.042079 L 329.893946 323.853614 L 329.955876 324.042079 L 330.203598 323.288219 L 330.327459 323.665149 L 330.38939 323.476684 L 330.513251 323.853614 L 330.575181 323.665149 L 330.637112 323.853614 L 330.699042 323.665149 L 330.760973 323.853614 L 330.884834 323.476684 L 331.008695 323.853614 L 331.070625 323.665149 L 331.132556 323.853614 L 331.194486 323.665149 L 331.256417 323.853614 L 331.380278 323.476684 L 331.751861 324.607475 L 331.813791 324.419009 L 331.875722 324.607475 L 331.999583 324.230544 L 332.061513 324.419009 L 332.123444 324.230544 L 332.185374 324.419009 L 332.247305 324.230544 L 332.433096 324.79594 L 332.618888 324.230544 L 332.680818 324.419009 L 332.804679 324.042079 L 332.86661 324.230544 L 333.052401 323.665149 L 333.176262 324.042079 L 333.238193 323.853614 L 333.300123 324.042079 L 333.485915 323.476684 L 333.547845 323.665149 L 333.733637 323.099754 L 333.981359 323.853614 L 334.043289 323.665149 L 334.10522 323.853614 L 334.16715 323.665149 L 334.291011 324.042079 L 334.352942 323.853614 L 334.476803 324.230544 L 334.662594 323.665149 L 334.848386 324.230544 L 334.910316 324.042079 L 335.034177 324.419009 L 335.219969 323.853614 L 335.281899 324.042079 L 335.34383 323.853614 L 335.529621 324.419009 L 335.715413 323.853614 L 335.777343 324.042079 L 335.963135 323.476684 L 336.086996 323.853614 L 336.148926 323.665149 L 336.458579 324.607475 L 336.64437 324.042079 L 336.706301 324.230544 L 336.830162 323.853614 L 337.015953 324.419009 L 337.077884 324.230544 L 337.139814 324.419009 L 337.201745 324.230544 L 337.263675 324.419009 L 337.325606 324.230544 L 337.387536 324.419009 L 337.449467 324.230544 L 337.511397 324.419009 L 337.573328 324.230544 L 337.82105 324.984405 L 337.88298 324.79594 L 338.254563 325.92673 L 338.316494 325.738265 L 338.378424 325.92673 L 338.564216 325.361335 L 338.750007 325.92673 L 338.811938 325.738265 L 338.997729 326.303661 L 339.245451 325.5498 L 339.307382 325.738265 L 339.369312 325.5498 L 339.431243 325.738265 L 339.493173 325.5498 L 339.740895 326.303661 L 339.802826 326.115195 L 339.988617 326.680591 L 340.174409 326.115195 L 340.236339 326.303661 L 340.3602 325.92673 L 340.422131 326.115195 L 340.484061 325.92673 L 340.545992 326.115195 L 340.607922 325.92673 L 340.669853 326.115195 L 340.793714 325.738265 L 340.855644 325.92673 L 340.917575 325.738265 L 340.979505 325.92673 L 341.227227 325.17287 L 341.289158 325.361335 L 341.413019 324.984405 L 341.474949 325.17287 L 341.53688 324.984405 L 341.59881 325.17287 L 341.908463 324.230544 L 341.970393 324.419009 L 342.032324 324.230544 L 342.218115 324.79594 L 342.280046 324.607475 L 342.341976 324.79594 L 342.403907 324.607475 L 342.465837 324.79594 L 342.527768 324.607475 L 342.651629 324.984405 L 342.713559 324.79594 L 342.83742 325.17287 L 342.961281 324.79594 L 343.023212 324.984405 L 343.085142 324.79594 L 343.209003 325.17287 L 343.270934 324.984405 L 343.332864 325.17287 L 343.456725 324.79594 L 343.580586 325.17287 L 343.642517 324.984405 L 343.890239 325.738265 L 343.952169 325.5498 L 344.0141 325.738265 L 344.07603 325.5498 L 344.199891 325.92673 L 344.323752 325.5498 L 344.509544 326.115195 L 344.571474 325.92673 L 344.695335 326.303661 L 344.757266 326.115195 L 344.819196 326.303661 L 344.881127 326.115195 L 344.943057 326.303661 L 345.066918 325.92673 L 345.128849 326.115195 L 345.190779 325.92673 L 345.31464 326.303661 L 345.438501 325.92673 L 345.748154 326.869056 L 346.057806 325.92673 L 346.119737 326.115195 L 346.181667 325.92673 L 346.367459 326.492126 L 346.55325 325.92673 L 346.615181 326.115195 L 346.677111 325.92673 L 346.739042 326.115195 L 346.800972 325.92673 L 346.862903 326.115195 L 346.924833 325.92673 L 347.172555 326.680591 L 347.234486 326.492126 L 347.296416 326.680591 L 347.606069 325.738265 L 347.853791 326.492126 L 348.225374 325.361335 L 348.596957 326.492126 L 348.782748 325.92673 L 348.844679 326.115195 L 348.906609 325.92673 L 349.03047 326.303661 L 349.092401 326.115195 L 349.340123 326.869056 L 349.402053 326.680591 L 349.463984 326.869056 L 349.587845 326.492126 L 349.649775 326.680591 L 349.711706 326.492126 L 349.835567 326.869056 L 350.083289 326.115195 L 350.454872 327.245986 L 350.516802 327.057521 L 350.640663 327.434451 L 350.702594 327.245986 L 350.888385 327.811381 L 351.012246 327.434451 L 351.074177 327.622916 L 351.136107 327.434451 L 351.198038 327.622916 L 351.50769 326.680591 L 351.631551 327.057521 L 351.693482 326.869056 L 351.755412 327.057521 L 352.188926 325.738265 L 352.250856 325.92673 L 352.374717 325.5498 L 352.436648 325.738265 L 352.498578 325.5498 L 352.560509 325.738265 L 352.622439 325.5498 L 352.7463 325.92673 L 352.808231 325.738265 L 352.932092 326.115195 L 353.117883 325.5498 L 353.489466 326.680591 L 353.737188 325.92673 L 353.861049 326.303661 L 354.046841 325.738265 L 354.108771 325.92673 L 354.170702 325.738265 L 354.232632 325.92673 L 354.294563 325.738265 L 354.356493 325.92673 L 354.418424 325.738265 L 354.480354 325.92673 L 354.542285 325.738265 L 354.666146 326.115195 L 354.913868 325.361335 L 355.347381 326.680591 L 355.595103 325.92673 L 355.657034 326.115195 L 355.718964 325.92673 L 355.780895 326.115195 L 355.842825 325.92673 L 355.966686 326.303661 L 356.028617 326.115195 L 356.152478 326.492126 L 356.214408 326.303661 L 356.585991 327.434451 L 356.709852 327.057521 L 356.895644 327.622916 L 357.019505 327.245986 L 357.453018 328.565242 L 357.576879 328.188312 L 357.63881 328.376777 L 357.70074 328.188312 L 357.762671 328.376777 L 357.948462 327.811381 L 358.010393 327.999846 L 358.258115 327.245986 L 358.320045 327.434451 L 358.443906 327.057521 L 358.505837 327.245986 L 358.567767 327.057521 L 358.691628 327.434451 L 358.93935 326.680591 L 359.001281 326.869056 L 359.063211 326.680591 L 359.125142 326.869056 L 360.054099 324.042079 L 360.17796 324.419009 L 360.239891 324.230544 L 360.301821 324.419009 L 360.549543 323.665149 L 360.611474 323.853614 L 360.859196 323.099754 L 360.921126 323.288219 L 360.983057 323.099754 L 361.044987 323.288219 L 361.230779 322.722824 L 361.292709 322.911289 L 361.41657 322.534358 L 361.602362 323.099754 L 361.850084 322.345893 L 361.912014 322.534358 L 362.035875 322.157428 L 362.097806 322.345893 L 362.159736 322.157428 L 362.283597 322.534358 L 362.345528 322.345893 L 362.407458 322.534358 L 362.531319 322.157428 L 362.717111 322.722824 L 362.902902 322.157428 L 363.088694 322.722824 L 363.150624 322.534358 L 363.274485 322.911289 L 363.398346 322.534358 L 363.460277 322.722824 L 363.584138 322.345893 L 363.646068 322.534358 L 363.769929 322.157428 L 363.955721 322.722824 L 364.017651 322.534358 L 364.079582 322.722824 L 364.265373 322.157428 L 364.327304 322.345893 L 364.451165 321.968963 L 364.513095 322.157428 L 364.636956 321.780498 L 365.008539 322.911289 L 365.256261 322.157428 L 365.318192 322.345893 L 365.442053 321.968963 L 365.503983 322.157428 L 365.627844 321.780498 L 365.813636 322.345893 L 365.937497 321.968963 L 365.999427 322.157428 L 366.061358 321.968963 L 366.185219 322.345893 L 366.30908 321.968963 L 366.432941 322.345893 L 366.556802 321.968963 L 366.618732 322.157428 L 366.680663 321.968963 L 366.804524 322.345893 L 366.928385 321.968963 L 367.114176 322.534358 L 367.176107 322.345893 L 367.238037 322.534358 L 367.361898 322.157428 L 367.485759 322.534358 L 367.54769 322.345893 L 367.795412 323.099754 L 367.857342 322.911289 L 368.414717 324.607475 L 368.476647 324.419009 L 368.600508 324.79594 L 368.662439 324.607475 L 368.724369 324.79594 L 368.7863 324.607475 L 368.84823 324.79594 L 369.095952 324.042079 L 369.219813 324.419009 L 369.281744 324.230544 L 369.467535 324.79594 L 369.529466 324.607475 L 369.591396 324.79594 L 369.901049 323.853614 L 370.02491 324.230544 L 370.148771 323.853614 L 370.210701 324.042079 L 370.272632 323.853614 L 370.396493 324.230544 L 370.458423 324.042079 L 370.520354 324.230544 L 370.582284 324.042079 L 370.706145 324.419009 L 370.768076 324.230544 L 370.830006 324.419009 L 370.953867 324.042079 L 371.015798 324.230544 L 371.077728 324.042079 L 371.139659 324.230544 L 371.201589 324.042079 L 371.635103 325.361335 L 371.820894 324.79594 L 372.006686 325.361335 L 372.254408 324.607475 L 372.378269 324.984405 L 372.50213 324.607475 L 372.625991 324.984405 L 372.687921 324.79594 L 372.749852 324.984405 L 372.873713 324.607475 L 372.935643 324.79594 L 373.121435 324.230544 L 373.183365 324.419009 L 373.307226 324.042079 L 373.369157 324.230544 L 373.493018 323.853614 L 373.864601 324.984405 L 373.926531 324.79594 L 373.988462 324.984405 L 374.112323 324.607475 L 374.298114 325.17287 L 374.483906 324.607475 L 374.607767 324.984405 L 374.793558 324.419009 L 374.855489 324.607475 L 374.917419 324.419009 L 375.103211 324.984405 L 375.227072 324.607475 L 375.289002 324.79594 L 375.474794 324.230544 L 375.660585 324.79594 L 375.722516 324.607475 L 375.846377 324.984405 L 376.094099 324.230544 L 376.156029 324.419009 L 376.21796 324.230544 L 376.27989 324.419009 L 376.341821 324.230544 L 376.403751 324.419009 L 376.465682 324.230544 L 376.527612 324.419009 L 376.589543 324.230544 L 376.651473 324.419009 L 376.837265 323.853614 L 376.961126 324.230544 L 377.023056 324.042079 L 377.146917 324.419009 L 377.394639 323.665149 L 377.580431 324.230544 L 377.766222 323.665149 L 377.828153 323.853614 L 378.013944 323.288219 L 378.075875 323.476684 L 378.199736 323.099754 L 378.323597 323.476684 L 378.385527 323.288219 L 378.447458 323.476684 L 378.509388 323.288219 L 378.571319 323.476684 L 378.69518 323.099754 L 378.75711 323.288219 L 378.819041 323.099754 L 378.880971 323.288219 L 379.004832 322.911289 L 379.128693 323.288219 L 379.376415 322.534358 L 379.624137 323.288219 L 379.93379 322.345893 L 379.99572 322.534358 L 380.119581 322.157428 L 380.305373 322.722824 L 380.367303 322.534358 L 380.491164 322.911289 L 380.615025 322.534358 L 380.676956 322.722824 L 380.738886 322.534358 L 380.986608 323.288219 L 381.048539 323.099754 L 381.110469 323.288219 L 381.605913 321.780498 L 381.667844 321.968963 L 382.039427 320.838173 L 382.163288 321.215103 L 382.225218 321.026638 L 382.534871 321.968963 L 382.658732 321.592033 L 382.720662 321.780498 L 382.968384 321.026638 L 383.278037 321.968963 L 383.339967 321.780498 L 383.587689 322.534358 L 383.64962 322.345893 L 383.71155 322.534358 L 384.021203 321.592033 L 384.145064 321.968963 L 384.206994 321.780498 L 384.330855 322.157428 L 384.392786 321.968963 L 384.640508 322.722824 L 384.764369 322.345893 L 384.95016 322.911289 L 385.074021 322.534358 L 385.135952 322.722824 L 385.383674 321.968963 L 385.445604 322.157428 L 385.693326 321.403568 L 385.755257 321.592033 L 386.064909 320.649707 L 386.374562 321.592033 L 386.436492 321.403568 L 386.622284 321.968963 L 386.684214 321.780498 L 386.746145 321.968963 L 387.055797 321.026638 L 387.117728 321.215103 L 387.179658 321.026638 L 387.303519 321.403568 L 387.36545 321.215103 L 387.489311 321.592033 L 387.551241 321.403568 L 387.613172 321.592033 L 387.860894 320.838173 L 387.922824 321.026638 L 388.108616 320.461242 L 388.170546 320.649707 L 388.294407 320.272777 L 388.356338 320.461242 L 388.542129 319.895847 L 388.60406 320.084312 L 388.66599 319.895847 L 388.727921 320.084312 L 388.789851 319.895847 L 388.913712 320.272777 L 388.975643 320.084312 L 389.037573 320.272777 L 389.285295 319.518917 L 389.347226 319.707382 L 389.594948 318.953522 L 389.656878 319.141987 L 389.84267 318.576591 L 390.028461 319.141987 L 390.090392 318.953522 L 390.152322 319.141987 L 390.338114 318.576591 L 390.585836 319.330452 L 390.709697 318.953522 L 390.771627 319.141987 L 390.833558 318.953522 L 390.957419 319.330452 L 391.08128 318.953522 L 391.14321 319.141987 L 391.329002 318.576591 L 391.638654 319.518917 L 391.824446 318.953522 L 391.948307 319.330452 L 392.010237 319.141987 L 392.196029 319.707382 L 392.38182 319.141987 L 392.443751 319.330452 L 392.567612 318.953522 L 392.629542 319.141987 L 392.753403 318.765056 L 392.815334 318.953522 L 392.877264 318.765056 L 393.001125 319.141987 L 393.248847 318.388126 L 393.310778 318.576591 L 393.434639 318.199661 L 393.5585 318.576591 L 393.62043 318.388126 L 393.682361 318.576591 L 393.744291 318.388126 L 393.806222 318.576591 L 393.868152 318.388126 L 393.930083 318.576591 L 394.053944 318.199661 L 394.115874 318.388126 L 394.177805 318.199661 L 394.239735 318.388126 L 394.425527 317.822731 L 394.487457 318.011196 L 394.549388 317.822731 L 394.611318 318.011196 L 394.673249 317.822731 L 394.79711 318.199661 L 394.85904 318.011196 L 395.106762 318.765056 L 395.168693 318.576591 L 395.230623 318.765056 L 395.292554 318.576591 L 395.416415 318.953522 L 395.540276 318.576591 L 395.602206 318.765056 L 395.664137 318.576591 L 395.787998 318.953522 L 395.973789 318.388126 L 396.221511 319.141987 L 396.469233 318.388126 L 396.531164 318.576591 L 396.593094 318.388126 L 396.778886 318.953522 L 396.902747 318.576591 L 396.964677 318.765056 L 397.026608 318.576591 L 397.088538 318.765056 L 397.27433 318.199661 L 397.398191 318.576591 L 397.460121 318.388126 L 397.522052 318.576591 L 397.707843 318.011196 L 397.769774 318.199661 L 397.893635 317.822731 L 397.955565 318.011196 L 398.017496 317.822731 L 398.079426 318.011196 L 398.141357 317.822731 L 398.389079 318.576591 L 398.451009 318.388126 L 398.51294 318.576591 L 398.698731 318.011196 L 398.822592 318.388126 L 398.946453 318.011196 L 399.008384 318.199661 L 399.070314 318.011196 L 399.132245 318.199661 L 399.318036 317.634266 L 399.379967 317.822731 L 399.441897 317.634266 L 399.689619 318.388126 L 399.75155 318.199661 L 399.937341 318.765056 L 400.308924 317.634266 L 400.370855 317.822731 L 400.432785 317.634266 L 400.494716 317.822731 L 400.680507 317.257336 L 400.804368 317.634266 L 400.928229 317.257336 L 401.114021 317.822731 L 401.175951 317.634266 L 401.237882 317.822731 L 401.299812 317.634266 L 401.361743 317.822731 L 401.609465 317.06887 L 401.671395 317.257336 L 401.919117 316.503475 L 402.042978 316.880405 L 402.104909 316.69194 L 402.22877 317.06887 L 402.414561 316.503475 L 402.476492 316.69194 L 402.538422 316.503475 L 402.848075 317.445801 L 403.095797 316.69194 L 403.157727 316.880405 L 403.219658 316.69194 L 403.343519 317.06887 L 403.46738 316.69194 L 403.52931 316.880405 L 403.591241 316.69194 L 403.653171 316.880405 L 403.777032 316.503475 L 403.838963 316.69194 L 403.962824 316.31501 L 404.086685 316.69194 L 404.210546 316.31501 L 404.334407 316.69194 L 404.396337 316.503475 L 404.458268 316.69194 L 404.520198 316.503475 L 404.644059 316.880405 L 404.76792 316.503475 L 404.953712 317.06887 L 405.015642 316.880405 L 405.387225 318.011196 L 405.511086 317.634266 L 405.573017 317.822731 L 405.758808 317.257336 L 405.9446 317.822731 L 406.00653 317.634266 L 406.068461 317.822731 L 406.130391 317.634266 L 406.192322 317.822731 L 406.501974 316.880405 L 406.563905 317.06887 L 406.687766 316.69194 L 406.811627 317.06887 L 406.873557 316.880405 L 407.059349 317.445801 L 407.18321 317.06887 L 407.24514 317.257336 L 407.307071 317.06887 L 407.369001 317.257336 L 407.430932 317.06887 L 407.492862 317.257336 L 407.554793 317.06887 L 407.678654 317.445801 L 407.802515 317.06887 L 407.864445 317.257336 L 407.926376 317.06887 L 407.988306 317.257336 L 408.112167 316.880405 L 408.174098 317.06887 L 408.236028 316.880405 L 408.545681 317.822731 L 408.607611 317.634266 L 408.669542 317.822731 L 408.731472 317.634266 L 408.855333 318.011196 L 409.041125 317.445801 L 409.103055 317.634266 L 409.288847 317.06887 L 409.474638 317.634266 L 409.536569 317.445801 L 409.846221 318.388126 L 410.217804 317.257336 L 410.341665 317.634266 L 410.403596 317.445801 L 410.527457 317.822731 L 410.589387 317.634266 L 410.651318 317.822731 L 410.83711 317.257336 L 410.89904 317.445801 L 410.960971 317.257336 L 411.022901 317.445801 L 411.084832 317.257336 L 411.270623 317.822731 L 411.456415 317.257336 L 411.518345 317.445801 L 411.580276 317.257336 L 411.704137 317.634266 L 411.889928 317.06887 L 411.951859 317.257336 L 412.013789 317.06887 L 412.199581 317.634266 L 412.261511 317.445801 L 412.509233 318.199661 L 412.571164 318.011196 L 412.633094 318.199661 L 412.756955 317.822731 L 412.818886 318.011196 L 412.880816 317.822731 L 413.004677 318.199661 L 413.128538 317.822731 L 413.190469 318.011196 L 413.252399 317.822731 L 413.31433 318.011196 L 413.438191 317.634266 L 413.500121 317.822731 L 413.562052 317.634266 L 413.623982 317.822731 L 413.685913 317.634266 L 413.809774 318.011196 L 413.871704 317.822731 L 413.995565 318.199661 L 414.057496 318.011196 L 414.119426 318.199661 L 414.181357 318.011196 L 414.243287 318.199661 L 414.305218 318.011196 L 414.55294 318.765056 L 414.61487 318.576591 L 414.738731 318.953522 L 414.800662 318.765056 L 415.048384 319.518917 L 415.234175 318.953522 L 415.419967 319.518917 L 415.481897 319.330452 L 415.85348 320.461242 L 415.915411 320.272777 L 415.977341 320.461242 L 416.039272 320.272777 L 416.286994 321.026638 L 416.348924 320.838173 L 416.596646 321.592033 L 416.658577 321.403568 L 416.844368 321.968963 L 416.968229 321.592033 L 417.03016 321.780498 L 417.215951 321.215103 L 417.277882 321.403568 L 417.463673 320.838173 L 417.711395 321.592033 L 417.835256 321.215103 L 417.897187 321.403568 L 417.959117 321.215103 L 418.144909 321.780498 L 418.206839 321.592033 L 418.3307 321.968963 L 418.392631 321.780498 L 418.516492 322.157428 L 418.578422 321.968963 L 418.640353 322.157428 L 418.702283 321.968963 L 418.826144 322.345893 L 418.950005 321.968963 L 419.073866 322.345893 L 419.135797 322.157428 L 419.259658 322.534358 L 419.321588 322.345893 L 419.383519 322.534358 L 419.50738 322.157428 L 419.56931 322.345893 L 419.631241 322.157428 L 419.693171 322.345893 L 419.755102 322.157428 L 419.878963 322.534358 L 420.002824 322.157428 L 420.126685 322.534358 L 420.312476 321.968963 L 420.374407 322.157428 L 420.436337 321.968963 L 420.498268 322.157428 L 420.560198 321.968963 L 420.622129 322.157428 L 420.684059 321.968963 L 420.931781 322.722824 L 421.179503 321.968963 L 421.365295 322.534358 L 421.551086 321.968963 L 421.798808 322.722824 L 422.04653 321.968963 L 422.294252 322.722824 L 422.727766 321.403568 L 422.789696 321.592033 L 422.851627 321.403568 L 422.913557 321.592033 L 422.975488 321.403568 L 423.037418 321.592033 L 423.099349 321.403568 L 423.161279 321.592033 L 423.470932 320.649707 L 423.594793 321.026638 L 423.656723 320.838173 L 423.718654 321.026638 L 423.842515 320.649707 L 424.214098 321.780498 L 424.276028 321.592033 L 424.337959 321.780498 L 424.585681 321.026638 L 424.647611 321.215103 L 424.957264 320.272777 L 425.081125 320.649707 L 425.266916 320.084312 L 425.390777 320.461242 L 425.452708 320.272777 L 425.514638 320.461242 L 425.70043 319.895847 L 425.824291 320.272777 L 425.886221 320.084312 L 425.948152 320.272777 L 426.010082 320.084312 L 426.195874 320.649707 L 426.319735 320.272777 L 426.381665 320.461242 L 426.505526 320.084312 L 426.567457 320.272777 L 426.753248 319.707382 L 426.877109 320.084312 L 427.248692 318.953522 L 427.496414 319.707382 L 427.620275 319.330452 L 427.682206 319.518917 L 427.744136 319.330452 L 428.053789 320.272777 L 428.17765 319.895847 L 428.363441 320.461242 L 428.425372 320.272777 L 428.611163 320.838173 L 428.796955 320.272777 L 428.858885 320.461242 L 429.044677 319.895847 L 429.168538 320.272777 L 429.354329 319.707382 L 429.540121 320.272777 L 429.602051 320.084312 L 429.663982 320.272777 L 429.725912 320.084312 L 429.787843 320.272777 L 429.849773 320.084312 L 429.911704 320.272777 L 429.973634 320.084312 L 430.035565 320.272777 L 430.221356 319.707382 L 430.345217 320.084312 L 430.407148 319.895847 L 430.469078 320.084312 L 430.592939 319.707382 L 430.65487 319.895847 L 430.778731 319.518917 L 430.840661 319.707382 L 430.902592 319.518917 L 430.964522 319.707382 L 431.088383 319.330452 L 431.336105 320.084312 L 431.459966 319.707382 L 431.583827 320.084312 L 431.89348 319.141987 L 432.017341 319.518917 L 432.141202 319.141987 L 432.203132 319.330452 L 432.265063 319.141987 L 432.326993 319.330452 L 432.388924 319.141987 L 432.512785 319.518917 L 432.574715 319.330452 L 432.636646 319.518917 L 432.698576 319.330452 L 432.760507 319.518917 L 432.946298 318.953522 L 433.13209 319.518917 L 433.19402 319.330452 L 433.255951 319.518917 L 433.317881 319.330452 L 433.441742 319.707382 L 433.565603 319.330452 L 433.813325 320.084312 L 434.061047 319.330452 L 434.184908 319.707382 L 434.3707 319.141987 L 434.804213 320.461242 L 434.928074 320.084312 L 435.051935 320.461242 L 435.175796 320.084312 L 435.237727 320.272777 L 435.299657 320.084312 L 435.361588 320.272777 L 435.547379 319.707382 L 435.60931 319.895847 L 435.795101 319.330452 L 435.857032 319.518917 L 436.042823 318.953522 L 436.414406 320.084312 L 436.476337 319.895847 L 436.538267 320.084312 L 436.84792 319.141987 L 436.971781 319.518917 L 437.033711 319.330452 L 437.095642 319.518917 L 437.157572 319.330452 L 437.219503 319.518917 L 437.281433 319.330452 L 437.467225 319.895847 L 437.591086 319.518917 L 437.653016 319.707382 L 437.838808 319.141987 L 437.900738 319.330452 L 437.962669 319.141987 L 438.024599 319.330452 L 438.14846 318.953522 L 438.210391 319.141987 L 438.272321 318.953522 L 438.334252 319.141987 L 438.396182 318.953522 L 438.581974 319.518917 L 439.015487 318.199661 L 439.077418 318.388126 L 439.38707 317.445801 L 439.449001 317.634266 L 439.510931 317.445801 L 439.634792 317.822731 L 439.820584 317.257336 L 439.882514 317.445801 L 440.068306 316.880405 L 440.130236 317.06887 L 440.316028 316.503475 L 440.501819 317.06887 L 440.749541 316.31501 L 440.811472 316.503475 L 440.997263 315.93808 L 441.059194 316.126545 L 441.121124 315.93808 L 441.368846 316.69194 L 441.554638 316.126545 L 441.678499 316.503475 L 441.740429 316.31501 L 441.86429 316.69194 L 441.988151 316.31501 L 442.112012 316.69194 L 442.235873 316.31501 L 442.607456 317.445801 L 442.793248 316.880405 L 442.979039 317.445801 L 443.164831 316.880405 L 443.350622 317.445801 L 443.412553 317.257336 L 443.598344 317.822731 L 443.784136 317.257336 L 444.093788 318.199661 L 444.155719 318.011196 L 444.34151 318.576591 L 444.527302 318.011196 L 444.960815 319.330452 L 445.146607 318.765056 L 445.208537 318.953522 L 445.270468 318.765056 L 445.456259 319.330452 L 445.58012 318.953522 L 445.642051 319.141987 L 445.765912 318.765056 L 445.827842 318.953522 L 445.951703 318.576591 L 446.075564 318.953522 L 446.199425 318.576591 L 446.261356 318.765056 L 446.323286 318.576591 L 446.447147 318.953522 L 446.509078 318.765056 L 446.632939 319.141987 L 446.694869 318.953522 L 446.7568 319.141987 L 446.880661 318.765056 L 447.128383 319.518917 L 447.190313 319.330452 L 447.314174 319.707382 L 447.438035 319.330452 L 447.747688 320.272777 L 447.809618 320.084312 L 447.871549 320.272777 L 447.933479 320.084312 L 448.428923 321.592033 L 448.614715 321.026638 L 448.862437 321.780498 L 449.29595 320.461242 L 449.357881 320.649707 L 449.419811 320.461242 L 449.481742 320.649707 L 449.543672 320.461242 L 449.605603 320.649707 L 449.729464 320.272777 L 449.853325 320.649707 L 449.977186 320.272777 L 450.162977 320.838173 L 450.224908 320.649707 L 450.286838 320.838173 L 450.410699 320.461242 L 450.720352 321.403568 L 450.844213 321.026638 L 450.968074 321.403568 L 451.153865 320.838173 L 451.215796 321.026638 L 451.277726 320.838173 L 451.463518 321.403568 L 451.525448 321.215103 L 451.649309 321.592033 L 451.71124 321.403568 L 451.77317 321.592033 L 451.897031 321.215103 L 451.958962 321.403568 L 452.020892 321.215103 L 452.144753 321.592033 L 452.330545 321.026638 L 452.454406 321.403568 L 452.825989 320.272777 L 452.887919 320.461242 L 452.94985 320.272777 L 453.073711 320.649707 L 453.135641 320.461242 L 453.197572 320.649707 L 453.259502 320.461242 L 453.383363 320.838173 L 453.445294 320.649707 L 453.693016 321.403568 L 453.878807 320.838173 L 454.002668 321.215103 L 454.064599 321.026638 L 454.126529 321.215103 L 454.18846 321.026638 L 454.25039 321.215103 L 454.312321 321.026638 L 454.374251 321.215103 L 454.436182 321.026638 L 454.498112 321.215103 L 454.683904 320.649707 L 455.117417 321.968963 L 455.179348 321.780498 L 455.303209 322.157428 L 455.365139 321.968963 L 455.42707 322.157428 L 455.550931 321.780498 L 455.674792 322.157428 L 455.984444 321.215103 L 456.046375 321.403568 L 456.108305 321.215103 L 456.170236 321.403568 L 456.232166 321.215103 L 456.479888 321.968963 L 456.541819 321.780498 L 456.603749 321.968963 L 456.66568 321.780498 L 456.72761 321.968963 L 457.161124 320.649707 L 457.223054 320.838173 L 457.284985 320.649707 L 457.408846 321.026638 L 457.532707 320.649707 L 457.594637 320.838173 L 457.718498 320.461242 L 458.213942 321.968963 L 458.275873 321.780498 L 458.337803 321.968963 L 458.399734 321.780498 L 458.647456 322.534358 L 458.709386 322.345893 L 458.833247 322.722824 L 459.019039 322.157428 L 459.080969 322.345893 L 459.1429 322.157428 L 459.328691 322.722824 L 459.390622 322.534358 L 459.638344 323.288219 L 459.762205 322.911289 L 459.947996 323.476684 L 460.009927 323.288219 L 460.257649 324.042079 L 460.319579 323.853614 L 460.44344 324.230544 L 460.567301 323.853614 L 460.629232 324.042079 L 460.815023 323.476684 L 460.876954 323.665149 L 461.000815 323.288219 L 461.124676 323.665149 L 461.186606 323.476684 L 461.434328 324.230544 L 461.496259 324.042079 L 461.62012 324.419009 L 461.743981 324.042079 L 461.867842 324.419009 L 461.929772 324.230544 L 462.053633 324.607475 L 462.115564 324.419009 L 462.177494 324.607475 L 462.301355 324.230544 L 462.487147 324.79594 L 462.549077 324.607475 L 462.734869 325.17287 L 462.796799 324.984405 L 462.85873 325.17287 L 462.92066 324.984405 L 462.982591 325.17287 L 463.044521 324.984405 L 463.106452 325.17287 L 463.230313 324.79594 L 463.478035 325.5498 L 463.601896 325.17287 L 463.663826 325.361335 L 463.725757 325.17287 L 463.849618 325.5498 L 463.911548 325.361335 L 463.973479 325.5498 L 464.035409 325.361335 L 464.221201 325.92673 L 464.283131 325.738265 L 464.406992 326.115195 L 464.778575 324.984405 L 464.840506 325.17287 L 464.964367 324.79594 L 465.026297 324.984405 L 465.212089 324.419009 L 465.274019 324.607475 L 465.39788 324.230544 L 465.459811 324.419009 L 465.583672 324.042079 L 465.645602 324.230544 L 466.017185 323.099754 L 466.079116 323.288219 L 466.141046 323.099754 L 466.450699 324.042079 L 466.57456 323.665149 L 466.63649 323.853614 L 466.822282 323.288219 L 466.884212 323.476684 L 467.070004 322.911289 L 467.193865 323.288219 L 467.379656 322.722824 L 467.565448 323.288219 L 467.8751 322.345893 L 467.937031 322.534358 L 467.998961 322.345893 L 468.246683 323.099754 L 468.308614 322.911289 L 468.432475 323.288219 L 468.494405 323.099754 L 468.556336 323.288219 L 468.680197 322.911289 L 468.865988 323.476684 L 469.05178 322.911289 L 469.299502 323.665149 L 469.485293 323.099754 L 469.671085 323.665149 L 469.794946 323.288219 L 469.856876 323.476684 L 469.980737 323.099754 L 470.104598 323.476684 L 470.166529 323.288219 L 470.228459 323.476684 L 470.29039 323.288219 L 470.414251 323.665149 L 470.476181 323.476684 L 470.538112 323.665149 L 470.661973 323.288219 L 470.723903 323.476684 L 470.785834 323.288219 L 470.847764 323.476684 L 470.909695 323.288219 L 470.971625 323.476684 L 471.033556 323.288219 L 471.095486 323.476684 L 471.281278 322.911289 L 471.467069 323.476684 L 471.59093 323.099754 L 471.776722 323.665149 L 471.900583 323.288219 L 471.962513 323.476684 L 472.024444 323.288219 L 472.148305 323.665149 L 472.210235 323.476684 L 472.272166 323.665149 L 472.334096 323.476684 L 472.519888 324.042079 L 472.581818 323.853614 L 472.76761 324.419009 L 473.139193 323.288219 L 473.201123 323.476684 L 473.263054 323.288219 L 473.324984 323.476684 L 473.386915 323.288219 L 473.448845 323.476684 L 473.510776 323.288219 L 473.572706 323.476684 L 473.634637 323.288219 L 473.758498 323.665149 L 474.253942 322.157428 L 474.315872 322.345893 L 474.377803 322.157428 L 474.439733 322.345893 L 474.501664 322.157428 L 474.563594 322.345893 L 474.625525 322.157428 L 474.749386 322.534358 L 474.873247 322.157428 L 474.935177 322.345893 L 474.997108 322.157428 L 475.059038 322.345893 L 475.120969 322.157428 L 475.24483 322.534358 L 475.368691 322.157428 L 475.430621 322.345893 L 475.492552 322.157428 L 475.554482 322.345893 L 475.616413 322.157428 L 475.678343 322.345893 L 475.802204 321.968963 L 475.864135 322.157428 L 476.111857 321.403568 L 476.235718 321.780498 L 476.607301 320.649707 L 476.731162 321.026638 L 476.793092 320.838173 L 476.855023 321.026638 L 476.978884 320.649707 L 477.040814 320.838173 L 477.412397 319.707382 L 477.536258 320.084312 L 477.72205 319.518917 L 477.78398 319.707382 L 477.845911 319.518917 L 477.969772 319.895847 L 478.031702 319.707382 L 478.093633 319.895847 L 478.155563 319.707382 L 478.279424 320.084312 L 478.341355 319.895847 L 478.465216 320.272777 L 478.589077 319.895847 L 478.774868 320.461242 L 479.084521 319.518917 L 479.146451 319.707382 L 479.208382 319.518917 L 479.270312 319.707382 L 479.456104 319.141987 L 479.641895 319.707382 L 479.765756 319.330452 L 479.827687 319.518917 L 479.889617 319.330452 L 480.013478 319.707382 L 480.075409 319.518917 L 480.19927 319.895847 L 480.323131 319.518917 L 480.570853 320.272777 L 480.632783 320.084312 L 480.694714 320.272777 L 480.818575 319.895847 L 480.880505 320.084312 L 480.942436 319.895847 L 481.190158 320.649707 L 481.252088 320.461242 L 481.314019 320.649707 L 481.375949 320.461242 L 481.43788 320.649707 L 481.49981 320.461242 L 481.685602 321.026638 L 481.871393 320.461242 L 482.057185 321.026638 L 482.181046 320.649707 L 482.552629 321.780498 L 482.862281 320.838173 L 482.924212 321.026638 L 483.048073 320.649707 L 483.110003 320.838173 L 483.171934 320.649707 L 483.233864 320.838173 L 483.357725 320.461242 L 483.419656 320.649707 L 483.481586 320.461242 L 483.605447 320.838173 L 483.667378 320.649707 L 483.729308 320.838173 L 483.9151 320.272777 L 484.162822 321.026638 L 484.224752 320.838173 L 484.286683 321.026638 L 484.348613 320.838173 L 484.472474 321.215103 L 484.534405 321.026638 L 484.596335 321.215103 L 484.720196 320.838173 L 484.782127 321.026638 L 484.844057 320.838173 L 485.029849 321.403568 L 485.091779 321.215103 L 485.15371 321.403568 L 485.21564 321.215103 L 485.339501 321.592033 L 485.401432 321.403568 L 485.463362 321.592033 L 485.649154 321.026638 L 485.711084 321.215103 L 485.773015 321.026638 L 485.834945 321.215103 L 485.958806 320.838173 L 486.020737 321.026638 L 486.206528 320.461242 L 486.268459 320.649707 L 486.330389 320.461242 L 486.39232 320.649707 L 486.45425 320.461242 L 486.825833 321.592033 L 486.949694 321.215103 L 487.073555 321.592033 L 487.135486 321.403568 L 487.197416 321.592033 L 487.259347 321.403568 L 487.63093 322.534358 L 487.69286 322.345893 L 487.816721 322.722824 L 488.126374 321.780498 L 488.250235 322.157428 L 488.312165 321.968963 L 488.436026 322.345893 L 488.497957 322.157428 L 488.621818 322.534358 L 488.683748 322.345893 L 488.745679 322.534358 L 488.86954 322.157428 L 488.93147 322.345893 L 488.993401 322.157428 L 489.179192 322.722824 L 489.303053 322.345893 L 489.426914 322.722824 L 489.550775 322.345893 L 489.736567 322.911289 L 489.860428 322.534358 L 489.922358 322.722824 L 490.046219 322.345893 L 490.10815 322.534358 L 490.232011 322.157428 L 490.293941 322.345893 L 490.355872 322.157428 L 490.417802 322.345893 L 490.541663 321.968963 L 490.603594 322.157428 L 490.665524 321.968963 L 490.975177 322.911289 L 491.037107 322.722824 L 491.099038 322.911289 L 491.160968 322.722824 L 491.222899 322.911289 L 491.284829 322.722824 L 491.34676 322.911289 L 491.470621 322.534358 L 491.532551 322.722824 L 491.718343 322.157428 L 491.966065 322.911289 L 492.027995 322.722824 L 492.151856 323.099754 L 492.213787 322.911289 L 492.275717 323.099754 L 492.6473 321.968963 L 492.956953 322.911289 L 493.018883 322.722824 L 493.266605 323.476684 L 493.328536 323.288219 L 493.514327 323.853614 L 493.576258 323.665149 L 493.700119 324.042079 L 493.762049 323.853614 L 493.82398 324.042079 L 494.071702 323.288219 L 494.195563 323.665149 L 494.257493 323.476684 L 494.381354 323.853614 L 494.443285 323.665149 L 494.629076 324.230544 L 494.691007 324.042079 L 494.752937 324.230544 L 494.876798 323.853614 L 495.000659 324.230544 L 495.06259 324.042079 L 495.248381 324.607475 L 495.372242 324.230544 L 495.558034 324.79594 L 495.805756 324.042079 L 495.929617 324.419009 L 495.991547 324.230544 L 496.239269 324.984405 L 496.3012 324.79594 L 496.425061 325.17287 L 496.672783 324.419009 L 496.796644 324.79594 L 496.858574 324.607475 L 496.920505 324.79594 L 496.982435 324.607475 L 497.106296 324.984405 L 497.168227 324.79594 L 497.230157 324.984405 L 497.292088 324.79594 L 497.354018 324.984405 L 497.415949 324.79594 L 497.663671 325.5498 L 497.911393 324.79594 L 497.973323 324.984405 L 498.035254 324.79594 L 498.221045 325.361335 L 498.282976 325.17287 L 498.530698 325.92673 L 498.592628 325.738265 L 498.654559 325.92673 L 498.77842 325.5498 L 498.84035 325.738265 L 499.026142 325.17287 L 499.273864 325.92673 L 499.397725 325.5498 L 499.459655 325.738265 L 499.521586 325.5498 L 499.831238 326.492126 L 499.893169 326.303661 L 500.01703 326.680591 L 500.140891 326.303661 L 500.388613 327.057521 L 500.698265 326.115195 L 500.760196 326.303661 L 500.884057 325.92673 L 500.945987 326.115195 L 501.069848 325.738265 L 501.131779 325.92673 L 501.193709 325.738265 L 501.25564 325.92673 L 501.31757 325.738265 L 501.689153 326.869056 L 501.813014 326.492126 L 502.308458 327.999846 L 502.370389 327.811381 L 502.49425 328.188312 L 502.55618 327.999846 L 502.680041 328.376777 L 502.803902 327.999846 L 502.927763 328.376777 L 502.989694 328.188312 L 503.051624 328.376777 L 503.113555 328.188312 L 503.175485 328.376777 L 503.237416 328.188312 L 503.299346 328.376777 L 503.361277 328.188312 L 503.547068 328.753707 L 503.73286 328.188312 L 503.856721 328.565242 L 503.980582 328.188312 L 504.104443 328.565242 L 504.166373 328.376777 L 504.290234 328.753707 L 504.476026 328.188312 L 504.537956 328.376777 L 504.599887 328.188312 L 504.909539 329.130637 L 505.0334 328.753707 L 505.095331 328.942172 L 505.404983 327.999846 L 505.466914 328.188312 L 505.528844 327.999846 L 505.652705 328.376777 L 505.838497 327.811381 L 505.962358 328.188312 L 506.024288 327.999846 L 506.148149 328.376777 L 506.395871 327.622916 L 506.457802 327.811381 L 506.581663 327.434451 L 506.643593 327.622916 L 506.767454 327.245986 L 506.829385 327.434451 L 506.953246 327.057521 L 507.015176 327.245986 L 507.077107 327.057521 L 507.200968 327.434451 L 507.324829 327.057521 L 507.572551 327.811381 L 507.634481 327.622916 L 507.882203 328.376777 L 507.944134 328.188312 L 508.006064 328.376777 L 508.315717 327.434451 L 508.439578 327.811381 L 508.501508 327.622916 L 508.625369 327.999846 L 508.74923 327.622916 L 508.873091 327.999846 L 508.935022 327.811381 L 508.996952 327.999846 L 509.058883 327.811381 L 509.120813 327.999846 L 509.182744 327.811381 L 509.430466 328.565242 L 509.492396 328.376777 L 509.554327 328.565242 L 509.616257 328.376777 L 509.740118 328.753707 L 509.863979 328.376777 L 510.049771 328.942172 L 510.235562 328.376777 L 510.297493 328.565242 L 510.359423 328.376777 L 510.483284 328.753707 L 510.669076 328.188312 L 510.854867 328.753707 L 511.102589 327.999846 L 511.16452 328.188312 L 511.350311 327.622916 L 511.412242 327.811381 L 511.474172 327.622916 L 511.536103 327.811381 L 511.659964 327.434451 L 511.845755 327.999846 L 511.969616 327.622916 L 512.40313 328.942172 L 512.588921 328.376777 L 512.650852 328.565242 L 512.712782 328.376777 L 512.836643 328.753707 L 512.960504 328.376777 L 513.022435 328.565242 L 513.270157 327.811381 L 513.332087 327.999846 L 513.579809 327.245986 L 513.64174 327.434451 L 513.765601 327.057521 L 513.889462 327.434451 L 514.013323 327.057521 L 514.075253 327.245986 L 514.137184 327.057521 L 514.199114 327.245986 L 514.261045 327.057521 L 514.384906 327.434451 L 514.570697 326.869056 L 514.694558 327.245986 L 514.756489 327.057521 L 514.818419 327.245986 L 514.88035 327.057521 L 515.128072 327.811381 L 515.561585 326.492126 L 515.623516 326.680591 L 515.685446 326.492126 L 515.747377 326.680591 L 515.809307 326.492126 L 515.933168 326.869056 L 515.995099 326.680591 L 516.057029 326.869056 L 516.18089 326.492126 L 516.242821 326.680591 L 516.304751 326.492126 L 516.428612 326.869056 L 516.490543 326.680591 L 516.552473 326.869056 L 516.614404 326.680591 L 516.924056 327.622916 L 516.985987 327.434451 L 517.047917 327.622916 L 517.171778 327.245986 L 517.233709 327.434451 L 517.543361 326.492126 L 517.605292 326.680591 L 517.667222 326.492126 L 517.729153 326.680591 L 517.853014 326.303661 L 518.038805 326.869056 L 518.162666 326.492126 L 518.286527 326.869056 L 518.348458 326.680591 L 518.472319 327.057521 L 518.534249 326.869056 L 518.65811 327.245986 L 518.720041 327.057521 L 518.781971 327.245986 L 518.905832 326.869056 L 518.967763 327.057521 L 519.153554 326.492126 L 519.339346 327.057521 L 519.401276 326.869056 L 519.525137 327.245986 L 519.648998 326.869056 L 519.89672 327.622916 L 520.020581 327.245986 L 520.082512 327.434451 L 520.206373 327.057521 L 520.454095 327.811381 L 520.639886 327.245986 L 520.763747 327.622916 L 520.949539 327.057521 L 521.011469 327.245986 L 521.0734 327.057521 L 521.13533 327.245986 L 521.197261 327.057521 L 521.321122 327.434451 L 521.444983 327.057521 L 521.568844 327.434451 L 521.754635 326.869056 L 521.816566 327.057521 L 521.878496 326.869056 L 521.940427 327.057521 L 522.002357 326.869056 L 522.31201 327.811381 L 522.37394 327.622916 L 522.435871 327.811381 L 522.621662 327.245986 L 522.683593 327.434451 L 522.807454 327.057521 L 522.993245 327.622916 L 523.426759 326.303661 L 523.798342 327.434451 L 523.922203 327.057521 L 524.046064 327.434451 L 524.107994 327.245986 L 524.417647 328.188312 L 524.541508 327.811381 L 524.665369 328.188312 L 524.727299 327.999846 L 524.78923 328.188312 L 524.913091 327.811381 L 525.036952 328.188312 L 525.098882 327.999846 L 525.160813 328.188312 L 525.470465 327.245986 L 525.594326 327.622916 L 525.780118 327.057521 L 525.842048 327.245986 L 525.965909 326.869056 L 526.151701 327.434451 L 526.213631 327.245986 L 526.399423 327.811381 L 526.647145 327.057521 L 526.709075 327.245986 L 526.771006 327.057521 L 526.832936 327.245986 L 527.018728 326.680591 L 527.26645 327.434451 L 527.514172 326.680591 L 527.638033 327.057521 L 527.699963 326.869056 L 527.823824 327.245986 L 527.885755 327.057521 L 527.947685 327.245986 L 528.009616 327.057521 L 528.071546 327.245986 L 528.257338 326.680591 L 528.319268 326.869056 L 528.628921 325.92673 L 528.690851 326.115195 L 528.876643 325.5498 L 528.938573 325.738265 L 529.124365 325.17287 L 529.434017 326.115195 L 529.619809 325.5498 L 529.867531 326.303661 L 530.053322 325.738265 L 530.177183 326.115195 L 530.239114 325.92673 L 530.301044 326.115195 L 530.362975 325.92673 L 530.486836 326.303661 L 530.548766 326.115195 L 530.610697 326.303661 L 530.734558 325.92673 L 530.98228 326.680591 L 531.353863 325.5498 L 531.477724 325.92673 L 531.539654 325.738265 L 531.725446 326.303661 L 531.849307 325.92673 L 532.035098 326.492126 L 532.097029 326.303661 L 532.22089 326.680591 L 532.28282 326.492126 L 532.468612 327.057521 L 532.654403 326.492126 L 532.716334 326.680591 L 532.778264 326.492126 L 532.840195 326.680591 L 532.902125 326.492126 L 533.335639 327.811381 L 533.397569 327.622916 L 533.4595 327.811381 L 533.645291 327.245986 L 533.707222 327.434451 L 533.769152 327.245986 L 533.831083 327.434451 L 533.954944 327.057521 L 534.016874 327.245986 L 534.078805 327.057521 L 534.326527 327.811381 L 534.450388 327.434451 L 534.512318 327.622916 L 534.574249 327.434451 L 534.69811 327.811381 L 534.76004 327.622916 L 534.821971 327.811381 L 535.007762 327.245986 L 535.131623 327.622916 L 535.317415 327.057521 L 535.441276 327.434451 L 535.750928 326.492126 L 535.812859 326.680591 L 536.122511 325.738265 L 536.308303 326.303661 L 536.494094 325.738265 L 536.556025 325.92673 L 536.617955 325.738265 L 536.679886 325.92673 L 536.741816 325.738265 L 536.865677 326.115195 L 537.051469 325.5498 L 537.113399 325.738265 L 537.299191 325.17287 L 537.361121 325.361335 L 537.484982 324.984405 L 537.546913 325.17287 L 537.608843 324.984405 L 537.670774 325.17287 L 537.980426 324.230544 L 538.290079 325.17287 L 538.352009 324.984405 L 538.47587 325.361335 L 538.537801 325.17287 L 538.599731 325.361335 L 538.661662 325.17287 L 538.723592 325.361335 L 538.971314 324.607475 L 539.033245 324.79594 L 539.095175 324.607475 L 539.466758 325.738265 L 539.71448 324.984405 L 539.900272 325.5498 L 540.147994 324.79594 L 540.209924 324.984405 L 540.271855 324.79594 L 540.395716 325.17287 L 540.457646 324.984405 L 540.643438 325.5498 L 540.705368 325.361335 L 540.767299 325.5498 L 540.95309 324.984405 L 541.015021 325.17287 L 541.076951 324.984405 L 541.138882 325.17287 L 541.200812 324.984405 L 541.820117 326.869056 L 541.882048 326.680591 L 542.005909 327.057521 L 542.067839 326.869056 L 542.1917 327.245986 L 542.315561 326.869056 L 542.377492 327.057521 L 542.439422 326.869056 L 542.811005 327.999846 L 542.872936 327.811381 L 542.996797 328.188312 L 543.120658 327.811381 L 543.182588 327.999846 L 543.36838 327.434451 L 543.616102 328.188312 L 543.863824 327.434451 L 543.925754 327.622916 L 544.049615 327.245986 L 544.173476 327.622916 L 544.421198 326.869056 L 544.483129 327.057521 L 544.545059 326.869056 L 544.60699 327.057521 L 544.66892 326.869056 L 544.792781 327.245986 L 544.854712 327.057521 L 544.978573 327.434451 L 545.040503 327.245986 L 545.164364 327.622916 L 545.226295 327.434451 L 545.288225 327.622916 L 545.350156 327.434451 L 545.412086 327.622916 L 545.474017 327.434451 L 545.597878 327.811381 L 545.721739 327.434451 L 545.8456 327.811381 L 545.969461 327.434451 L 546.093322 327.811381 L 546.341044 327.057521 L 546.464905 327.434451 L 546.526835 327.245986 L 546.588766 327.434451 L 546.650696 327.245986 L 546.712627 327.434451 L 546.836488 327.057521 L 547.022279 327.622916 L 547.14614 327.245986 L 547.270001 327.622916 L 547.331932 327.434451 L 547.393862 327.622916 L 547.517723 327.245986 L 547.579654 327.434451 L 547.641584 327.245986 L 547.703515 327.434451 L 547.765445 327.245986 L 547.951237 327.811381 L 548.075098 327.434451 L 548.137028 327.622916 L 548.260889 327.245986 L 548.38475 327.622916 L 548.446681 327.434451 L 548.508611 327.622916 L 548.570542 327.434451 L 548.632472 327.622916 L 548.818264 327.057521 L 548.942125 327.434451 L 549.065986 327.057521 L 549.251777 327.622916 L 549.313708 327.434451 L 549.375638 327.622916 L 549.437569 327.434451 L 549.56143 327.811381 L 549.747221 327.245986 L 549.871082 327.622916 L 549.933013 327.434451 L 549.994943 327.622916 L 550.056874 327.434451 L 550.180735 327.811381 L 550.304596 327.434451 L 550.366526 327.622916 L 550.614248 326.869056 L 550.676179 327.057521 L 550.738109 326.869056 L 550.80004 327.057521 L 550.86197 326.869056 L 550.923901 327.057521 L 550.985831 326.869056 L 551.047762 327.057521 L 551.109692 326.869056 L 551.295484 327.434451 L 551.357414 327.245986 L 551.419345 327.434451 L 551.481275 327.245986 L 551.605136 327.622916 L 551.914789 326.680591 L 552.10058 327.245986 L 552.162511 327.057521 L 552.286372 327.434451 L 552.348302 327.245986 L 552.472163 327.622916 L 552.534094 327.434451 L 552.719885 327.999846 L 552.843746 327.622916 L 552.967607 327.999846 L 553.153399 327.434451 L 553.27726 327.811381 L 553.33919 327.622916 L 553.401121 327.811381 L 553.463051 327.622916 L 553.524982 327.811381 L 554.144287 325.92673 L 554.51587 327.057521 L 554.577801 326.869056 L 554.639731 327.057521 L 554.825523 326.492126 L 554.949384 326.869056 L 555.073245 326.492126 L 555.135175 326.680591 L 555.197106 326.492126 L 555.259036 326.680591 L 555.320967 326.492126 L 555.382897 326.680591 L 555.506758 326.303661 L 555.630619 326.680591 L 555.69255 326.492126 L 555.75448 326.680591 L 555.878341 326.303661 L 555.940272 326.492126 L 556.064133 326.115195 L 556.126063 326.303661 L 556.435716 325.361335 L 556.683438 326.115195 L 556.807299 325.738265 L 557.055021 326.492126 L 557.116951 326.303661 L 557.240812 326.680591 L 557.364673 326.303661 L 557.550465 326.869056 L 557.612395 326.680591 L 557.674326 326.869056 L 557.798187 326.492126 L 557.860117 326.680591 L 557.922048 326.492126 L 558.045909 326.869056 L 558.16977 326.492126 L 558.2317 326.680591 L 558.479422 325.92673 L 558.541353 326.115195 L 558.603283 325.92673 L 558.665214 326.115195 L 558.727144 325.92673 L 558.789075 326.115195 L 558.851005 325.92673 L 558.912936 326.115195 L 558.974866 325.92673 L 559.036797 326.115195 L 559.098727 325.92673 L 559.222588 326.303661 L 559.40838 325.738265 L 559.47031 325.92673 L 559.656102 325.361335 L 559.841893 325.92673 L 560.027685 325.361335 L 560.213476 325.92673 L 560.461198 325.17287 L 560.770851 326.115195 L 560.832781 325.92673 L 560.956642 326.303661 L 561.018573 326.115195 L 561.080503 326.303661 L 561.142434 326.115195 L 561.266295 326.492126 L 561.328225 326.303661 L 561.390156 326.492126 L 561.452086 326.303661 L 561.514017 326.492126 L 561.575947 326.303661 L 561.699808 326.680591 L 561.761739 326.492126 L 561.823669 326.680591 L 561.94753 326.303661 L 562.133322 326.869056 L 562.257183 326.492126 L 562.319113 326.680591 L 562.442974 326.303661 L 562.628766 326.869056 L 562.752627 326.492126 L 563.000349 327.245986 L 563.062279 327.057521 L 563.18614 327.434451 L 563.310001 327.057521 L 563.371932 327.245986 L 563.619654 326.492126 L 563.681584 326.680591 L 563.805445 326.303661 L 563.929306 326.680591 L 563.991237 326.492126 L 564.053167 326.680591 L 564.115098 326.492126 L 564.36282 327.245986 L 564.548611 326.680591 L 564.610542 326.869056 L 564.672472 326.680591 L 564.734403 326.869056 L 564.858264 326.492126 L 564.920194 326.680591 L 564.982125 326.492126 L 565.725291 328.753707 L 565.849152 328.376777 L 565.973013 328.753707 L 566.158804 328.188312 L 566.220735 328.376777 L 566.344596 327.999846 L 566.468457 328.376777 L 566.530387 328.188312 L 566.592318 328.376777 L 566.654248 328.188312 L 566.963901 329.130637 L 567.087762 328.753707 L 567.149692 328.942172 L 567.273553 328.565242 L 567.335484 328.753707 L 567.459345 328.376777 L 567.521275 328.565242 L 567.583206 328.376777 L 567.707067 328.753707 L 567.768997 328.565242 L 568.016719 329.319102 L 568.07865 329.130637 L 568.14058 329.319102 L 568.202511 329.130637 L 568.326372 329.507567 L 568.512163 328.942172 L 568.574094 329.130637 L 568.697955 328.753707 L 568.759885 328.942172 L 568.821816 328.753707 L 568.883746 328.942172 L 569.069538 328.376777 L 569.131468 328.565242 L 569.255329 328.188312 L 569.31726 328.376777 L 569.37919 328.188312 L 569.503051 328.565242 L 569.564982 328.376777 L 569.750773 328.942172 L 569.812704 328.753707 L 569.936565 329.130637 L 570.060426 328.753707 L 570.122356 328.942172 L 570.370078 328.188312 L 570.55587 328.753707 L 570.679731 328.376777 L 570.803592 328.753707 L 570.865522 328.565242 L 570.927453 328.753707 L 571.175175 327.999846 L 571.299036 328.376777 L 571.360966 328.188312 L 571.484827 328.565242 L 571.546758 328.376777 L 571.608688 328.565242 L 571.732549 328.188312 L 571.79448 328.376777 L 571.918341 327.999846 L 572.475715 329.696032 L 572.661507 329.130637 L 572.723437 329.319102 L 572.785368 329.130637 L 572.847298 329.319102 L 572.909229 329.130637 L 572.971159 329.319102 L 573.09502 328.942172 L 573.342742 329.696032 L 573.528534 329.130637 L 573.590464 329.319102 L 573.652395 329.130637 L 573.714325 329.319102 L 573.776256 329.130637 L 573.838186 329.319102 L 573.962047 328.942172 L 574.023978 329.130637 L 574.085908 328.942172 L 574.147839 329.130637 L 574.209769 328.942172 L 574.395561 329.507567 L 574.519422 329.130637 L 574.829074 330.072963 L 574.891005 329.884497 L 575.014866 330.261428 L 575.200657 329.696032 L 575.324518 330.072963 L 575.386449 329.884497 L 575.448379 330.072963 L 575.57224 329.696032 L 575.696101 330.072963 L 575.758032 329.884497 L 576.005754 330.638358 L 576.129615 330.261428 L 576.191545 330.449893 L 576.253476 330.261428 L 576.315406 330.449893 L 576.377337 330.261428 L 576.439267 330.449893 L 576.872781 329.130637 L 577.058572 329.696032 L 577.120503 329.507567 L 577.244364 329.884497 L 577.306294 329.696032 L 577.554016 330.449893 L 577.615947 330.261428 L 577.739808 330.638358 L 577.801738 330.449893 L 577.863669 330.638358 L 577.98753 330.261428 L 578.04946 330.449893 L 578.111391 330.261428 L 578.297182 330.826823 L 578.606835 329.884497 L 578.668765 330.072963 L 578.730696 329.884497 L 578.978418 330.638358 L 579.040348 330.449893 L 579.22614 331.015288 L 579.28807 330.826823 L 579.350001 331.015288 L 579.535792 330.449893 L 579.597723 330.638358 L 579.845445 329.884497 L 579.969306 330.261428 L 580.093167 329.884497 L 580.217028 330.261428 L 580.278958 330.072963 L 580.340889 330.261428 L 580.402819 330.072963 L 580.46475 330.261428 L 580.712472 329.507567 L 580.836333 329.884497 L 580.960194 329.507567 L 581.022124 329.696032 L 581.145985 329.319102 L 581.207916 329.507567 L 581.269846 329.319102 L 581.393707 329.696032 L 581.517568 329.319102 L 581.579499 329.507567 L 581.70336 329.130637 L 581.889151 329.696032 L 581.951082 329.507567 L 582.013012 329.696032 L 582.074943 329.507567 L 582.198804 329.884497 L 582.260734 329.696032 L 582.322665 329.884497 L 582.384595 329.696032 L 582.446526 329.884497 L 582.694248 329.130637 L 582.756178 329.319102 L 582.880039 328.942172 L 583.251622 330.072963 L 583.313553 329.884497 L 583.437414 330.261428 L 583.561275 329.884497 L 583.685136 330.261428 L 583.747066 330.072963 L 583.808997 330.261428 L 583.994788 329.696032 L 584.056719 329.884497 L 584.118649 329.696032 L 584.18058 329.884497 L 584.366371 329.319102 L 584.428302 329.507567 L 584.923746 327.999846 L 585.047607 328.376777 L 585.171468 327.999846 L 585.357259 328.565242 L 585.543051 327.999846 L 585.790773 328.753707 L 585.914634 328.376777 L 585.976564 328.565242 L 586.100425 328.188312 L 586.410078 329.130637 L 586.472008 328.942172 L 586.6578 329.507567 L 586.71973 329.319102 L 586.781661 329.507567 L 586.905522 329.130637 L 587.029383 329.507567 L 587.091313 329.319102 L 587.153244 329.507567 L 587.277105 329.130637 L 587.400966 329.507567 L 587.462896 329.319102 L 587.524827 329.507567 L 587.586757 329.319102 L 587.710618 329.696032 L 587.95834 328.942172 L 588.082201 329.319102 L 588.206062 328.942172 L 588.329923 329.319102 L 588.391854 329.130637 L 588.515715 329.507567 L 588.577645 329.319102 L 588.825367 330.072963 L 588.949228 329.696032 L 589.19695 330.449893 L 589.382742 329.884497 L 589.444672 330.072963 L 589.506603 329.884497 L 589.816255 330.826823 L 589.878186 330.638358 L 589.940116 330.826823 L 590.002047 330.638358 L 590.249769 331.392218 L 590.311699 331.203753 L 590.37363 331.392218 L 590.621352 330.638358 L 590.683282 330.826823 L 590.745213 330.638358 L 590.807143 330.826823 L 590.869074 330.638358 L 590.931004 330.826823 L 590.992935 330.638358 L 591.054865 330.826823 L 591.178726 330.449893 L 591.302587 330.826823 L 591.426448 330.449893 L 591.488379 330.638358 L 591.61224 330.261428 L 591.798031 330.826823 L 591.859962 330.638358 L 591.921892 330.826823 L 591.983823 330.638358 L 592.169614 331.203753 L 592.231545 331.015288 L 592.355406 331.392218 L 592.479267 331.015288 L 592.541197 331.203753 L 592.603128 331.015288 L 592.665058 331.203753 L 592.726989 331.015288 L 592.726989 331.015288 " style="fill:none;opacity:0.9;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_13"> <path clip-path="url(#pf8d0b4ca52)" d="M 85.454261 307.484074 L 85.516192 307.645615 L 85.640053 307.322532 L 85.763914 307.645615 L 85.887775 307.322532 L 85.949705 307.484074 L 86.011636 307.322532 L 86.135497 307.645615 L 86.197427 307.484074 L 86.259358 307.645615 L 86.321288 307.484074 L 86.383219 307.645615 L 86.56901 307.160991 L 86.630941 307.322532 L 86.692871 307.160991 L 86.754802 307.322532 L 86.816732 307.160991 L 86.878663 307.322532 L 87.064454 306.837908 L 87.126385 306.999449 L 87.374107 306.353283 L 87.436037 306.514825 L 87.621829 306.0302 L 87.683759 306.191742 L 87.993412 305.384034 L 88.055342 305.545576 L 88.303064 304.89941 L 88.550786 305.545576 L 88.674647 305.222493 L 88.736578 305.384034 L 88.798508 305.222493 L 88.860439 305.384034 L 88.922369 305.222493 L 88.9843 305.384034 L 89.108161 305.060951 L 89.355883 305.707117 L 89.417813 305.545576 L 89.479744 305.707117 L 89.541674 305.545576 L 89.727466 306.0302 L 89.851327 305.707117 L 89.913257 305.868659 L 89.975188 305.707117 L 90.037118 305.868659 L 90.28484 305.222493 L 90.470632 305.707117 L 90.532562 305.545576 L 90.594493 305.707117 L 90.656423 305.545576 L 90.718354 305.707117 L 90.842215 305.384034 L 90.966076 305.707117 L 91.089937 305.384034 L 91.337659 306.0302 L 91.46152 305.707117 L 91.52345 305.868659 L 91.647311 305.545576 L 91.709242 305.707117 L 91.771172 305.545576 L 91.895033 305.868659 L 92.018894 305.545576 L 92.080825 305.707117 L 92.204686 305.384034 L 92.266616 305.545576 L 92.514338 304.89941 L 92.576269 305.060951 L 92.70013 304.737868 L 92.76206 304.89941 L 92.823991 304.737868 L 92.885921 304.89941 L 92.947852 304.737868 L 93.009782 304.89941 L 93.133643 304.576327 L 93.257504 304.89941 L 93.319435 304.737868 L 93.381365 304.89941 L 93.443296 304.737868 L 93.505226 304.89941 L 93.629087 304.576327 L 93.752948 304.89941 L 94.00067 304.253244 L 94.062601 304.414785 L 94.186462 304.091702 L 94.372253 304.576327 L 94.434184 304.414785 L 94.496114 304.576327 L 94.743836 303.93016 L 94.805767 304.091702 L 94.929628 303.768619 L 95.053489 304.091702 L 95.17735 303.768619 L 95.425072 304.414785 L 95.487002 304.253244 L 95.610863 304.576327 L 95.858585 303.93016 L 96.168238 304.737868 L 96.230168 304.576327 L 96.354029 304.89941 L 96.41596 304.737868 L 96.663682 305.384034 L 96.725612 305.222493 L 96.787543 305.384034 L 96.849473 305.222493 L 97.221056 306.191742 L 97.468778 305.545576 L 97.530709 305.707117 L 97.902292 304.737868 L 97.964222 304.89941 L 98.150014 304.414785 L 98.211944 304.576327 L 98.397736 304.091702 L 98.521597 304.414785 L 98.645458 304.091702 L 98.831249 304.576327 L 98.89318 304.414785 L 98.95511 304.576327 L 99.078971 304.253244 L 99.202832 304.576327 L 99.698276 303.283994 L 99.760207 303.445536 L 99.822137 303.283994 L 99.884068 303.445536 L 99.945998 303.283994 L 100.007929 303.445536 L 100.069859 303.283994 L 100.13179 303.445536 L 100.503373 302.476287 L 100.813025 303.283994 L 101.122678 302.476287 L 101.246539 302.79937 L 101.308469 302.637828 L 101.43233 302.960911 L 101.494261 302.79937 L 101.618122 303.122453 L 101.865844 302.476287 L 101.989705 302.79937 L 102.113566 302.476287 L 102.175496 302.637828 L 102.237427 302.476287 L 102.299357 302.637828 L 102.423218 302.314745 L 102.485149 302.476287 L 102.60901 302.153204 L 102.67094 302.314745 L 102.732871 302.153204 L 102.856732 302.476287 L 102.980593 302.153204 L 103.042523 302.314745 L 103.166384 301.991662 L 103.228315 302.153204 L 103.352176 301.830121 L 103.414106 301.991662 L 103.476037 301.830121 L 103.661828 302.314745 L 103.785689 301.991662 L 103.84762 302.153204 L 103.971481 301.830121 L 104.033411 301.991662 L 104.095342 301.830121 L 104.157272 301.991662 L 104.281133 301.668579 L 104.652716 302.637828 L 104.900438 301.991662 L 104.962369 302.153204 L 105.14816 301.668579 L 105.272021 301.991662 L 105.519743 301.345496 L 105.767465 301.991662 L 106.015187 301.345496 L 106.077118 301.507038 L 106.139048 301.345496 L 106.200979 301.507038 L 106.32484 301.183955 L 106.38677 301.345496 L 106.448701 301.183955 L 106.572562 301.507038 L 106.634492 301.345496 L 106.696423 301.507038 L 106.758353 301.345496 L 106.820284 301.507038 L 106.882214 301.345496 L 106.944145 301.507038 L 107.068006 301.183955 L 107.129936 301.345496 L 107.377658 300.69933 L 107.439589 300.860872 L 107.62538 300.376247 L 107.687311 300.537789 L 107.811172 300.214706 L 107.935033 300.537789 L 108.120824 300.053164 L 108.244685 300.376247 L 108.368546 300.053164 L 108.430477 300.214706 L 108.554338 299.891623 L 108.616268 300.053164 L 108.678199 299.891623 L 108.740129 300.053164 L 108.987851 299.406998 L 109.049782 299.56854 L 109.111712 299.406998 L 109.297504 299.891623 L 109.545226 299.245457 L 109.669087 299.56854 L 109.792948 299.245457 L 110.164531 300.214706 L 110.226461 300.053164 L 110.288392 300.214706 L 110.536114 299.56854 L 110.598044 299.730081 L 110.845766 299.083915 L 110.907697 299.245457 L 110.969627 299.083915 L 111.155419 299.56854 L 111.217349 299.406998 L 111.27928 299.56854 L 111.34121 299.406998 L 111.403141 299.56854 L 111.465071 299.406998 L 111.527002 299.56854 L 111.588932 299.406998 L 111.650863 299.56854 L 111.960515 298.760832 L 112.084376 299.083915 L 112.208237 298.760832 L 112.270168 298.922373 L 112.332098 298.760832 L 112.394029 298.922373 L 112.641751 298.276207 L 112.703681 298.437749 L 112.827542 298.114666 L 112.951403 298.437749 L 113.013334 298.276207 L 113.075264 298.437749 L 113.137195 298.276207 L 113.261056 298.59929 L 113.322986 298.437749 L 113.384917 298.59929 L 113.446847 298.437749 L 113.570708 298.760832 L 113.694569 298.437749 L 113.7565 298.59929 L 113.942291 298.114666 L 114.004222 298.276207 L 114.190013 297.791583 L 114.375805 298.276207 L 114.499666 297.953124 L 114.561596 298.114666 L 114.809318 297.4685 L 114.871249 297.630041 L 114.99511 297.306958 L 115.118971 297.630041 L 115.304762 297.145417 L 115.366693 297.306958 L 115.490554 296.983875 L 115.614415 297.306958 L 115.676345 297.145417 L 115.738276 297.306958 L 116.047928 296.499251 L 116.171789 296.822334 L 116.23372 296.660792 L 116.29565 296.822334 L 116.543372 296.176168 L 116.605303 296.337709 L 116.729164 296.014626 L 116.853025 296.337709 L 116.914955 296.176168 L 116.976886 296.337709 L 117.596191 294.722294 L 117.658121 294.883836 L 117.843913 294.399211 L 118.153565 295.206919 L 118.277426 294.883836 L 118.339357 295.045377 L 118.401287 294.883836 L 118.463218 295.045377 L 118.587079 294.722294 L 118.77287 295.206919 L 118.834801 295.045377 L 119.020592 295.530002 L 119.082523 295.36846 L 119.144453 295.530002 L 119.206384 295.36846 L 119.268314 295.530002 L 119.516036 294.883836 L 119.577967 295.045377 L 119.763758 294.560753 L 119.825689 294.722294 L 119.887619 294.560753 L 119.94955 294.722294 L 120.073411 294.399211 L 120.321133 295.045377 L 120.383063 294.883836 L 120.444994 295.045377 L 120.506924 294.883836 L 120.630785 295.206919 L 120.878507 294.560753 L 121.002368 294.883836 L 121.064299 294.722294 L 121.126229 294.883836 L 121.312021 294.399211 L 121.559743 295.045377 L 121.745534 294.560753 L 121.869395 294.883836 L 121.931326 294.722294 L 121.993256 294.883836 L 122.302909 294.076128 L 122.364839 294.23767 L 122.42677 294.076128 L 122.4887 294.23767 L 122.550631 294.076128 L 122.674492 294.399211 L 122.860283 293.914586 L 122.922214 294.076128 L 123.046075 293.753045 L 123.169936 294.076128 L 123.355727 293.591503 L 123.479588 293.914586 L 123.603449 293.591503 L 123.66538 293.753045 L 123.851171 293.26842 L 123.975032 293.591503 L 124.036963 293.429962 L 124.098893 293.591503 L 124.284685 293.106879 L 124.346615 293.26842 L 124.532407 292.783796 L 124.594338 292.945337 L 124.780129 292.460713 L 124.84206 292.622254 L 124.90399 292.460713 L 124.965921 292.622254 L 125.089782 292.299171 L 125.151712 292.460713 L 125.213643 292.299171 L 125.337504 292.622254 L 125.399434 292.460713 L 125.461365 292.622254 L 125.523295 292.460713 L 125.585226 292.622254 L 125.709087 292.299171 L 125.956809 292.945337 L 126.018739 292.783796 L 126.08067 292.945337 L 126.1426 292.783796 L 126.204531 292.945337 L 126.266461 292.783796 L 126.390322 293.106879 L 126.452253 292.945337 L 126.514183 293.106879 L 126.699975 292.622254 L 126.823836 292.945337 L 126.885766 292.783796 L 127.009627 293.106879 L 127.133488 292.783796 L 127.195419 292.945337 L 127.31928 292.622254 L 127.38121 292.783796 L 127.505071 292.460713 L 127.752793 293.106879 L 127.876654 292.783796 L 128.000515 293.106879 L 128.248237 292.460713 L 128.372098 292.783796 L 128.434029 292.622254 L 128.55789 292.945337 L 128.867542 292.13763 L 128.929473 292.299171 L 128.991403 292.13763 L 129.053334 292.299171 L 129.115264 292.13763 L 129.177195 292.299171 L 129.301056 291.976088 L 129.486847 292.460713 L 129.672639 291.976088 L 129.734569 292.13763 L 129.982291 291.491464 L 130.044222 291.653005 L 130.106152 291.491464 L 130.168083 291.653005 L 130.353874 291.168381 L 130.415805 291.329922 L 130.601596 290.845298 L 130.663527 291.006839 L 130.849318 290.522215 L 130.911249 290.683756 L 131.03511 290.360673 L 131.158971 290.683756 L 131.220901 290.522215 L 131.282832 290.683756 L 131.344762 290.522215 L 131.406693 290.683756 L 131.468623 290.522215 L 131.530554 290.683756 L 131.964067 289.552966 L 132.149859 290.03759 L 132.397581 289.391424 L 132.583372 289.876049 L 132.707233 289.552966 L 132.769164 289.714507 L 132.831094 289.552966 L 132.954955 289.876049 L 133.078816 289.552966 L 133.140747 289.714507 L 133.264608 289.391424 L 133.636191 290.360673 L 133.883913 289.714507 L 133.945843 289.876049 L 134.069704 289.552966 L 134.131635 289.714507 L 134.255496 289.391424 L 134.317426 289.552966 L 134.379357 289.391424 L 134.503218 289.714507 L 134.627079 289.391424 L 134.689009 289.552966 L 134.81287 289.229883 L 134.874801 289.391424 L 134.998662 289.068341 L 135.060592 289.229883 L 135.122523 289.068341 L 135.184453 289.229883 L 135.246384 289.068341 L 135.432175 289.552966 L 135.494106 289.391424 L 135.679897 289.876049 L 135.98955 289.068341 L 136.113411 289.391424 L 136.299202 288.906799 L 136.423063 289.229883 L 136.546924 288.906799 L 136.670785 289.229883 L 136.732716 289.068341 L 136.856577 289.391424 L 137.475882 287.776009 L 137.537812 287.93755 L 137.599743 287.776009 L 137.723604 288.099092 L 137.785534 287.93755 L 137.847465 288.099092 L 137.971326 287.776009 L 138.095187 288.099092 L 138.342909 287.452926 L 138.404839 287.614467 L 138.590631 287.129843 L 138.714492 287.452926 L 138.838353 287.129843 L 138.900283 287.291384 L 139.024144 286.968301 L 139.209936 287.452926 L 139.333797 287.129843 L 139.457658 287.452926 L 139.581519 287.129843 L 139.70538 287.452926 L 139.76731 287.291384 L 139.829241 287.452926 L 140.138893 286.645218 L 140.200824 286.80676 L 140.262754 286.645218 L 140.448546 287.129843 L 140.510476 286.968301 L 140.696268 287.452926 L 140.758198 287.291384 L 140.882059 287.614467 L 140.94399 287.452926 L 141.00592 287.614467 L 141.067851 287.452926 L 141.129781 287.614467 L 141.191712 287.452926 L 141.377503 287.93755 L 141.563295 287.452926 L 141.872947 288.260633 L 142.058739 287.776009 L 142.120669 287.93755 L 142.1826 287.776009 L 142.24453 287.93755 L 142.306461 287.776009 L 142.368391 287.93755 L 142.430322 287.776009 L 142.554183 288.099092 L 142.616113 287.93755 L 142.739974 288.260633 L 142.863835 287.93755 L 142.925766 288.099092 L 142.987696 287.93755 L 143.049627 288.099092 L 143.297349 287.452926 L 143.359279 287.614467 L 143.48314 287.291384 L 143.545071 287.452926 L 143.730862 286.968301 L 143.792793 287.129843 L 143.854723 286.968301 L 143.978584 287.291384 L 144.040515 287.129843 L 144.102445 287.291384 L 144.226306 286.968301 L 144.288237 287.129843 L 144.350167 286.968301 L 144.474028 287.291384 L 144.72175 286.645218 L 144.783681 286.80676 L 145.031403 286.160594 L 145.093333 286.322135 L 145.155264 286.160594 L 145.279125 286.483677 L 145.712638 285.352886 L 145.774569 285.514428 L 145.836499 285.352886 L 146.270013 286.483677 L 146.579665 285.675969 L 146.641596 285.837511 L 146.827387 285.352886 L 146.889318 285.514428 L 147.075109 285.029803 L 147.13704 285.191345 L 147.322831 284.70672 L 147.384762 284.868262 L 147.446692 284.70672 L 147.508623 284.868262 L 147.570553 284.70672 L 147.632484 284.868262 L 147.694414 284.70672 L 147.756345 284.868262 L 147.818275 284.70672 L 148.065997 285.352886 L 148.189858 285.029803 L 148.251789 285.191345 L 148.313719 285.029803 L 148.499511 285.514428 L 148.561441 285.352886 L 148.623372 285.514428 L 148.685302 285.352886 L 148.809163 285.675969 L 148.871094 285.514428 L 148.933024 285.675969 L 148.994955 285.514428 L 149.118816 285.837511 L 149.242677 285.514428 L 149.366538 285.837511 L 149.61426 285.191345 L 149.738121 285.514428 L 150.047773 284.70672 L 150.109704 284.868262 L 150.233565 284.545179 L 150.357426 284.868262 L 150.481287 284.545179 L 150.543217 284.70672 L 150.605148 284.545179 L 150.976731 285.514428 L 151.162522 285.029803 L 151.224453 285.191345 L 151.472175 284.545179 L 151.534105 284.70672 L 151.657966 284.383637 L 151.719897 284.545179 L 151.905688 284.060554 L 152.15341 284.70672 L 152.339202 284.222095 L 152.401132 284.383637 L 152.463063 284.222095 L 152.524993 284.383637 L 152.772715 283.737471 L 152.834646 283.899012 L 152.896576 283.737471 L 153.268159 284.70672 L 153.33009 284.545179 L 153.515881 285.029803 L 153.577812 284.868262 L 153.639742 285.029803 L 153.701673 284.868262 L 153.763603 285.029803 L 153.825534 284.868262 L 153.887464 285.029803 L 154.073256 284.545179 L 154.197117 284.868262 L 154.259047 284.70672 L 154.382908 285.029803 L 154.444839 284.868262 L 154.5687 285.191345 L 154.63063 285.029803 L 154.878352 285.675969 L 155.064144 285.191345 L 155.126074 285.352886 L 155.188005 285.191345 L 155.249935 285.352886 L 155.373796 285.029803 L 155.435727 285.191345 L 155.559588 284.868262 L 155.621518 285.029803 L 155.931171 284.222095 L 155.993101 284.383637 L 156.116962 284.060554 L 156.178893 284.222095 L 156.302754 283.899012 L 156.426615 284.222095 L 156.612406 283.737471 L 156.674337 283.899012 L 156.922059 283.252846 L 157.04592 283.575929 L 157.169781 283.252846 L 157.231711 283.414388 L 157.293642 283.252846 L 157.355572 283.414388 L 157.417503 283.252846 L 157.541364 283.575929 L 157.789086 282.929763 L 157.851016 283.091305 L 158.098738 282.445139 L 158.222599 282.768222 L 158.408391 282.283597 L 158.656113 282.929763 L 158.718043 282.768222 L 158.779974 282.929763 L 158.841904 282.768222 L 158.903835 282.929763 L 159.151557 282.283597 L 159.213487 282.445139 L 159.275418 282.283597 L 159.337348 282.445139 L 159.399279 282.283597 L 159.52314 282.60668 L 159.58507 282.445139 L 159.647001 282.60668 L 159.832792 282.122056 L 160.018584 282.60668 L 160.266306 281.960514 L 160.328236 282.122056 L 160.452097 281.798973 L 160.514028 281.960514 L 160.575958 281.798973 L 160.637889 281.960514 L 160.699819 281.798973 L 160.76175 281.960514 L 160.82368 281.798973 L 160.947541 282.122056 L 161.009472 281.960514 L 161.071402 282.122056 L 161.195263 281.798973 L 161.319124 282.122056 L 161.381055 281.960514 L 161.566846 282.445139 L 161.628777 282.283597 L 161.690707 282.445139 L 161.752638 282.283597 L 161.938429 282.768222 L 162.124221 282.283597 L 162.310012 282.768222 L 162.495804 282.283597 L 162.619665 282.60668 L 162.743526 282.283597 L 162.805456 282.445139 L 163.115109 281.637431 L 163.177039 281.798973 L 163.362831 281.314348 L 163.424761 281.47589 L 163.610553 280.991265 L 163.672483 281.152807 L 163.796344 280.829724 L 163.920205 281.152807 L 163.982136 280.991265 L 164.044066 281.152807 L 164.105997 280.991265 L 164.291788 281.47589 L 164.53951 280.829724 L 164.601441 280.991265 L 164.663371 280.829724 L 164.725302 280.991265 L 164.849163 280.668182 L 164.911093 280.829724 L 165.468468 279.37585 L 165.530398 279.537392 L 165.77812 278.891225 L 165.840051 279.052767 L 166.087773 278.406601 L 166.211634 278.729684 L 166.273564 278.568142 L 166.335495 278.729684 L 166.521286 278.245059 L 166.645147 278.568142 L 166.769008 278.245059 L 166.830939 278.406601 L 167.078661 277.760435 L 167.140591 277.921976 L 167.264452 277.598893 L 167.326383 277.760435 L 167.512174 277.27581 L 167.574105 277.437352 L 167.821827 276.791186 L 167.945688 277.114269 L 168.007618 276.952727 L 168.069549 277.114269 L 168.131479 276.952727 L 168.19341 277.114269 L 168.25534 276.952727 L 168.317271 277.114269 L 168.441132 276.791186 L 168.503062 276.952727 L 168.564993 276.791186 L 168.626923 276.952727 L 168.750784 276.629644 L 168.812715 276.791186 L 169.122367 275.983478 L 169.308159 276.468103 L 169.49395 275.983478 L 169.555881 276.14502 L 169.617811 275.983478 L 169.679742 276.14502 L 169.741672 275.983478 L 169.989394 276.629644 L 170.051325 276.468103 L 170.113255 276.629644 L 170.299047 276.14502 L 170.422908 276.468103 L 170.608699 275.983478 L 170.73256 276.306561 L 170.794491 276.14502 L 170.856421 276.306561 L 170.980282 275.983478 L 171.166074 276.468103 L 171.289935 276.14502 L 171.351865 276.306561 L 171.413796 276.14502 L 171.599587 276.629644 L 171.723448 276.306561 L 171.785379 276.468103 L 172.033101 275.821937 L 172.095031 275.983478 L 172.218892 275.660395 L 172.466614 276.306561 L 172.528545 276.14502 L 172.590475 276.306561 L 172.776267 275.821937 L 172.838197 275.983478 L 173.023989 275.498854 L 173.085919 275.660395 L 173.271711 275.175771 L 173.333641 275.337312 L 173.457502 275.014229 L 173.519433 275.175771 L 173.643294 274.852688 L 173.891016 275.498854 L 173.952946 275.337312 L 174.014877 275.498854 L 174.200668 275.014229 L 174.634182 276.14502 L 174.696112 275.983478 L 174.758043 276.14502 L 174.881904 275.821937 L 175.129626 276.468103 L 175.253487 276.14502 L 175.315417 276.306561 L 175.377348 276.14502 L 175.439278 276.306561 L 175.501209 276.14502 L 175.563139 276.306561 L 175.62507 276.14502 L 175.872792 276.791186 L 175.934722 276.629644 L 176.244375 277.437352 L 176.368236 277.114269 L 176.430166 277.27581 L 176.492097 277.114269 L 176.554027 277.27581 L 176.615958 277.114269 L 176.677888 277.27581 L 176.801749 276.952727 L 176.86368 277.114269 L 176.92561 276.952727 L 176.987541 277.114269 L 177.421054 275.983478 L 177.792637 276.952727 L 177.978429 276.468103 L 178.040359 276.629644 L 178.226151 276.14502 L 178.350012 276.468103 L 178.473873 276.14502 L 178.535803 276.306561 L 178.597734 276.14502 L 178.659664 276.306561 L 178.721595 276.14502 L 178.783525 276.306561 L 178.845456 276.14502 L 179.031247 276.629644 L 179.217039 276.14502 L 179.278969 276.306561 L 179.3409 276.14502 L 179.464761 276.468103 L 179.588622 276.14502 L 179.650552 276.306561 L 179.774413 275.983478 L 179.898274 276.306561 L 179.960205 276.14502 L 180.084066 276.468103 L 180.145996 276.306561 L 180.393718 276.952727 L 180.517579 276.629644 L 180.64144 276.952727 L 180.889162 276.306561 L 181.198815 277.114269 L 181.260745 276.952727 L 181.322676 277.114269 L 181.384606 276.952727 L 181.508467 277.27581 L 181.756189 276.629644 L 181.88005 276.952727 L 182.065842 276.468103 L 182.189703 276.791186 L 182.499355 275.983478 L 182.809008 276.791186 L 182.870938 276.629644 L 182.932869 276.791186 L 183.05673 276.468103 L 183.180591 276.791186 L 183.366382 276.306561 L 183.490243 276.629644 L 183.614104 276.306561 L 183.676035 276.468103 L 183.737965 276.306561 L 183.799896 276.468103 L 183.861826 276.306561 L 183.923757 276.468103 L 184.109548 275.983478 L 184.171479 276.14502 L 184.233409 275.983478 L 184.419201 276.468103 L 184.481131 276.306561 L 184.543062 276.468103 L 184.604992 276.306561 L 184.728853 276.629644 L 185.162367 275.498854 L 185.472019 276.306561 L 185.843602 275.337312 L 185.905533 275.498854 L 186.153255 274.852688 L 186.277116 275.175771 L 186.339046 275.014229 L 186.400977 275.175771 L 186.524838 274.852688 L 186.710629 275.337312 L 187.020282 274.529605 L 187.082212 274.691146 L 187.206073 274.368063 L 187.268004 274.529605 L 187.391865 274.206521 L 187.453795 274.368063 L 187.515726 274.206521 L 187.577656 274.368063 L 187.763448 273.883438 L 187.825378 274.04498 L 187.887309 273.883438 L 188.0731 274.368063 L 188.196961 274.04498 L 188.258892 274.206521 L 188.320822 274.04498 L 188.382753 274.206521 L 188.506614 273.883438 L 188.568544 274.04498 L 188.630475 273.883438 L 188.692405 274.04498 L 188.878197 273.560355 L 188.940127 273.721897 L 189.125919 273.237272 L 189.187849 273.398814 L 189.373641 272.914189 L 189.559432 273.398814 L 189.621363 273.237272 L 189.683293 273.398814 L 189.745224 273.237272 L 189.807154 273.398814 L 190.054876 272.752648 L 190.116807 272.914189 L 190.240668 272.591106 L 190.302598 272.752648 L 190.426459 272.429565 L 190.48839 272.591106 L 190.798042 271.783399 L 190.859973 271.94494 L 191.355417 270.652608 L 191.479278 270.975691 L 191.727 270.329525 L 191.78893 270.491067 L 191.850861 270.329525 L 191.974722 270.652608 L 192.036652 270.491067 L 192.160513 270.81415 L 192.222444 270.652608 L 192.346305 270.975691 L 192.470166 270.652608 L 192.532096 270.81415 L 192.903679 269.844901 L 193.02754 270.167984 L 193.151401 269.844901 L 193.337193 270.329525 L 193.956498 268.71411 L 194.018428 268.875651 L 194.080359 268.71411 L 194.20422 269.037193 L 194.513872 268.229485 L 194.575803 268.391027 L 194.637733 268.229485 L 194.699664 268.391027 L 194.885455 267.906402 L 194.947386 268.067944 L 195.009316 267.906402 L 195.071247 268.067944 L 195.133177 267.906402 L 195.195108 268.067944 L 195.257038 267.906402 L 195.380899 268.229485 L 195.44283 268.067944 L 195.50476 268.229485 L 195.628621 267.906402 L 195.690552 268.067944 L 195.938274 267.421778 L 196.000204 267.583319 L 196.124065 267.260236 L 196.247926 267.583319 L 196.309857 267.421778 L 196.371787 267.583319 L 196.495648 267.260236 L 196.619509 267.583319 L 196.68144 267.421778 L 196.74337 267.583319 L 196.805301 267.421778 L 196.867231 267.583319 L 197.053023 267.098695 L 197.114953 267.260236 L 197.238814 266.937153 L 197.300745 267.098695 L 197.362675 266.937153 L 197.548467 267.421778 L 197.610397 267.260236 L 197.796189 267.744861 L 197.92005 267.421778 L 197.98198 267.583319 L 198.105841 267.260236 L 198.353563 267.906402 L 198.415494 267.744861 L 198.539355 268.067944 L 198.663216 267.744861 L 198.725146 267.906402 L 198.849007 267.583319 L 198.910938 267.744861 L 199.344451 266.61407 L 199.468312 266.937153 L 199.654104 266.452529 L 199.716034 266.61407 L 200.39727 264.837114 L 200.4592 264.998655 L 200.521131 264.837114 L 200.583061 264.998655 L 200.706922 264.675572 L 200.892714 265.160197 L 201.078505 264.675572 L 201.264297 265.160197 L 201.512019 264.51403 L 201.69781 264.998655 L 201.883602 264.51403 L 202.007463 264.837114 L 202.069393 264.675572 L 202.131324 264.837114 L 202.193254 264.675572 L 202.255185 264.837114 L 202.317115 264.675572 L 202.379046 264.837114 L 202.440976 264.675572 L 202.502907 264.837114 L 202.750629 264.190947 L 202.812559 264.352489 L 202.998351 263.867864 L 203.122212 264.190947 L 203.184142 264.029406 L 203.369934 264.51403 L 203.741517 263.544781 L 203.803447 263.706323 L 203.927308 263.38324 L 204.1131 263.867864 L 204.360822 263.221698 L 204.422752 263.38324 L 204.484683 263.221698 L 204.546613 263.38324 L 204.732405 262.898615 L 204.918196 263.38324 L 204.980127 263.221698 L 205.042057 263.38324 L 205.103988 263.221698 L 205.165918 263.38324 L 205.35171 262.898615 L 205.41364 263.060157 L 205.475571 262.898615 L 205.599432 263.221698 L 205.661362 263.060157 L 205.847154 263.544781 L 205.909084 263.38324 L 206.032945 263.706323 L 206.280667 263.060157 L 206.342598 263.221698 L 206.466459 262.898615 L 206.899972 264.029406 L 207.209625 263.221698 L 207.271555 263.38324 L 207.457347 262.898615 L 207.643138 263.38324 L 207.766999 263.060157 L 207.89086 263.38324 L 207.952791 263.221698 L 208.014721 263.38324 L 208.076652 263.221698 L 208.138582 263.38324 L 208.200513 263.221698 L 208.262443 263.38324 L 208.324374 263.221698 L 208.448235 263.544781 L 208.572096 263.221698 L 208.695957 263.544781 L 208.881748 263.060157 L 208.943679 263.221698 L 209.005609 263.060157 L 209.06754 263.221698 L 209.191401 262.898615 L 209.315262 263.221698 L 209.439123 262.898615 L 209.501053 263.060157 L 209.562984 262.898615 L 209.686845 263.221698 L 209.748775 263.060157 L 209.810706 263.221698 L 210.120358 262.413991 L 210.182289 262.575532 L 210.244219 262.413991 L 210.36808 262.737074 L 210.491941 262.413991 L 210.553872 262.575532 L 210.615802 262.413991 L 210.677733 262.575532 L 210.863524 262.090908 L 210.925455 262.252449 L 211.111246 261.767825 L 211.235107 262.090908 L 211.358968 261.767825 L 211.482829 262.090908 L 211.730551 261.444742 L 211.792482 261.606283 L 212.102134 260.798576 L 212.164065 260.960117 L 212.411787 260.313951 L 212.473717 260.475493 L 212.535648 260.313951 L 212.597578 260.475493 L 212.78337 259.990868 L 212.8453 260.15241 L 212.969161 259.829327 L 213.031092 259.990868 L 213.093022 259.829327 L 213.216883 260.15241 L 213.402675 259.667785 L 213.464605 259.829327 L 213.526536 259.667785 L 213.588466 259.829327 L 213.650397 259.667785 L 213.712327 259.829327 L 214.02198 259.021619 L 214.145841 259.344702 L 214.331632 258.860077 L 214.393563 259.021619 L 214.517424 258.698536 L 214.579354 258.860077 L 215.136729 257.406204 L 215.26059 257.729287 L 215.32252 257.567745 L 215.508312 258.05237 L 215.632173 257.729287 L 215.694103 257.890828 L 215.817964 257.567745 L 215.879895 257.729287 L 215.941825 257.567745 L 216.065686 257.890828 L 216.251478 257.406204 L 216.375339 257.729287 L 216.437269 257.567745 L 216.4992 257.729287 L 216.56113 257.567745 L 216.684991 257.890828 L 216.746922 257.729287 L 216.870783 258.05237 L 216.932713 257.890828 L 216.994644 258.05237 L 217.056574 257.890828 L 217.118505 258.05237 L 217.675879 256.598496 L 217.861671 257.083121 L 217.985532 256.760038 L 218.109393 257.083121 L 218.171323 256.921579 L 218.233254 257.083121 L 218.295184 256.921579 L 218.357115 257.083121 L 218.419045 256.921579 L 218.480976 257.083121 L 218.604837 256.760038 L 218.666767 256.921579 L 218.728698 256.760038 L 218.790628 256.921579 L 218.97642 256.436955 L 219.03835 256.598496 L 219.100281 256.436955 L 219.162211 256.598496 L 219.348003 256.113872 L 219.471864 256.436955 L 219.657655 255.95233 L 219.781516 256.275413 L 220.029238 255.629247 L 220.091169 255.790789 L 220.21503 255.467706 L 220.338891 255.790789 L 220.586613 255.144623 L 220.648543 255.306164 L 220.710474 255.144623 L 220.834335 255.467706 L 220.896265 255.306164 L 220.958196 255.467706 L 221.020126 255.306164 L 221.082057 255.467706 L 221.143987 255.306164 L 221.205918 255.467706 L 221.329779 255.144623 L 221.391709 255.306164 L 221.45364 255.144623 L 221.577501 255.467706 L 221.639431 255.306164 L 221.701362 255.467706 L 221.763292 255.306164 L 221.825223 255.467706 L 221.887153 255.306164 L 222.011014 255.629247 L 222.134875 255.306164 L 222.196806 255.467706 L 222.258736 255.306164 L 222.568389 256.113872 L 222.816111 255.467706 L 222.939972 255.790789 L 223.063833 255.467706 L 223.125763 255.629247 L 223.373485 254.983081 L 223.559277 255.467706 L 223.621207 255.306164 L 223.683138 255.467706 L 223.99279 254.659998 L 224.054721 254.82154 L 224.240512 254.336915 L 224.364373 254.659998 L 224.426304 254.498456 L 224.488234 254.659998 L 224.674026 254.175373 L 224.735956 254.336915 L 224.921748 253.85229 L 225.045609 254.175373 L 225.107539 254.013832 L 225.2314 254.336915 L 225.417192 253.85229 L 225.479122 254.013832 L 225.664914 253.529207 L 225.726844 253.690749 L 226.036497 252.883041 L 226.098427 253.044583 L 226.160358 252.883041 L 226.284219 253.206124 L 226.346149 253.044583 L 226.531941 253.529207 L 226.593871 253.367666 L 226.717732 253.690749 L 226.841593 253.367666 L 226.903524 253.529207 L 227.027385 253.206124 L 227.151246 253.529207 L 227.213176 253.367666 L 227.275107 253.529207 L 227.460898 253.044583 L 227.584759 253.367666 L 227.70862 253.044583 L 227.770551 253.206124 L 228.142134 252.236875 L 228.204064 252.398417 L 228.265995 252.236875 L 228.389856 252.559958 L 228.451786 252.398417 L 228.637578 252.883041 L 229.009161 251.913792 L 229.071091 252.075334 L 229.194952 251.752251 L 229.380744 252.236875 L 229.442674 252.075334 L 229.504605 252.236875 L 229.628466 251.913792 L 229.752327 252.236875 L 229.814257 252.075334 L 229.938118 252.398417 L 230.000049 252.236875 L 230.061979 252.398417 L 230.867076 250.298377 L 230.990937 250.62146 L 231.052867 250.459919 L 231.114798 250.62146 L 231.36252 249.975294 L 231.486381 250.298377 L 231.548311 250.136836 L 231.610242 250.298377 L 231.672172 250.136836 L 231.734103 250.298377 L 231.796033 250.136836 L 231.857964 250.298377 L 232.043755 249.813753 L 232.105686 249.975294 L 232.291477 249.490669 L 232.415338 249.813753 L 232.539199 249.490669 L 232.60113 249.652211 L 232.724991 249.329128 L 232.786921 249.490669 L 232.910782 249.167586 L 233.034643 249.490669 L 233.158504 249.167586 L 233.344296 249.652211 L 233.406226 249.490669 L 233.592018 249.975294 L 233.715879 249.652211 L 233.777809 249.813753 L 233.963601 249.329128 L 234.025531 249.490669 L 234.397114 248.52142 L 234.459045 248.682962 L 234.582906 248.359879 L 234.644836 248.52142 L 234.706767 248.359879 L 234.830628 248.682962 L 235.016419 248.198337 L 235.07835 248.359879 L 235.14028 248.198337 L 235.264141 248.52142 L 235.326072 248.359879 L 235.449933 248.682962 L 235.697655 248.036796 L 235.945377 248.682962 L 236.007307 248.52142 L 236.069238 248.682962 L 236.131168 248.52142 L 236.193099 248.682962 L 236.440821 248.036796 L 236.502751 248.198337 L 236.564682 248.036796 L 236.626612 248.198337 L 236.812404 247.713713 L 236.874334 247.875254 L 236.998195 247.552171 L 237.183987 248.036796 L 237.245917 247.875254 L 237.307848 248.036796 L 237.431709 247.713713 L 237.493639 247.875254 L 237.55557 247.713713 L 237.6175 247.875254 L 237.679431 247.713713 L 237.741361 247.875254 L 237.803292 247.713713 L 237.989083 248.198337 L 238.051014 248.036796 L 238.174875 248.359879 L 238.360666 247.875254 L 238.422597 248.036796 L 238.732249 247.229088 L 238.79418 247.39063 L 238.85611 247.229088 L 238.918041 247.39063 L 239.103832 246.906005 L 239.165763 247.067547 L 239.227693 246.906005 L 239.351554 247.229088 L 239.475415 246.906005 L 239.661207 247.39063 L 239.723137 247.229088 L 239.785068 247.39063 L 240.03279 246.744464 L 240.09472 246.906005 L 240.280512 246.421381 L 240.342442 246.582922 L 240.404373 246.421381 L 240.528234 246.744464 L 240.837886 245.936756 L 240.961747 246.259839 L 241.085608 245.936756 L 241.147539 246.098298 L 241.2714 245.775215 L 241.33333 245.936756 L 241.581052 245.29059 L 241.704913 245.613673 L 242.076496 244.644424 L 242.138427 244.805966 L 242.200357 244.644424 L 242.262288 244.805966 L 242.386149 244.482882 L 242.448079 244.644424 L 242.57194 244.321341 L 242.633871 244.482882 L 242.757732 244.159799 L 242.819662 244.321341 L 242.881593 244.159799 L 243.005454 244.482882 L 243.191245 243.998258 L 243.253176 244.159799 L 243.315106 243.998258 L 243.377037 244.159799 L 243.562828 243.675175 L 243.74862 244.159799 L 243.872481 243.836716 L 244.120203 244.482882 L 244.244064 244.159799 L 244.305994 244.321341 L 244.367925 244.159799 L 244.491786 244.482882 L 244.801438 243.675175 L 244.863369 243.836716 L 245.296882 242.705926 L 245.358813 242.867467 L 245.606535 242.221301 L 245.668465 242.382843 L 245.730396 242.221301 L 245.854257 242.544384 L 246.101979 241.898218 L 246.163909 242.05976 L 246.349701 241.575135 L 246.535492 242.05976 L 246.597423 241.898218 L 246.659353 242.05976 L 246.721284 241.898218 L 246.907075 242.382843 L 246.969006 242.221301 L 247.278658 243.029009 L 247.402519 242.705926 L 247.46445 242.867467 L 247.52638 242.705926 L 247.588311 242.867467 L 247.774102 242.382843 L 247.836033 242.544384 L 248.021824 242.05976 L 248.083755 242.221301 L 248.207616 241.898218 L 248.269546 242.05976 L 248.393407 241.736677 L 248.455338 241.898218 L 248.517268 241.736677 L 248.641129 242.05976 L 248.950782 241.252052 L 249.074643 241.575135 L 249.136573 241.413594 L 249.198504 241.575135 L 249.384295 241.090511 L 249.508156 241.413594 L 249.632017 241.090511 L 249.879739 241.736677 L 250.127461 241.090511 L 250.251322 241.413594 L 250.375183 241.090511 L 250.437114 241.252052 L 250.499044 241.090511 L 250.808697 241.898218 L 250.932558 241.575135 L 251.366071 242.705926 L 251.489932 242.382843 L 251.551863 242.544384 L 251.675724 242.221301 L 251.799585 242.544384 L 251.861515 242.382843 L 251.985376 242.705926 L 252.047307 242.544384 L 252.109237 242.705926 L 252.542751 241.575135 L 252.728542 242.05976 L 252.852403 241.736677 L 252.914334 241.898218 L 252.976264 241.736677 L 253.100125 242.05976 L 253.223986 241.736677 L 253.285917 241.898218 L 253.533639 241.252052 L 253.71943 241.736677 L 254.214874 240.444345 L 254.338735 240.767428 L 254.400666 240.605886 L 254.462596 240.767428 L 254.586457 240.444345 L 254.772249 240.928969 L 255.019971 240.282803 L 255.081901 240.444345 L 255.267693 239.95972 L 255.329623 240.121262 L 255.515415 239.636637 L 255.577345 239.798178 L 255.763137 239.313554 L 255.825067 239.475095 L 255.886998 239.313554 L 256.13472 239.95972 L 256.19665 239.798178 L 256.320511 240.121262 L 256.444372 239.798178 L 256.568233 240.121262 L 256.692094 239.798178 L 257.001747 240.605886 L 257.187538 240.121262 L 257.311399 240.444345 L 257.497191 239.95972 L 257.559121 240.121262 L 257.621052 239.95972 L 257.682982 240.121262 L 257.806843 239.798178 L 257.868774 239.95972 L 257.930704 239.798178 L 258.054565 240.121262 L 258.116496 239.95972 L 258.178426 240.121262 L 258.240357 239.95972 L 258.364218 240.282803 L 258.488079 239.95972 L 258.61194 240.282803 L 258.859662 239.636637 L 258.921592 239.798178 L 259.107384 239.313554 L 259.169314 239.475095 L 259.231245 239.313554 L 259.293175 239.475095 L 259.417036 239.152012 L 259.478967 239.313554 L 259.664758 238.828929 L 259.974411 239.636637 L 260.036341 239.475095 L 260.098272 239.636637 L 260.284063 239.152012 L 260.469855 239.636637 L 260.903368 238.505846 L 261.08916 238.990471 L 261.15109 238.828929 L 261.213021 238.990471 L 261.274951 238.828929 L 261.460743 239.313554 L 261.584604 238.990471 L 261.646534 239.152012 L 261.708465 238.990471 L 261.832326 239.313554 L 261.894256 239.152012 L 262.141978 239.798178 L 262.203909 239.636637 L 262.3897 240.121262 L 262.637422 239.475095 L 262.699353 239.636637 L 262.761283 239.475095 L 262.885144 239.798178 L 262.947075 239.636637 L 263.009005 239.798178 L 263.132866 239.475095 L 263.256727 239.798178 L 263.504449 239.152012 L 263.56638 239.313554 L 263.62831 239.152012 L 263.690241 239.313554 L 263.937963 238.667388 L 263.999893 238.828929 L 264.247615 238.182763 L 264.309546 238.344305 L 264.557268 237.698139 L 264.619198 237.85968 L 264.743059 237.536597 L 264.80499 237.698139 L 264.86692 237.536597 L 265.114642 238.182763 L 265.176573 238.021222 L 265.424295 238.667388 L 265.672017 238.021222 L 265.795878 238.344305 L 265.857808 238.182763 L 265.919739 238.344305 L 266.0436 238.021222 L 266.167461 238.344305 L 266.291322 238.021222 L 266.415183 238.344305 L 266.539044 238.021222 L 266.600974 238.182763 L 266.662905 238.021222 L 266.786766 238.344305 L 266.848696 238.182763 L 267.034488 238.667388 L 267.28221 238.021222 L 267.468001 238.505846 L 267.529932 238.344305 L 267.591863 238.505846 L 267.715724 238.182763 L 267.839585 238.505846 L 267.963446 238.182763 L 268.025376 238.344305 L 268.149237 238.021222 L 268.211168 238.182763 L 268.396959 237.698139 L 268.45889 237.85968 L 268.52082 237.698139 L 268.644681 238.021222 L 268.706612 237.85968 L 268.830473 238.182763 L 269.016264 237.698139 L 269.078195 237.85968 L 269.263986 237.375056 L 269.325917 237.536597 L 269.573639 236.890431 L 269.635569 237.051973 L 269.6975 236.890431 L 269.883291 237.375056 L 269.945222 237.213514 L 270.007152 237.375056 L 270.069083 237.213514 L 270.378735 238.021222 L 270.502596 237.698139 L 270.564527 237.85968 L 270.750318 237.375056 L 270.812249 237.536597 L 270.874179 237.375056 L 271.059971 237.85968 L 271.121901 237.698139 L 271.183832 237.85968 L 271.307693 237.536597 L 271.369623 237.698139 L 271.431554 237.536597 L 271.493484 237.698139 L 271.555415 237.536597 L 271.679276 237.85968 L 271.741206 237.698139 L 271.926998 238.182763 L 272.17472 237.536597 L 272.298581 237.85968 L 272.422442 237.536597 L 272.670164 238.182763 L 272.979816 237.375056 L 273.165608 237.85968 L 273.41333 237.213514 L 273.47526 237.375056 L 273.537191 237.213514 L 273.846843 238.021222 L 273.908774 237.85968 L 273.970704 238.021222 L 274.032635 237.85968 L 274.094565 238.021222 L 274.218426 237.698139 L 274.466148 238.344305 L 274.590009 238.021222 L 274.71387 238.344305 L 274.899662 237.85968 L 275.147384 238.505846 L 275.333175 238.021222 L 275.457036 238.344305 L 275.518967 238.182763 L 275.580897 238.344305 L 275.704758 238.021222 L 275.766689 238.182763 L 275.828619 238.021222 L 275.89055 238.182763 L 276.138272 237.536597 L 276.200202 237.698139 L 276.262133 237.536597 L 276.324063 237.698139 L 276.447924 237.375056 L 276.509855 237.536597 L 276.571785 237.375056 L 276.633716 237.536597 L 276.757577 237.213514 L 276.881438 237.536597 L 276.943368 237.375056 L 277.005299 237.536597 L 277.19109 237.051973 L 277.314951 237.375056 L 277.562673 236.72889 L 277.624604 236.890431 L 277.686534 236.72889 L 277.748465 236.890431 L 277.996187 236.244265 L 278.120048 236.567348 L 278.4297 235.759641 L 278.491631 235.921182 L 278.553561 235.759641 L 278.615492 235.921182 L 278.677422 235.759641 L 278.739353 235.921182 L 278.863214 235.598099 L 278.925144 235.759641 L 278.987075 235.598099 L 279.049005 235.759641 L 279.110936 235.598099 L 279.234797 235.921182 L 279.296727 235.759641 L 279.60638 236.567348 L 279.792171 236.082724 L 279.854102 236.244265 L 280.039893 235.759641 L 280.101824 235.921182 L 280.225685 235.598099 L 280.535337 236.405807 L 280.721129 235.921182 L 280.783059 236.082724 L 280.90692 235.759641 L 281.030781 236.082724 L 281.092712 235.921182 L 281.154642 236.082724 L 281.278503 235.759641 L 281.340434 235.921182 L 282.021669 234.144225 L 282.0836 234.305767 L 282.14553 234.144225 L 282.207461 234.305767 L 282.269391 234.144225 L 282.331322 234.305767 L 282.393252 234.144225 L 282.455183 234.305767 L 282.517113 234.144225 L 282.640974 234.467308 L 282.702905 234.305767 L 283.012557 235.113475 L 283.136418 234.790391 L 283.198349 234.951933 L 283.38414 234.467308 L 283.508001 234.790391 L 283.569932 234.62885 L 283.693793 234.951933 L 283.755723 234.790391 L 283.817654 234.951933 L 284.003445 234.467308 L 284.065376 234.62885 L 284.127306 234.467308 L 284.189237 234.62885 L 284.251167 234.467308 L 284.313098 234.62885 L 284.375028 234.467308 L 284.56082 234.951933 L 284.808542 234.305767 L 284.994333 234.790391 L 285.056264 234.62885 L 285.118194 234.790391 L 285.365916 234.144225 L 285.427847 234.305767 L 285.551708 233.982684 L 285.675569 234.305767 L 285.79943 233.982684 L 285.86136 234.144225 L 285.923291 233.982684 L 285.985221 234.144225 L 286.047152 233.982684 L 286.356804 234.790391 L 286.418735 234.62885 L 286.480665 234.790391 L 286.728387 234.144225 L 286.790318 234.305767 L 286.976109 233.821142 L 287.03804 233.982684 L 287.409623 233.013435 L 287.533484 233.336518 L 287.657345 233.013435 L 287.719275 233.174976 L 288.27665 231.721103 L 288.33858 231.882644 L 288.462441 231.559561 L 288.710163 232.205727 L 288.957885 231.559561 L 289.019816 231.721103 L 289.143677 231.39802 L 289.205607 231.559561 L 289.453329 230.913395 L 289.51526 231.074937 L 289.57719 230.913395 L 289.639121 231.074937 L 289.762982 230.751854 L 289.824912 230.913395 L 289.886843 230.751854 L 290.072634 231.236478 L 290.258426 230.751854 L 290.382287 231.074937 L 290.568078 230.590312 L 290.691939 230.913395 L 291.125453 229.782604 L 291.187383 229.944146 L 291.249314 229.782604 L 291.311244 229.944146 L 291.373175 229.782604 L 291.435105 229.944146 L 291.497036 229.782604 L 291.620897 230.105688 L 291.682827 229.944146 L 291.744758 230.105688 L 292.116341 229.136438 L 292.178271 229.29798 L 292.240202 229.136438 L 292.302132 229.29798 L 292.364063 229.136438 L 292.549854 229.621063 L 292.611785 229.459521 L 292.673715 229.621063 L 292.735646 229.459521 L 292.983368 230.105688 L 293.107229 229.782604 L 293.23109 230.105688 L 293.29302 229.944146 L 293.478812 230.428771 L 293.540742 230.267229 L 293.974256 231.39802 L 294.036186 231.236478 L 294.098117 231.39802 L 294.221978 231.074937 L 294.345839 231.39802 L 294.407769 231.236478 L 294.4697 231.39802 L 294.779352 230.590312 L 294.841283 230.751854 L 294.903213 230.590312 L 295.027074 230.913395 L 295.212866 230.428771 L 295.274796 230.590312 L 295.460588 230.105688 L 295.584449 230.428771 L 295.77024 229.944146 L 295.832171 230.105688 L 296.079893 229.459521 L 296.265684 229.944146 L 296.451476 229.459521 L 296.575337 229.782604 L 296.699198 229.459521 L 296.823059 229.782604 L 297.256572 228.651814 L 297.318503 228.813355 L 297.504294 228.328731 L 297.566225 228.490272 L 297.628155 228.328731 L 297.690086 228.490272 L 297.752016 228.328731 L 297.813947 228.490272 L 298.061669 227.844106 L 298.18553 228.167189 L 298.309391 227.844106 L 298.371321 228.005648 L 298.557113 227.521023 L 298.619043 227.682565 L 298.680974 227.521023 L 298.804835 227.844106 L 298.928696 227.521023 L 299.176418 228.167189 L 299.300279 227.844106 L 299.48607 228.328731 L 299.609931 228.005648 L 299.733792 228.328731 L 299.857653 228.005648 L 299.919584 228.167189 L 299.981514 228.005648 L 300.043445 228.167189 L 300.105375 228.005648 L 300.167306 228.167189 L 300.353097 227.682565 L 300.415028 227.844106 L 300.476958 227.682565 L 300.538889 227.844106 L 300.600819 227.682565 L 300.66275 227.844106 L 300.72468 227.682565 L 301.034333 228.490272 L 301.282055 227.844106 L 301.405916 228.167189 L 301.591707 227.682565 L 301.715568 228.005648 L 301.839429 227.682565 L 301.96329 228.005648 L 302.025221 227.844106 L 302.087151 228.005648 L 302.272943 227.521023 L 302.334873 227.682565 L 302.396804 227.521023 L 302.458734 227.682565 L 302.520665 227.521023 L 302.582595 227.682565 L 302.644526 227.521023 L 302.706456 227.682565 L 302.954178 227.036399 L 303.016109 227.19794 L 303.078039 227.036399 L 303.2019 227.359482 L 303.325761 227.036399 L 303.387692 227.19794 L 303.449622 227.036399 L 303.573483 227.359482 L 303.635414 227.19794 L 303.759275 227.521023 L 303.821205 227.359482 L 303.883136 227.521023 L 304.130858 226.874857 L 304.192788 227.036399 L 304.316649 226.713316 L 304.502441 227.19794 L 304.626302 226.874857 L 304.688232 227.036399 L 304.750163 226.874857 L 304.812093 227.036399 L 305.121746 226.228691 L 305.183676 226.390233 L 305.369468 225.905608 L 305.431398 226.06715 L 305.555259 225.744067 L 305.67912 226.06715 L 305.741051 225.905608 L 305.802981 226.06715 L 305.864912 225.905608 L 305.926842 226.06715 L 305.988773 225.905608 L 306.050703 226.06715 L 306.112634 225.905608 L 306.174564 226.06715 L 306.236495 225.905608 L 306.298425 226.06715 L 306.360356 225.905608 L 306.484217 226.228691 L 306.608078 225.905608 L 306.731939 226.228691 L 307.289313 224.774817 L 307.537035 225.420984 L 307.660896 225.097901 L 307.784757 225.420984 L 308.032479 224.774817 L 308.09441 224.936359 L 308.15634 224.774817 L 308.404062 225.420984 L 308.961437 223.96711 L 309.023367 224.128651 L 309.085298 223.96711 L 309.209159 224.290193 L 309.456881 223.644027 L 309.518811 223.805568 L 309.890394 222.836319 L 310.014255 223.159402 L 310.076186 222.997861 L 310.138116 223.159402 L 310.261977 222.836319 L 310.447769 223.320944 L 311.067074 221.705529 L 311.129004 221.86707 L 311.314796 221.382446 L 311.376726 221.543987 L 311.438657 221.382446 L 311.624448 221.86707 L 311.748309 221.543987 L 311.81024 221.705529 L 311.87217 221.543987 L 311.996031 221.86707 L 312.243753 221.220904 L 312.305684 221.382446 L 312.615336 220.574738 L 312.677267 220.73628 L 312.739197 220.574738 L 312.863058 220.897821 L 312.986919 220.574738 L 313.04885 220.73628 L 313.11078 220.574738 L 313.172711 220.73628 L 313.482363 219.928572 L 313.668155 220.413197 L 313.730085 220.251655 L 313.792016 220.413197 L 314.039738 219.76703 L 314.101668 219.928572 L 314.163599 219.76703 L 314.411321 220.413197 L 314.659043 219.76703 L 314.782904 220.090114 L 314.844834 219.928572 L 314.968695 220.251655 L 315.030626 220.090114 L 315.092556 220.251655 L 315.278348 219.76703 L 315.340278 219.928572 L 315.464139 219.605489 L 315.588 219.928572 L 315.649931 219.76703 L 315.711861 219.928572 L 316.269236 218.474698 L 316.393097 218.797781 L 316.455027 218.63624 L 316.578888 218.959323 L 316.640819 218.797781 L 316.76468 219.120864 L 317.012402 218.474698 L 317.074332 218.63624 L 317.260124 218.151615 L 317.445915 218.63624 L 317.569776 218.313157 L 317.631707 218.474698 L 317.817498 217.990074 L 317.879429 218.151615 L 317.941359 217.990074 L 318.127151 218.474698 L 318.189081 218.313157 L 318.251012 218.474698 L 318.374873 218.151615 L 318.560664 218.63624 L 318.622595 218.474698 L 318.684525 218.63624 L 318.808386 218.313157 L 318.932247 218.63624 L 318.994178 218.474698 L 319.056108 218.63624 L 319.365761 217.828532 L 319.427691 217.990074 L 319.613483 217.505449 L 319.675413 217.666991 L 319.923135 217.020825 L 319.985066 217.182366 L 320.046996 217.020825 L 320.170857 217.343908 L 320.54244 216.374659 L 320.604371 216.5362 L 320.666301 216.374659 L 320.728232 216.5362 L 321.161745 215.40541 L 321.223676 215.566951 L 321.409467 215.082326 L 321.595259 215.566951 L 321.71912 215.243868 L 321.78105 215.40541 L 322.152633 214.43616 L 322.214564 214.597702 L 322.276494 214.43616 L 322.524216 215.082326 L 322.586147 214.920785 L 322.648077 215.082326 L 322.710008 214.920785 L 322.895799 215.40541 L 322.95773 215.243868 L 323.01966 215.40541 L 323.515104 214.113077 L 323.577035 214.274619 L 323.886687 213.466911 L 324.072479 213.951536 L 324.25827 213.466911 L 324.320201 213.628453 L 324.505992 213.143828 L 324.629853 213.466911 L 324.691784 213.30537 L 324.877575 213.789994 L 324.939506 213.628453 L 325.001436 213.789994 L 325.063367 213.628453 L 325.187228 213.951536 L 325.249158 213.789994 L 325.311089 213.951536 L 325.43495 213.628453 L 325.620741 214.113077 L 325.930394 213.30537 L 325.992324 213.466911 L 326.054255 213.30537 L 326.116185 213.466911 L 326.178116 213.30537 L 326.240046 213.466911 L 326.301977 213.30537 L 326.363907 213.466911 L 326.549699 212.982287 L 326.67356 213.30537 L 326.797421 212.982287 L 326.921282 213.30537 L 326.983212 213.143828 L 327.107073 213.466911 L 327.230934 213.143828 L 327.292865 213.30537 L 327.478656 212.820745 L 327.540587 212.982287 L 327.726378 212.497662 L 327.850239 212.820745 L 327.9741 212.497662 L 328.036031 212.659204 L 328.407614 211.689955 L 328.593405 212.174579 L 328.655336 212.013038 L 328.717266 212.174579 L 328.779197 212.013038 L 328.903058 212.336121 L 329.026919 212.013038 L 329.21271 212.497662 L 329.336571 212.174579 L 329.708154 213.143828 L 329.770085 212.982287 L 329.832015 213.143828 L 330.017807 212.659204 L 330.141668 212.982287 L 330.203598 212.820745 L 330.265529 212.982287 L 330.327459 212.820745 L 330.45132 213.143828 L 330.513251 212.982287 L 330.575181 213.143828 L 330.637112 212.982287 L 330.760973 213.30537 L 330.822903 213.143828 L 330.884834 213.30537 L 331.256417 212.336121 L 331.318347 212.497662 L 331.380278 212.336121 L 331.442208 212.497662 L 331.566069 212.174579 L 331.68993 212.497662 L 331.813791 212.174579 L 331.875722 212.336121 L 332.247305 211.366872 L 332.309235 211.528413 L 332.433096 211.20533 L 332.556957 211.528413 L 332.804679 210.882247 L 332.86661 211.043789 L 332.92854 210.882247 L 333.052401 211.20533 L 333.300123 210.559164 L 333.485915 211.043789 L 333.547845 210.882247 L 333.609776 211.043789 L 333.733637 210.720706 L 333.795567 210.882247 L 333.919428 210.559164 L 334.043289 210.882247 L 334.16715 210.559164 L 334.229081 210.720706 L 334.538733 209.912998 L 334.662594 210.236081 L 334.724525 210.074539 L 334.848386 210.397623 L 334.972247 210.074539 L 335.034177 210.236081 L 335.158038 209.912998 L 335.219969 210.074539 L 335.34383 209.751456 L 335.529621 210.236081 L 335.839274 209.428373 L 335.901204 209.589915 L 336.272787 208.620666 L 336.334718 208.782207 L 336.520509 208.297583 L 336.64437 208.620666 L 336.830162 208.136041 L 336.954023 208.459124 L 337.015953 208.297583 L 337.201745 208.782207 L 337.263675 208.620666 L 337.387536 208.943749 L 337.511397 208.620666 L 337.573328 208.782207 L 337.88298 207.9745 L 337.944911 208.136041 L 338.006841 207.9745 L 338.130702 208.297583 L 338.564216 207.166792 L 338.750007 207.651417 L 338.935799 207.166792 L 338.997729 207.328334 L 339.05966 207.166792 L 339.12159 207.328334 L 339.183521 207.166792 L 339.245451 207.328334 L 339.369312 207.005251 L 339.431243 207.166792 L 339.678965 206.520626 L 339.802826 206.843709 L 339.926687 206.520626 L 340.050548 206.843709 L 340.236339 206.359085 L 340.29827 206.520626 L 340.422131 206.197543 L 340.484061 206.359085 L 340.607922 206.036002 L 340.793714 206.520626 L 340.855644 206.359085 L 340.979505 206.682168 L 341.165297 206.197543 L 341.351088 206.682168 L 341.413019 206.520626 L 341.474949 206.682168 L 341.53688 206.520626 L 341.660741 206.843709 L 341.970393 206.036002 L 342.032324 206.197543 L 342.094254 206.036002 L 342.156185 206.197543 L 342.218115 206.036002 L 342.341976 206.359085 L 342.465837 206.036002 L 342.527768 206.197543 L 342.83742 205.389836 L 342.899351 205.551377 L 343.023212 205.228294 L 343.085142 205.389836 L 343.209003 205.066752 L 343.270934 205.228294 L 343.580586 204.420586 L 343.766378 204.905211 L 344.199891 203.77442 L 344.261822 203.935962 L 344.323752 203.77442 L 344.447613 204.097503 L 344.509544 203.935962 L 344.571474 204.097503 L 344.881127 203.289796 L 344.943057 203.451337 L 345.500432 201.997464 L 345.624293 202.320547 L 345.686223 202.159005 L 345.748154 202.320547 L 345.810084 202.159005 L 345.872015 202.320547 L 345.933945 202.159005 L 345.995876 202.320547 L 346.057806 202.159005 L 346.119737 202.320547 L 346.367459 201.674381 L 346.429389 201.835922 L 346.55325 201.512839 L 346.615181 201.674381 L 346.924833 200.866673 L 346.986764 201.028215 L 347.048694 200.866673 L 347.110625 201.028215 L 347.234486 200.705132 L 347.296416 200.866673 L 347.358347 200.705132 L 347.420277 200.866673 L 347.544138 200.54359 L 347.72993 201.028215 L 347.79186 200.866673 L 348.101513 201.674381 L 348.163443 201.512839 L 348.473096 202.320547 L 348.535026 202.159005 L 348.596957 202.320547 L 348.720818 201.997464 L 348.782748 202.159005 L 349.092401 201.351298 L 349.278192 201.835922 L 349.402053 201.512839 L 349.463984 201.674381 L 349.587845 201.351298 L 349.835567 201.997464 L 350.20715 201.028215 L 350.331011 201.351298 L 350.454872 201.028215 L 350.578733 201.351298 L 351.012246 200.220507 L 351.074177 200.382049 L 351.198038 200.058965 L 351.44576 200.705132 L 351.631551 200.220507 L 351.755412 200.54359 L 351.879273 200.220507 L 352.003134 200.54359 L 352.126995 200.220507 L 352.188926 200.382049 L 352.436648 199.735882 L 352.498578 199.897424 L 352.932092 198.766633 L 353.055953 199.089716 L 353.117883 198.928175 L 353.241744 199.251258 L 353.303675 199.089716 L 353.427536 199.412799 L 353.551397 199.089716 L 353.675258 199.412799 L 353.92298 198.766633 L 354.108771 199.251258 L 354.232632 198.928175 L 354.294563 199.089716 L 354.480354 198.605092 L 354.542285 198.766633 L 354.666146 198.44355 L 354.851937 198.928175 L 354.975798 198.605092 L 355.037729 198.766633 L 355.16159 198.44355 L 355.22352 198.605092 L 355.347381 198.282009 L 355.409312 198.44355 L 355.533173 198.120467 L 355.595103 198.282009 L 355.842825 197.635843 L 355.966686 197.958926 L 356.028617 197.797384 L 356.338269 198.605092 L 356.833713 197.31276 L 356.895644 197.474301 L 357.019505 197.151218 L 357.081435 197.31276 L 357.143366 197.151218 L 357.205296 197.31276 L 357.391088 196.828135 L 357.63881 197.474301 L 357.824601 196.989677 L 358.010393 197.474301 L 358.134254 197.151218 L 358.258115 197.474301 L 358.320045 197.31276 L 358.505837 197.797384 L 358.753559 197.151218 L 359.001281 197.797384 L 359.063211 197.635843 L 359.125142 197.797384 L 359.310933 197.31276 L 359.558655 197.958926 L 359.682516 197.635843 L 359.806377 197.958926 L 359.992169 197.474301 L 360.17796 197.958926 L 360.425682 197.31276 L 360.611474 197.797384 L 360.673404 197.635843 L 360.735335 197.797384 L 360.859196 197.474301 L 360.921126 197.635843 L 360.983057 197.474301 L 361.106918 197.797384 L 361.168848 197.635843 L 361.230779 197.797384 L 361.41657 197.31276 L 361.478501 197.474301 L 361.602362 197.151218 L 361.664292 197.31276 L 361.726223 197.151218 L 361.850084 197.474301 L 362.345528 196.181969 L 362.469389 196.505052 L 362.531319 196.343511 L 362.59325 196.505052 L 362.717111 196.181969 L 362.840972 196.505052 L 362.964833 196.181969 L 363.088694 196.505052 L 363.212555 196.181969 L 363.336416 196.505052 L 363.460277 196.181969 L 363.522207 196.343511 L 363.646068 196.020428 L 363.83186 196.505052 L 364.017651 196.020428 L 364.141512 196.343511 L 364.327304 195.858886 L 364.389234 196.020428 L 364.698887 195.21272 L 364.760817 195.374261 L 364.946609 194.889637 L 365.008539 195.051178 L 365.1324 194.728095 L 365.256261 195.051178 L 365.503983 194.405012 L 365.627844 194.728095 L 365.689775 194.566554 L 365.813636 194.889637 L 366.123288 194.081929 L 366.185219 194.243471 L 366.432941 193.597305 L 366.494871 193.758846 L 366.556802 193.597305 L 366.618732 193.758846 L 366.804524 193.274222 L 366.866454 193.435763 L 366.928385 193.274222 L 366.990315 193.435763 L 367.052246 193.274222 L 367.114176 193.435763 L 367.176107 193.274222 L 367.485759 194.081929 L 367.54769 193.920388 L 367.671551 194.243471 L 367.795412 193.920388 L 368.105064 194.728095 L 368.166995 194.566554 L 368.290856 194.889637 L 368.352786 194.728095 L 368.414717 194.889637 L 368.476647 194.728095 L 368.600508 195.051178 L 368.662439 194.889637 L 368.724369 195.051178 L 368.7863 194.889637 L 368.84823 195.051178 L 368.910161 194.889637 L 369.219813 195.697345 L 369.343674 195.374261 L 369.405605 195.535803 L 369.467535 195.374261 L 369.529466 195.535803 L 369.591396 195.374261 L 369.839118 196.020428 L 370.148771 195.21272 L 370.210701 195.374261 L 370.334562 195.051178 L 370.396493 195.21272 L 370.458423 195.051178 L 370.520354 195.21272 L 370.582284 195.051178 L 370.644215 195.21272 L 370.891937 194.566554 L 370.953867 194.728095 L 371.077728 194.405012 L 371.201589 194.728095 L 371.32545 194.405012 L 371.387381 194.566554 L 371.449311 194.405012 L 371.635103 194.889637 L 371.697033 194.728095 L 371.820894 195.051178 L 371.944755 194.728095 L 372.068616 195.051178 L 372.316338 194.405012 L 372.50213 194.889637 L 372.687921 194.405012 L 372.749852 194.566554 L 372.873713 194.243471 L 372.935643 194.405012 L 372.997574 194.243471 L 373.121435 194.566554 L 373.183365 194.405012 L 373.369157 194.889637 L 373.616879 194.243471 L 373.74074 194.566554 L 373.80267 194.405012 L 373.864601 194.566554 L 373.988462 194.243471 L 374.050392 194.405012 L 374.112323 194.243471 L 374.236184 194.566554 L 374.360045 194.243471 L 374.421975 194.405012 L 374.483906 194.243471 L 374.545836 194.405012 L 374.607767 194.243471 L 374.669697 194.405012 L 374.793558 194.081929 L 374.917419 194.405012 L 374.97935 194.243471 L 375.165141 194.728095 L 375.412863 194.081929 L 375.474794 194.243471 L 375.846377 193.274222 L 376.156029 194.081929 L 376.27989 193.758846 L 376.527612 194.405012 L 376.589543 194.243471 L 376.775334 194.728095 L 376.961126 194.243471 L 377.146917 194.728095 L 377.332709 194.243471 L 377.394639 194.405012 L 377.704292 193.597305 L 377.828153 193.920388 L 377.952014 193.597305 L 378.013944 193.758846 L 378.323597 192.951139 L 378.385527 193.11268 L 378.447458 192.951139 L 378.509388 193.11268 L 378.633249 192.789597 L 378.75711 193.11268 L 378.942902 192.628056 L 379.004832 192.789597 L 379.252554 192.143431 L 379.314485 192.304973 L 379.500276 191.820348 L 379.562207 191.98189 L 379.624137 191.820348 L 379.809929 192.304973 L 379.871859 192.143431 L 379.93379 192.304973 L 380.119581 191.820348 L 380.181512 191.98189 L 380.243442 191.820348 L 380.305373 191.98189 L 380.367303 191.820348 L 380.429234 191.98189 L 380.491164 191.820348 L 380.553095 191.98189 L 380.615025 191.820348 L 380.676956 191.98189 L 380.986608 191.174182 L 381.23433 191.820348 L 381.296261 191.658807 L 381.358191 191.820348 L 381.420122 191.658807 L 381.605913 192.143431 L 381.977496 191.174182 L 382.039427 191.335724 L 382.101357 191.174182 L 382.225218 191.497265 L 382.349079 191.174182 L 382.41101 191.335724 L 382.596801 190.851099 L 382.782593 191.335724 L 382.968384 190.851099 L 383.154176 191.335724 L 383.401898 190.689558 L 383.463828 190.851099 L 383.71155 190.204933 L 383.773481 190.366474 L 383.835411 190.204933 L 383.959272 190.528016 L 384.145064 190.043391 L 384.206994 190.204933 L 384.454716 189.558767 L 384.516647 189.720308 L 384.578577 189.558767 L 384.88823 190.366474 L 385.012091 190.043391 L 385.135952 190.366474 L 385.197882 190.204933 L 385.259813 190.366474 L 385.383674 190.043391 L 385.507535 190.366474 L 385.569465 190.204933 L 385.631396 190.366474 L 385.879118 189.720308 L 385.941048 189.88185 L 386.002979 189.720308 L 386.064909 189.88185 L 386.250701 189.397225 L 386.312631 189.558767 L 386.560353 188.912601 L 386.622284 189.074142 L 386.808075 188.589518 L 386.870006 188.751059 L 386.993867 188.427976 L 387.055797 188.589518 L 387.117728 188.427976 L 387.179658 188.589518 L 387.675102 187.297186 L 387.860894 187.78181 L 387.984755 187.458727 L 388.046685 187.620269 L 388.294407 186.974103 L 388.356338 187.135644 L 388.480199 186.812561 L 388.542129 186.974103 L 388.66599 186.65102 L 388.975643 187.458727 L 389.037573 187.297186 L 389.099504 187.458727 L 389.161434 187.297186 L 389.223365 187.458727 L 389.285295 187.297186 L 389.347226 187.458727 L 389.718809 186.489478 L 389.780739 186.65102 L 389.966531 186.166395 L 390.090392 186.489478 L 390.214253 186.166395 L 390.276183 186.327937 L 390.338114 186.166395 L 390.461975 186.489478 L 390.647766 186.004854 L 390.709697 186.166395 L 390.895488 185.681771 L 391.08128 186.166395 L 391.14321 186.004854 L 391.205141 186.166395 L 391.267071 186.004854 L 391.390932 186.327937 L 391.576724 185.843312 L 391.638654 186.004854 L 391.948307 185.197146 L 392.072168 185.520229 L 392.257959 185.035604 L 392.38182 185.358687 L 392.443751 185.197146 L 392.505681 185.358687 L 392.567612 185.197146 L 392.629542 185.358687 L 392.753403 185.035604 L 392.815334 185.197146 L 393.124986 184.389438 L 393.248847 184.712521 L 393.372708 184.389438 L 393.434639 184.55098 L 393.496569 184.389438 L 393.5585 184.55098 L 393.744291 184.066355 L 393.868152 184.389438 L 393.930083 184.227897 L 394.053944 184.55098 L 394.177805 184.227897 L 394.301666 184.55098 L 394.425527 184.227897 L 394.487457 184.389438 L 394.549388 184.227897 L 394.982901 185.358687 L 395.292554 184.55098 L 395.478345 185.035604 L 395.664137 184.55098 L 395.726067 184.712521 L 395.787998 184.55098 L 395.849928 184.712521 L 395.911859 184.55098 L 396.03572 184.874063 L 396.09765 184.712521 L 396.159581 184.874063 L 396.345372 184.389438 L 396.469233 184.712521 L 396.593094 184.389438 L 396.655025 184.55098 L 396.778886 184.227897 L 396.840816 184.389438 L 396.902747 184.227897 L 396.964677 184.389438 L 397.026608 184.227897 L 397.088538 184.389438 L 397.150469 184.227897 L 397.460121 185.035604 L 397.522052 184.874063 L 397.645913 185.197146 L 397.831704 184.712521 L 398.389079 186.166395 L 398.451009 186.004854 L 398.51294 186.166395 L 398.698731 185.681771 L 398.760662 185.843312 L 399.008384 185.197146 L 399.070314 185.358687 L 399.132245 185.197146 L 399.194175 185.358687 L 399.441897 184.712521 L 399.503828 184.874063 L 399.627689 184.55098 L 399.689619 184.712521 L 399.81348 184.389438 L 399.875411 184.55098 L 400.123133 183.904814 L 400.246994 184.227897 L 400.432785 183.743272 L 400.494716 183.904814 L 400.556646 183.743272 L 400.618577 183.904814 L 400.804368 183.420189 L 400.866299 183.581731 L 400.928229 183.420189 L 400.99016 183.581731 L 401.114021 183.258648 L 401.175951 183.420189 L 401.237882 183.258648 L 401.485604 183.904814 L 401.547534 183.743272 L 401.609465 183.904814 L 401.671395 183.743272 L 401.733326 183.904814 L 401.795256 183.743272 L 401.857187 183.904814 L 402.042978 183.420189 L 402.22877 183.904814 L 402.2907 183.743272 L 402.414561 184.066355 L 402.476492 183.904814 L 402.538422 184.066355 L 402.600353 183.904814 L 402.662283 184.066355 L 402.724214 183.904814 L 402.786144 184.066355 L 402.848075 183.904814 L 402.971936 184.227897 L 403.033866 184.066355 L 403.157727 184.389438 L 403.219658 184.227897 L 403.281588 184.389438 L 403.46738 183.904814 L 403.52931 184.066355 L 403.591241 183.904814 L 403.653171 184.066355 L 403.900893 183.420189 L 403.962824 183.581731 L 404.086685 183.258648 L 404.210546 183.581731 L 404.520198 182.774023 L 404.582129 182.935565 L 404.644059 182.774023 L 404.70599 182.935565 L 404.829851 182.612482 L 404.953712 182.935565 L 405.139503 182.45094 L 405.201434 182.612482 L 405.573017 181.643233 L 405.634947 181.804774 L 405.758808 181.481691 L 405.820739 181.643233 L 405.882669 181.481691 L 406.130391 182.127857 L 406.192322 181.966316 L 406.254252 182.127857 L 406.316183 181.966316 L 406.501974 182.45094 L 406.563905 182.289399 L 406.687766 182.612482 L 406.749696 182.45094 L 406.873557 182.774023 L 406.997418 182.45094 L 407.18321 182.935565 L 407.24514 182.774023 L 407.307071 182.935565 L 407.430932 182.612482 L 407.554793 182.935565 L 407.740584 182.45094 L 407.988306 183.097106 L 408.174098 182.612482 L 408.236028 182.774023 L 408.42182 182.289399 L 408.48375 182.45094 L 408.607611 182.127857 L 408.731472 182.45094 L 408.855333 182.127857 L 408.979194 182.45094 L 409.164986 181.966316 L 409.350777 182.45094 L 409.412708 182.289399 L 409.598499 182.774023 L 409.784291 182.289399 L 409.846221 182.45094 L 409.908152 182.289399 L 410.093943 182.774023 L 410.217804 182.45094 L 410.279735 182.612482 L 410.341665 182.45094 L 410.403596 182.612482 L 410.465526 182.45094 L 410.775179 183.258648 L 410.89904 182.935565 L 411.022901 183.258648 L 411.270623 182.612482 L 411.332554 182.774023 L 411.518345 182.289399 L 411.580276 182.45094 L 411.766067 181.966316 L 411.827998 182.127857 L 412.323442 180.835525 L 412.509233 181.32015 L 412.571164 181.158608 L 412.818886 181.804774 L 412.942747 181.481691 L 413.004677 181.643233 L 413.066608 181.481691 L 413.128538 181.643233 L 413.252399 181.32015 L 413.31433 181.481691 L 413.37626 181.32015 L 413.685913 182.127857 L 413.747843 181.966316 L 413.809774 182.127857 L 414.119426 181.32015 L 414.305218 181.804774 L 414.429079 181.481691 L 414.491009 181.643233 L 414.738731 180.997067 L 414.800662 181.158608 L 414.924523 180.835525 L 414.986453 180.997067 L 415.048384 180.835525 L 415.234175 181.32015 L 415.296106 181.158608 L 415.358036 181.32015 L 415.79155 180.189359 L 416.039272 180.835525 L 416.225063 180.3509 L 416.286994 180.512442 L 416.348924 180.3509 L 416.472785 180.673984 L 416.782438 179.866276 L 416.906299 180.189359 L 417.09209 179.704734 L 417.154021 179.866276 L 417.401743 179.22011 L 417.463673 179.381651 L 417.525604 179.22011 L 417.587534 179.381651 L 417.773326 178.897027 L 417.835256 179.058568 L 418.144909 178.250861 L 418.206839 178.412402 L 418.26877 178.250861 L 418.702283 179.381651 L 418.764214 179.22011 L 418.826144 179.381651 L 418.888075 179.22011 L 419.135797 179.866276 L 419.197727 179.704734 L 419.259658 179.866276 L 419.383519 179.543193 L 419.445449 179.704734 L 419.56931 179.381651 L 419.693171 179.704734 L 419.755102 179.543193 L 419.817032 179.704734 L 420.064754 179.058568 L 420.126685 179.22011 L 420.312476 178.735485 L 420.374407 178.897027 L 420.436337 178.735485 L 420.498268 178.897027 L 420.560198 178.735485 L 420.684059 179.058568 L 420.74599 178.897027 L 420.869851 179.22011 L 420.993712 178.897027 L 421.055642 179.058568 L 421.674947 177.443153 L 421.736878 177.604695 L 421.860739 177.281612 L 421.922669 177.443153 L 422.108461 176.958529 L 422.294252 177.443153 L 422.541974 176.796987 L 422.603905 176.958529 L 422.727766 176.635446 L 422.851627 176.958529 L 422.913557 176.796987 L 422.975488 176.958529 L 423.28514 176.150821 L 423.409001 176.473904 L 423.470932 176.312363 L 423.532862 176.473904 L 423.780584 175.827738 L 423.904445 176.150821 L 423.966376 175.98928 L 424.090237 176.312363 L 424.214098 175.98928 L 424.276028 176.150821 L 424.337959 175.98928 L 424.399889 176.150821 L 424.585681 175.666197 L 424.647611 175.827738 L 424.895333 175.181572 L 424.957264 175.343113 L 425.019194 175.181572 L 425.204986 175.666197 L 425.328847 175.343113 L 425.390777 175.504655 L 425.514638 175.181572 L 425.576569 175.343113 L 425.76236 174.858489 L 425.824291 175.02003 L 426.010082 174.535406 L 426.195874 175.02003 L 426.319735 174.696947 L 426.381665 174.858489 L 426.443596 174.696947 L 426.505526 174.858489 L 426.629387 174.535406 L 426.691318 174.696947 L 426.93904 174.050781 L 427.00097 174.212323 L 427.062901 174.050781 L 427.124831 174.212323 L 427.186762 174.050781 L 427.248692 174.212323 L 427.682206 173.081532 L 427.744136 173.243074 L 427.806067 173.081532 L 428.115719 173.88924 L 428.17765 173.727698 L 428.23958 173.88924 L 428.363441 173.566157 L 428.425372 173.727698 L 428.673094 173.081532 L 428.920816 173.727698 L 429.106607 173.243074 L 429.168538 173.404615 L 429.230468 173.243074 L 429.292399 173.404615 L 429.354329 173.243074 L 429.41626 173.404615 L 429.602051 172.919991 L 429.787843 173.404615 L 429.849773 173.243074 L 430.097495 173.88924 L 430.407148 173.081532 L 430.469078 173.243074 L 430.531009 173.081532 L 430.592939 173.243074 L 430.65487 173.081532 L 430.778731 173.404615 L 430.840661 173.243074 L 430.902592 173.404615 L 431.026453 173.081532 L 431.088383 173.243074 L 431.150314 173.081532 L 431.212244 173.243074 L 431.336105 172.919991 L 431.459966 173.243074 L 431.521897 173.081532 L 431.645758 173.404615 L 431.769619 173.081532 L 432.017341 173.727698 L 432.141202 173.404615 L 432.326993 173.88924 L 432.698576 172.919991 L 432.884368 173.404615 L 432.946298 173.243074 L 433.13209 173.727698 L 433.379812 173.081532 L 433.503673 173.404615 L 433.565603 173.243074 L 433.627534 173.404615 L 433.875256 172.758449 L 433.937186 172.919991 L 433.999117 172.758449 L 434.184908 173.243074 L 434.43263 172.596908 L 434.494561 172.758449 L 434.804213 171.950742 L 434.990005 172.435366 L 435.113866 172.112283 L 435.175796 172.273825 L 435.237727 172.112283 L 435.299657 172.273825 L 435.733171 171.143034 L 435.795101 171.304576 L 435.857032 171.143034 L 435.918962 171.304576 L 436.042823 170.981493 L 436.104754 171.143034 L 436.228615 170.819951 L 436.352476 171.143034 L 436.414406 170.981493 L 436.600198 171.466117 L 436.724059 171.143034 L 436.785989 171.304576 L 436.90985 170.981493 L 436.971781 171.143034 L 437.095642 170.819951 L 437.157572 170.981493 L 437.281433 170.658409 L 437.343364 170.819951 L 437.405294 170.658409 L 437.529155 170.981493 L 437.838808 170.173785 L 437.900738 170.335326 L 438.08653 169.850702 L 438.14846 170.012243 L 438.210391 169.850702 L 438.396182 170.335326 L 438.458113 170.173785 L 438.581974 170.496868 L 438.705835 170.173785 L 438.767765 170.335326 L 438.891626 170.012243 L 438.953557 170.173785 L 439.139348 169.68916 L 439.32514 170.173785 L 439.510931 169.68916 L 439.696723 170.173785 L 439.758653 170.012243 L 439.882514 170.335326 L 440.130236 169.68916 L 440.254097 170.012243 L 440.316028 169.850702 L 440.501819 170.335326 L 440.56375 170.173785 L 440.62568 170.335326 L 440.811472 169.850702 L 440.873402 170.012243 L 440.935333 169.850702 L 440.997263 170.012243 L 441.059194 169.850702 L 441.121124 170.012243 L 441.183055 169.850702 L 441.368846 170.335326 L 441.616568 169.68916 L 441.740429 170.012243 L 441.86429 169.68916 L 441.926221 169.850702 L 442.173943 169.204536 L 442.297804 169.527619 L 442.359734 169.366077 L 442.421665 169.527619 L 442.545526 169.204536 L 442.607456 169.366077 L 442.669387 169.204536 L 442.731317 169.366077 L 442.793248 169.204536 L 442.855178 169.366077 L 443.164831 168.55837 L 443.226761 168.719911 L 443.288692 168.55837 L 443.350622 168.719911 L 443.412553 168.55837 L 443.474483 168.719911 L 443.536414 168.55837 L 443.660275 168.881453 L 443.722205 168.719911 L 443.784136 168.881453 L 443.907997 168.55837 L 444.465371 170.012243 L 444.527302 169.850702 L 444.589232 170.012243 L 444.651163 169.850702 L 444.775024 170.173785 L 444.960815 169.68916 L 445.022746 169.850702 L 445.146607 169.527619 L 445.270468 169.850702 L 445.332398 169.68916 L 445.394329 169.850702 L 445.456259 169.68916 L 445.51819 169.850702 L 445.58012 169.68916 L 445.889773 170.496868 L 445.951703 170.335326 L 446.261356 171.143034 L 446.323286 170.981493 L 446.385217 171.143034 L 446.571008 170.658409 L 446.7568 171.143034 L 446.81873 170.981493 L 446.880661 171.143034 L 446.942591 170.981493 L 447.004522 171.143034 L 447.190313 170.658409 L 447.252244 170.819951 L 447.685757 169.68916 L 447.809618 170.012243 L 447.871549 169.850702 L 447.933479 170.012243 L 447.99541 169.850702 L 448.05734 170.012243 L 448.181201 169.68916 L 448.428923 170.335326 L 448.614715 169.850702 L 448.676645 170.012243 L 448.738576 169.850702 L 448.800506 170.012243 L 449.110159 169.204536 L 449.29595 169.68916 L 449.357881 169.527619 L 449.419811 169.68916 L 449.605603 169.204536 L 449.729464 169.527619 L 449.791394 169.366077 L 449.977186 169.850702 L 450.224908 169.204536 L 450.286838 169.366077 L 450.348769 169.204536 L 450.410699 169.366077 L 450.596491 168.881453 L 450.720352 169.204536 L 450.906143 168.719911 L 451.091935 169.204536 L 451.153865 169.042994 L 451.215796 169.204536 L 451.277726 169.042994 L 451.339657 169.204536 L 451.401587 169.042994 L 451.525448 169.366077 L 451.587379 169.204536 L 451.77317 169.68916 L 451.835101 169.527619 L 451.897031 169.68916 L 452.082823 169.204536 L 452.144753 169.366077 L 452.268614 169.042994 L 452.454406 169.527619 L 452.640197 169.042994 L 452.702128 169.204536 L 453.631085 166.781413 L 453.754946 167.104496 L 453.816877 166.942955 L 453.878807 167.104496 L 454.126529 166.45833 L 454.25039 166.781413 L 454.560043 165.973706 L 454.745834 166.45833 L 454.807765 166.296789 L 454.869695 166.45833 L 454.993556 166.135247 L 455.055487 166.296789 L 455.117417 166.135247 L 455.179348 166.296789 L 455.42707 165.650622 L 455.550931 165.973706 L 455.922514 165.004456 L 456.046375 165.327539 L 456.356027 164.519832 L 456.541819 165.004456 L 456.72761 164.519832 L 456.789541 164.681373 L 457.161124 163.712124 L 457.223054 163.873666 L 457.408846 163.389041 L 457.470776 163.550583 L 457.594637 163.2275 L 457.656568 163.389041 L 457.96622 162.581334 L 458.337803 163.550583 L 458.523595 163.065958 L 458.771317 163.712124 L 458.957108 163.2275 L 459.080969 163.550583 L 459.20483 163.2275 L 459.390622 163.712124 L 459.452552 163.550583 L 459.638344 164.035207 L 459.700274 163.873666 L 459.762205 164.035207 L 459.824135 163.873666 L 460.071857 164.519832 L 460.133788 164.35829 L 460.195718 164.519832 L 460.319579 164.196749 L 460.38151 164.35829 L 460.505371 164.035207 L 460.567301 164.196749 L 460.691162 163.873666 L 460.753093 164.035207 L 460.938884 163.550583 L 461.000815 163.712124 L 461.124676 163.389041 L 461.310467 163.873666 L 461.434328 163.550583 L 461.496259 163.712124 L 461.558189 163.550583 L 461.805911 164.196749 L 461.867842 164.035207 L 461.929772 164.196749 L 462.053633 163.873666 L 462.239425 164.35829 L 462.301355 164.196749 L 462.487147 164.681373 L 462.549077 164.519832 L 462.611008 164.681373 L 462.982591 163.712124 L 463.044521 163.873666 L 463.106452 163.712124 L 463.168382 163.873666 L 463.230313 163.712124 L 463.416104 164.196749 L 463.478035 164.035207 L 463.663826 164.519832 L 463.911548 163.873666 L 464.035409 164.196749 L 464.15927 163.873666 L 464.345062 164.35829 L 464.406992 164.196749 L 464.468923 164.35829 L 464.716645 163.712124 L 464.840506 164.035207 L 464.902436 163.873666 L 465.026297 164.196749 L 465.212089 163.712124 L 465.274019 163.873666 L 465.521741 163.2275 L 465.583672 163.389041 L 465.707533 163.065958 L 465.831394 163.389041 L 466.017185 162.904417 L 466.141046 163.2275 L 466.202977 163.065958 L 466.326838 163.389041 L 466.63649 162.581334 L 466.698421 162.742875 L 466.884212 162.258251 L 466.946143 162.419792 L 467.070004 162.096709 L 467.193865 162.419792 L 467.441587 161.773626 L 467.503517 161.935168 L 467.565448 161.773626 L 467.751239 162.258251 L 468.060892 161.450543 L 468.122822 161.612085 L 468.184753 161.450543 L 468.432475 162.096709 L 468.556336 161.773626 L 468.680197 162.096709 L 468.989849 161.289002 L 469.05178 161.450543 L 469.175641 161.12746 L 469.237571 161.289002 L 469.299502 161.12746 L 469.361432 161.289002 L 469.423363 161.12746 L 469.485293 161.289002 L 469.547224 161.12746 L 469.733015 161.612085 L 469.794946 161.450543 L 469.980737 161.935168 L 470.104598 161.612085 L 470.166529 161.773626 L 470.228459 161.612085 L 470.35232 161.935168 L 470.476181 161.612085 L 470.661973 162.096709 L 470.785834 161.773626 L 470.909695 162.096709 L 470.971625 161.935168 L 471.033556 162.096709 L 471.157417 161.773626 L 471.219347 161.935168 L 471.281278 161.773626 L 471.467069 162.258251 L 471.776722 161.450543 L 471.838652 161.612085 L 471.962513 161.289002 L 472.086374 161.612085 L 472.210235 161.289002 L 472.272166 161.450543 L 472.396027 161.12746 L 472.457957 161.289002 L 472.581818 160.965919 L 472.705679 161.289002 L 472.76761 161.12746 L 472.82954 161.289002 L 472.891471 161.12746 L 473.015332 161.450543 L 473.077262 161.289002 L 473.386915 162.096709 L 473.634637 161.450543 L 473.696567 161.612085 L 473.758498 161.450543 L 473.882359 161.773626 L 473.944289 161.612085 L 474.130081 162.096709 L 474.625525 160.804377 L 474.749386 161.12746 L 474.811316 160.965919 L 474.873247 161.12746 L 475.120969 160.481294 L 475.182899 160.642835 L 476.173787 158.058171 L 476.421509 158.704337 L 476.607301 158.219713 L 476.855023 158.865879 L 477.288536 157.735088 L 477.412397 158.058171 L 477.474328 157.89663 L 477.536258 158.058171 L 477.845911 157.250464 L 477.907841 157.412005 L 478.279424 156.442756 L 478.341355 156.604298 L 478.403285 156.442756 L 478.589077 156.927381 L 478.712938 156.604298 L 478.774868 156.765839 L 478.836799 156.604298 L 479.02259 157.088922 L 479.208382 156.604298 L 479.270312 156.765839 L 479.641895 155.79659 L 479.703826 155.958132 L 480.013478 155.150424 L 480.075409 155.311965 L 480.137339 155.150424 L 480.19927 155.311965 L 480.2612 155.150424 L 480.323131 155.311965 L 480.508922 154.827341 L 481.190158 156.604298 L 481.252088 156.442756 L 481.49981 157.088922 L 481.561741 156.927381 L 481.747532 157.412005 L 481.933324 156.927381 L 481.995254 157.088922 L 482.242976 156.442756 L 482.304907 156.604298 L 482.73842 155.473507 L 482.862281 155.79659 L 482.986142 155.473507 L 483.110003 155.79659 L 483.357725 155.150424 L 483.419656 155.311965 L 483.481586 155.150424 L 483.543517 155.311965 L 483.667378 154.988882 L 483.791239 155.311965 L 483.853169 155.150424 L 483.9151 155.311965 L 484.038961 154.988882 L 484.100891 155.150424 L 484.224752 154.827341 L 484.286683 154.988882 L 484.472474 154.504258 L 484.534405 154.665799 L 484.658266 154.342716 L 484.720196 154.504258 L 484.844057 154.181175 L 484.905988 154.342716 L 485.029849 154.019633 L 485.15371 154.342716 L 485.21564 154.181175 L 485.277571 154.342716 L 485.339501 154.181175 L 485.463362 154.504258 L 485.525293 154.342716 L 485.649154 154.665799 L 485.711084 154.504258 L 485.773015 154.665799 L 485.834945 154.504258 L 485.896876 154.665799 L 486.020737 154.342716 L 486.144598 154.665799 L 486.516181 153.69655 L 486.640042 154.019633 L 486.825833 153.535009 L 486.887764 153.69655 L 486.949694 153.535009 L 487.011625 153.69655 L 487.073555 153.535009 L 487.135486 153.69655 L 487.197416 153.535009 L 487.259347 153.69655 L 487.321277 153.535009 L 487.445138 153.858092 L 487.507069 153.69655 L 487.568999 153.858092 L 487.63093 153.69655 L 487.69286 153.858092 L 487.754791 153.69655 L 487.878652 154.019633 L 488.002513 153.69655 L 488.188304 154.181175 L 488.250235 154.019633 L 488.374096 154.342716 L 488.497957 154.019633 L 488.559887 154.181175 L 488.86954 153.373467 L 488.93147 153.535009 L 489.055331 153.211926 L 489.117262 153.373467 L 489.179192 153.211926 L 489.241123 153.373467 L 489.364984 153.050384 L 489.426914 153.211926 L 489.488845 153.050384 L 489.612706 153.373467 L 489.674636 153.211926 L 489.984289 154.019633 L 490.10815 153.69655 L 490.17008 153.858092 L 490.232011 153.69655 L 490.603594 154.665799 L 490.665524 154.504258 L 490.727455 154.665799 L 490.789385 154.504258 L 490.913246 154.827341 L 490.975177 154.665799 L 491.099038 154.988882 L 491.160968 154.827341 L 491.222899 154.988882 L 491.40869 154.504258 L 491.470621 154.665799 L 491.532551 154.504258 L 491.656412 154.827341 L 491.842204 154.342716 L 491.966065 154.665799 L 492.027995 154.504258 L 492.089926 154.665799 L 492.523439 153.535009 L 492.58537 153.69655 L 492.709231 153.373467 L 492.771161 153.535009 L 492.956953 153.050384 L 493.018883 153.211926 L 493.142744 152.888843 L 493.266605 153.211926 L 493.514327 152.56576 L 493.638188 152.888843 L 493.82398 152.404218 L 493.88591 152.56576 L 494.319424 151.434969 L 494.381354 151.596511 L 494.814868 150.46572 L 494.876798 150.627261 L 494.938729 150.46572 L 495.06259 150.788803 L 495.310312 150.142637 L 495.496103 150.627261 L 495.681895 150.142637 L 495.743825 150.304178 L 495.867686 149.981095 L 495.991547 150.304178 L 496.053478 150.142637 L 496.239269 150.627261 L 496.36313 150.304178 L 496.425061 150.46572 L 496.672783 149.819554 L 496.796644 150.142637 L 496.858574 149.981095 L 496.920505 150.142637 L 497.044366 149.819554 L 497.292088 150.46572 L 497.53981 149.819554 L 497.663671 150.142637 L 497.725601 149.981095 L 497.849462 150.304178 L 497.911393 150.142637 L 498.035254 150.46572 L 498.097184 150.304178 L 498.344906 150.950345 L 498.468767 150.627261 L 498.530698 150.788803 L 498.964211 149.658012 L 499.026142 149.819554 L 499.088072 149.658012 L 499.273864 150.142637 L 499.335794 149.981095 L 499.397725 150.142637 L 499.459655 149.981095 L 499.645447 150.46572 L 499.769308 150.142637 L 499.893169 150.46572 L 500.202821 149.658012 L 500.264752 149.819554 L 500.326682 149.658012 L 500.450543 149.981095 L 500.698265 149.334929 L 500.760196 149.496471 L 501.069848 148.688763 L 501.193709 149.011846 L 501.751084 147.557973 L 501.874945 147.881056 L 501.998806 147.557973 L 502.246528 148.204139 L 502.432319 147.719514 L 502.55618 148.042597 L 502.927763 147.073348 L 503.051624 147.396431 L 503.299346 146.750265 L 503.423207 147.073348 L 503.485138 146.911807 L 503.670929 147.396431 L 503.73286 147.23489 L 503.918651 147.719514 L 504.104443 147.23489 L 504.166373 147.396431 L 504.228304 147.23489 L 504.352165 147.557973 L 504.785678 146.427182 L 504.847609 146.588724 L 505.0334 146.104099 L 505.219192 146.588724 L 505.281122 146.427182 L 505.343053 146.588724 L 505.466914 146.265641 L 505.528844 146.427182 L 505.652705 146.104099 L 505.714636 146.265641 L 505.838497 145.942557 L 505.962358 146.265641 L 506.086219 145.942557 L 506.21008 146.265641 L 506.333941 145.942557 L 506.457802 146.265641 L 506.581663 145.942557 L 506.705524 146.265641 L 506.767454 146.104099 L 506.891315 146.427182 L 507.200968 145.619474 L 507.324829 145.942557 L 507.51062 145.457933 L 507.696412 145.942557 L 507.758342 145.781016 L 507.944134 146.265641 L 508.006064 146.104099 L 508.067995 146.265641 L 508.129925 146.104099 L 508.191856 146.265641 L 508.439578 145.619474 L 508.501508 145.781016 L 508.625369 145.457933 L 508.6873 145.619474 L 508.996952 144.811767 L 509.058883 144.973308 L 509.120813 144.811767 L 509.306605 145.296391 L 509.368535 145.13485 L 509.430466 145.296391 L 509.554327 144.973308 L 509.678188 145.296391 L 509.740118 145.13485 L 509.802049 145.296391 L 509.863979 145.13485 L 509.98784 145.457933 L 510.235562 144.811767 L 510.359423 145.13485 L 510.421354 144.973308 L 510.483284 145.13485 L 510.607145 144.811767 L 510.978728 145.781016 L 511.102589 145.457933 L 511.16452 145.619474 L 511.22645 145.457933 L 511.288381 145.619474 L 511.536103 144.973308 L 511.598033 145.13485 L 511.659964 144.973308 L 511.783825 145.296391 L 512.031547 144.650225 L 512.093477 144.811767 L 512.155408 144.650225 L 512.217338 144.811767 L 512.588921 143.842518 L 512.774713 144.327142 L 513.084365 143.519435 L 513.146296 143.680976 L 513.208226 143.519435 L 513.270157 143.680976 L 513.394018 143.357893 L 513.455948 143.519435 L 513.517879 143.357893 L 513.579809 143.519435 L 513.70367 143.196352 L 513.827531 143.519435 L 514.013323 143.03481 L 514.075253 143.196352 L 514.137184 143.03481 L 514.322975 143.519435 L 514.384906 143.357893 L 514.446836 143.519435 L 514.508767 143.357893 L 514.694558 143.842518 L 514.756489 143.680976 L 514.818419 143.842518 L 514.88035 143.680976 L 515.004211 144.004059 L 515.190002 143.519435 L 515.251933 143.680976 L 515.313863 143.519435 L 515.437724 143.842518 L 515.499655 143.680976 L 515.561585 143.842518 L 515.623516 143.680976 L 515.685446 143.842518 L 515.809307 143.519435 L 515.933168 143.842518 L 515.995099 143.680976 L 516.057029 143.842518 L 516.366682 143.03481 L 516.490543 143.357893 L 516.614404 143.03481 L 516.862126 143.680976 L 517.109848 143.03481 L 517.171778 143.196352 L 517.233709 143.03481 L 517.295639 143.196352 L 517.35757 143.03481 L 517.4195 143.196352 L 517.667222 142.550186 L 517.729153 142.711727 L 517.914944 142.227103 L 517.976875 142.388644 L 518.162666 141.90402 L 518.224597 142.065561 L 518.348458 141.742478 L 518.410388 141.90402 L 518.534249 141.580937 L 518.59618 141.742478 L 518.720041 141.419395 L 518.781971 141.580937 L 518.967763 141.096312 L 519.029693 141.257854 L 519.153554 140.93477 L 519.463207 141.742478 L 519.525137 141.580937 L 519.648998 141.90402 L 519.710929 141.742478 L 519.772859 141.90402 L 519.83479 141.742478 L 519.89672 141.90402 L 520.020581 141.580937 L 520.082512 141.742478 L 520.144442 141.580937 L 520.206373 141.742478 L 520.454095 141.096312 L 520.516025 141.257854 L 520.577956 141.096312 L 520.639886 141.257854 L 520.763747 140.93477 L 520.825678 141.096312 L 520.887608 140.93477 L 520.949539 141.096312 L 521.0734 140.773229 L 521.13533 140.93477 L 521.259191 140.611687 L 521.321122 140.773229 L 521.444983 140.450146 L 521.506913 140.611687 L 521.568844 140.450146 L 521.630774 140.611687 L 521.878496 139.965521 L 521.940427 140.127063 L 522.250079 139.319355 L 522.37394 139.642438 L 522.435871 139.480897 L 522.497801 139.642438 L 522.559732 139.480897 L 522.745523 139.965521 L 522.807454 139.80398 L 522.931315 140.127063 L 523.055176 139.80398 L 523.117106 139.965521 L 523.302898 139.480897 L 523.364828 139.642438 L 523.488689 139.319355 L 523.61255 139.642438 L 523.674481 139.480897 L 523.736411 139.642438 L 524.107994 138.673189 L 524.169925 138.834731 L 524.355716 138.350106 L 524.417647 138.511648 L 524.479577 138.350106 L 524.541508 138.511648 L 524.913091 137.542399 L 525.098882 138.027023 L 525.222743 137.70394 L 525.284674 137.865482 L 525.408535 137.542399 L 525.470465 137.70394 L 525.532396 137.542399 L 525.656257 137.865482 L 525.903979 137.219316 L 525.965909 137.380857 L 526.213631 136.734691 L 526.337492 137.057774 L 526.523284 136.57315 L 526.709075 137.057774 L 527.204519 135.765442 L 527.32838 136.088525 L 527.947685 134.47311 L 528.133477 134.957734 L 528.195407 134.796193 L 528.319268 135.119276 L 528.381199 134.957734 L 528.443129 135.119276 L 528.50506 134.957734 L 528.56699 135.119276 L 528.752782 134.634651 L 528.814712 134.796193 L 529.000504 134.311568 L 529.062434 134.47311 L 529.124365 134.311568 L 529.186295 134.47311 L 529.434017 133.826944 L 529.495948 133.988485 L 529.557878 133.826944 L 529.619809 133.988485 L 529.681739 133.826944 L 529.8056 134.150027 L 529.991392 133.665402 L 530.115253 133.988485 L 530.239114 133.665402 L 530.301044 133.826944 L 530.424905 133.503861 L 530.548766 133.826944 L 530.610697 133.665402 L 530.672627 133.826944 L 530.920349 133.180778 L 531.230002 133.988485 L 531.291932 133.826944 L 531.353863 133.988485 L 531.415793 133.826944 L 531.477724 133.988485 L 531.601585 133.665402 L 531.849307 134.311568 L 531.911237 134.150027 L 531.973168 134.311568 L 532.035098 134.150027 L 532.158959 134.47311 L 532.28282 134.150027 L 532.344751 134.311568 L 532.530542 133.826944 L 532.592473 133.988485 L 532.654403 133.826944 L 532.778264 134.150027 L 532.902125 133.826944 L 532.964056 133.988485 L 533.087917 133.665402 L 533.149847 133.826944 L 533.335639 133.342319 L 533.397569 133.503861 L 533.4595 133.342319 L 533.645291 133.826944 L 533.893013 133.180778 L 533.954944 133.342319 L 534.078805 133.019236 L 534.264596 133.503861 L 534.326527 133.342319 L 534.388457 133.503861 L 534.512318 133.180778 L 534.574249 133.342319 L 534.69811 133.019236 L 534.76004 133.180778 L 534.883901 132.857695 L 535.007762 133.180778 L 535.255484 132.534612 L 535.317415 132.696153 L 535.379345 132.534612 L 535.503206 132.857695 L 535.565137 132.696153 L 535.627067 132.857695 L 535.874789 132.211529 L 535.93672 132.37307 L 535.99865 132.211529 L 536.122511 132.534612 L 536.184442 132.37307 L 536.308303 132.696153 L 536.370233 132.534612 L 536.556025 133.019236 L 536.741816 132.534612 L 537.113399 133.503861 L 537.299191 133.019236 L 537.546913 133.665402 L 537.670774 133.342319 L 537.732704 133.503861 L 537.794635 133.342319 L 537.980426 133.826944 L 538.042357 133.665402 L 538.228148 134.150027 L 538.290079 133.988485 L 538.352009 134.150027 L 538.537801 133.665402 L 538.599731 133.826944 L 538.909384 133.019236 L 538.971314 133.180778 L 539.033245 133.019236 L 539.157106 133.342319 L 539.219036 133.180778 L 539.280967 133.342319 L 539.590619 132.534612 L 539.71448 132.857695 L 540.024133 132.049987 L 540.086063 132.211529 L 540.333785 131.565363 L 540.395716 131.726904 L 540.643438 131.080738 L 540.705368 131.24228 L 540.829229 130.919196 L 540.89116 131.080738 L 541.076951 130.596113 L 541.200812 130.919196 L 541.386604 130.434572 L 541.572395 130.919196 L 541.943978 129.949947 L 542.253631 130.757655 L 542.315561 130.596113 L 542.439422 130.919196 L 542.501353 130.757655 L 542.625214 131.080738 L 542.687144 130.919196 L 542.749075 131.080738 L 542.811005 130.919196 L 542.934866 131.24228 L 542.996797 131.080738 L 543.058727 131.24228 L 543.182588 130.919196 L 543.244519 131.080738 L 543.306449 130.919196 L 543.36838 131.080738 L 543.43031 130.919196 L 543.492241 131.080738 L 543.554171 130.919196 L 543.616102 131.080738 L 543.863824 130.434572 L 543.925754 130.596113 L 543.987685 130.434572 L 544.235407 131.080738 L 544.545059 130.27303 L 544.916642 131.24228 L 544.978573 131.080738 L 545.102434 131.403821 L 545.535947 130.27303 L 545.969461 131.403821 L 546.217183 130.757655 L 546.402974 131.24228 L 546.464905 131.080738 L 546.650696 131.565363 L 546.712627 131.403821 L 546.774557 131.565363 L 546.836488 131.403821 L 546.898418 131.565363 L 547.08421 131.080738 L 547.14614 131.24228 L 547.331932 130.757655 L 547.393862 130.919196 L 547.455793 130.757655 L 547.579654 131.080738 L 547.703515 130.757655 L 547.765445 130.919196 L 547.889306 130.596113 L 547.951237 130.757655 L 548.013167 130.596113 L 548.198959 131.080738 L 548.260889 130.919196 L 548.32282 131.080738 L 548.570542 130.434572 L 548.694403 130.757655 L 548.818264 130.434572 L 548.880194 130.596113 L 548.942125 130.434572 L 549.437569 131.726904 L 549.499499 131.565363 L 549.56143 131.726904 L 549.62336 131.565363 L 549.685291 131.726904 L 549.809152 131.403821 L 549.933013 131.726904 L 550.118804 131.24228 L 550.180735 131.403821 L 550.242665 131.24228 L 550.552318 132.049987 L 550.614248 131.888446 L 550.676179 132.049987 L 550.80004 131.726904 L 550.923901 132.049987 L 550.985831 131.888446 L 551.047762 132.049987 L 551.109692 131.888446 L 551.171623 132.049987 L 551.481275 131.24228 L 551.605136 131.565363 L 551.790928 131.080738 L 551.976719 131.565363 L 552.10058 131.24228 L 552.348302 131.888446 L 552.410233 131.726904 L 552.472163 131.888446 L 552.719885 131.24228 L 553.029538 132.049987 L 553.091468 131.888446 L 553.215329 132.211529 L 553.27726 132.049987 L 553.463051 132.534612 L 553.586912 132.211529 L 553.710774 132.534612 L 553.896565 132.049987 L 554.020426 132.37307 L 554.144287 132.049987 L 554.206218 132.211529 L 554.268148 132.049987 L 554.392009 132.37307 L 554.45394 132.211529 L 554.51587 132.37307 L 554.825523 131.565363 L 554.887453 131.726904 L 554.949384 131.565363 L 555.073245 131.888446 L 555.135175 131.726904 L 555.197106 131.888446 L 555.259036 131.726904 L 555.320967 131.888446 L 555.568689 131.24228 L 555.630619 131.403821 L 555.75448 131.080738 L 555.816411 131.24228 L 555.878341 131.080738 L 556.064133 131.565363 L 556.311855 130.919196 L 556.435716 131.24228 L 557.116951 129.465323 L 557.178882 129.626864 L 557.240812 129.465323 L 557.302743 129.626864 L 557.426604 129.303781 L 557.550465 129.626864 L 557.798187 128.980698 L 558.16977 129.949947 L 558.417492 129.303781 L 558.479422 129.465323 L 558.603283 129.14224 L 558.665214 129.303781 L 558.727144 129.14224 L 558.912936 129.626864 L 559.036797 129.303781 L 559.160658 129.626864 L 559.594171 128.496074 L 559.656102 128.657615 L 559.965754 127.849908 L 560.151546 128.334532 L 560.213476 128.172991 L 560.275407 128.334532 L 560.337337 128.172991 L 560.399268 128.334532 L 560.461198 128.172991 L 560.585059 128.496074 L 560.70892 128.172991 L 560.770851 128.334532 L 560.832781 128.172991 L 560.956642 128.496074 L 561.080503 128.172991 L 561.204364 128.496074 L 561.328225 128.172991 L 561.514017 128.657615 L 561.637878 128.334532 L 561.699808 128.496074 L 561.761739 128.334532 L 562.133322 129.303781 L 562.257183 128.980698 L 562.381044 129.303781 L 562.442974 129.14224 L 562.504905 129.303781 L 562.628766 128.980698 L 562.876488 129.626864 L 563.12421 128.980698 L 563.310001 129.465323 L 563.433862 129.14224 L 563.495793 129.303781 L 563.557723 129.14224 L 563.619654 129.303781 L 563.681584 129.14224 L 563.743515 129.303781 L 563.867376 128.980698 L 563.929306 129.14224 L 564.238959 128.334532 L 564.300889 128.496074 L 564.36282 128.334532 L 564.548611 128.819157 L 564.610542 128.657615 L 564.982125 129.626864 L 565.044055 129.465323 L 565.105986 129.626864 L 565.353708 128.980698 L 565.415638 129.14224 L 565.66336 128.496074 L 565.725291 128.657615 L 565.849152 128.334532 L 565.911082 128.496074 L 565.973013 128.334532 L 566.034943 128.496074 L 566.096874 128.334532 L 566.220735 128.657615 L 566.282665 128.496074 L 566.406526 128.819157 L 567.087762 127.0422 L 567.149692 127.203742 L 567.211623 127.0422 L 567.459345 127.688366 L 567.830928 126.719117 L 567.892858 126.880659 L 568.202511 126.072951 L 568.326372 126.396034 L 568.388302 126.234492 L 568.450233 126.396034 L 568.512163 126.234492 L 568.697955 126.719117 L 568.821816 126.396034 L 568.883746 126.557576 L 568.945677 126.396034 L 569.007607 126.557576 L 569.069538 126.396034 L 569.131468 126.557576 L 569.37919 125.911409 L 569.441121 126.072951 L 569.998495 124.619077 L 570.122356 124.94216 L 570.184287 124.780619 L 570.370078 125.265243 L 570.741661 124.295994 L 570.803592 124.457536 L 570.865522 124.295994 L 571.051314 124.780619 L 571.237105 124.295994 L 571.484827 124.94216 L 571.608688 124.619077 L 571.670619 124.780619 L 571.732549 124.619077 L 571.85641 124.94216 L 571.980271 124.619077 L 572.166063 125.103702 L 572.351854 124.619077 L 572.537646 125.103702 L 572.599576 124.94216 L 572.661507 125.103702 L 572.723437 124.94216 L 572.785368 125.103702 L 572.909229 124.780619 L 573.03309 125.103702 L 573.156951 124.780619 L 573.280812 125.103702 L 573.342742 124.94216 L 573.404673 125.103702 L 573.466603 124.94216 L 573.714325 125.588326 L 573.838186 125.265243 L 574.023978 125.749868 L 574.085908 125.588326 L 574.147839 125.749868 L 574.2717 125.426785 L 574.33363 125.588326 L 574.395561 125.426785 L 574.457491 125.588326 L 574.519422 125.426785 L 574.581352 125.588326 L 574.643283 125.426785 L 574.705213 125.588326 L 574.829074 125.265243 L 575.014866 125.749868 L 575.076796 125.588326 L 575.200657 125.911409 L 575.51031 125.103702 L 575.634171 125.426785 L 575.819962 124.94216 L 575.881893 125.103702 L 576.005754 124.780619 L 576.067684 124.94216 L 576.315406 124.295994 L 576.377337 124.457536 L 576.501198 124.134453 L 576.625059 124.457536 L 576.74892 124.134453 L 576.81085 124.295994 L 577.182433 123.326745 L 577.244364 123.488287 L 577.306294 123.326745 L 577.430155 123.649828 L 577.492086 123.488287 L 577.554016 123.649828 L 577.801738 123.003662 L 577.863669 123.165204 L 577.98753 122.842121 L 578.04946 123.003662 L 578.111391 122.842121 L 578.173321 123.003662 L 578.235252 122.842121 L 578.421043 123.326745 L 578.482974 123.165204 L 578.544904 123.326745 L 578.606835 123.165204 L 578.668765 123.326745 L 578.730696 123.165204 L 578.792626 123.326745 L 578.916487 123.003662 L 579.040348 123.326745 L 579.164209 123.003662 L 579.22614 123.165204 L 579.28807 123.003662 L 579.350001 123.165204 L 579.411931 123.003662 L 579.473862 123.165204 L 579.659653 122.680579 L 579.783514 123.003662 L 579.907375 122.680579 L 579.969306 122.842121 L 580.155097 122.357496 L 580.217028 122.519038 L 580.278958 122.357496 L 580.340889 122.519038 L 580.650541 121.71133 L 580.836333 122.195955 L 580.898263 122.034413 L 580.960194 122.195955 L 581.145985 121.71133 L 581.207916 121.872872 L 581.393707 121.388247 L 581.455638 121.549789 L 581.641429 121.065164 L 581.70336 121.226705 L 581.951082 120.580539 L 582.013012 120.742081 L 582.198804 120.257456 L 582.322665 120.580539 L 582.384595 120.418998 L 582.632317 121.065164 L 582.756178 120.742081 L 582.818109 120.903622 L 582.94197 120.580539 L 583.065831 120.903622 L 583.127761 120.742081 L 583.189692 120.903622 L 583.251622 120.742081 L 583.375483 121.065164 L 583.437414 120.903622 L 583.561275 121.226705 L 583.623205 121.065164 L 583.685136 121.226705 L 583.747066 121.065164 L 583.932858 121.549789 L 584.056719 121.226705 L 584.118649 121.388247 L 584.24251 121.065164 L 584.304441 121.226705 L 584.428302 120.903622 L 584.676024 121.549789 L 584.923746 120.903622 L 584.985676 121.065164 L 585.171468 120.580539 L 585.666912 121.872872 L 585.790773 121.549789 L 585.914634 121.872872 L 586.100425 121.388247 L 586.162356 121.549789 L 586.224286 121.388247 L 586.472008 122.034413 L 586.533939 121.872872 L 586.6578 122.195955 L 586.843591 121.71133 L 586.905522 121.872872 L 586.967452 121.71133 L 587.029383 121.872872 L 587.215174 121.388247 L 587.277105 121.549789 L 587.339035 121.388247 L 587.462896 121.71133 L 587.524827 121.549789 L 587.586757 121.71133 L 587.710618 121.388247 L 587.834479 121.71133 L 588.020271 121.226705 L 588.082201 121.388247 L 588.763437 119.61129 L 588.887298 119.934373 L 588.949228 119.772832 L 589.011159 119.934373 L 589.258881 119.288207 L 589.320811 119.449749 L 589.506603 118.965124 L 589.754325 119.61129 L 590.125908 118.642041 L 590.187838 118.803583 L 590.249769 118.642041 L 590.43556 119.126666 L 590.497491 118.965124 L 590.621352 119.288207 L 591.116796 117.995875 L 591.178726 118.157417 L 591.302587 117.834334 L 591.426448 118.157417 L 591.488379 117.995875 L 591.67417 118.4805 L 591.921892 117.834334 L 592.045753 118.157417 L 592.107684 117.995875 L 592.231545 118.318958 L 592.293475 118.157417 L 592.541197 118.803583 L 592.726989 118.318958 L 592.726989 118.318958 " style="fill:none;opacity:0.9;stroke:#ff7f0e;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_14"> <path clip-path="url(#pf8d0b4ca52)" d="M 85.454261 307.510997 L 85.825844 306.70329 L 85.949705 306.972526 L 86.011636 306.837908 L 86.073566 306.972526 L 86.50708 306.0302 L 86.630941 306.299436 L 86.816732 305.895582 L 87.002524 306.299436 L 87.064454 306.164818 L 87.126385 306.299436 L 87.250246 306.0302 L 87.436037 306.434054 L 87.497968 306.299436 L 87.621829 306.568672 L 87.683759 306.434054 L 87.80762 306.70329 L 88.055342 306.164818 L 88.241134 306.568672 L 88.303064 306.434054 L 88.364995 306.568672 L 88.550786 306.164818 L 88.674647 306.434054 L 88.736578 306.299436 L 88.798508 306.434054 L 88.860439 306.299436 L 88.9843 306.568672 L 89.293952 305.895582 L 89.417813 306.164818 L 89.479744 306.0302 L 89.851327 306.837908 L 89.913257 306.70329 L 90.160979 307.241762 L 90.22291 307.107144 L 90.28484 307.241762 L 90.346771 307.107144 L 90.408701 307.241762 L 90.470632 307.107144 L 90.532562 307.241762 L 90.842215 306.568672 L 90.966076 306.837908 L 91.028006 306.70329 L 91.089937 306.837908 L 91.52345 305.895582 L 91.647311 306.164818 L 91.956964 305.491728 L 92.080825 305.760964 L 92.328547 305.222493 L 92.452408 305.491728 L 92.885921 304.549403 L 93.009782 304.818639 L 93.071713 304.684021 L 93.133643 304.818639 L 93.381365 304.280167 L 93.443296 304.414785 L 93.505226 304.280167 L 93.567157 304.414785 L 93.691018 304.145549 L 93.752948 304.280167 L 93.814879 304.145549 L 93.93874 304.414785 L 94.00067 304.280167 L 94.062601 304.414785 L 94.124531 304.280167 L 94.186462 304.414785 L 94.248392 304.280167 L 94.310323 304.414785 L 94.372253 304.280167 L 94.434184 304.414785 L 94.496114 304.280167 L 94.558045 304.414785 L 94.619975 304.280167 L 94.681906 304.414785 L 94.743836 304.280167 L 94.805767 304.414785 L 94.867697 304.280167 L 95.17735 304.953257 L 95.301211 304.684021 L 95.487002 305.087875 L 95.610863 304.818639 L 95.734724 305.087875 L 95.796655 304.953257 L 95.858585 305.087875 L 96.230168 304.280167 L 96.292099 304.414785 L 96.354029 304.280167 L 96.47789 304.549403 L 96.601751 304.280167 L 96.663682 304.414785 L 96.973334 303.741695 L 97.035265 303.876313 L 97.282987 303.337842 L 97.344917 303.47246 L 97.468778 303.203224 L 97.530709 303.337842 L 97.840361 302.664752 L 98.026153 303.068606 L 98.150014 302.79937 L 98.211944 302.933988 L 98.273875 302.79937 L 98.397736 303.068606 L 98.521597 302.79937 L 98.583527 302.933988 L 98.831249 302.395516 L 98.95511 302.664752 L 99.202832 302.12628 L 99.264763 302.260898 L 99.326693 302.12628 L 99.388624 302.260898 L 99.884068 301.183955 L 100.069859 301.587809 L 100.19372 301.318573 L 100.565303 302.12628 L 100.751095 301.722426 L 100.813025 301.857044 L 100.874956 301.722426 L 101.060747 302.12628 L 101.184608 301.857044 L 101.3704 302.260898 L 101.618122 301.722426 L 101.680052 301.857044 L 101.803913 301.587809 L 101.865844 301.722426 L 101.927774 301.587809 L 101.989705 301.722426 L 102.051635 301.587809 L 102.113566 301.722426 L 102.237427 301.453191 L 102.299357 301.587809 L 102.361288 301.453191 L 102.485149 301.722426 L 102.60901 301.453191 L 102.732871 301.722426 L 102.980593 301.183955 L 103.166384 301.587809 L 103.228315 301.453191 L 103.290245 301.587809 L 103.352176 301.453191 L 103.537967 301.857044 L 103.599898 301.722426 L 103.785689 302.12628 L 103.90955 301.857044 L 103.971481 301.991662 L 104.157272 301.587809 L 104.219203 301.722426 L 104.281133 301.587809 L 104.404994 301.857044 L 104.652716 301.318573 L 104.838508 301.722426 L 104.900438 301.587809 L 105.333952 302.530134 L 105.395882 302.395516 L 105.457813 302.530134 L 106.139048 301.049337 L 106.262909 301.318573 L 106.32484 301.183955 L 106.448701 301.453191 L 106.696423 300.914719 L 106.758353 301.049337 L 106.944145 300.645483 L 107.068006 300.914719 L 107.129936 300.780101 L 107.315728 301.183955 L 107.377658 301.049337 L 107.62538 301.587809 L 107.687311 301.453191 L 107.749241 301.587809 L 108.058894 300.914719 L 108.120824 301.049337 L 108.182755 300.914719 L 108.244685 301.049337 L 108.306616 300.914719 L 108.368546 301.049337 L 108.554338 300.645483 L 108.740129 301.049337 L 109.359434 299.703157 L 109.483295 299.972393 L 109.545226 299.837775 L 109.669087 300.107011 L 109.731017 299.972393 L 109.792948 300.107011 L 109.916809 299.837775 L 110.04067 300.107011 L 110.164531 299.837775 L 110.226461 299.972393 L 110.288392 299.837775 L 110.350322 299.972393 L 110.412253 299.837775 L 110.536114 300.107011 L 110.659975 299.837775 L 110.845766 300.241629 L 110.907697 300.107011 L 111.093488 300.510865 L 111.155419 300.376247 L 111.465071 301.049337 L 111.527002 300.914719 L 111.774724 301.453191 L 111.836654 301.318573 L 111.898585 301.453191 L 112.084376 301.049337 L 112.208237 301.318573 L 112.270168 301.183955 L 112.332098 301.318573 L 112.455959 301.049337 L 112.827542 301.857044 L 113.075264 301.318573 L 113.199125 301.587809 L 113.322986 301.318573 L 113.508778 301.722426 L 113.694569 301.318573 L 114.004222 301.991662 L 114.190013 301.587809 L 114.313874 301.857044 L 114.375805 301.722426 L 114.561596 302.12628 L 114.623527 301.991662 L 114.747388 302.260898 L 114.871249 301.991662 L 114.933179 302.12628 L 115.118971 301.722426 L 115.180901 301.857044 L 115.366693 301.453191 L 115.490554 301.722426 L 115.614415 301.453191 L 115.676345 301.587809 L 115.738276 301.453191 L 115.800206 301.587809 L 115.924067 301.318573 L 115.985998 301.453191 L 116.047928 301.318573 L 116.109859 301.453191 L 116.23372 301.183955 L 116.543372 301.857044 L 116.667233 301.587809 L 116.729164 301.722426 L 116.791094 301.587809 L 116.914955 301.857044 L 117.100747 301.453191 L 117.162677 301.587809 L 117.224608 301.453191 L 117.348469 301.722426 L 117.53426 301.318573 L 117.596191 301.453191 L 117.658121 301.318573 L 117.720052 301.453191 L 117.843913 301.183955 L 117.905843 301.318573 L 118.215496 300.645483 L 118.277426 300.780101 L 118.587079 300.107011 L 118.834801 300.645483 L 119.020592 300.241629 L 119.082523 300.376247 L 119.206384 300.107011 L 119.268314 300.241629 L 119.392175 299.972393 L 119.516036 300.241629 L 119.577967 300.107011 L 119.639897 300.241629 L 119.701828 300.107011 L 119.763758 300.241629 L 119.887619 299.972393 L 120.01148 300.241629 L 120.073411 300.107011 L 120.135341 300.241629 L 120.197272 300.107011 L 120.259202 300.241629 L 120.321133 300.107011 L 120.444994 300.376247 L 120.692716 299.837775 L 120.754646 299.972393 L 120.816577 299.837775 L 121.064299 300.376247 L 121.126229 300.241629 L 121.18816 300.376247 L 121.25009 300.241629 L 121.312021 300.376247 L 121.373951 300.241629 L 121.497812 300.510865 L 121.559743 300.376247 L 121.621673 300.510865 L 121.869395 299.972393 L 122.055187 300.376247 L 122.117117 300.241629 L 122.179048 300.376247 L 122.364839 299.972393 L 122.42677 300.107011 L 122.4887 299.972393 L 122.612561 300.241629 L 122.736422 299.972393 L 122.922214 300.376247 L 123.046075 300.107011 L 123.108005 300.241629 L 123.479588 299.433922 L 123.541519 299.56854 L 123.603449 299.433922 L 123.66538 299.56854 L 123.72731 299.433922 L 123.913102 299.837775 L 124.098893 299.433922 L 124.408546 300.107011 L 124.780129 299.299304 L 125.027851 299.837775 L 125.151712 299.56854 L 125.213643 299.703157 L 125.337504 299.433922 L 125.399434 299.56854 L 125.461365 299.433922 L 125.647156 299.837775 L 126.266461 298.491596 L 126.328392 298.626214 L 126.390322 298.491596 L 126.452253 298.626214 L 126.638044 298.22236 L 126.885766 298.760832 L 127.009627 298.491596 L 127.133488 298.760832 L 127.195419 298.626214 L 127.38121 299.030068 L 127.443141 298.89545 L 127.505071 299.030068 L 127.690863 298.626214 L 127.814724 298.89545 L 127.876654 298.760832 L 127.938585 298.89545 L 128.000515 298.760832 L 128.124376 299.030068 L 128.186307 298.89545 L 128.248237 299.030068 L 128.372098 298.760832 L 128.434029 298.89545 L 128.55789 298.626214 L 128.61982 298.760832 L 128.805612 298.356978 L 128.929473 298.626214 L 129.177195 298.087742 L 129.301056 298.356978 L 129.424917 298.087742 L 129.548778 298.356978 L 129.734569 297.953124 L 129.7965 298.087742 L 129.982291 297.683889 L 130.044222 297.818506 L 130.168083 297.549271 L 130.230013 297.683889 L 130.291944 297.549271 L 130.353874 297.683889 L 130.415805 297.549271 L 130.477735 297.683889 L 130.539666 297.549271 L 130.663527 297.818506 L 130.787388 297.549271 L 130.849318 297.683889 L 130.911249 297.549271 L 130.973179 297.683889 L 131.03511 297.549271 L 131.09704 297.683889 L 131.220901 297.414653 L 131.344762 297.683889 L 131.592484 297.145417 L 131.778276 297.549271 L 131.840206 297.414653 L 131.902137 297.549271 L 131.964067 297.414653 L 132.025998 297.549271 L 132.087928 297.414653 L 132.149859 297.549271 L 132.397581 297.010799 L 132.459511 297.145417 L 132.583372 296.876181 L 132.831094 297.414653 L 133.016886 297.010799 L 133.078816 297.145417 L 133.202677 296.876181 L 133.264608 297.010799 L 133.388469 296.741563 L 133.51233 297.010799 L 133.636191 296.741563 L 133.698121 296.876181 L 133.760052 296.741563 L 133.821982 296.876181 L 133.883913 296.741563 L 133.945843 296.876181 L 134.317426 296.068473 L 134.379357 296.203091 L 134.565148 295.799238 L 134.689009 296.068473 L 134.75094 295.933855 L 134.874801 296.203091 L 134.936731 296.068473 L 135.122523 296.472327 L 135.246384 296.203091 L 135.308314 296.337709 L 135.432175 296.068473 L 135.494106 296.203091 L 135.741828 295.66462 L 135.98955 296.203091 L 136.175341 295.799238 L 136.299202 296.068473 L 136.670785 295.260766 L 136.794646 295.530002 L 136.856577 295.395384 L 137.042368 295.799238 L 137.104299 295.66462 L 137.166229 295.799238 L 137.352021 295.395384 L 137.475882 295.66462 L 137.537812 295.530002 L 137.599743 295.66462 L 137.723604 295.395384 L 137.785534 295.530002 L 137.909395 295.260766 L 137.971326 295.395384 L 138.219048 294.856912 L 138.342909 295.126148 L 138.404839 294.99153 L 138.46677 295.126148 L 138.776422 294.453058 L 138.962214 294.856912 L 139.519588 293.645351 L 139.581519 293.779969 L 139.70538 293.510733 L 139.76731 293.645351 L 139.829241 293.510733 L 139.891171 293.645351 L 140.015032 293.376115 L 140.076963 293.510733 L 140.138893 293.376115 L 140.324685 293.779969 L 140.386615 293.645351 L 140.448546 293.779969 L 140.510476 293.645351 L 140.572407 293.779969 L 140.820129 293.241497 L 140.882059 293.376115 L 141.067851 292.972261 L 141.129781 293.106879 L 141.377503 292.568407 L 141.439434 292.703025 L 141.501364 292.568407 L 141.563295 292.703025 L 141.687156 292.433789 L 141.749086 292.568407 L 141.811017 292.433789 L 141.872947 292.568407 L 141.934878 292.433789 L 142.306461 293.241497 L 142.554183 292.703025 L 142.616113 292.837643 L 142.739974 292.568407 L 142.801905 292.703025 L 142.925766 292.433789 L 143.049627 292.703025 L 143.235418 292.299171 L 143.297349 292.433789 L 143.359279 292.299171 L 143.48314 292.568407 L 143.730862 292.029935 L 143.792793 292.164553 L 143.854723 292.029935 L 144.040515 292.433789 L 144.226306 292.029935 L 144.288237 292.164553 L 144.535959 291.626082 L 144.597889 291.7607 L 144.845611 291.222228 L 144.907542 291.356846 L 145.217194 290.683756 L 145.526847 291.356846 L 145.774569 290.818374 L 145.836499 290.952992 L 145.96036 290.683756 L 146.022291 290.818374 L 146.270013 290.279902 L 146.517735 290.818374 L 146.703526 290.41452 L 147.075109 291.222228 L 147.19897 290.952992 L 147.322831 291.222228 L 147.384762 291.08761 L 147.446692 291.222228 L 147.508623 291.08761 L 147.756345 291.626082 L 147.942136 291.222228 L 148.065997 291.491464 L 148.127928 291.356846 L 148.251789 291.626082 L 148.313719 291.491464 L 148.561441 292.029935 L 148.623372 291.895318 L 148.747233 292.164553 L 148.809163 292.029935 L 148.933024 292.299171 L 149.056885 292.029935 L 149.118816 292.164553 L 149.180746 292.029935 L 149.242677 292.164553 L 149.366538 291.895318 L 149.428468 292.029935 L 149.490399 291.895318 L 149.61426 292.164553 L 149.67619 292.029935 L 149.861982 292.433789 L 149.985843 292.164553 L 150.047773 292.299171 L 150.357426 291.626082 L 150.481287 291.895318 L 150.667078 291.491464 L 150.729009 291.626082 L 150.790939 291.491464 L 150.85287 291.626082 L 151.100592 291.08761 L 151.162522 291.222228 L 151.224453 291.08761 L 151.472175 291.626082 L 151.596036 291.356846 L 151.657966 291.491464 L 151.719897 291.356846 L 151.967619 291.895318 L 152.09148 291.626082 L 152.339202 292.164553 L 152.401132 292.029935 L 152.463063 292.164553 L 152.586924 291.895318 L 152.648854 292.029935 L 152.772715 291.7607 L 152.834646 291.895318 L 153.33009 290.818374 L 153.39202 290.952992 L 153.453951 290.818374 L 153.515881 290.952992 L 153.577812 290.818374 L 153.639742 290.952992 L 153.763603 290.683756 L 153.825534 290.818374 L 153.949395 290.549138 L 154.011325 290.683756 L 154.135186 290.41452 L 154.197117 290.549138 L 154.259047 290.41452 L 154.320978 290.549138 L 154.382908 290.41452 L 154.444839 290.549138 L 154.816422 289.741431 L 154.940283 290.010666 L 155.002213 289.876049 L 155.064144 290.010666 L 155.188005 289.741431 L 155.373796 290.145284 L 155.497657 289.876049 L 155.559588 290.010666 L 155.621518 289.876049 L 155.683449 290.010666 L 155.86924 289.606813 L 155.931171 289.741431 L 156.055032 289.472195 L 156.178893 289.741431 L 156.240823 289.606813 L 156.302754 289.741431 L 156.364684 289.606813 L 156.612406 290.145284 L 156.736267 289.876049 L 156.798198 290.010666 L 157.04592 289.472195 L 157.10785 289.606813 L 157.169781 289.472195 L 157.231711 289.606813 L 157.355572 289.337577 L 157.417503 289.472195 L 157.479433 289.337577 L 157.603294 289.606813 L 157.727155 289.337577 L 157.789086 289.472195 L 157.974877 289.068341 L 158.036808 289.202959 L 158.222599 288.799105 L 158.34646 289.068341 L 158.532252 288.664487 L 158.718043 289.068341 L 158.841904 288.799105 L 158.965765 289.068341 L 159.089626 288.799105 L 159.151557 288.933723 L 159.337348 288.529869 L 159.399279 288.664487 L 159.52314 288.395251 L 159.58507 288.529869 L 160.018584 287.587544 L 160.080514 287.722162 L 160.328236 287.18369 L 160.390167 287.318308 L 160.637889 286.779836 L 160.699819 286.914454 L 160.885611 286.5106 L 160.947541 286.645218 L 161.071402 286.375982 L 161.133333 286.5106 L 161.319124 286.106747 L 161.504916 286.5106 L 161.566846 286.375982 L 161.628777 286.5106 L 161.690707 286.375982 L 161.752638 286.5106 L 161.814568 286.375982 L 162.06229 286.914454 L 162.310012 286.375982 L 162.557734 286.914454 L 162.805456 286.375982 L 162.867387 286.5106 L 162.929317 286.375982 L 163.115109 286.779836 L 163.362831 286.241364 L 163.424761 286.375982 L 163.486692 286.241364 L 163.548622 286.375982 L 163.610553 286.241364 L 163.672483 286.375982 L 163.920205 285.837511 L 163.982136 285.972129 L 164.044066 285.837511 L 164.229858 286.241364 L 164.291788 286.106747 L 164.353719 286.241364 L 164.47758 285.972129 L 164.601441 286.241364 L 164.725302 285.972129 L 164.787232 286.106747 L 164.911093 285.837511 L 165.096885 286.241364 L 165.158815 286.106747 L 165.220746 286.241364 L 165.282676 286.106747 L 165.344607 286.241364 L 165.406537 286.106747 L 165.468468 286.241364 L 165.530398 286.106747 L 165.654259 286.375982 L 165.71619 286.241364 L 165.77812 286.375982 L 166.335495 285.164421 L 166.397425 285.299039 L 166.459356 285.164421 L 166.521286 285.299039 L 166.583217 285.164421 L 166.645147 285.299039 L 166.707078 285.164421 L 166.830939 285.433657 L 166.892869 285.299039 L 166.9548 285.433657 L 167.078661 285.164421 L 167.140591 285.299039 L 167.326383 284.895185 L 167.450244 285.164421 L 167.636035 284.760567 L 167.821827 285.164421 L 167.883757 285.029803 L 168.007618 285.299039 L 168.131479 285.029803 L 168.19341 285.164421 L 168.688854 284.087478 L 168.750784 284.222095 L 168.874645 283.95286 L 168.936576 284.087478 L 169.060437 283.818242 L 169.122367 283.95286 L 169.308159 283.549006 L 169.370089 283.683624 L 169.43202 283.549006 L 169.49395 283.683624 L 169.741672 283.145152 L 169.803603 283.27977 L 169.865533 283.145152 L 170.051325 283.549006 L 170.237116 283.145152 L 170.299047 283.27977 L 170.360977 283.145152 L 170.484838 283.414388 L 170.918352 282.472062 L 170.980282 282.60668 L 171.104143 282.337444 L 171.289935 282.741298 L 171.351865 282.60668 L 171.413796 282.741298 L 171.475726 282.60668 L 171.537657 282.741298 L 171.661518 282.472062 L 171.723448 282.60668 L 171.847309 282.337444 L 171.90924 282.472062 L 172.095031 282.068209 L 172.218892 282.337444 L 172.342753 282.068209 L 172.466614 282.337444 L 172.528545 282.202827 L 172.652406 282.472062 L 172.962058 281.798973 L 173.085919 282.068209 L 173.14785 281.933591 L 173.271711 282.202827 L 173.333641 282.068209 L 173.457502 282.337444 L 173.581363 282.068209 L 173.643294 282.202827 L 173.705224 282.068209 L 173.767155 282.202827 L 174.076807 281.529737 L 174.138738 281.664355 L 174.200668 281.529737 L 174.262599 281.664355 L 174.38646 281.395119 L 174.44839 281.529737 L 174.881904 280.587411 L 175.005765 280.856647 L 175.253487 280.318176 L 175.377348 280.587411 L 175.439278 280.452793 L 175.501209 280.587411 L 175.62507 280.318176 L 175.687 280.452793 L 176.368236 278.971996 L 176.430166 279.106614 L 176.677888 278.568142 L 176.739819 278.70276 L 176.801749 278.568142 L 176.86368 278.70276 L 176.987541 278.433524 L 177.049471 278.568142 L 177.111402 278.433524 L 177.235263 278.70276 L 177.297193 278.568142 L 177.359124 278.70276 L 177.421054 278.568142 L 177.482985 278.70276 L 177.916498 277.760435 L 177.978429 277.895053 L 178.040359 277.760435 L 178.16422 278.029671 L 178.288081 277.760435 L 178.350012 277.895053 L 178.411942 277.760435 L 178.473873 277.895053 L 179.031247 276.683491 L 179.155108 276.952727 L 179.3409 276.548873 L 179.40283 276.683491 L 179.526691 276.414256 L 179.650552 276.683491 L 179.898274 276.14502 L 180.022135 276.414256 L 180.084066 276.279638 L 180.207927 276.548873 L 180.269857 276.414256 L 180.393718 276.683491 L 180.517579 276.414256 L 180.57951 276.548873 L 180.64144 276.414256 L 180.703371 276.548873 L 180.765301 276.414256 L 180.889162 276.683491 L 181.136884 276.14502 L 181.198815 276.279638 L 181.446537 275.741166 L 181.632328 276.14502 L 181.694259 276.010402 L 181.81812 276.279638 L 181.88005 276.14502 L 182.003911 276.414256 L 182.127772 276.14502 L 182.189703 276.279638 L 182.313564 276.010402 L 182.499355 276.414256 L 182.561286 276.279638 L 182.623216 276.414256 L 183.05673 275.47193 L 183.11866 275.606548 L 183.304452 275.202694 L 183.552174 275.741166 L 183.737965 275.337312 L 183.799896 275.47193 L 183.923757 275.202694 L 183.985687 275.337312 L 184.047618 275.202694 L 184.109548 275.337312 L 184.171479 275.202694 L 184.233409 275.337312 L 184.29534 275.202694 L 184.35727 275.337312 L 184.481131 275.068076 L 184.543062 275.202694 L 184.728853 274.79884 L 184.790784 274.933458 L 185.038506 274.394987 L 185.162367 274.664222 L 185.53395 273.856515 L 185.719741 274.260369 L 185.967463 273.721897 L 186.091324 273.991133 L 186.153255 273.856515 L 186.215185 273.991133 L 186.400977 273.587279 L 186.462907 273.721897 L 186.710629 273.183425 L 186.77256 273.318043 L 186.83449 273.183425 L 187.144143 273.856515 L 187.577656 272.914189 L 187.639587 273.048807 L 187.825378 272.644953 L 187.887309 272.779571 L 188.196961 272.106482 L 188.258892 272.2411 L 188.320822 272.106482 L 188.382753 272.2411 L 188.444683 272.106482 L 188.506614 272.2411 L 188.630475 271.971864 L 188.692405 272.106482 L 188.754336 271.971864 L 188.816266 272.106482 L 189.187849 271.298774 L 189.24978 271.433392 L 189.31171 271.298774 L 189.373641 271.433392 L 189.435571 271.298774 L 189.497502 271.433392 L 189.931015 270.491067 L 190.178737 271.029538 L 190.302598 270.760302 L 190.48839 271.164156 L 190.55032 271.029538 L 190.612251 271.164156 L 190.859973 270.625685 L 190.921903 270.760302 L 190.983834 270.625685 L 191.107695 270.89492 L 191.169625 270.760302 L 191.231556 270.89492 L 191.479278 270.356449 L 191.541208 270.491067 L 191.603139 270.356449 L 191.727 270.625685 L 191.850861 270.356449 L 191.974722 270.625685 L 192.160513 270.221831 L 192.222444 270.356449 L 192.346305 270.087213 L 192.408235 270.221831 L 192.655957 269.683359 L 192.717888 269.817977 L 192.779818 269.683359 L 192.841749 269.817977 L 192.903679 269.683359 L 192.96561 269.817977 L 193.089471 269.548741 L 193.151401 269.683359 L 193.337193 269.279505 L 193.770706 270.221831 L 193.956498 269.817977 L 194.018428 269.952595 L 194.26615 269.414123 L 194.328081 269.548741 L 194.637733 268.875651 L 194.699664 269.010269 L 194.761594 268.875651 L 194.885455 269.144887 L 195.009316 268.875651 L 195.133177 269.144887 L 195.195108 269.010269 L 195.257038 269.144887 L 195.318969 269.010269 L 195.380899 269.144887 L 195.44283 269.010269 L 195.50476 269.144887 L 195.690552 268.741034 L 195.752482 268.875651 L 195.814413 268.741034 L 195.938274 269.010269 L 196.247926 268.33718 L 196.371787 268.606416 L 196.619509 268.067944 L 196.68144 268.202562 L 196.867231 267.798708 L 197.053023 268.202562 L 197.176884 267.933326 L 197.300745 268.202562 L 197.424606 267.933326 L 197.486536 268.067944 L 197.548467 267.933326 L 197.610397 268.067944 L 197.796189 267.66409 L 197.92005 267.933326 L 197.98198 267.798708 L 198.105841 268.067944 L 198.477424 267.260236 L 198.663216 267.66409 L 198.972868 266.991 L 199.096729 267.260236 L 199.344451 266.721765 L 199.406382 266.856382 L 199.777965 266.048675 L 199.963756 266.452529 L 200.025687 266.317911 L 200.087617 266.452529 L 200.211478 266.183293 L 200.335339 266.452529 L 200.39727 266.317911 L 200.521131 266.587147 L 200.583061 266.452529 L 200.644992 266.587147 L 200.768853 266.317911 L 201.078505 266.991 L 201.140436 266.856382 L 201.202366 266.991 L 201.326227 266.721765 L 201.388158 266.856382 L 201.512019 266.587147 L 201.69781 266.991 L 201.883602 266.587147 L 202.007463 266.856382 L 202.069393 266.721765 L 202.193254 266.991 L 202.255185 266.856382 L 202.317115 266.991 L 202.440976 266.721765 L 202.564837 266.991 L 202.626768 266.856382 L 202.750629 267.125618 L 203.122212 266.317911 L 203.184142 266.452529 L 203.617656 265.510203 L 203.679586 265.644821 L 203.741517 265.510203 L 203.803447 265.644821 L 203.865378 265.510203 L 203.927308 265.644821 L 204.236961 264.971731 L 204.360822 265.240967 L 204.732405 264.43326 L 204.794335 264.567878 L 204.856266 264.43326 L 205.103988 264.971731 L 205.227849 264.702496 L 205.289779 264.837114 L 205.35171 264.702496 L 205.537501 265.106349 L 205.599432 264.971731 L 205.661362 265.106349 L 205.909084 264.567878 L 205.971015 264.702496 L 206.156806 264.298642 L 206.218737 264.43326 L 206.404528 264.029406 L 206.466459 264.164024 L 206.59032 263.894788 L 206.776111 264.298642 L 206.838042 264.164024 L 206.899972 264.298642 L 207.085764 263.894788 L 207.147694 264.029406 L 207.333486 263.625552 L 207.581208 264.164024 L 207.643138 264.029406 L 207.766999 264.298642 L 207.82893 264.164024 L 207.89086 264.298642 L 208.076652 263.894788 L 208.138582 264.029406 L 208.262443 263.76017 L 208.324374 263.894788 L 208.510165 263.490934 L 208.634026 263.76017 L 208.695957 263.625552 L 208.757887 263.76017 L 209.06754 263.08708 L 209.253331 263.490934 L 209.315262 263.356316 L 209.377192 263.490934 L 209.501053 263.221698 L 209.562984 263.356316 L 209.810706 262.817845 L 209.872636 262.952463 L 209.934567 262.817845 L 209.996497 262.952463 L 210.058428 262.817845 L 210.491941 263.76017 L 210.553872 263.625552 L 210.615802 263.76017 L 210.677733 263.625552 L 210.739663 263.76017 L 210.801594 263.625552 L 210.863524 263.76017 L 210.925455 263.625552 L 211.111246 264.029406 L 211.173177 263.894788 L 211.297038 264.164024 L 211.482829 263.76017 L 211.60669 264.029406 L 211.668621 263.894788 L 211.730551 264.029406 L 211.916343 263.625552 L 211.978273 263.76017 L 212.102134 263.490934 L 212.164065 263.625552 L 212.473717 262.952463 L 212.597578 263.221698 L 212.8453 262.683227 L 212.969161 262.952463 L 213.093022 262.683227 L 213.154953 262.817845 L 213.216883 262.683227 L 213.278814 262.817845 L 213.340744 262.683227 L 213.464605 262.952463 L 213.588466 262.683227 L 213.650397 262.817845 L 213.712327 262.683227 L 213.774258 262.817845 L 213.898119 262.548609 L 214.145841 263.08708 L 214.393563 262.548609 L 214.579354 262.952463 L 214.641285 262.817845 L 214.765146 263.08708 L 214.950937 262.683227 L 215.012868 262.817845 L 215.32252 262.144755 L 215.384451 262.279373 L 215.508312 262.010137 L 215.632173 262.279373 L 215.694103 262.144755 L 215.817964 262.413991 L 215.879895 262.279373 L 215.941825 262.413991 L 216.003756 262.279373 L 216.251478 262.817845 L 216.375339 262.548609 L 216.437269 262.683227 L 216.4992 262.548609 L 216.56113 262.683227 L 216.623061 262.548609 L 216.746922 262.817845 L 216.870783 262.548609 L 216.932713 262.683227 L 217.180435 262.144755 L 217.304296 262.413991 L 217.428157 262.144755 L 217.552018 262.413991 L 217.675879 262.144755 L 217.73781 262.279373 L 217.861671 262.010137 L 217.923601 262.144755 L 218.480976 260.933194 L 218.542906 261.067811 L 218.666767 260.798576 L 218.728698 260.933194 L 218.790628 260.798576 L 218.852559 260.933194 L 218.914489 260.798576 L 218.97642 260.933194 L 219.03835 260.798576 L 219.100281 260.933194 L 219.162211 260.798576 L 219.286072 261.067811 L 219.409933 260.798576 L 219.471864 260.933194 L 219.533794 260.798576 L 219.657655 261.067811 L 219.719586 260.933194 L 219.781516 261.067811 L 219.967308 260.663958 L 220.091169 260.933194 L 220.21503 260.663958 L 220.27696 260.798576 L 220.400821 260.52934 L 220.462752 260.663958 L 220.524682 260.52934 L 220.586613 260.663958 L 221.391709 258.913925 L 221.639431 259.452396 L 221.701362 259.317778 L 221.825223 259.587014 L 222.382597 258.375453 L 222.568389 258.779307 L 222.939972 257.971599 L 223.001902 258.106217 L 223.125763 257.836981 L 223.435416 258.510071 L 223.559277 258.240835 L 223.745068 258.644689 L 223.93086 258.240835 L 223.99279 258.375453 L 224.116651 258.106217 L 224.178582 258.240835 L 224.302443 257.971599 L 224.364373 258.106217 L 224.426304 257.971599 L 224.550165 258.240835 L 224.612095 258.106217 L 224.735956 258.375453 L 224.797887 258.240835 L 224.983678 258.644689 L 225.355261 257.836981 L 225.417192 257.971599 L 225.664914 257.433127 L 225.974566 258.106217 L 226.098427 257.836981 L 226.222288 258.106217 L 226.284219 257.971599 L 226.346149 258.106217 L 226.40808 257.971599 L 226.47001 258.106217 L 226.593871 257.836981 L 226.655802 257.971599 L 226.717732 257.836981 L 226.779663 257.971599 L 226.965454 257.567745 L 227.027385 257.702363 L 227.089315 257.567745 L 227.151246 257.702363 L 227.275107 257.433127 L 227.337037 257.567745 L 227.584759 257.029274 L 227.64669 257.163892 L 227.70862 257.029274 L 227.770551 257.163892 L 227.832481 257.029274 L 227.894412 257.163892 L 228.204064 256.490802 L 228.265995 256.62542 L 228.451786 256.221566 L 228.513717 256.356184 L 228.575647 256.221566 L 228.761439 256.62542 L 228.823369 256.490802 L 228.8853 256.62542 L 229.009161 256.356184 L 229.133022 256.62542 L 229.194952 256.490802 L 229.256883 256.62542 L 229.380744 256.356184 L 229.442674 256.490802 L 229.814257 255.683094 L 230.000049 256.086948 L 230.12391 255.817712 L 230.247771 256.086948 L 230.433562 255.683094 L 230.495493 255.817712 L 230.619354 255.548476 L 230.681284 255.683094 L 230.743215 255.548476 L 230.867076 255.817712 L 230.929006 255.683094 L 230.990937 255.817712 L 231.114798 255.548476 L 231.176728 255.683094 L 231.300589 255.413858 L 231.36252 255.548476 L 231.486381 255.27924 L 231.548311 255.413858 L 231.610242 255.27924 L 231.672172 255.413858 L 231.734103 255.27924 L 232.043755 255.95233 L 232.291477 255.413858 L 232.353408 255.548476 L 232.415338 255.413858 L 232.477269 255.548476 L 232.786921 254.875387 L 232.848852 255.010005 L 233.034643 254.606151 L 233.282365 255.144623 L 233.592018 254.471533 L 233.777809 254.875387 L 233.83974 254.740769 L 233.90167 254.875387 L 234.025531 254.606151 L 234.087462 254.740769 L 234.149392 254.606151 L 234.335184 255.010005 L 234.397114 254.875387 L 234.459045 255.010005 L 234.520975 254.875387 L 234.582906 255.010005 L 234.644836 254.875387 L 234.706767 255.010005 L 234.830628 254.740769 L 234.954489 255.010005 L 235.016419 254.875387 L 235.202211 255.27924 L 235.264141 255.144623 L 235.326072 255.27924 L 235.449933 255.010005 L 235.697655 255.548476 L 235.945377 255.010005 L 236.069238 255.27924 L 236.193099 255.010005 L 236.255029 255.144623 L 236.37889 254.875387 L 236.564682 255.27924 L 236.626612 255.144623 L 236.688543 255.27924 L 236.812404 255.010005 L 236.874334 255.144623 L 237.122056 254.606151 L 237.369778 255.144623 L 237.6175 254.606151 L 237.679431 254.740769 L 237.865222 254.336915 L 237.927153 254.471533 L 237.989083 254.336915 L 238.112944 254.606151 L 238.298736 254.202297 L 238.484527 254.606151 L 238.546458 254.471533 L 238.608388 254.606151 L 238.732249 254.336915 L 238.979971 254.875387 L 239.289624 254.202297 L 239.413485 254.471533 L 239.475415 254.336915 L 239.599276 254.606151 L 239.723137 254.336915 L 239.846998 254.606151 L 239.908929 254.471533 L 239.970859 254.606151 L 240.03279 254.471533 L 240.09472 254.606151 L 240.156651 254.471533 L 240.218581 254.606151 L 240.404373 254.202297 L 240.528234 254.471533 L 240.590164 254.336915 L 240.652095 254.471533 L 240.714025 254.336915 L 241.085608 255.144623 L 241.147539 255.010005 L 241.2714 255.27924 L 241.33333 255.144623 L 241.457191 255.413858 L 241.519122 255.27924 L 241.704913 255.683094 L 241.766844 255.548476 L 241.828774 255.683094 L 242.138427 255.010005 L 242.262288 255.27924 L 242.448079 254.875387 L 242.695801 255.413858 L 242.881593 255.010005 L 242.943523 255.144623 L 243.005454 255.010005 L 243.129315 255.27924 L 243.377037 254.740769 L 243.500898 255.010005 L 243.934411 254.067679 L 243.996342 254.202297 L 244.120203 253.933061 L 244.182133 254.067679 L 244.305994 253.798443 L 244.429855 254.067679 L 244.739508 253.394589 L 244.801438 253.529207 L 244.863369 253.394589 L 245.04916 253.798443 L 245.173021 253.529207 L 245.358813 253.933061 L 245.482674 253.663825 L 245.544604 253.798443 L 245.854257 253.125354 L 245.916187 253.259972 L 246.040048 252.990736 L 246.101979 253.125354 L 246.28777 252.7215 L 246.411631 252.990736 L 246.535492 252.7215 L 246.659353 252.990736 L 246.907075 252.452264 L 246.969006 252.586882 L 247.030936 252.452264 L 247.092867 252.586882 L 247.650241 251.375321 L 247.774102 251.644556 L 247.836033 251.509938 L 248.021824 251.913792 L 248.083755 251.779174 L 248.145685 251.913792 L 248.207616 251.779174 L 248.269546 251.913792 L 248.455338 251.509938 L 248.517268 251.644556 L 248.76499 251.106085 L 248.950782 251.509938 L 249.074643 251.240703 L 249.136573 251.375321 L 249.198504 251.240703 L 249.260434 251.375321 L 249.508156 250.836849 L 249.570087 250.971467 L 249.693948 250.702231 L 249.755878 250.836849 L 250.0036 250.298377 L 250.065531 250.432995 L 250.189392 250.163759 L 250.251322 250.298377 L 250.560975 249.625287 L 250.622905 249.759905 L 250.808697 249.356052 L 250.870627 249.490669 L 250.932558 249.356052 L 250.994488 249.490669 L 251.18028 249.086816 L 251.24221 249.221434 L 251.304141 249.086816 L 251.428002 249.356052 L 251.551863 249.086816 L 251.613793 249.221434 L 251.675724 249.086816 L 251.861515 249.490669 L 251.923446 249.356052 L 252.047307 249.625287 L 252.109237 249.490669 L 252.171168 249.625287 L 252.604681 248.682962 L 252.728542 248.952198 L 252.790473 248.81758 L 252.852403 248.952198 L 253.038195 248.548344 L 253.223986 248.952198 L 253.285917 248.81758 L 253.71943 249.759905 L 253.905222 249.356052 L 254.214874 250.029141 L 254.276805 249.894523 L 254.400666 250.163759 L 254.462596 250.029141 L 254.524527 250.163759 L 254.586457 250.029141 L 254.710318 250.298377 L 254.89611 249.894523 L 254.95804 250.029141 L 255.081901 249.759905 L 255.329623 250.298377 L 255.391554 250.163759 L 255.515415 250.432995 L 255.701206 250.029141 L 255.763137 250.163759 L 255.825067 250.029141 L 255.948928 250.298377 L 256.010859 250.163759 L 256.072789 250.298377 L 256.320511 249.759905 L 256.382442 249.894523 L 256.444372 249.759905 L 256.506303 249.894523 L 256.568233 249.759905 L 256.754025 250.163759 L 256.815955 250.029141 L 256.877886 250.163759 L 257.063677 249.759905 L 257.187538 250.029141 L 257.249469 249.894523 L 257.37333 250.163759 L 257.497191 249.894523 L 257.682982 250.298377 L 257.992635 249.625287 L 258.054565 249.759905 L 258.116496 249.625287 L 258.178426 249.759905 L 258.364218 249.356052 L 258.488079 249.625287 L 258.61194 249.356052 L 258.735801 249.625287 L 258.797731 249.490669 L 258.983523 249.894523 L 259.169314 249.490669 L 259.417036 250.029141 L 259.540897 249.759905 L 259.602828 249.894523 L 259.664758 249.759905 L 259.788619 250.029141 L 259.85055 249.894523 L 259.91248 250.029141 L 260.098272 249.625287 L 260.160202 249.759905 L 260.222133 249.625287 L 260.284063 249.759905 L 260.469855 249.356052 L 260.593716 249.625287 L 260.903368 248.952198 L 260.965299 249.086816 L 261.08916 248.81758 L 261.274951 249.221434 L 261.460743 248.81758 L 261.584604 249.086816 L 261.708465 248.81758 L 261.770395 248.952198 L 261.832326 248.81758 L 261.956187 249.086816 L 262.451631 248.009872 L 262.513561 248.14449 L 262.575492 248.009872 L 262.637422 248.14449 L 262.699353 248.009872 L 262.761283 248.14449 L 262.885144 247.875254 L 263.194797 248.548344 L 263.256727 248.413726 L 263.318658 248.548344 L 263.380588 248.413726 L 263.442519 248.548344 L 263.56638 248.279108 L 263.62831 248.413726 L 263.690241 248.279108 L 263.752171 248.413726 L 263.876032 248.14449 L 263.937963 248.279108 L 264.061824 248.009872 L 264.123754 248.14449 L 264.185685 248.009872 L 264.309546 248.279108 L 264.371476 248.14449 L 264.495337 248.413726 L 264.619198 248.14449 L 264.681129 248.279108 L 264.80499 248.009872 L 264.86692 248.14449 L 264.928851 248.009872 L 264.990781 248.14449 L 265.114642 247.875254 L 265.176573 248.009872 L 265.300434 247.740636 L 265.362364 247.875254 L 265.610086 247.336783 L 265.795878 247.740636 L 265.857808 247.606018 L 265.919739 247.740636 L 266.0436 247.471401 L 266.167461 247.740636 L 266.229391 247.606018 L 266.291322 247.740636 L 266.415183 247.471401 L 266.539044 247.740636 L 266.600974 247.606018 L 266.724835 247.875254 L 266.786766 247.740636 L 266.910627 248.009872 L 267.096418 247.606018 L 267.34414 248.14449 L 267.468001 247.875254 L 267.591863 248.14449 L 268.211168 246.798311 L 268.335029 247.067547 L 268.396959 246.932929 L 268.45889 247.067547 L 268.52082 246.932929 L 268.582751 247.067547 L 268.830473 246.529075 L 268.892403 246.663693 L 269.140125 246.125221 L 269.202056 246.259839 L 269.325917 245.990603 L 269.387847 246.125221 L 269.449778 245.990603 L 269.511708 246.125221 L 269.6975 245.721367 L 269.75943 245.855985 L 270.007152 245.317514 L 270.131013 245.586749 L 270.254874 245.317514 L 270.316805 245.452132 L 270.378735 245.317514 L 270.564527 245.721367 L 270.812249 245.182896 L 270.93611 245.452132 L 270.99804 245.317514 L 271.183832 245.721367 L 271.245762 245.586749 L 271.307693 245.721367 L 271.493484 245.317514 L 271.555415 245.452132 L 271.865067 244.779042 L 271.926998 244.91366 L 272.17472 244.375188 L 272.23665 244.509806 L 272.422442 244.105952 L 272.484372 244.24057 L 272.608233 243.971334 L 272.855955 244.509806 L 273.041747 244.105952 L 273.103677 244.24057 L 273.41333 243.567481 L 273.47526 243.702098 L 273.537191 243.567481 L 273.599121 243.702098 L 273.661052 243.567481 L 273.722982 243.702098 L 273.846843 243.432863 L 273.908774 243.567481 L 274.280357 242.759773 L 274.342287 242.894391 L 274.404218 242.759773 L 274.466148 242.894391 L 274.528079 242.759773 L 274.590009 242.894391 L 274.65194 242.759773 L 274.71387 242.894391 L 274.775801 242.759773 L 274.837731 242.894391 L 274.961592 242.625155 L 275.023523 242.759773 L 275.147384 242.490537 L 275.395106 243.029009 L 275.457036 242.894391 L 275.518967 243.029009 L 275.580897 242.894391 L 275.704758 243.163627 L 276.014411 242.490537 L 276.138272 242.759773 L 276.324063 242.355919 L 276.447924 242.625155 L 276.509855 242.490537 L 276.695646 242.894391 L 276.881438 242.490537 L 277.005299 242.759773 L 277.376882 241.952065 L 277.438812 242.086683 L 277.624604 241.68283 L 277.686534 241.817447 L 277.748465 241.68283 L 277.872326 241.952065 L 278.058117 241.548212 L 278.120048 241.68283 L 278.181978 241.548212 L 278.305839 241.817447 L 278.36777 241.68283 L 278.491631 241.952065 L 278.553561 241.817447 L 278.615492 241.952065 L 278.677422 241.817447 L 278.863214 242.221301 L 278.925144 242.086683 L 279.049005 242.355919 L 279.234797 241.952065 L 279.296727 242.086683 L 279.482519 241.68283 L 279.66831 242.086683 L 279.730241 241.952065 L 279.792171 242.086683 L 280.039893 241.548212 L 280.287615 242.086683 L 280.349546 241.952065 L 280.411476 242.086683 L 280.473407 241.952065 L 280.535337 242.086683 L 280.597268 241.952065 L 280.783059 242.355919 L 280.90692 242.086683 L 280.968851 242.221301 L 281.030781 242.086683 L 281.092712 242.221301 L 281.216573 241.952065 L 281.464295 242.490537 L 281.650086 242.086683 L 281.712017 242.221301 L 281.773947 242.086683 L 281.897808 242.355919 L 281.959739 242.221301 L 282.021669 242.355919 L 282.0836 242.221301 L 282.14553 242.355919 L 282.331322 241.952065 L 282.393252 242.086683 L 282.517113 241.817447 L 282.579044 241.952065 L 282.640974 241.817447 L 282.702905 241.952065 L 282.764835 241.817447 L 282.950627 242.221301 L 283.012557 242.086683 L 283.074488 242.221301 L 283.32221 241.68283 L 283.446071 241.952065 L 283.508001 241.817447 L 283.631862 242.086683 L 283.755723 241.817447 L 283.879584 242.086683 L 283.941515 241.952065 L 284.003445 242.086683 L 284.56082 240.875122 L 284.994333 241.817447 L 285.056264 241.68283 L 285.118194 241.817447 L 285.180125 241.68283 L 285.242055 241.817447 L 285.303986 241.68283 L 285.365916 241.817447 L 285.427847 241.68283 L 285.489777 241.817447 L 285.551708 241.68283 L 285.79943 242.221301 L 285.985221 241.817447 L 286.109082 242.086683 L 286.294874 241.68283 L 286.356804 241.817447 L 286.542596 241.413594 L 286.604526 241.548212 L 286.790318 241.144358 L 286.914179 241.413594 L 287.03804 241.144358 L 287.09997 241.278976 L 287.223831 241.00974 L 287.409623 241.413594 L 287.719275 240.740504 L 287.781206 240.875122 L 287.966997 240.471268 L 288.028928 240.605886 L 288.710163 239.125089 L 288.772094 239.259707 L 288.834024 239.125089 L 288.895955 239.259707 L 289.019816 238.990471 L 289.143677 239.259707 L 289.205607 239.125089 L 289.267538 239.259707 L 289.51526 238.721235 L 289.639121 238.990471 L 289.701051 238.855853 L 289.762982 238.990471 L 289.824912 238.855853 L 289.948773 239.125089 L 290.010704 238.990471 L 290.072634 239.125089 L 290.134565 238.990471 L 290.196495 239.125089 L 290.258426 238.990471 L 290.320356 239.125089 L 290.568078 238.586617 L 290.75387 238.990471 L 290.8158 238.855853 L 290.877731 238.990471 L 290.939661 238.855853 L 291.125453 239.259707 L 291.373175 238.721235 L 291.558966 239.125089 L 291.620897 238.990471 L 291.682827 239.125089 L 291.99248 238.451999 L 292.116341 238.721235 L 292.178271 238.586617 L 292.240202 238.721235 L 292.302132 238.586617 L 292.364063 238.721235 L 292.673715 238.048145 L 292.735646 238.182763 L 292.921437 237.77891 L 293.107229 238.182763 L 293.169159 238.048145 L 293.478812 238.721235 L 293.602673 238.451999 L 293.664603 238.586617 L 293.726534 238.451999 L 293.788464 238.586617 L 294.221978 237.644292 L 294.283908 237.77891 L 294.345839 237.644292 L 294.407769 237.77891 L 294.53163 237.509674 L 294.779352 238.048145 L 294.841283 237.913527 L 294.903213 238.048145 L 295.150935 237.509674 L 295.274796 237.77891 L 295.460588 237.375056 L 295.522518 237.509674 L 295.584449 237.375056 L 295.646379 237.509674 L 295.70831 237.375056 L 295.77024 237.509674 L 295.832171 237.375056 L 295.894101 237.509674 L 295.956032 237.375056 L 296.017962 237.509674 L 296.141823 237.240438 L 296.265684 237.509674 L 296.389545 237.240438 L 296.451476 237.375056 L 296.575337 237.10582 L 296.699198 237.375056 L 296.823059 237.10582 L 296.884989 237.240438 L 297.00885 236.971202 L 297.070781 237.10582 L 297.194642 236.836584 L 297.318503 237.10582 L 297.380433 236.971202 L 297.442364 237.10582 L 297.504294 236.971202 L 297.628155 237.240438 L 297.752016 236.971202 L 297.813947 237.10582 L 297.875877 236.971202 L 297.999738 237.240438 L 298.24746 236.701966 L 298.309391 236.836584 L 298.371321 236.701966 L 298.433252 236.836584 L 298.619043 236.43273 L 298.742904 236.701966 L 298.804835 236.567348 L 298.928696 236.836584 L 299.114487 236.43273 L 299.176418 236.567348 L 299.300279 236.298112 L 299.362209 236.43273 L 299.548001 236.028876 L 299.609931 236.163494 L 299.919584 235.490405 L 299.981514 235.625023 L 300.043445 235.490405 L 300.105375 235.625023 L 300.291167 235.221169 L 300.353097 235.355787 L 300.415028 235.221169 L 300.476958 235.355787 L 300.538889 235.221169 L 300.600819 235.355787 L 300.66275 235.221169 L 300.786611 235.490405 L 300.848541 235.355787 L 300.910472 235.490405 L 301.096263 235.086551 L 301.282055 235.490405 L 301.405916 235.221169 L 301.839429 236.163494 L 301.96329 235.894259 L 302.025221 236.028876 L 302.211012 235.625023 L 302.334873 235.894259 L 302.396804 235.759641 L 302.520665 236.028876 L 302.582595 235.894259 L 302.644526 236.028876 L 302.706456 235.894259 L 302.768387 236.028876 L 302.892248 235.759641 L 303.078039 236.163494 L 303.13997 236.028876 L 303.387692 236.567348 L 303.511553 236.298112 L 303.573483 236.43273 L 303.697344 236.163494 L 303.759275 236.298112 L 303.945066 235.894259 L 304.006997 236.028876 L 304.192788 235.625023 L 304.316649 235.894259 L 304.502441 235.490405 L 304.626302 235.759641 L 304.812093 235.355787 L 304.935954 235.625023 L 305.059815 235.355787 L 305.121746 235.490405 L 305.245607 235.221169 L 305.307537 235.355787 L 305.431398 235.086551 L 305.741051 235.759641 L 305.802981 235.625023 L 305.988773 236.028876 L 306.174564 235.625023 L 306.236495 235.759641 L 306.298425 235.625023 L 306.360356 235.759641 L 306.422286 235.625023 L 306.484217 235.759641 L 306.731939 235.221169 L 306.793869 235.355787 L 306.979661 234.951933 L 307.041591 235.086551 L 307.289313 234.548079 L 307.351244 234.682697 L 307.598966 234.144225 L 307.660896 234.278843 L 307.722827 234.144225 L 307.846688 234.413461 L 307.908618 234.278843 L 308.032479 234.548079 L 308.15634 234.278843 L 308.342132 234.682697 L 308.589854 234.144225 L 308.651784 234.278843 L 308.837576 233.87499 L 309.023367 234.278843 L 309.085298 234.144225 L 309.147228 234.278843 L 309.642672 233.2019 L 309.766533 233.471136 L 309.828464 233.336518 L 309.890394 233.471136 L 310.014255 233.2019 L 310.138116 233.471136 L 310.200047 233.336518 L 310.323908 233.605754 L 310.447769 233.336518 L 310.57163 233.605754 L 310.695491 233.336518 L 310.757421 233.471136 L 310.819352 233.336518 L 310.881282 233.471136 L 310.943213 233.336518 L 311.067074 233.605754 L 311.129004 233.471136 L 311.190935 233.605754 L 311.252865 233.471136 L 311.314796 233.605754 L 311.438657 233.336518 L 311.500587 233.471136 L 311.624448 233.2019 L 311.748309 233.471136 L 311.87217 233.2019 L 311.934101 233.336518 L 312.057962 233.067282 L 312.181823 233.336518 L 312.367614 232.932664 L 312.429545 233.067282 L 312.491475 232.932664 L 312.615336 233.2019 L 312.677267 233.067282 L 312.801128 233.336518 L 313.792016 231.182631 L 314.039738 231.721103 L 314.225529 231.317249 L 314.28746 231.451867 L 314.34939 231.317249 L 314.411321 231.451867 L 314.720973 230.778777 L 314.782904 230.913395 L 314.906765 230.644159 L 315.092556 231.048013 L 315.154487 230.913395 L 315.340278 231.317249 L 315.588 230.778777 L 315.649931 230.913395 L 315.711861 230.778777 L 316.021514 231.451867 L 316.083444 231.317249 L 316.516958 232.259574 L 316.640819 231.990339 L 316.702749 232.124956 L 316.82661 231.855721 L 317.012402 232.259574 L 317.136263 231.990339 L 317.445915 232.663428 L 317.631707 232.259574 L 317.693637 232.394192 L 317.755568 232.259574 L 317.879429 232.52881 L 318.00329 232.259574 L 318.06522 232.394192 L 318.312942 231.855721 L 318.374873 231.990339 L 318.498734 231.721103 L 318.560664 231.855721 L 318.684525 231.586485 L 318.870317 231.990339 L 318.932247 231.855721 L 318.994178 231.990339 L 319.056108 231.855721 L 319.118039 231.990339 L 319.179969 231.855721 L 319.2419 231.990339 L 319.427691 231.586485 L 319.489622 231.721103 L 319.551552 231.586485 L 319.737344 231.990339 L 319.799274 231.855721 L 319.861205 231.990339 L 320.170857 231.317249 L 320.54244 232.124956 L 320.604371 231.990339 L 320.666301 232.124956 L 320.728232 231.990339 L 320.790162 232.124956 L 320.914023 231.855721 L 320.975954 231.990339 L 321.037884 231.855721 L 321.099815 231.990339 L 321.161745 231.855721 L 321.285606 232.124956 L 321.409467 231.855721 L 321.533328 232.124956 L 321.595259 231.990339 L 321.71912 232.259574 L 321.842981 231.990339 L 322.028772 232.394192 L 322.090703 232.259574 L 322.214564 232.52881 L 322.276494 232.394192 L 322.338425 232.52881 L 322.400355 232.394192 L 322.462286 232.52881 L 322.524216 232.394192 L 322.586147 232.52881 L 322.895799 231.855721 L 322.95773 231.990339 L 323.01966 231.855721 L 323.205452 232.259574 L 323.267382 232.124956 L 323.391243 232.394192 L 323.577035 231.990339 L 323.638965 232.124956 L 323.700896 231.990339 L 323.948618 232.52881 L 324.010548 232.394192 L 324.19634 232.798046 L 324.567923 231.990339 L 324.629853 232.124956 L 324.691784 231.990339 L 324.753714 232.124956 L 324.877575 231.855721 L 325.063367 232.259574 L 325.249158 231.855721 L 325.311089 231.990339 L 325.373019 231.855721 L 325.49688 232.124956 L 325.558811 231.990339 L 325.682672 232.259574 L 325.744602 232.124956 L 325.992324 232.663428 L 326.363907 231.855721 L 326.611629 232.394192 L 326.73549 232.124956 L 326.859351 232.394192 L 327.169004 231.721103 L 327.230934 231.855721 L 327.292865 231.721103 L 327.416726 231.990339 L 327.540587 231.721103 L 327.664448 231.990339 L 327.850239 231.586485 L 327.91217 231.721103 L 327.9741 231.586485 L 328.036031 231.721103 L 328.097961 231.586485 L 328.159892 231.721103 L 328.345683 231.317249 L 328.407614 231.451867 L 328.717266 230.778777 L 328.779197 230.913395 L 328.903058 230.644159 L 329.026919 230.913395 L 329.15078 230.644159 L 329.21271 230.778777 L 329.398502 230.374923 L 329.522363 230.644159 L 329.708154 230.240305 L 329.770085 230.374923 L 329.955876 229.97107 L 330.017807 230.105688 L 330.203598 229.701834 L 330.45132 230.240305 L 330.513251 230.105688 L 330.637112 230.374923 L 330.699042 230.240305 L 330.946764 230.778777 L 331.008695 230.644159 L 331.070625 230.778777 L 331.132556 230.644159 L 331.194486 230.778777 L 331.256417 230.644159 L 331.318347 230.778777 L 331.442208 230.509541 L 331.504139 230.644159 L 331.628 230.374923 L 331.751861 230.644159 L 331.875722 230.374923 L 331.999583 230.644159 L 332.618888 229.29798 L 332.742749 229.567216 L 332.92854 229.163362 L 333.114332 229.567216 L 333.238193 229.29798 L 333.362054 229.567216 L 333.733637 228.759508 L 333.795567 228.894126 L 333.857498 228.759508 L 333.919428 228.894126 L 333.981359 228.759508 L 334.10522 229.028744 L 334.229081 228.759508 L 334.352942 229.028744 L 334.662594 228.355654 L 334.724525 228.490272 L 334.848386 228.221036 L 334.910316 228.355654 L 335.096108 227.951801 L 335.158038 228.086419 L 335.529621 227.278711 L 335.653482 227.547947 L 335.715413 227.413329 L 335.777343 227.547947 L 335.963135 227.144093 L 336.148926 227.547947 L 336.210857 227.413329 L 336.272787 227.547947 L 336.334718 227.413329 L 336.458579 227.682565 L 336.520509 227.547947 L 336.58244 227.682565 L 336.892092 227.009475 L 337.077884 227.413329 L 337.139814 227.278711 L 337.201745 227.413329 L 337.387536 227.009475 L 337.511397 227.278711 L 337.573328 227.144093 L 337.635258 227.278711 L 337.82105 226.874857 L 337.88298 227.009475 L 338.130702 226.471003 L 338.564216 227.413329 L 338.626146 227.278711 L 338.688077 227.413329 L 338.750007 227.278711 L 338.997729 227.817183 L 339.183521 227.413329 L 339.369312 227.817183 L 339.431243 227.682565 L 339.493173 227.817183 L 339.555104 227.682565 L 339.617034 227.817183 L 339.926687 227.144093 L 339.988617 227.278711 L 340.545992 226.06715 L 340.607922 226.201768 L 340.793714 225.797914 L 340.855644 225.932532 L 340.917575 225.797914 L 340.979505 225.932532 L 341.041436 225.797914 L 341.103366 225.932532 L 341.165297 225.797914 L 341.227227 225.932532 L 341.474949 225.39406 L 341.53688 225.528678 L 341.660741 225.259442 L 341.722671 225.39406 L 341.846532 225.124824 L 341.908463 225.259442 L 341.970393 225.124824 L 342.218115 225.663296 L 342.280046 225.528678 L 342.341976 225.663296 L 342.465837 225.39406 L 342.589698 225.663296 L 342.713559 225.39406 L 342.77549 225.528678 L 342.961281 225.124824 L 343.023212 225.259442 L 343.147073 224.990206 L 343.209003 225.124824 L 343.394795 224.72097 L 343.456725 224.855588 L 343.518656 224.72097 L 343.580586 224.855588 L 343.828308 224.317117 L 343.952169 224.586352 L 344.0141 224.451734 L 344.261822 224.990206 L 344.323752 224.855588 L 344.385683 224.990206 L 344.633405 224.451734 L 345.004988 225.259442 L 345.066918 225.124824 L 345.25271 225.528678 L 345.438501 225.124824 L 345.500432 225.259442 L 345.686223 224.855588 L 345.995876 225.528678 L 346.119737 225.259442 L 346.243598 225.528678 L 346.305528 225.39406 L 346.367459 225.528678 L 346.429389 225.39406 L 346.55325 225.663296 L 346.615181 225.528678 L 346.677111 225.663296 L 347.110625 224.72097 L 347.234486 224.990206 L 347.296416 224.855588 L 347.358347 224.990206 L 347.482208 224.72097 L 347.915721 225.663296 L 348.039582 225.39406 L 348.101513 225.528678 L 348.658887 224.317117 L 348.720818 224.451734 L 348.844679 224.182499 L 349.216262 224.990206 L 349.463984 224.451734 L 349.587845 224.72097 L 349.773636 224.317117 L 349.897497 224.586352 L 349.959428 224.451734 L 350.021358 224.586352 L 350.083289 224.451734 L 350.20715 224.72097 L 350.26908 224.586352 L 350.331011 224.72097 L 350.392941 224.586352 L 350.454872 224.72097 L 350.578733 224.451734 L 350.640663 224.586352 L 350.702594 224.451734 L 350.826455 224.72097 L 350.888385 224.586352 L 351.012246 224.855588 L 351.136107 224.586352 L 351.198038 224.72097 L 351.50769 224.047881 L 351.631551 224.317117 L 352.065065 223.374791 L 352.126995 223.509409 L 352.374717 222.970937 L 352.498578 223.240173 L 352.808231 222.567083 L 352.994022 222.970937 L 353.055953 222.836319 L 353.117883 222.970937 L 353.241744 222.701701 L 353.303675 222.836319 L 353.489466 222.432465 L 353.613327 222.701701 L 353.737188 222.432465 L 353.799119 222.567083 L 354.046841 222.028612 L 354.294563 222.567083 L 354.356493 222.432465 L 354.418424 222.567083 L 354.542285 222.297848 L 354.728076 222.701701 L 354.851937 222.432465 L 354.913868 222.567083 L 354.975798 222.432465 L 355.037729 222.567083 L 355.099659 222.432465 L 355.22352 222.701701 L 355.347381 222.432465 L 355.471242 222.701701 L 355.595103 222.432465 L 355.657034 222.567083 L 355.718964 222.432465 L 355.842825 222.701701 L 356.214408 221.893994 L 356.276339 222.028612 L 356.46213 221.624758 L 356.647922 222.028612 L 356.709852 221.893994 L 356.771783 222.028612 L 356.895644 221.759376 L 357.081435 222.16323 L 357.267227 221.759376 L 357.329157 221.893994 L 357.514949 221.49014 L 357.576879 221.624758 L 357.824601 221.086286 L 358.010393 221.49014 L 358.072323 221.355522 L 358.134254 221.49014 L 358.196184 221.355522 L 358.258115 221.49014 L 358.567767 220.81705 L 358.629698 220.951668 L 358.87742 220.413197 L 359.001281 220.682432 L 359.063211 220.547814 L 359.249003 220.951668 L 359.310933 220.81705 L 359.372864 220.951668 L 359.434794 220.81705 L 359.682516 221.355522 L 359.930238 220.81705 L 359.992169 220.951668 L 360.054099 220.81705 L 360.11603 220.951668 L 360.301821 220.547814 L 360.425682 220.81705 L 360.487613 220.682432 L 360.549543 220.81705 L 360.611474 220.682432 L 360.673404 220.81705 L 360.735335 220.682432 L 360.859196 220.951668 L 360.921126 220.81705 L 361.044987 221.086286 L 361.292709 220.547814 L 361.35464 220.682432 L 361.478501 220.413197 L 361.602362 220.682432 L 361.788153 220.278579 L 362.097806 220.951668 L 362.159736 220.81705 L 362.221667 220.951668 L 362.345528 220.682432 L 362.407458 220.81705 L 362.531319 220.547814 L 362.59325 220.682432 L 362.65518 220.547814 L 362.717111 220.682432 L 362.779041 220.547814 L 362.840972 220.682432 L 363.150624 220.009343 L 363.212555 220.143961 L 363.398346 219.740107 L 363.460277 219.874725 L 363.522207 219.740107 L 363.584138 219.874725 L 363.707999 219.605489 L 363.769929 219.740107 L 364.017651 219.201635 L 364.203443 219.605489 L 364.513095 218.932399 L 364.760817 219.470871 L 364.822748 219.336253 L 364.884678 219.470871 L 365.07047 219.067017 L 365.1324 219.201635 L 365.318192 218.797781 L 365.380122 218.932399 L 365.442053 218.797781 L 365.565914 219.067017 L 365.627844 218.932399 L 365.689775 219.067017 L 365.751705 218.932399 L 365.875566 219.201635 L 365.937497 219.067017 L 365.999427 219.201635 L 366.123288 218.932399 L 366.185219 219.067017 L 366.247149 218.932399 L 366.37101 219.201635 L 366.494871 218.932399 L 366.556802 219.067017 L 366.928385 218.25931 L 366.990315 218.393928 L 367.423829 217.451602 L 367.54769 217.720838 L 367.60962 217.58622 L 367.733481 217.855456 L 367.795412 217.720838 L 367.919273 217.990074 L 367.981203 217.855456 L 368.166995 218.25931 L 368.228925 218.124692 L 368.352786 218.393928 L 368.414717 218.25931 L 368.538578 218.528546 L 368.600508 218.393928 L 368.662439 218.528546 L 368.724369 218.393928 L 368.7863 218.528546 L 369.157883 217.720838 L 369.219813 217.855456 L 369.343674 217.58622 L 369.467535 217.855456 L 369.839118 217.047748 L 369.962979 217.316984 L 370.210701 216.778512 L 370.334562 217.047748 L 370.520354 216.643894 L 370.582284 216.778512 L 370.644215 216.643894 L 370.830006 217.047748 L 371.139659 216.374659 L 371.201589 216.509277 L 371.26352 216.374659 L 371.387381 216.643894 L 371.449311 216.509277 L 371.511242 216.643894 L 371.635103 216.374659 L 371.697033 216.509277 L 371.882825 216.105423 L 372.006686 216.374659 L 372.068616 216.240041 L 372.130547 216.374659 L 372.192477 216.240041 L 372.440199 216.778512 L 372.749852 216.105423 L 372.873713 216.374659 L 372.935643 216.240041 L 372.997574 216.374659 L 373.121435 216.105423 L 373.245296 216.374659 L 373.369157 216.105423 L 373.616879 216.643894 L 373.74074 216.374659 L 373.988462 216.91313 L 374.112323 216.643894 L 374.174253 216.778512 L 374.421975 216.240041 L 374.545836 216.509277 L 374.731628 216.105423 L 374.793558 216.240041 L 374.855489 216.105423 L 374.917419 216.240041 L 375.165141 215.701569 L 375.227072 215.836187 L 375.412863 215.432333 L 375.474794 215.566951 L 375.536724 215.432333 L 375.784446 215.970805 L 375.908307 215.701569 L 376.094099 216.105423 L 376.156029 215.970805 L 376.21796 216.105423 L 376.527612 215.432333 L 376.651473 215.701569 L 376.775334 215.432333 L 376.837265 215.566951 L 376.899195 215.432333 L 376.961126 215.566951 L 377.084987 215.297715 L 377.270778 215.701569 L 377.332709 215.566951 L 377.45657 215.836187 L 377.642361 215.432333 L 377.704292 215.566951 L 377.890083 215.163097 L 377.952014 215.297715 L 378.075875 215.028479 L 378.323597 215.566951 L 378.385527 215.432333 L 378.447458 215.566951 L 378.75711 214.893861 L 378.880971 215.163097 L 378.942902 215.028479 L 379.004832 215.163097 L 379.066763 215.028479 L 379.252554 215.432333 L 379.314485 215.297715 L 379.438346 215.566951 L 379.809929 214.759243 L 379.93379 215.028479 L 379.99572 214.893861 L 380.119581 215.163097 L 380.181512 215.028479 L 380.367303 215.432333 L 380.429234 215.297715 L 380.491164 215.432333 L 380.676956 215.028479 L 380.738886 215.163097 L 380.800817 215.028479 L 380.986608 215.432333 L 381.1724 215.028479 L 381.23433 215.163097 L 381.543983 214.490008 L 381.605913 214.624626 L 381.667844 214.490008 L 381.791705 214.759243 L 381.915566 214.490008 L 382.039427 214.759243 L 382.101357 214.624626 L 382.287149 215.028479 L 382.349079 214.893861 L 382.41101 215.028479 L 382.47294 214.893861 L 382.534871 215.028479 L 382.658732 214.759243 L 382.720662 214.893861 L 382.782593 214.759243 L 382.968384 215.163097 L 383.030315 215.028479 L 383.092245 215.163097 L 383.278037 214.759243 L 383.463828 215.163097 L 383.525759 215.028479 L 383.71155 215.432333 L 383.773481 215.297715 L 383.835411 215.432333 L 383.959272 215.163097 L 384.021203 215.297715 L 384.083133 215.163097 L 384.145064 215.297715 L 384.206994 215.163097 L 384.268925 215.297715 L 384.702438 214.35539 L 384.826299 214.624626 L 384.95016 214.35539 L 385.012091 214.490008 L 385.135952 214.220772 L 385.197882 214.35539 L 385.507535 213.6823 L 385.569465 213.816918 L 385.693326 213.547682 L 385.755257 213.6823 L 386.18877 212.739975 L 386.374562 213.143828 L 386.436492 213.00921 L 386.560353 213.278446 L 386.746145 212.874592 L 386.808075 213.00921 L 386.870006 212.874592 L 386.931936 213.00921 L 386.993867 212.874592 L 387.055797 213.00921 L 387.241589 212.605357 L 387.303519 212.739975 L 387.42738 212.470739 L 387.737033 213.143828 L 387.798963 213.00921 L 387.922824 213.278446 L 388.232477 212.605357 L 388.294407 212.739975 L 388.480199 212.336121 L 388.789851 213.00921 L 388.913712 212.739975 L 388.975643 212.874592 L 389.037573 212.739975 L 389.099504 212.874592 L 389.347226 212.336121 L 389.533017 212.739975 L 389.594948 212.605357 L 389.656878 212.739975 L 389.84267 212.336121 L 389.9046 212.470739 L 390.090392 212.066885 L 390.338114 212.605357 L 390.523905 212.201503 L 390.585836 212.336121 L 390.771627 211.932267 L 391.019349 212.470739 L 391.08128 212.336121 L 391.14321 212.470739 L 391.205141 212.336121 L 391.267071 212.470739 L 391.329002 212.336121 L 391.390932 212.470739 L 391.452863 212.336121 L 391.514793 212.470739 L 391.576724 212.336121 L 391.638654 212.470739 L 391.700585 212.336121 L 391.762515 212.470739 L 391.824446 212.336121 L 392.010237 212.739975 L 392.196029 212.336121 L 392.257959 212.470739 L 392.629542 211.663031 L 392.691473 211.797649 L 392.753403 211.663031 L 392.815334 211.797649 L 392.939195 211.528413 L 393.001125 211.663031 L 393.186917 211.259177 L 393.248847 211.393795 L 393.310778 211.259177 L 393.496569 211.663031 L 393.682361 211.259177 L 393.806222 211.528413 L 393.868152 211.393795 L 393.992013 211.663031 L 394.363596 210.855323 L 394.673249 211.528413 L 394.85904 211.124559 L 394.920971 211.259177 L 394.982901 211.124559 L 395.106762 211.393795 L 395.168693 211.259177 L 395.230623 211.393795 L 395.292554 211.259177 L 395.416415 211.528413 L 395.540276 211.259177 L 395.664137 211.528413 L 395.726067 211.393795 L 395.787998 211.528413 L 395.849928 211.393795 L 395.973789 211.663031 L 396.159581 211.259177 L 396.283442 211.528413 L 396.469233 211.124559 L 396.531164 211.259177 L 396.655025 210.989941 L 396.778886 211.259177 L 396.964677 210.855323 L 397.026608 210.989941 L 397.212399 210.586088 L 397.27433 210.720706 L 397.460121 210.316852 L 397.583982 210.586088 L 397.707843 210.316852 L 397.831704 210.586088 L 397.893635 210.45147 L 397.955565 210.586088 L 398.079426 210.316852 L 398.203287 210.586088 L 398.265218 210.45147 L 398.389079 210.720706 L 398.636801 210.182234 L 398.698731 210.316852 L 398.760662 210.182234 L 398.884523 210.45147 L 398.946453 210.316852 L 399.008384 210.45147 L 399.070314 210.316852 L 399.194175 210.586088 L 399.318036 210.316852 L 399.441897 210.586088 L 399.503828 210.45147 L 399.565758 210.586088 L 399.627689 210.45147 L 399.689619 210.586088 L 399.75155 210.45147 L 399.81348 210.586088 L 399.999272 210.182234 L 400.185063 210.586088 L 400.432785 210.047616 L 400.494716 210.182234 L 400.556646 210.047616 L 400.742438 210.45147 L 400.99016 209.912998 L 401.05209 210.047616 L 401.485604 209.10529 L 401.547534 209.239908 L 401.857187 208.566819 L 401.981048 208.836055 L 402.042978 208.701437 L 402.104909 208.836055 L 402.166839 208.701437 L 402.2907 208.970672 L 402.414561 208.701437 L 402.476492 208.836055 L 402.538422 208.701437 L 402.600353 208.836055 L 402.786144 208.432201 L 402.848075 208.566819 L 403.157727 207.893729 L 403.219658 208.028347 L 403.281588 207.893729 L 403.343519 208.028347 L 403.405449 207.893729 L 403.52931 208.162965 L 403.715102 207.759111 L 403.838963 208.028347 L 404.024754 207.624493 L 404.148615 207.893729 L 404.210546 207.759111 L 404.458268 208.297583 L 404.582129 208.028347 L 404.70599 208.297583 L 404.76792 208.162965 L 404.829851 208.297583 L 405.015642 207.893729 L 405.139503 208.162965 L 405.325295 207.759111 L 405.387225 207.893729 L 405.449156 207.759111 L 405.573017 208.028347 L 405.634947 207.893729 L 405.696878 208.028347 L 405.9446 207.489875 L 406.00653 207.624493 L 406.068461 207.489875 L 406.192322 207.759111 L 406.316183 207.489875 L 406.378113 207.624493 L 406.687766 206.951404 L 406.873557 207.355257 L 407.121279 206.816786 L 407.369001 207.355257 L 407.616723 206.816786 L 407.678654 206.951404 L 407.926376 206.412932 L 407.988306 206.54755 L 408.050237 206.412932 L 408.174098 206.682168 L 408.236028 206.54755 L 408.359889 206.816786 L 408.607611 206.278314 L 408.793403 206.682168 L 408.917264 206.412932 L 409.103055 206.816786 L 409.164986 206.682168 L 409.288847 206.951404 L 409.598499 206.278314 L 409.784291 206.682168 L 409.970082 206.278314 L 410.032013 206.412932 L 410.093943 206.278314 L 410.155874 206.412932 L 410.341665 206.009078 L 410.465526 206.278314 L 410.589387 206.009078 L 410.713249 206.278314 L 411.146762 205.335988 L 411.270623 205.605224 L 411.332554 205.470606 L 411.456415 205.739842 L 411.580276 205.470606 L 411.642206 205.605224 L 412.013789 204.797517 L 412.07572 204.932135 L 412.13765 204.797517 L 412.199581 204.932135 L 412.261511 204.797517 L 412.385372 205.066752 L 412.509233 204.797517 L 412.695025 205.20137 L 412.756955 205.066752 L 412.818886 205.20137 L 412.880816 205.066752 L 412.942747 205.20137 L 413.004677 205.066752 L 413.190469 205.470606 L 413.500121 204.797517 L 413.562052 204.932135 L 413.747843 204.528281 L 414.181357 205.470606 L 414.243287 205.335988 L 414.491009 205.87446 L 414.676801 205.470606 L 414.800662 205.739842 L 414.924523 205.470606 L 414.986453 205.605224 L 415.048384 205.470606 L 415.110314 205.605224 L 415.234175 205.335988 L 415.667689 206.278314 L 415.729619 206.143696 L 415.915411 206.54755 L 416.039272 206.278314 L 416.101202 206.412932 L 416.286994 206.009078 L 416.534716 206.54755 L 416.596646 206.412932 L 416.720507 206.682168 L 416.782438 206.54755 L 416.968229 206.951404 L 417.03016 206.816786 L 417.09209 206.951404 L 417.215951 206.682168 L 417.339812 206.951404 L 417.401743 206.816786 L 417.587534 207.220639 L 417.897187 206.54755 L 418.021048 206.816786 L 418.144909 206.54755 L 418.206839 206.682168 L 418.3307 206.412932 L 418.454561 206.682168 L 418.640353 206.278314 L 418.764214 206.54755 L 419.011936 206.009078 L 419.135797 206.278314 L 419.197727 206.143696 L 419.259658 206.278314 L 419.383519 206.009078 L 419.631241 206.54755 L 419.755102 206.278314 L 419.817032 206.412932 L 419.940893 206.143696 L 420.002824 206.278314 L 420.126685 206.009078 L 420.188615 206.143696 L 420.312476 205.87446 L 420.436337 206.143696 L 420.622129 205.739842 L 420.80792 206.143696 L 420.869851 206.009078 L 420.931781 206.143696 L 421.117573 205.739842 L 421.241434 206.009078 L 421.427225 205.605224 L 421.489156 205.739842 L 421.9846 204.662899 L 422.04653 204.797517 L 422.418113 203.989809 L 422.480044 204.124427 L 422.603905 203.855191 L 422.789696 204.259045 L 422.975488 203.855191 L 423.22321 204.393663 L 423.409001 203.989809 L 423.594793 204.393663 L 423.656723 204.259045 L 423.780584 204.528281 L 423.842515 204.393663 L 423.904445 204.528281 L 424.028306 204.259045 L 424.276028 204.797517 L 424.399889 204.528281 L 424.52375 204.797517 L 424.585681 204.662899 L 424.647611 204.797517 L 425.081125 203.855191 L 425.204986 204.124427 L 425.328847 203.855191 L 425.514638 204.259045 L 425.70043 203.855191 L 425.76236 203.989809 L 426.133943 203.182101 L 426.195874 203.316719 L 426.257804 203.182101 L 426.381665 203.451337 L 426.691318 202.778248 L 426.753248 202.912866 L 427.248692 201.835922 L 427.496414 202.374394 L 427.620275 202.105158 L 427.744136 202.374394 L 427.991858 201.835922 L 428.301511 202.509012 L 428.363441 202.374394 L 428.487302 202.64363 L 428.796955 201.97054 L 428.858885 202.105158 L 428.982746 201.835922 L 429.044677 201.97054 L 429.168538 201.701304 L 429.230468 201.835922 L 429.354329 201.566686 L 429.540121 201.97054 L 429.663982 201.701304 L 429.725912 201.835922 L 429.973634 201.29745 L 430.035565 201.432068 L 430.159426 201.162833 L 430.345217 201.566686 L 430.469078 201.29745 L 430.531009 201.432068 L 430.7168 201.028215 L 430.778731 201.162833 L 430.964522 200.758979 L 431.026453 200.893597 L 431.088383 200.758979 L 431.150314 200.893597 L 431.398036 200.355125 L 431.707688 201.028215 L 431.769619 200.893597 L 431.89348 201.162833 L 431.95541 201.028215 L 432.079271 201.29745 L 432.326993 200.758979 L 432.388924 200.893597 L 432.450854 200.758979 L 432.636646 201.162833 L 432.698576 201.028215 L 432.760507 201.162833 L 432.884368 200.893597 L 432.946298 201.028215 L 433.070159 200.758979 L 433.13209 200.893597 L 433.317881 200.489743 L 433.379812 200.624361 L 433.503673 200.355125 L 433.565603 200.489743 L 433.689464 200.220507 L 433.751395 200.355125 L 433.813325 200.220507 L 433.937186 200.489743 L 434.061047 200.220507 L 434.122978 200.355125 L 434.246839 200.085889 L 434.308769 200.220507 L 434.3707 200.085889 L 434.43263 200.220507 L 434.494561 200.085889 L 434.742283 200.624361 L 434.928074 200.220507 L 435.113866 200.624361 L 435.175796 200.489743 L 435.299657 200.758979 L 435.423518 200.489743 L 435.733171 201.162833 L 435.795101 201.028215 L 435.857032 201.162833 L 436.104754 200.624361 L 436.228615 200.893597 L 436.290545 200.758979 L 436.352476 200.893597 L 436.600198 200.355125 L 436.662128 200.489743 L 436.785989 200.220507 L 436.84792 200.355125 L 437.033711 199.951271 L 437.095642 200.085889 L 437.219503 199.816653 L 437.281433 199.951271 L 437.529155 199.412799 L 437.653016 199.682035 L 438.024599 198.874328 L 438.08653 199.008946 L 438.14846 198.874328 L 438.334252 199.278181 L 438.396182 199.143564 L 438.458113 199.278181 L 438.520043 199.143564 L 438.581974 199.278181 L 438.643904 199.143564 L 438.705835 199.278181 L 438.767765 199.143564 L 438.953557 199.547417 L 439.201279 199.008946 L 439.263209 199.143564 L 439.32514 199.008946 L 439.38707 199.143564 L 439.696723 198.470474 L 439.758653 198.605092 L 439.944445 198.201238 L 440.006375 198.335856 L 440.130236 198.06662 L 440.192167 198.201238 L 440.62568 197.258913 L 440.749541 197.528148 L 440.811472 197.39353 L 440.935333 197.662766 L 441.059194 197.39353 L 441.121124 197.528148 L 441.183055 197.39353 L 441.244985 197.528148 L 441.306916 197.39353 L 441.492707 197.797384 L 441.616568 197.528148 L 441.678499 197.662766 L 441.926221 197.124295 L 442.050082 197.39353 L 442.173943 197.124295 L 442.235873 197.258913 L 442.297804 197.124295 L 442.421665 197.39353 L 442.545526 197.124295 L 442.607456 197.258913 L 442.855178 196.720441 L 442.979039 196.989677 L 443.04097 196.855059 L 443.164831 197.124295 L 443.412553 196.585823 L 443.474483 196.720441 L 443.598344 196.451205 L 443.660275 196.585823 L 443.784136 196.316587 L 443.846066 196.451205 L 444.031858 196.047351 L 444.217649 196.451205 L 444.465371 195.912733 L 444.589232 196.181969 L 444.775024 195.778115 L 444.836954 195.912733 L 444.898885 195.778115 L 445.084676 196.181969 L 445.208537 195.912733 L 445.270468 196.047351 L 445.827842 194.83579 L 445.951703 195.105026 L 446.075564 194.83579 L 446.137495 194.970408 L 446.385217 194.431936 L 446.447147 194.566554 L 446.509078 194.431936 L 446.632939 194.701172 L 446.7568 194.431936 L 446.81873 194.566554 L 447.066452 194.028082 L 447.128383 194.1627 L 447.252244 193.893464 L 447.561896 194.566554 L 447.685757 194.297318 L 447.933479 194.83579 L 447.99541 194.701172 L 448.119271 194.970408 L 448.181201 194.83579 L 448.305062 195.105026 L 448.366993 194.970408 L 448.552784 195.374261 L 448.738576 194.970408 L 448.862437 195.239644 L 448.986298 194.970408 L 449.048228 195.105026 L 449.110159 194.970408 L 449.23402 195.239644 L 449.419811 194.83579 L 449.605603 195.239644 L 449.791394 194.83579 L 449.853325 194.970408 L 449.915255 194.83579 L 450.039116 195.105026 L 450.162977 194.83579 L 450.224908 194.970408 L 450.410699 194.566554 L 450.53456 194.83579 L 450.596491 194.701172 L 450.658421 194.83579 L 450.720352 194.701172 L 450.844213 194.970408 L 451.277726 194.028082 L 451.401587 194.297318 L 451.897031 193.220375 L 452.082823 193.624228 L 452.206684 193.354993 L 452.268614 193.48961 L 452.454406 193.085757 L 452.516336 193.220375 L 452.578267 193.085757 L 452.887919 193.758846 L 452.94985 193.624228 L 453.01178 193.758846 L 453.073711 193.624228 L 453.197572 193.893464 L 453.259502 193.758846 L 453.445294 194.1627 L 453.507224 194.028082 L 453.631085 194.297318 L 453.693016 194.1627 L 453.754946 194.297318 L 453.816877 194.1627 L 453.940738 194.431936 L 454.498112 193.220375 L 454.560043 193.354993 L 454.745834 192.951139 L 454.807765 193.085757 L 454.869695 192.951139 L 454.931626 193.085757 L 454.993556 192.951139 L 455.179348 193.354993 L 455.303209 193.085757 L 455.365139 193.220375 L 455.489 192.951139 L 455.612861 193.220375 L 455.736722 192.951139 L 455.798653 193.085757 L 455.860583 192.951139 L 455.984444 193.220375 L 456.046375 193.085757 L 456.108305 193.220375 L 456.232166 192.951139 L 456.479888 193.48961 L 456.541819 193.354993 L 456.603749 193.48961 L 456.851471 192.951139 L 457.161124 193.624228 L 457.223054 193.48961 L 457.284985 193.624228 L 457.346915 193.48961 L 457.408846 193.624228 L 457.470776 193.48961 L 457.532707 193.624228 L 457.656568 193.354993 L 457.96622 194.028082 L 458.028151 193.893464 L 458.090081 194.028082 L 458.275873 193.624228 L 458.523595 194.1627 L 458.585525 194.028082 L 458.709386 194.297318 L 458.957108 193.758846 L 459.019039 193.893464 L 459.080969 193.758846 L 459.20483 194.028082 L 459.266761 193.893464 L 459.328691 194.028082 L 459.390622 193.893464 L 459.452552 194.028082 L 459.638344 193.624228 L 459.700274 193.758846 L 459.824135 193.48961 L 459.947996 193.758846 L 460.009927 193.624228 L 460.071857 193.758846 L 460.195718 193.48961 L 460.319579 193.758846 L 460.505371 193.354993 L 460.567301 193.48961 L 460.629232 193.354993 L 460.691162 193.48961 L 460.876954 193.085757 L 461.124676 193.624228 L 461.310467 193.220375 L 461.372398 193.354993 L 461.805911 192.412667 L 461.867842 192.547285 L 461.991703 192.278049 L 462.115564 192.547285 L 462.239425 192.278049 L 462.301355 192.412667 L 462.611008 191.739577 L 462.672938 191.874195 L 462.734869 191.739577 L 462.796799 191.874195 L 462.92066 191.604959 L 462.982591 191.739577 L 463.044521 191.604959 L 463.106452 191.739577 L 463.416104 191.066488 L 463.478035 191.201106 L 463.539965 191.066488 L 463.663826 191.335724 L 463.787687 191.066488 L 463.849618 191.201106 L 464.035409 190.797252 L 464.09734 190.93187 L 464.15927 190.797252 L 464.221201 190.93187 L 464.283131 190.797252 L 464.406992 191.066488 L 464.530853 190.797252 L 464.592784 190.93187 L 464.902436 190.25878 L 465.026297 190.528016 L 465.088228 190.393398 L 465.150158 190.528016 L 465.459811 189.854926 L 465.521741 189.989544 L 465.583672 189.854926 L 465.645602 189.989544 L 465.707533 189.854926 L 466.079116 190.662634 L 466.141046 190.528016 L 466.202977 190.662634 L 466.388768 190.25878 L 466.57456 190.662634 L 466.698421 190.393398 L 466.760351 190.528016 L 466.822282 190.393398 L 466.946143 190.662634 L 467.008073 190.528016 L 467.070004 190.662634 L 467.131934 190.528016 L 467.255795 190.797252 L 467.317726 190.662634 L 467.379656 190.797252 L 467.565448 190.393398 L 467.627378 190.528016 L 467.751239 190.25878 L 467.81317 190.393398 L 467.8751 190.25878 L 467.937031 190.393398 L 468.184753 189.854926 L 468.246683 189.989544 L 468.308614 189.854926 L 468.618266 190.528016 L 468.804058 190.124162 L 468.865988 190.25878 L 469.05178 189.854926 L 469.175641 190.124162 L 469.237571 189.989544 L 469.361432 190.25878 L 469.423363 190.124162 L 469.547224 190.393398 L 470.228459 188.912601 L 470.29039 189.047219 L 470.414251 188.777983 L 470.476181 188.912601 L 470.600042 188.643365 L 470.661973 188.777983 L 470.723903 188.643365 L 470.785834 188.777983 L 471.095486 188.104893 L 471.157417 188.239511 L 471.467069 187.566422 L 471.59093 187.835657 L 471.652861 187.701039 L 471.714791 187.835657 L 471.838652 187.566422 L 472.024444 187.970275 L 472.086374 187.835657 L 472.272166 188.239511 L 472.334096 188.104893 L 472.581818 188.643365 L 472.76761 188.239511 L 472.891471 188.508747 L 473.015332 188.239511 L 473.201123 188.643365 L 473.386915 188.239511 L 473.510776 188.508747 L 473.820428 187.835657 L 473.944289 188.104893 L 474.00622 187.970275 L 474.06815 188.104893 L 474.130081 187.970275 L 474.315872 188.374129 L 474.563594 187.835657 L 474.687455 188.104893 L 474.749386 187.970275 L 475.059038 188.643365 L 475.182899 188.374129 L 475.24483 188.508747 L 475.30676 188.374129 L 475.430621 188.643365 L 475.616413 188.239511 L 475.678343 188.374129 L 475.740274 188.239511 L 475.802204 188.374129 L 475.864135 188.239511 L 476.049926 188.643365 L 476.235718 188.239511 L 476.297648 188.374129 L 476.48344 187.970275 L 476.54537 188.104893 L 476.731162 187.701039 L 476.855023 187.970275 L 477.040814 187.566422 L 477.164675 187.835657 L 477.226606 187.701039 L 477.288536 187.835657 L 477.412397 187.566422 L 477.474328 187.701039 L 477.536258 187.566422 L 477.845911 188.239511 L 477.907841 188.104893 L 477.969772 188.239511 L 478.031702 188.104893 L 478.093633 188.239511 L 478.155563 188.104893 L 478.217494 188.239511 L 478.465216 187.701039 L 478.527146 187.835657 L 478.651007 187.566422 L 478.712938 187.701039 L 478.96066 187.162568 L 479.518034 188.374129 L 479.641895 188.104893 L 479.951548 188.777983 L 480.075409 188.508747 L 480.137339 188.643365 L 480.323131 188.239511 L 480.385061 188.374129 L 480.446992 188.239511 L 480.508922 188.374129 L 480.880505 187.566422 L 480.942436 187.701039 L 481.314019 186.893332 L 481.375949 187.02795 L 481.747532 186.220242 L 481.809463 186.35486 L 481.871393 186.220242 L 481.933324 186.35486 L 482.119115 185.951006 L 482.242976 186.220242 L 482.366837 185.951006 L 482.428768 186.085624 L 482.490698 185.951006 L 482.800351 186.624096 L 482.986142 186.220242 L 483.233864 186.758714 L 483.419656 186.35486 L 483.543517 186.624096 L 483.729308 186.220242 L 483.791239 186.35486 L 483.853169 186.220242 L 483.97703 186.489478 L 484.534405 185.277917 L 484.596335 185.412535 L 484.782127 185.008681 L 484.844057 185.143299 L 484.905988 185.008681 L 485.029849 185.277917 L 485.463362 184.335591 L 485.525293 184.470209 L 485.587223 184.335591 L 485.649154 184.470209 L 485.711084 184.335591 L 486.020737 185.008681 L 486.082667 184.874063 L 486.144598 185.008681 L 486.330389 184.604827 L 486.45425 184.874063 L 486.516181 184.739445 L 486.578111 184.874063 L 486.701972 184.604827 L 486.825833 184.874063 L 486.887764 184.739445 L 486.949694 184.874063 L 487.011625 184.739445 L 487.073555 184.874063 L 487.259347 184.470209 L 487.321277 184.604827 L 487.383208 184.470209 L 487.507069 184.739445 L 487.568999 184.604827 L 487.63093 184.739445 L 487.878652 184.200973 L 487.940582 184.335591 L 488.064443 184.066355 L 488.126374 184.200973 L 488.374096 183.662502 L 488.497957 183.931737 L 488.621818 183.662502 L 488.86954 184.200973 L 488.93147 184.066355 L 489.055331 184.335591 L 489.179192 184.066355 L 489.241123 184.200973 L 489.426914 183.797119 L 489.550775 184.066355 L 489.984289 183.12403 L 490.10815 183.393266 L 490.17008 183.258648 L 490.232011 183.393266 L 490.293941 183.258648 L 490.355872 183.393266 L 490.541663 182.989412 L 490.665524 183.258648 L 490.727455 183.12403 L 490.851316 183.393266 L 491.099038 182.854794 L 491.160968 182.989412 L 491.222899 182.854794 L 491.284829 182.989412 L 491.34676 182.854794 L 491.40869 182.989412 L 491.470621 182.854794 L 491.532551 182.989412 L 491.594482 182.854794 L 491.656412 182.989412 L 491.780273 182.720176 L 491.842204 182.854794 L 491.966065 182.585558 L 492.027995 182.720176 L 492.213787 182.316322 L 492.58537 183.12403 L 492.6473 182.989412 L 492.833092 183.393266 L 492.956953 183.12403 L 493.018883 183.258648 L 493.204675 182.854794 L 493.328536 183.12403 L 493.390466 182.989412 L 493.452397 183.12403 L 493.576258 182.854794 L 493.638188 182.989412 L 493.762049 182.720176 L 494.009771 183.258648 L 494.195563 182.854794 L 494.319424 183.12403 L 494.505215 182.720176 L 494.567146 182.854794 L 495.06259 181.777851 L 495.186451 182.047086 L 495.248381 181.912468 L 495.310312 182.047086 L 495.434173 181.777851 L 495.496103 181.912468 L 495.558034 181.777851 L 495.619964 181.912468 L 496.115408 180.835525 L 496.36313 181.373997 L 496.610852 180.835525 L 496.672783 180.970143 L 496.796644 180.700907 L 496.920505 180.970143 L 497.106296 180.566289 L 497.230157 180.835525 L 497.354018 180.566289 L 497.53981 180.970143 L 497.725601 180.566289 L 497.787532 180.700907 L 497.849462 180.566289 L 497.911393 180.700907 L 498.035254 180.431671 L 498.097184 180.566289 L 498.282976 180.162435 L 498.592628 180.835525 L 498.654559 180.700907 L 498.84035 181.104761 L 498.902281 180.970143 L 498.964211 181.104761 L 499.273864 180.431671 L 499.397725 180.700907 L 499.459655 180.566289 L 499.645447 180.970143 L 499.769308 180.700907 L 499.831238 180.835525 L 499.893169 180.700907 L 500.07896 181.104761 L 500.202821 180.835525 L 500.264752 180.970143 L 500.388613 180.700907 L 500.450543 180.835525 L 500.574404 180.566289 L 500.636335 180.700907 L 500.760196 180.431671 L 500.884057 180.700907 L 501.007918 180.431671 L 501.069848 180.566289 L 501.31757 180.027817 L 501.441431 180.297053 L 501.503362 180.162435 L 501.565292 180.297053 L 501.627223 180.162435 L 501.689153 180.297053 L 501.813014 180.027817 L 501.936875 180.297053 L 502.246528 179.623964 L 502.49425 180.162435 L 502.55618 180.027817 L 502.618111 180.162435 L 502.803902 179.758582 L 502.989694 180.162435 L 503.051624 180.027817 L 503.237416 180.431671 L 503.299346 180.297053 L 503.361277 180.431671 L 503.423207 180.297053 L 503.485138 180.431671 L 503.670929 180.027817 L 503.73286 180.162435 L 503.918651 179.758582 L 503.980582 179.8932 L 504.042512 179.758582 L 504.104443 179.8932 L 504.414095 179.22011 L 504.476026 179.354728 L 504.537956 179.22011 L 504.599887 179.354728 L 504.661817 179.22011 L 504.785678 179.489346 L 504.847609 179.354728 L 504.97147 179.623964 L 505.157261 179.22011 L 505.281122 179.489346 L 505.343053 179.354728 L 505.404983 179.489346 L 505.776566 178.681638 L 505.838497 178.816256 L 505.962358 178.54702 L 506.024288 178.681638 L 506.148149 178.412402 L 506.27201 178.681638 L 506.395871 178.412402 L 506.519732 178.681638 L 506.829385 178.008548 L 506.891315 178.143166 L 506.953246 178.008548 L 507.015176 178.143166 L 507.139037 177.873931 L 507.200968 178.008548 L 507.262898 177.873931 L 507.386759 178.143166 L 507.44869 178.008548 L 507.634481 178.412402 L 507.820273 178.008548 L 508.067995 178.54702 L 508.191856 178.277784 L 508.315717 178.54702 L 508.377647 178.412402 L 508.625369 178.950874 L 508.74923 178.681638 L 508.811161 178.816256 L 508.996952 178.412402 L 509.058883 178.54702 L 509.120813 178.412402 L 509.182744 178.54702 L 509.368535 178.143166 L 509.616257 178.681638 L 509.740118 178.412402 L 509.802049 178.54702 L 509.863979 178.412402 L 510.049771 178.816256 L 510.235562 178.412402 L 510.483284 178.950874 L 510.669076 178.54702 L 510.731006 178.681638 L 511.040659 178.008548 L 511.102589 178.143166 L 511.16452 178.008548 L 511.412242 178.54702 L 511.474172 178.412402 L 511.536103 178.54702 L 511.721894 178.143166 L 511.845755 178.412402 L 512.093477 177.873931 L 512.155408 178.008548 L 512.217338 177.873931 L 512.40313 178.277784 L 512.650852 177.739313 L 512.712782 177.873931 L 512.836643 177.604695 L 512.898574 177.739313 L 513.146296 177.200841 L 513.270157 177.470077 L 513.394018 177.200841 L 513.455948 177.335459 L 513.579809 177.066223 L 513.64174 177.200841 L 513.889462 176.662369 L 514.075253 177.066223 L 514.261045 176.662369 L 514.508767 177.200841 L 514.570697 177.066223 L 514.632628 177.200841 L 514.694558 177.066223 L 514.756489 177.200841 L 515.128072 176.393133 L 515.190002 176.527751 L 515.251933 176.393133 L 515.313863 176.527751 L 515.375794 176.393133 L 515.623516 176.931605 L 515.871238 176.393133 L 515.933168 176.527751 L 516.11896 176.123897 L 516.242821 176.393133 L 516.490543 175.854662 L 516.614404 176.123897 L 516.738265 175.854662 L 516.862126 176.123897 L 516.924056 175.98928 L 517.109848 176.393133 L 517.295639 175.98928 L 517.35757 176.123897 L 517.481431 175.854662 L 517.605292 176.123897 L 517.914944 175.450808 L 517.976875 175.585426 L 518.286527 174.912336 L 518.348458 175.046954 L 518.472319 174.777718 L 518.65811 175.181572 L 519.029693 174.373864 L 519.091624 174.508482 L 519.215485 174.239246 L 519.339346 174.508482 L 519.401276 174.373864 L 519.525137 174.6431 L 519.958651 173.700775 L 520.020581 173.835393 L 520.082512 173.700775 L 520.144442 173.835393 L 520.206373 173.700775 L 520.268303 173.835393 L 520.330234 173.700775 L 520.639886 174.373864 L 520.701817 174.239246 L 520.763747 174.373864 L 520.825678 174.239246 L 520.887608 174.373864 L 520.949539 174.239246 L 521.011469 174.373864 L 521.13533 174.104629 L 521.259191 174.373864 L 521.321122 174.239246 L 521.383052 174.373864 L 521.444983 174.239246 L 521.568844 174.508482 L 521.630774 174.373864 L 521.692705 174.508482 L 521.754635 174.373864 L 521.816566 174.508482 L 522.126218 173.835393 L 522.188149 173.970011 L 522.37394 173.566157 L 522.435871 173.700775 L 522.497801 173.566157 L 522.559732 173.700775 L 522.621662 173.566157 L 522.807454 173.970011 L 522.931315 173.700775 L 522.993245 173.835393 L 523.179037 173.431539 L 523.364828 173.835393 L 523.488689 173.566157 L 523.55062 173.700775 L 523.61255 173.566157 L 523.860272 174.104629 L 523.922203 173.970011 L 524.046064 174.239246 L 524.293786 173.700775 L 524.355716 173.835393 L 524.417647 173.700775 L 524.479577 173.835393 L 524.603438 173.566157 L 524.665369 173.700775 L 525.098882 172.758449 L 525.222743 173.027685 L 525.284674 172.893067 L 525.346604 173.027685 L 525.408535 172.893067 L 525.594326 173.296921 L 525.718187 173.027685 L 525.842048 173.296921 L 525.965909 173.027685 L 526.02784 173.162303 L 526.275562 172.623831 L 526.337492 172.758449 L 526.461353 172.489213 L 526.585214 172.758449 L 526.832936 172.219977 L 526.894867 172.354595 L 527.018728 172.08536 L 527.080658 172.219977 L 527.452241 171.41227 L 527.699963 171.950742 L 527.761894 171.816124 L 527.823824 171.950742 L 527.885755 171.816124 L 527.947685 171.950742 L 528.009616 171.816124 L 528.133477 172.08536 L 528.50506 171.277652 L 528.628921 171.546888 L 528.876643 171.008416 L 528.938573 171.143034 L 529.000504 171.008416 L 529.124365 171.277652 L 529.186295 171.143034 L 529.310156 171.41227 L 529.372087 171.277652 L 529.495948 171.546888 L 529.619809 171.277652 L 529.8056 171.681506 L 529.867531 171.546888 L 529.929461 171.681506 L 529.991392 171.546888 L 530.053322 171.681506 L 530.239114 171.277652 L 530.486836 171.816124 L 530.672627 171.41227 L 530.734558 171.546888 L 530.796488 171.41227 L 530.858419 171.546888 L 531.04421 171.143034 L 531.415793 171.950742 L 531.539654 171.681506 L 531.601585 171.816124 L 531.849307 171.277652 L 532.097029 171.816124 L 532.468612 171.008416 L 532.530542 171.143034 L 532.778264 170.604562 L 532.902125 170.873798 L 532.964056 170.73918 L 533.087917 171.008416 L 533.211778 170.73918 L 533.273708 170.873798 L 533.831083 169.662237 L 534.016874 170.066091 L 534.140735 169.796855 L 534.264596 170.066091 L 534.388457 169.796855 L 534.512318 170.066091 L 534.76004 169.527619 L 534.821971 169.662237 L 534.883901 169.527619 L 534.945832 169.662237 L 535.131623 169.258383 L 535.255484 169.527619 L 535.317415 169.393001 L 535.379345 169.527619 L 535.441276 169.393001 L 535.627067 169.796855 L 535.688998 169.662237 L 535.874789 170.066091 L 535.99865 169.796855 L 536.060581 169.931473 L 536.308303 169.393001 L 536.494094 169.796855 L 536.556025 169.662237 L 536.617955 169.796855 L 536.989538 168.989147 L 537.113399 169.258383 L 537.17533 169.123765 L 537.23726 169.258383 L 537.299191 169.123765 L 537.361121 169.258383 L 537.546913 168.854529 L 537.608843 168.989147 L 537.670774 168.854529 L 537.856565 169.258383 L 537.918496 169.123765 L 538.166218 169.662237 L 538.228148 169.527619 L 538.352009 169.796855 L 538.537801 169.393001 L 538.599731 169.527619 L 538.661662 169.393001 L 538.909384 169.931473 L 538.971314 169.796855 L 539.033245 169.931473 L 539.157106 169.662237 L 539.219036 169.796855 L 539.280967 169.662237 L 539.342897 169.796855 L 539.65255 169.123765 L 540.086063 170.066091 L 540.209924 169.796855 L 540.271855 169.931473 L 540.457646 169.527619 L 540.581507 169.796855 L 540.643438 169.662237 L 540.829229 170.066091 L 540.89116 169.931473 L 541.076951 170.335326 L 541.138882 170.200709 L 541.200812 170.335326 L 541.324673 170.066091 L 541.386604 170.200709 L 541.448534 170.066091 L 541.510465 170.200709 L 541.572395 170.066091 L 541.634326 170.200709 L 541.943978 169.527619 L 542.005909 169.662237 L 542.625214 168.316058 L 542.749075 168.585293 L 542.811005 168.450675 L 542.872936 168.585293 L 542.934866 168.450675 L 542.996797 168.585293 L 543.058727 168.450675 L 543.306449 168.989147 L 543.616102 168.316058 L 543.678032 168.450675 L 543.739963 168.316058 L 543.801893 168.450675 L 543.987685 168.046822 L 544.111546 168.316058 L 544.235407 168.046822 L 544.483129 168.585293 L 544.60699 168.316058 L 544.66892 168.450675 L 545.102434 167.50835 L 545.226295 167.777586 L 545.288225 167.642968 L 545.412086 167.912204 L 545.474017 167.777586 L 545.597878 168.046822 L 545.721739 167.777586 L 545.783669 167.912204 L 545.90753 167.642968 L 546.279113 168.450675 L 546.588766 167.777586 L 546.650696 167.912204 L 546.712627 167.777586 L 546.836488 168.046822 L 546.898418 167.912204 L 547.08421 168.316058 L 547.270001 167.912204 L 547.331932 168.046822 L 547.517723 167.642968 L 547.579654 167.777586 L 547.765445 167.373732 L 547.889306 167.642968 L 547.951237 167.50835 L 548.013167 167.642968 L 548.075098 167.50835 L 548.137028 167.642968 L 548.198959 167.50835 L 548.260889 167.642968 L 548.32282 167.50835 L 548.38475 167.642968 L 548.570542 167.239114 L 548.694403 167.50835 L 548.880194 167.104496 L 549.189847 167.777586 L 549.437569 167.239114 L 549.499499 167.373732 L 549.56143 167.239114 L 549.62336 167.373732 L 549.809152 166.969878 L 549.871082 167.104496 L 549.994943 166.83526 L 550.056874 166.969878 L 550.118804 166.83526 L 550.242665 167.104496 L 550.490387 166.566024 L 550.552318 166.700642 L 550.676179 166.431406 L 550.738109 166.566024 L 550.86197 166.296789 L 550.923901 166.431406 L 550.985831 166.296789 L 551.109692 166.566024 L 551.171623 166.431406 L 551.295484 166.700642 L 551.357414 166.566024 L 551.419345 166.700642 L 551.605136 166.296789 L 551.667067 166.431406 L 551.728997 166.296789 L 551.790928 166.431406 L 552.03865 165.892935 L 552.162511 166.162171 L 552.410233 165.623699 L 552.472163 165.758317 L 552.534094 165.623699 L 552.719885 166.027553 L 552.967607 165.489081 L 553.153399 165.892935 L 553.27726 165.623699 L 553.33919 165.758317 L 553.524982 165.354463 L 553.648843 165.623699 L 553.710774 165.489081 L 553.772704 165.623699 L 554.206218 164.681373 L 554.268148 164.815991 L 554.51587 164.27752 L 554.639731 164.546755 L 554.887453 164.008284 L 554.949384 164.142902 L 555.073245 163.873666 L 555.135175 164.008284 L 555.320967 163.60443 L 555.568689 164.142902 L 555.630619 164.008284 L 555.69255 164.142902 L 555.816411 163.873666 L 555.878341 164.008284 L 555.940272 163.873666 L 556.126063 164.27752 L 556.187994 164.142902 L 556.559577 164.950609 L 556.621507 164.815991 L 556.683438 164.950609 L 556.869229 164.546755 L 556.93116 164.681373 L 556.99309 164.546755 L 557.426604 165.489081 L 557.612395 165.085227 L 557.798187 165.489081 L 558.355561 164.27752 L 558.417492 164.412138 L 558.479422 164.27752 L 558.541353 164.412138 L 558.665214 164.142902 L 558.727144 164.27752 L 558.789075 164.142902 L 558.974866 164.546755 L 559.160658 164.142902 L 559.346449 164.546755 L 559.40838 164.412138 L 559.47031 164.546755 L 559.532241 164.412138 L 559.594171 164.546755 L 559.656102 164.412138 L 559.841893 164.815991 L 560.027685 164.412138 L 560.089615 164.546755 L 560.213476 164.27752 L 560.275407 164.412138 L 560.337337 164.27752 L 560.461198 164.546755 L 560.64699 164.142902 L 560.832781 164.546755 L 560.956642 164.27752 L 561.018573 164.412138 L 561.080503 164.27752 L 561.142434 164.412138 L 561.266295 164.142902 L 561.328225 164.27752 L 561.452086 164.008284 L 561.514017 164.142902 L 561.8856 163.335194 L 562.071391 163.739048 L 562.195252 163.469812 L 562.257183 163.60443 L 562.319113 163.469812 L 562.381044 163.60443 L 562.566835 163.200576 L 562.690696 163.469812 L 562.876488 163.065958 L 562.938418 163.200576 L 563.000349 163.065958 L 563.18614 163.469812 L 563.371932 163.065958 L 563.433862 163.200576 L 563.495793 163.065958 L 563.557723 163.200576 L 563.743515 162.796722 L 563.805445 162.93134 L 563.991237 162.527487 L 564.115098 162.796722 L 564.177028 162.662104 L 564.36282 163.065958 L 564.42475 162.93134 L 564.672472 163.469812 L 564.920194 162.93134 L 565.044055 163.200576 L 565.105986 163.065958 L 565.167916 163.200576 L 565.229847 163.065958 L 565.353708 163.335194 L 565.415638 163.200576 L 565.539499 163.469812 L 566.096874 162.258251 L 566.158804 162.392869 L 566.220735 162.258251 L 566.282665 162.392869 L 566.344596 162.258251 L 566.530387 162.662104 L 566.592318 162.527487 L 566.654248 162.662104 L 566.84004 162.258251 L 567.087762 162.796722 L 567.149692 162.662104 L 567.335484 163.065958 L 567.459345 162.796722 L 567.583206 163.065958 L 567.707067 162.796722 L 567.830928 163.065958 L 568.016719 162.662104 L 568.14058 162.93134 L 568.202511 162.796722 L 568.388302 163.200576 L 568.574094 162.796722 L 568.697955 163.065958 L 568.883746 162.662104 L 569.131468 163.200576 L 569.255329 162.93134 L 569.31726 163.065958 L 569.37919 162.93134 L 569.441121 163.065958 L 569.503051 162.93134 L 569.564982 163.065958 L 569.626912 162.93134 L 569.688843 163.065958 L 569.936565 162.527487 L 569.998495 162.662104 L 570.122356 162.392869 L 570.184287 162.527487 L 570.432009 161.989015 L 570.55587 162.258251 L 570.6178 162.123633 L 570.865522 162.662104 L 570.927453 162.527487 L 571.051314 162.796722 L 571.175175 162.527487 L 571.360966 162.93134 L 571.546758 162.527487 L 571.608688 162.662104 L 571.85641 162.123633 L 571.980271 162.392869 L 572.166063 161.989015 L 572.227993 162.123633 L 572.351854 161.854397 L 572.475715 162.123633 L 572.785368 161.450543 L 572.847298 161.585161 L 572.971159 161.315925 L 573.03309 161.450543 L 573.09502 161.315925 L 573.218881 161.585161 L 573.280812 161.450543 L 573.342742 161.585161 L 573.528534 161.181307 L 573.590464 161.315925 L 573.714325 161.046689 L 573.776256 161.181307 L 573.838186 161.046689 L 573.900117 161.181307 L 573.962047 161.046689 L 574.023978 161.181307 L 574.147839 160.912071 L 574.2717 161.181307 L 574.33363 161.046689 L 574.395561 161.181307 L 574.581352 160.777453 L 574.705213 161.046689 L 574.767144 160.912071 L 574.829074 161.046689 L 574.891005 160.912071 L 574.952935 161.046689 L 575.324518 160.238982 L 575.386449 160.3736 L 575.448379 160.238982 L 575.51031 160.3736 L 575.758032 159.835128 L 575.819962 159.969746 L 576.067684 159.431274 L 576.377337 160.104364 L 576.439267 159.969746 L 576.686989 160.508218 L 576.934711 159.969746 L 577.058572 160.238982 L 577.120503 160.104364 L 577.182433 160.238982 L 577.244364 160.104364 L 577.306294 160.238982 L 577.430155 159.969746 L 577.492086 160.104364 L 577.554016 159.969746 L 577.615947 160.104364 L 577.677877 159.969746 L 577.98753 160.642835 L 578.04946 160.508218 L 578.111391 160.642835 L 578.173321 160.508218 L 578.235252 160.642835 L 578.359113 160.3736 L 578.421043 160.508218 L 578.544904 160.238982 L 578.606835 160.3736 L 578.854557 159.835128 L 578.916487 159.969746 L 579.22614 159.296656 L 579.473862 159.835128 L 579.721584 159.296656 L 579.845445 159.565892 L 579.907375 159.431274 L 579.969306 159.565892 L 580.093167 159.296656 L 580.155097 159.431274 L 580.217028 159.296656 L 580.278958 159.431274 L 580.340889 159.296656 L 580.46475 159.565892 L 580.52668 159.431274 L 580.588611 159.565892 L 580.650541 159.431274 L 580.774402 159.70051 L 580.898263 159.431274 L 581.022124 159.70051 L 581.207916 159.296656 L 581.393707 159.70051 L 581.455638 159.565892 L 581.70336 160.104364 L 581.76529 159.969746 L 581.951082 160.3736 L 582.013012 160.238982 L 582.074943 160.3736 L 582.260734 159.969746 L 582.384595 160.238982 L 582.632317 159.70051 L 582.694248 159.835128 L 582.756178 159.70051 L 582.818109 159.835128 L 583.065831 159.296656 L 583.251622 159.70051 L 583.499344 159.162038 L 583.623205 159.431274 L 583.870927 158.892802 L 583.932858 159.02742 L 584.118649 158.623567 L 584.24251 158.892802 L 584.428302 158.488949 L 584.490232 158.623567 L 584.676024 158.219713 L 584.799885 158.488949 L 584.923746 158.219713 L 584.985676 158.354331 L 585.233398 157.815859 L 585.295329 157.950477 L 585.357259 157.815859 L 585.41919 157.950477 L 585.48112 157.815859 L 585.543051 157.950477 L 585.604981 157.815859 L 585.666912 157.950477 L 586.038495 157.142769 L 586.100425 157.277387 L 586.286217 156.873533 L 586.348147 157.008151 L 586.843591 155.931208 L 586.967452 156.200444 L 587.029383 156.065826 L 587.091313 156.200444 L 587.339035 155.661972 L 587.400966 155.79659 L 587.586757 155.392736 L 587.95834 156.200444 L 588.329923 155.392736 L 588.391854 155.527354 L 588.825367 154.585029 L 588.887298 154.719647 L 589.011159 154.450411 L 589.444672 155.392736 L 589.506603 155.258118 L 589.630464 155.527354 L 589.692394 155.392736 L 589.754325 155.527354 L 589.816255 155.392736 L 589.878186 155.527354 L 589.940116 155.392736 L 590.002047 155.527354 L 590.187838 155.1235 L 590.37363 155.527354 L 590.869074 154.450411 L 591.178726 155.1235 L 591.921892 153.508085 L 591.983823 153.642703 L 592.231545 153.104231 L 592.293475 153.238849 L 592.541197 152.700378 L 592.726989 153.104231 L 592.726989 153.104231 " style="fill:none;opacity:0.9;stroke:#2ca02c;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_15"> <path clip-path="url(#pf8d0b4ca52)" d="M 85.454261 307.75331 L 85.516192 307.861004 L 85.578122 307.75331 L 85.825844 307.322532 L 85.887775 307.430227 L 85.949705 307.537921 L 86.011636 307.430227 L 86.321288 307.107144 L 86.383219 307.214838 L 86.445149 307.107144 L 86.754802 306.784061 L 86.940593 307.107144 L 87.002524 306.999449 L 87.064454 306.891755 L 87.126385 306.999449 L 87.312176 307.107144 L 87.621829 306.784061 L 87.869551 306.999449 L 88.364995 306.353283 L 88.550786 306.460978 L 88.674647 306.245589 L 88.736578 306.353283 L 88.798508 306.460978 L 88.860439 306.353283 L 89.293952 305.814812 L 89.603605 306.137895 L 90.037118 305.599423 L 90.099049 305.707117 L 90.160979 305.599423 L 90.656423 304.953257 L 90.718354 305.060951 L 90.780284 304.953257 L 91.151867 304.522479 L 91.213798 304.630174 L 91.275728 304.522479 L 91.46152 304.414785 L 91.585381 304.630174 L 91.647311 304.522479 L 91.833103 304.199396 L 91.895033 304.307091 L 91.956964 304.414785 L 92.018894 304.307091 L 92.142755 304.091702 L 92.204686 304.199396 L 92.452408 304.414785 L 92.514338 304.307091 L 92.576269 304.414785 L 92.76206 304.522479 L 92.823991 304.414785 L 92.885921 304.522479 L 93.133643 304.737868 L 93.629087 304.091702 L 93.814879 304.199396 L 94.310323 303.55323 L 94.558045 303.768619 L 94.867697 303.445536 L 94.929628 303.55323 L 94.991558 303.445536 L 95.17735 303.337842 L 95.23928 303.445536 L 95.301211 303.337842 L 95.734724 302.79937 L 95.920516 302.907064 L 96.168238 302.691676 L 96.230168 302.79937 L 96.292099 302.691676 L 96.911404 301.614732 L 96.973334 301.722426 L 97.035265 301.830121 L 97.097195 301.722426 L 97.221056 301.507038 L 97.282987 301.614732 L 97.468778 301.722426 L 97.840361 301.291649 L 98.026153 301.399343 L 98.397736 300.968566 L 98.459666 301.07626 L 98.521597 300.968566 L 98.95511 300.430094 L 99.017041 300.537789 L 99.078971 300.430094 L 99.822137 299.353151 L 99.884068 299.460845 L 99.945998 299.353151 L 100.13179 299.245457 L 100.255651 299.460845 L 100.317581 299.353151 L 100.565303 298.922373 L 100.627234 299.030068 L 100.689164 299.137762 L 100.751095 299.030068 L 100.998817 298.814679 L 101.122678 299.030068 L 101.184608 298.922373 L 101.741983 298.168513 L 101.865844 298.383902 L 101.927774 298.276207 L 102.361288 297.737736 L 102.423218 297.84543 L 102.485149 297.737736 L 102.732871 297.522347 L 103.104454 297.953124 L 103.414106 297.630041 L 103.476037 297.737736 L 103.537967 297.630041 L 103.785689 297.414653 L 103.84762 297.522347 L 103.90955 297.414653 L 104.343064 296.876181 L 104.528855 296.983875 L 104.714647 296.660792 L 104.776577 296.768487 L 104.838508 296.876181 L 104.900438 296.768487 L 105.519743 295.906932 L 105.767465 296.337709 L 105.829396 296.230015 L 106.015187 296.122321 L 106.077118 296.230015 L 106.139048 296.122321 L 106.38677 295.906932 L 106.944145 296.660792 L 107.439589 296.014626 L 107.749241 296.337709 L 107.873102 296.122321 L 107.935033 296.230015 L 108.058894 296.445404 L 108.120824 296.337709 L 108.430477 296.014626 L 108.616268 296.122321 L 108.678199 296.014626 L 108.740129 296.122321 L 108.80206 296.230015 L 108.86399 296.122321 L 108.987851 295.906932 L 109.049782 296.014626 L 109.173643 296.230015 L 109.235573 296.122321 L 109.792948 295.153071 L 109.854878 295.260766 L 109.916809 295.36846 L 109.978739 295.260766 L 110.164531 295.153071 L 110.536114 295.583849 L 111.031558 294.937683 L 111.093488 295.045377 L 111.155419 294.937683 L 111.217349 294.829988 L 111.27928 294.937683 L 111.34121 295.045377 L 111.403141 294.937683 L 111.465071 294.829988 L 111.527002 294.937683 L 111.588932 295.045377 L 111.650863 294.937683 L 111.960515 294.6146 L 112.022446 294.722294 L 112.084376 294.6146 L 112.332098 294.399211 L 112.641751 294.937683 L 112.703681 294.829988 L 112.765612 294.722294 L 112.827542 294.829988 L 112.889473 294.937683 L 112.951403 294.829988 L 113.137195 294.722294 L 113.199125 294.829988 L 113.261056 294.722294 L 113.570708 294.399211 L 113.632639 294.506905 L 113.694569 294.399211 L 114.375805 293.429962 L 114.437735 293.537656 L 114.499666 293.429962 L 114.685457 293.322268 L 114.933179 293.537656 L 115.614415 292.568407 L 115.985998 292.999185 L 116.29565 292.460713 L 116.357581 292.568407 L 116.419511 292.676102 L 116.481442 292.568407 L 116.605303 292.353018 L 116.667233 292.460713 L 117.038816 292.89149 L 117.348469 292.568407 L 117.410399 292.676102 L 117.47233 292.568407 L 117.658121 292.245324 L 117.720052 292.353018 L 117.781982 292.460713 L 117.843913 292.353018 L 117.905843 292.245324 L 117.967774 292.353018 L 118.401287 292.89149 L 118.71094 292.568407 L 118.834801 292.783796 L 118.896731 292.676102 L 119.392175 292.029935 L 119.516036 292.245324 L 119.577967 292.13763 L 119.639897 292.029935 L 119.701828 292.13763 L 119.763758 292.245324 L 119.825689 292.13763 L 119.94955 291.922241 L 120.01148 292.029935 L 120.135341 292.245324 L 120.197272 292.13763 L 120.259202 292.029935 L 120.321133 292.13763 L 120.506924 292.245324 L 120.692716 292.13763 L 120.754646 292.245324 L 120.816577 292.13763 L 121.497812 291.168381 L 121.559743 291.276075 L 121.621673 291.168381 L 121.683604 291.060686 L 121.745534 291.168381 L 121.807465 291.276075 L 121.869395 291.168381 L 122.364839 290.522215 L 122.42677 290.629909 L 122.4887 290.522215 L 122.736422 290.306826 L 122.922214 290.41452 L 123.417658 289.768354 L 123.541519 289.983743 L 123.603449 289.876049 L 123.913102 289.552966 L 123.975032 289.66066 L 124.036963 289.552966 L 124.532407 288.906799 L 124.780129 289.122188 L 125.213643 288.583716 L 125.523295 288.906799 L 125.647156 288.691411 L 125.709087 288.799105 L 125.956809 289.014494 L 126.204531 288.583716 L 126.266461 288.691411 L 126.390322 288.906799 L 126.452253 288.799105 L 126.638044 288.476022 L 126.699975 288.583716 L 126.885766 288.691411 L 126.947697 288.583716 L 127.009627 288.691411 L 127.257349 289.122188 L 127.31928 289.014494 L 127.38121 288.906799 L 127.443141 289.014494 L 127.567002 289.229883 L 127.628932 289.122188 L 127.938585 288.799105 L 128.124376 288.906799 L 128.310168 288.583716 L 128.372098 288.691411 L 128.434029 288.799105 L 128.495959 288.691411 L 128.61982 288.476022 L 128.681751 288.583716 L 128.743681 288.691411 L 128.805612 288.583716 L 129.115264 288.260633 L 129.239125 288.476022 L 129.301056 288.368328 L 129.486847 288.260633 L 129.548778 288.368328 L 129.610708 288.260633 L 129.920361 287.93755 L 129.982291 288.045245 L 130.044222 287.93755 L 130.106152 287.829856 L 130.168083 287.93755 L 130.230013 288.045245 L 130.291944 287.93755 L 130.477735 287.829856 L 130.539666 287.93755 L 130.601596 287.829856 L 130.663527 287.722162 L 130.725457 287.829856 L 130.911249 288.152939 L 130.973179 288.045245 L 131.282832 287.722162 L 131.344762 287.829856 L 131.406693 287.722162 L 131.654415 287.291384 L 131.716345 287.399079 L 131.778276 287.506773 L 131.840206 287.399079 L 132.149859 287.075996 L 132.211789 287.18369 L 132.27372 287.075996 L 132.583372 286.752913 L 132.645303 286.860607 L 132.707233 286.752913 L 133.016886 286.42983 L 133.140747 286.645218 L 133.202677 286.537524 L 133.264608 286.42983 L 133.326538 286.537524 L 133.57426 286.752913 L 133.883913 286.42983 L 134.007774 286.645218 L 134.069704 286.537524 L 134.317426 286.106747 L 134.379357 286.214441 L 134.689009 286.537524 L 134.874801 286.42983 L 134.936731 286.537524 L 134.998662 286.42983 L 135.060592 286.322135 L 135.122523 286.42983 L 135.184453 286.537524 L 135.246384 286.42983 L 135.494106 286.214441 L 135.617967 286.42983 L 135.679897 286.322135 L 135.741828 286.214441 L 135.803758 286.322135 L 135.865689 286.42983 L 135.927619 286.322135 L 136.113411 286.214441 L 136.299202 286.322135 L 136.732716 285.783663 L 137.042368 286.322135 L 137.104299 286.214441 L 137.166229 286.106747 L 137.22816 286.214441 L 137.352021 286.42983 L 137.413951 286.322135 L 137.661673 285.891358 L 137.723604 285.999052 L 137.847465 286.214441 L 137.909395 286.106747 L 137.971326 285.999052 L 138.033256 286.106747 L 138.280978 286.322135 L 138.46677 286.214441 L 138.5287 286.322135 L 138.590631 286.214441 L 139.024144 285.675969 L 139.209936 285.783663 L 139.643449 285.245192 L 139.76731 285.46058 L 139.829241 285.352886 L 140.076963 285.137497 L 140.138893 285.245192 L 140.200824 285.137497 L 140.882059 284.168248 L 140.94399 284.275943 L 141.00592 284.168248 L 141.191712 283.845165 L 141.253642 283.95286 L 141.439434 284.275943 L 141.501364 284.168248 L 141.563295 284.060554 L 141.625225 284.168248 L 141.749086 284.383637 L 141.811017 284.275943 L 142.24453 283.737471 L 142.306461 283.845165 L 142.368391 283.737471 L 142.616113 283.522082 L 142.863835 283.737471 L 143.049627 283.629777 L 143.111557 283.737471 L 143.173488 283.629777 L 143.978584 282.22975 L 144.040515 282.337444 L 144.102445 282.445139 L 144.164376 282.337444 L 144.474028 282.014361 L 144.783681 282.552833 L 144.845611 282.445139 L 145.093333 282.22975 L 145.279125 282.552833 L 145.341055 282.445139 L 145.402986 282.337444 L 145.464916 282.445139 L 145.650708 282.552833 L 145.774569 282.337444 L 145.836499 282.445139 L 145.96036 282.660528 L 146.022291 282.552833 L 146.146152 282.337444 L 146.208082 282.445139 L 146.270013 282.552833 L 146.331943 282.445139 L 146.579665 282.22975 L 146.641596 282.337444 L 146.703526 282.22975 L 147.19897 281.583584 L 147.322831 281.798973 L 147.384762 281.691278 L 147.818275 281.152807 L 147.880206 281.260501 L 147.942136 281.152807 L 148.065997 280.937418 L 148.127928 281.045112 L 148.189858 281.152807 L 148.251789 281.045112 L 148.499511 280.614335 L 148.561441 280.722029 L 148.623372 280.829724 L 148.685302 280.722029 L 149.242677 279.968169 L 149.428468 280.075863 L 149.67619 279.860475 L 149.800051 280.075863 L 149.861982 279.968169 L 149.923912 279.860475 L 149.985843 279.968169 L 150.109704 280.183558 L 150.171634 280.075863 L 150.295495 279.860475 L 150.357426 279.968169 L 150.419356 280.075863 L 150.481287 279.968169 L 150.543217 279.860475 L 150.605148 279.968169 L 150.9148 280.291252 L 151.410244 279.645086 L 151.596036 279.75278 L 151.657966 279.645086 L 151.719897 279.75278 L 151.905688 280.075863 L 151.967619 279.968169 L 152.277271 279.645086 L 152.401132 279.860475 L 152.463063 279.75278 L 152.710785 279.537392 L 152.958507 279.75278 L 153.144298 279.429697 L 153.206229 279.537392 L 153.268159 279.645086 L 153.33009 279.537392 L 153.887464 278.783531 L 154.259047 279.214308 L 154.444839 278.891225 L 154.506769 278.99892 L 154.5687 279.106614 L 154.63063 278.99892 L 155.435727 277.814282 L 155.559588 278.029671 L 155.621518 277.921976 L 156.116962 277.27581 L 156.302754 277.598893 L 156.364684 277.491199 L 156.612406 277.27581 L 156.798198 277.383505 L 156.860128 277.27581 L 156.922059 277.383505 L 157.355572 277.921976 L 157.974877 277.060422 L 158.222599 277.491199 L 158.28453 277.383505 L 158.408391 277.168116 L 158.470321 277.27581 L 158.656113 277.383505 L 159.275418 276.306561 L 159.337348 276.414256 L 159.647001 276.952727 L 159.708931 276.845033 L 159.770862 276.737339 L 159.832792 276.845033 L 160.018584 277.168116 L 160.080514 277.060422 L 160.266306 276.737339 L 160.328236 276.845033 L 160.390167 276.952727 L 160.452097 276.845033 L 160.76175 276.52195 L 160.885611 276.737339 L 160.947541 276.629644 L 161.257194 276.306561 L 161.319124 276.414256 L 161.381055 276.306561 L 162.00036 275.445006 L 162.310012 275.768089 L 162.495804 275.445006 L 162.557734 275.552701 L 162.619665 275.660395 L 162.681595 275.552701 L 163.115109 275.014229 L 163.3009 275.337312 L 163.362831 275.229618 L 163.796344 274.475757 L 163.858275 274.583452 L 163.920205 274.691146 L 163.982136 274.583452 L 164.167927 274.260369 L 164.229858 274.368063 L 164.291788 274.475757 L 164.353719 274.368063 L 164.725302 273.721897 L 164.787232 273.829591 L 164.849163 273.937286 L 164.911093 273.829591 L 165.282676 273.398814 L 165.468468 273.721897 L 165.530398 273.614203 L 165.963912 273.075731 L 166.087773 273.29112 L 166.149703 273.183425 L 166.521286 272.537259 L 166.583217 272.644953 L 166.769008 272.752648 L 167.202522 271.998787 L 167.264452 272.106482 L 167.388313 272.32187 L 167.450244 272.214176 L 167.512174 272.106482 L 167.574105 272.214176 L 167.883757 272.537259 L 168.379201 271.891093 L 168.750784 272.32187 L 168.936576 272.214176 L 169.122367 272.32187 L 169.246228 272.106482 L 169.308159 272.214176 L 169.43202 272.429565 L 169.49395 272.32187 L 169.617811 272.106482 L 169.679742 272.214176 L 169.741672 272.32187 L 169.803603 272.214176 L 169.865533 272.106482 L 169.927464 272.214176 L 170.113255 272.32187 L 170.484838 271.891093 L 170.608699 272.106482 L 170.67063 271.998787 L 170.73256 271.891093 L 170.794491 271.998787 L 170.856421 272.106482 L 170.918352 271.998787 L 171.166074 271.783399 L 171.475726 272.106482 L 171.97117 271.460316 L 172.156962 271.56801 L 172.404684 271.352621 L 172.590475 271.675704 L 172.652406 271.56801 L 172.900128 271.137233 L 172.962058 271.244927 L 173.20978 271.460316 L 173.333641 271.244927 L 173.395572 271.352621 L 173.705224 271.675704 L 173.767155 271.56801 L 173.829085 271.675704 L 174.138738 272.214176 L 174.200668 272.106482 L 174.44839 271.891093 L 174.572251 272.106482 L 174.634182 271.998787 L 174.943834 271.675704 L 175.563139 272.537259 L 175.872792 272.214176 L 176.244375 272.644953 L 176.492097 272.429565 L 176.554027 272.537259 L 176.615958 272.429565 L 177.049471 271.891093 L 177.173332 272.106482 L 177.235263 271.998787 L 177.606846 271.56801 L 177.854568 271.783399 L 177.978429 271.56801 L 178.040359 271.675704 L 178.16422 271.891093 L 178.226151 271.783399 L 178.597734 271.352621 L 178.783525 271.460316 L 179.031247 271.029538 L 179.093178 271.137233 L 179.155108 271.244927 L 179.217039 271.137233 L 179.588622 270.706455 L 179.712483 270.921844 L 179.774413 270.81415 L 180.022135 270.383372 L 180.084066 270.491067 L 180.145996 270.598761 L 180.207927 270.491067 L 180.393718 270.167984 L 180.455649 270.275678 L 180.64144 270.598761 L 180.703371 270.491067 L 180.765301 270.383372 L 180.827232 270.491067 L 180.889162 270.598761 L 180.951093 270.491067 L 181.198815 270.060289 L 181.260745 270.167984 L 181.446537 270.275678 L 181.81812 269.844901 L 181.88005 269.952595 L 181.941981 269.844901 L 182.065842 269.629512 L 182.127772 269.737206 L 182.251633 269.952595 L 182.313564 269.844901 L 182.747077 269.306429 L 182.809008 269.414123 L 182.870938 269.306429 L 183.05673 268.983346 L 183.11866 269.09104 L 183.242521 269.306429 L 183.304452 269.198734 L 183.676035 268.767957 L 183.923757 268.983346 L 184.171479 268.767957 L 184.233409 268.875651 L 184.29534 268.767957 L 184.728853 268.229485 L 184.852714 268.444874 L 184.914645 268.33718 L 185.224297 268.014097 L 185.286228 268.121791 L 185.348158 268.014097 L 185.410089 267.906402 L 185.472019 268.014097 L 185.781672 268.552568 L 185.843602 268.444874 L 186.215185 268.014097 L 186.462907 268.229485 L 186.83449 267.798708 L 187.268004 268.33718 L 187.639587 267.906402 L 187.825378 268.229485 L 187.887309 268.121791 L 188.01117 267.906402 L 188.0731 268.014097 L 188.135031 268.121791 L 188.196961 268.014097 L 188.630475 267.475625 L 188.754336 267.691014 L 188.816266 267.583319 L 189.063988 267.367931 L 189.125919 267.475625 L 189.187849 267.367931 L 189.31171 267.152542 L 189.373641 267.260236 L 189.435571 267.367931 L 189.497502 267.260236 L 189.559432 267.152542 L 189.621363 267.260236 L 189.683293 267.367931 L 189.745224 267.260236 L 190.116807 266.829459 L 190.240668 267.044848 L 190.302598 266.937153 L 190.859973 266.183293 L 190.983834 266.398682 L 191.045764 266.290987 L 191.541208 265.644821 L 191.603139 265.752515 L 191.665069 265.644821 L 192.036652 264.998655 L 192.098583 265.106349 L 192.532096 265.644821 L 192.779818 265.429432 L 192.903679 265.644821 L 192.96561 265.537127 L 193.337193 265.106349 L 193.461054 265.321738 L 193.522984 265.214044 L 193.708776 265.106349 L 193.894567 265.214044 L 194.142289 264.998655 L 194.20422 265.106349 L 194.26615 264.998655 L 194.823525 264.244795 L 194.885455 264.352489 L 194.947386 264.244795 L 195.50476 263.275546 L 195.566691 263.38324 L 195.628621 263.490934 L 195.690552 263.38324 L 195.814413 263.167851 L 195.876343 263.275546 L 196.185996 263.598629 L 196.557579 263.167851 L 196.867231 263.490934 L 197.053023 263.38324 L 197.114953 263.490934 L 197.176884 263.38324 L 197.300745 263.167851 L 197.362675 263.275546 L 197.610397 263.490934 L 197.858119 263.275546 L 198.043911 263.38324 L 198.229702 263.060157 L 198.291633 263.167851 L 198.353563 263.275546 L 198.415494 263.167851 L 198.663216 262.737074 L 198.725146 262.844768 L 198.972868 263.060157 L 199.530243 262.306296 L 199.839895 262.629379 L 200.025687 262.521685 L 200.087617 262.629379 L 200.149548 262.521685 L 200.211478 262.413991 L 200.273409 262.521685 L 200.583061 262.844768 L 200.644992 262.737074 L 200.706922 262.844768 L 200.954644 263.060157 L 201.388158 262.521685 L 201.450088 262.629379 L 201.512019 262.521685 L 201.883602 262.090908 L 201.945532 262.198602 L 202.007463 262.090908 L 202.131324 261.875519 L 202.193254 261.983213 L 202.440976 262.413991 L 202.502907 262.306296 L 202.750629 261.875519 L 202.812559 261.983213 L 203.122212 262.306296 L 203.493795 261.875519 L 203.555725 261.983213 L 203.617656 261.875519 L 203.865378 261.66013 L 203.927308 261.767825 L 203.989239 261.66013 L 204.298891 261.337047 L 204.360822 261.444742 L 204.422752 261.337047 L 204.856266 260.798576 L 204.918196 260.90627 L 204.980127 260.798576 L 205.661362 259.829327 L 205.723293 259.937021 L 205.785223 259.829327 L 205.971015 259.721632 L 206.156806 259.829327 L 206.218737 259.721632 L 206.280667 259.829327 L 206.342598 259.937021 L 206.404528 259.829327 L 206.776111 259.398549 L 206.838042 259.506243 L 206.899972 259.398549 L 207.147694 259.18316 L 207.209625 259.290855 L 207.271555 259.18316 L 207.952791 258.213911 L 208.138582 258.321606 L 208.386304 258.106217 L 208.448235 258.213911 L 208.510165 258.106217 L 209.315262 256.921579 L 209.439123 257.136968 L 209.501053 257.029274 L 209.562984 256.921579 L 209.624914 257.029274 L 209.748775 257.244662 L 209.810706 257.136968 L 210.058428 256.921579 L 210.120358 257.029274 L 210.182289 256.921579 L 210.36808 256.598496 L 210.430011 256.706191 L 210.615802 256.813885 L 211.173177 256.060024 L 211.358968 256.167719 L 211.730551 255.736941 L 211.916343 255.844636 L 212.287926 255.413858 L 212.473717 255.736941 L 212.535648 255.629247 L 212.721439 255.306164 L 212.78337 255.413858 L 213.093022 255.95233 L 213.154953 255.844636 L 213.650397 255.19847 L 213.712327 255.306164 L 213.774258 255.19847 L 214.393563 254.336915 L 214.641285 254.552304 L 215.26059 253.690749 L 215.32252 253.798443 L 215.384451 253.690749 L 215.632173 253.259972 L 215.694103 253.367666 L 215.879895 253.47536 L 216.189547 252.936888 L 216.251478 253.044583 L 216.437269 253.152277 L 216.808852 252.7215 L 216.870783 252.829194 L 216.932713 252.7215 L 217.180435 252.506111 L 217.366227 252.613805 L 217.73781 251.967639 L 217.79974 252.075334 L 217.861671 252.183028 L 217.923601 252.075334 L 217.985532 251.967639 L 218.047462 252.075334 L 218.233254 252.183028 L 218.295184 252.075334 L 218.357115 252.183028 L 218.480976 252.398417 L 218.542906 252.290722 L 218.914489 251.859945 L 219.286072 252.290722 L 219.657655 251.859945 L 219.719586 251.967639 L 219.781516 251.859945 L 220.091169 251.536862 L 220.153099 251.644556 L 220.21503 251.536862 L 220.648543 250.99839 L 220.710474 251.106085 L 220.772404 250.99839 L 220.958196 250.890696 L 221.082057 251.106085 L 221.143987 250.99839 L 221.45364 250.675307 L 221.51557 250.783002 L 221.577501 250.675307 L 221.949084 250.24453 L 222.258736 250.567613 L 222.320667 250.459919 L 222.382597 250.567613 L 222.506458 250.783002 L 222.568389 250.675307 L 223.063833 250.029141 L 223.125763 250.136836 L 223.187694 250.029141 L 223.559277 249.598364 L 223.93086 250.029141 L 224.426304 249.382975 L 224.735956 249.706058 L 224.983678 249.490669 L 225.355261 249.921447 L 225.417192 249.813753 L 225.479122 249.921447 L 225.541053 250.029141 L 225.602983 249.921447 L 225.974566 249.490669 L 226.036497 249.598364 L 226.098427 249.490669 L 226.160358 249.382975 L 226.222288 249.490669 L 226.40808 249.813753 L 226.47001 249.706058 L 226.655802 249.598364 L 226.903524 249.813753 L 226.965454 249.706058 L 227.027385 249.813753 L 227.089315 249.921447 L 227.151246 249.813753 L 227.398968 249.598364 L 227.460898 249.706058 L 227.522829 249.598364 L 227.770551 249.382975 L 228.080203 249.706058 L 228.142134 249.598364 L 228.204064 249.706058 L 228.265995 249.813753 L 228.327925 249.706058 L 228.94723 248.844503 L 229.009161 248.952198 L 229.071091 248.844503 L 229.380744 248.52142 L 229.442674 248.629115 L 229.504605 248.52142 L 229.566535 248.413726 L 229.628466 248.52142 L 229.814257 248.844503 L 229.876188 248.736809 L 230.061979 248.629115 L 230.433562 249.059892 L 230.495493 248.952198 L 230.557423 249.059892 L 230.867076 249.382975 L 231.610242 248.306032 L 231.734103 248.52142 L 231.796033 248.413726 L 232.043755 248.198337 L 232.291477 248.413726 L 233.034643 247.336783 L 233.096574 247.444477 L 233.158504 247.336783 L 233.530087 246.906005 L 233.653948 247.121394 L 233.715879 247.0137 L 233.963601 246.798311 L 234.087462 247.0137 L 234.149392 246.906005 L 234.335184 246.798311 L 234.397114 246.906005 L 234.459045 246.798311 L 234.520975 246.690617 L 234.582906 246.798311 L 234.644836 246.906005 L 234.706767 246.798311 L 234.830628 246.582922 L 234.892558 246.690617 L 235.14028 246.906005 L 235.573794 246.152145 L 235.635724 246.259839 L 235.821516 246.367533 L 236.131168 246.04445 L 236.31696 246.367533 L 236.37889 246.259839 L 236.626612 245.829062 L 236.688543 245.936756 L 236.750473 246.04445 L 236.812404 245.936756 L 237.183987 245.29059 L 237.245917 245.398284 L 237.431709 245.505979 L 237.679431 245.29059 L 237.741361 245.398284 L 237.803292 245.29059 L 238.360666 244.321341 L 238.422597 244.429035 L 238.670319 244.644424 L 238.979971 244.105952 L 239.041902 244.213647 L 239.165763 244.429035 L 239.227693 244.321341 L 239.785068 243.352092 L 239.846998 243.459786 L 240.03279 243.782869 L 240.09472 243.675175 L 240.590164 243.029009 L 240.899817 243.352092 L 241.2714 242.921314 L 241.519122 243.352092 L 241.581052 243.244398 L 241.828774 243.029009 L 241.890705 243.136703 L 241.952635 243.029009 L 242.076496 242.81362 L 242.138427 242.921314 L 242.200357 243.029009 L 242.262288 242.921314 L 242.324218 242.81362 L 242.386149 242.921314 L 242.51001 243.136703 L 242.57194 243.029009 L 243.191245 242.167454 L 243.253176 242.275148 L 243.315106 242.167454 L 243.686689 241.736677 L 243.74862 241.844371 L 243.81055 241.736677 L 244.305994 241.090511 L 244.367925 241.198205 L 244.429855 241.090511 L 244.553716 240.875122 L 244.615647 240.982816 L 244.925299 241.305899 L 244.98723 241.198205 L 245.04916 241.305899 L 245.111091 241.413594 L 245.173021 241.305899 L 245.482674 240.982816 L 245.544604 241.090511 L 245.606535 240.982816 L 245.916187 240.659733 L 246.28777 241.090511 L 246.907075 240.228956 L 247.092867 240.33665 L 247.588311 239.690484 L 247.774102 239.798178 L 247.959894 239.690484 L 248.455338 240.33665 L 248.641129 240.228956 L 248.70306 240.33665 L 248.76499 240.228956 L 248.950782 240.121262 L 249.012712 240.228956 L 249.074643 240.121262 L 249.136573 240.013567 L 249.198504 240.121262 L 249.384295 240.228956 L 249.817809 239.475095 L 249.879739 239.58279 L 250.189392 239.905873 L 250.560975 239.475095 L 250.622905 239.58279 L 250.684836 239.475095 L 250.994488 239.152012 L 251.056419 239.259707 L 251.118349 239.152012 L 251.551863 238.613541 L 251.613793 238.721235 L 251.675724 238.613541 L 252.48082 237.428903 L 252.852403 237.85968 L 253.100125 237.644292 L 253.223986 237.85968 L 253.285917 237.751986 L 253.347847 237.644292 L 253.409778 237.751986 L 253.471708 237.85968 L 253.533639 237.751986 L 253.905222 237.321209 L 253.967152 237.428903 L 254.029083 237.321209 L 254.338735 236.998126 L 254.586457 237.213514 L 254.95804 236.567348 L 255.019971 236.675043 L 255.267693 236.890431 L 255.639276 236.459654 L 255.763137 236.675043 L 255.825067 236.567348 L 256.382442 235.813488 L 256.444372 235.921182 L 256.506303 235.813488 L 256.815955 235.490405 L 257.187538 235.921182 L 257.682982 235.275016 L 258.054565 235.705793 L 258.178426 235.490405 L 258.240357 235.598099 L 258.488079 236.028876 L 258.550009 235.921182 L 258.797731 235.705793 L 259.045453 235.921182 L 259.974411 234.521156 L 260.098272 234.736544 L 260.160202 234.62885 L 260.593716 234.090378 L 260.779507 234.198073 L 261.522673 233.121129 L 261.894256 233.767295 L 261.956187 233.659601 L 262.141978 233.551907 L 262.451631 234.090378 L 262.513561 233.982684 L 262.699353 233.87499 L 262.761283 233.982684 L 262.823214 233.87499 L 263.256727 233.336518 L 263.442519 233.444212 L 263.690241 233.013435 L 263.752171 233.121129 L 263.814102 233.228823 L 263.876032 233.121129 L 264.185685 232.798046 L 264.247615 232.90574 L 264.309546 232.798046 L 264.557268 232.582657 L 264.743059 232.90574 L 264.80499 232.798046 L 265.176573 232.367269 L 265.300434 232.582657 L 265.362364 232.474963 L 265.795878 231.936491 L 265.857808 232.044186 L 265.919739 231.936491 L 266.353252 231.39802 L 266.415183 231.505714 L 266.477113 231.39802 L 266.600974 231.182631 L 266.662905 231.290325 L 266.972557 231.613408 L 267.034488 231.505714 L 267.096418 231.613408 L 267.220279 231.828797 L 267.28221 231.721103 L 267.34414 231.613408 L 267.406071 231.721103 L 267.653793 231.936491 L 268.025376 231.505714 L 268.087307 231.613408 L 268.149237 231.505714 L 268.211168 231.39802 L 268.273098 231.505714 L 268.335029 231.613408 L 268.396959 231.505714 L 268.582751 231.39802 L 268.892403 231.721103 L 269.016264 231.505714 L 269.078195 231.613408 L 269.387847 231.936491 L 269.6975 231.613408 L 270.069083 232.044186 L 270.316805 231.828797 L 270.440666 232.044186 L 270.502596 231.936491 L 270.750318 231.721103 L 270.812249 231.828797 L 270.874179 231.721103 L 271.183832 231.39802 L 271.245762 231.505714 L 271.307693 231.39802 L 271.369623 231.290325 L 271.431554 231.39802 L 271.493484 231.505714 L 271.555415 231.39802 L 272.360511 230.213382 L 272.422442 230.321076 L 272.484372 230.213382 L 272.794025 229.67491 L 272.855955 229.782604 L 272.917886 229.890299 L 272.979816 229.782604 L 273.289469 229.459521 L 273.351399 229.567216 L 273.41333 229.459521 L 274.032635 228.597967 L 274.218426 228.705661 L 274.466148 228.274884 L 274.528079 228.382578 L 274.65194 228.597967 L 274.71387 228.490272 L 275.023523 228.167189 L 275.147384 228.382578 L 275.209314 228.274884 L 275.642828 227.736412 L 275.828619 227.844106 L 276.447924 226.982552 L 276.509855 227.090246 L 276.571785 226.982552 L 276.695646 226.767163 L 276.757577 226.874857 L 276.943368 226.982552 L 277.562673 226.120997 L 277.748465 226.44408 L 277.810395 226.336385 L 277.872326 226.228691 L 277.934256 226.336385 L 278.120048 226.659469 L 278.181978 226.551774 L 278.553561 226.120997 L 278.615492 226.228691 L 278.677422 226.120997 L 278.801283 225.905608 L 278.863214 226.013302 L 279.110936 226.228691 L 279.172866 226.120997 L 279.234797 226.228691 L 279.358658 226.44408 L 279.420588 226.336385 L 279.544449 226.120997 L 279.60638 226.228691 L 279.66831 226.336385 L 279.730241 226.228691 L 279.792171 226.120997 L 279.854102 226.228691 L 279.977963 226.44408 L 280.039893 226.336385 L 280.535337 225.690219 L 280.721129 225.797914 L 280.968851 225.367136 L 281.030781 225.474831 L 281.464295 226.013302 L 281.835878 225.582525 L 281.959739 225.797914 L 282.021669 225.690219 L 282.0836 225.582525 L 282.14553 225.690219 L 282.207461 225.797914 L 282.269391 225.690219 L 282.455183 225.582525 L 282.517113 225.690219 L 282.579044 225.582525 L 282.640974 225.474831 L 282.702905 225.582525 L 282.826766 225.797914 L 282.888696 225.690219 L 283.136418 225.474831 L 283.38414 225.690219 L 283.631862 225.474831 L 283.693793 225.582525 L 283.755723 225.474831 L 284.003445 225.259442 L 284.375028 225.690219 L 284.62275 225.474831 L 284.870472 225.905608 L 284.932403 225.797914 L 285.118194 225.474831 L 285.180125 225.582525 L 285.365916 225.690219 L 285.79943 225.151748 L 285.985221 225.474831 L 286.047152 225.367136 L 286.232943 225.259442 L 286.542596 225.582525 L 286.914179 225.151748 L 287.161901 225.367136 L 287.595414 224.828665 L 287.781206 224.936359 L 288.028928 224.505582 L 288.090858 224.613276 L 288.152789 224.72097 L 288.214719 224.613276 L 288.648233 224.074804 L 289.019816 224.505582 L 289.267538 224.290193 L 289.329468 224.397887 L 289.391399 224.290193 L 289.886843 223.644027 L 289.948773 223.751721 L 290.010704 223.644027 L 290.506148 222.997861 L 290.568078 223.105555 L 290.630009 222.997861 L 291.125453 222.351695 L 291.311244 222.459389 L 291.435105 222.244 L 291.497036 222.351695 L 291.558966 222.459389 L 291.620897 222.351695 L 291.806688 222.028612 L 291.868619 222.136306 L 292.116341 222.351695 L 292.364063 222.136306 L 292.673715 222.459389 L 293.045298 222.028612 L 293.169159 222.244 L 293.23109 222.136306 L 293.726534 221.49014 L 293.788464 221.597834 L 293.850395 221.49014 L 293.912325 221.382446 L 293.974256 221.49014 L 294.160047 221.813223 L 294.221978 221.705529 L 294.53163 221.382446 L 294.717422 221.49014 L 294.841283 221.274751 L 294.903213 221.382446 L 295.212866 221.920917 L 295.274796 221.813223 L 295.70831 221.274751 L 295.77024 221.382446 L 295.832171 221.274751 L 296.079893 220.843974 L 296.141823 220.951668 L 296.203754 221.059363 L 296.265684 220.951668 L 296.884989 220.090114 L 297.070781 220.197808 L 297.318503 219.982419 L 297.504294 220.305502 L 297.566225 220.197808 L 297.875877 219.874725 L 298.123599 220.090114 L 298.433252 219.76703 L 298.495182 219.874725 L 298.557113 219.76703 L 298.928696 219.336253 L 298.990626 219.443947 L 299.052557 219.336253 L 299.48607 218.797781 L 299.609931 219.01317 L 299.671862 218.905476 L 299.919584 218.690087 L 300.043445 218.905476 L 300.105375 218.797781 L 300.167306 218.690087 L 300.229236 218.797781 L 300.66275 219.336253 L 301.282055 218.474698 L 301.343985 218.582393 L 301.405916 218.474698 L 301.96329 217.505449 L 302.025221 217.613144 L 302.272943 217.828532 L 303.449622 215.997728 L 303.511553 216.105423 L 303.573483 215.997728 L 304.688232 214.274619 L 304.935954 214.490008 L 304.997885 214.382313 L 305.059815 214.490008 L 305.369468 214.813091 L 305.926842 214.05923 L 306.050703 214.274619 L 306.112634 214.166925 L 306.979661 212.659204 L 307.041591 212.766898 L 307.103522 212.874592 L 307.165452 212.766898 L 307.598966 212.228426 L 307.660896 212.336121 L 307.722827 212.228426 L 307.908618 212.120732 L 307.970549 212.228426 L 308.032479 212.120732 L 308.465993 211.58226 L 308.775645 211.905343 L 308.899506 211.689955 L 308.961437 211.797649 L 309.085298 212.013038 L 309.147228 211.905343 L 309.209159 211.797649 L 309.271089 211.905343 L 309.456881 212.228426 L 309.518811 212.120732 L 309.642672 211.905343 L 309.704603 212.013038 L 310.014255 212.336121 L 310.447769 211.797649 L 310.819352 212.228426 L 311.190935 211.797649 L 311.376726 211.905343 L 311.748309 211.474566 L 311.87217 211.689955 L 311.934101 211.58226 L 312.057962 211.366872 L 312.119892 211.474566 L 312.243753 211.689955 L 312.305684 211.58226 L 312.553406 211.151483 L 312.615336 211.259177 L 312.677267 211.366872 L 312.739197 211.259177 L 312.801128 211.151483 L 312.863058 211.259177 L 312.924989 211.366872 L 312.986919 211.259177 L 313.172711 211.151483 L 313.420433 211.366872 L 313.606224 211.259177 L 313.915877 211.58226 L 314.163599 211.151483 L 314.225529 211.259177 L 314.28746 211.366872 L 314.34939 211.259177 L 314.411321 211.151483 L 314.473251 211.259177 L 314.597112 211.474566 L 314.659043 211.366872 L 314.906765 211.151483 L 315.154487 211.366872 L 315.340278 211.259177 L 315.588 211.474566 L 315.649931 211.366872 L 315.711861 211.474566 L 315.773792 211.58226 L 315.835722 211.474566 L 316.083444 211.259177 L 316.269236 211.366872 L 317.012402 210.289928 L 317.074332 210.397623 L 317.136263 210.289928 L 317.755568 209.212985 L 317.817498 209.320679 L 318.00329 209.428373 L 318.189081 209.10529 L 318.251012 209.212985 L 318.312942 209.320679 L 318.374873 209.212985 L 318.684525 208.889902 L 318.808386 209.10529 L 318.870317 208.997596 L 319.30383 208.459124 L 319.365761 208.566819 L 319.427691 208.459124 L 319.675413 208.243736 L 319.923135 208.459124 L 320.170857 208.243736 L 320.604371 208.782207 L 321.037884 208.243736 L 321.099815 208.35143 L 321.161745 208.243736 L 321.71912 207.489875 L 321.842981 207.705264 L 321.904911 207.59757 L 322.338425 207.059098 L 322.400355 207.166792 L 322.462286 207.059098 L 322.710008 206.62832 L 322.771938 206.736015 L 322.833869 206.843709 L 322.895799 206.736015 L 322.95773 206.62832 L 323.01966 206.736015 L 323.267382 206.951404 L 323.515104 206.736015 L 323.700896 207.059098 L 323.762826 206.951404 L 324.629853 205.659071 L 324.691784 205.766766 L 324.753714 205.659071 L 325.063367 205.1206 L 325.125297 205.228294 L 325.249158 205.443683 L 325.311089 205.335988 L 326.116185 204.151351 L 326.178116 204.259045 L 326.240046 204.151351 L 326.67356 203.612879 L 326.73549 203.720573 L 326.797421 203.612879 L 327.107073 203.074407 L 327.169004 203.182101 L 327.354795 203.289796 L 327.602517 202.859018 L 327.664448 202.966713 L 327.726378 203.074407 L 327.788309 202.966713 L 327.91217 202.751324 L 327.9741 202.859018 L 328.221822 203.074407 L 328.283753 202.966713 L 328.345683 203.074407 L 328.531475 203.182101 L 328.841127 202.859018 L 328.903058 202.966713 L 328.964988 202.859018 L 329.646224 201.889769 L 329.770085 202.105158 L 329.832015 201.997464 L 329.893946 201.889769 L 329.955876 201.997464 L 330.141668 202.105158 L 330.637112 201.458992 L 330.822903 201.566686 L 330.884834 201.458992 L 330.946764 201.566686 L 331.194486 201.997464 L 331.256417 201.889769 L 331.380278 201.674381 L 331.442208 201.782075 L 331.504139 201.889769 L 331.566069 201.782075 L 331.937652 201.351298 L 332.123444 201.458992 L 332.371166 201.243603 L 332.556957 201.566686 L 332.618888 201.458992 L 332.680818 201.351298 L 332.742749 201.458992 L 332.92854 201.566686 L 333.114332 201.243603 L 333.176262 201.351298 L 333.300123 201.566686 L 333.362054 201.458992 L 333.547845 201.135909 L 333.609776 201.243603 L 333.795567 201.351298 L 334.291011 200.705132 L 334.538733 200.92052 L 335.158038 200.058965 L 335.40576 200.489743 L 335.467691 200.382049 L 335.715413 200.16666 L 335.901204 200.489743 L 335.963135 200.382049 L 336.334718 199.951271 L 336.458579 200.16666 L 336.520509 200.058965 L 336.58244 199.951271 L 336.64437 200.058965 L 336.706301 200.16666 L 336.768231 200.058965 L 337.077884 199.520494 L 337.139814 199.628188 L 337.201745 199.735882 L 337.263675 199.628188 L 337.88298 198.766633 L 338.192633 199.089716 L 338.750007 198.120467 L 338.811938 198.228162 L 338.873868 198.335856 L 338.935799 198.228162 L 339.12159 198.120467 L 339.183521 198.228162 L 339.245451 198.120467 L 339.307382 198.012773 L 339.369312 198.120467 L 339.555104 198.44355 L 339.617034 198.335856 L 339.988617 197.905079 L 340.112478 198.120467 L 340.174409 198.012773 L 340.3602 197.905079 L 340.545992 198.228162 L 340.607922 198.120467 L 341.227227 197.258913 L 341.351088 197.474301 L 341.413019 197.366607 L 341.53688 197.151218 L 341.59881 197.258913 L 341.970393 197.68969 L 342.651629 196.720441 L 342.713559 196.828135 L 342.77549 196.720441 L 343.085142 196.397358 L 343.332864 196.828135 L 343.394795 196.720441 L 343.580586 196.612746 L 343.766378 196.935829 L 343.828308 196.828135 L 344.0141 196.720441 L 344.07603 196.828135 L 344.137961 196.720441 L 344.385683 196.289663 L 344.447613 196.397358 L 344.819196 196.828135 L 345.004988 196.505052 L 345.066918 196.612746 L 345.25271 196.720441 L 345.562362 196.397358 L 345.624293 196.505052 L 345.686223 196.397358 L 346.119737 195.858886 L 346.243598 196.074275 L 346.305528 195.96658 L 346.615181 195.643497 L 346.800972 195.96658 L 346.862903 195.858886 L 347.172555 195.535803 L 347.544138 195.96658 L 347.915721 195.535803 L 348.039582 195.751192 L 348.101513 195.643497 L 348.349235 195.21272 L 348.411165 195.320414 L 348.473096 195.428109 L 348.535026 195.320414 L 349.402053 194.028082 L 349.463984 194.135777 L 349.525914 194.028082 L 350.20715 193.058833 L 350.640663 193.597305 L 351.012246 192.951139 L 351.074177 193.058833 L 351.259968 193.166527 L 351.755412 192.520361 L 351.817343 192.628056 L 351.879273 192.520361 L 352.188926 192.197278 L 352.436648 192.412667 L 353.117883 191.443418 L 353.241744 191.658807 L 353.303675 191.551112 L 353.98491 190.581863 L 354.046841 190.689558 L 354.108771 190.581863 L 354.356493 190.366474 L 354.480354 190.581863 L 354.542285 190.474169 L 354.728076 190.366474 L 354.851937 190.581863 L 354.913868 190.474169 L 355.347381 189.935697 L 355.409312 190.043391 L 355.471242 189.935697 L 355.966686 189.289531 L 356.028617 189.397225 L 356.090547 189.289531 L 356.276339 189.181837 L 356.338269 189.289531 L 356.4002 189.181837 L 356.647922 188.966448 L 356.833713 189.074142 L 356.895644 188.966448 L 356.957574 189.074142 L 357.081435 189.289531 L 357.143366 189.181837 L 357.576879 188.427976 L 357.63881 188.535671 L 357.762671 188.751059 L 357.824601 188.643365 L 358.010393 188.535671 L 358.196184 188.643365 L 358.443906 188.427976 L 358.629698 188.535671 L 358.691628 188.427976 L 358.753559 188.535671 L 358.87742 188.751059 L 358.93935 188.643365 L 359.001281 188.535671 L 359.063211 188.643365 L 359.125142 188.751059 L 359.187072 188.643365 L 359.620586 188.104893 L 359.806377 188.427976 L 359.868308 188.320282 L 360.425682 187.566422 L 360.487613 187.674116 L 360.549543 187.566422 L 360.611474 187.458727 L 360.673404 187.566422 L 360.735335 187.674116 L 360.797265 187.566422 L 361.230779 187.02795 L 361.41657 187.135644 L 362.035875 186.274089 L 362.097806 186.381784 L 362.159736 186.274089 L 362.221667 186.166395 L 362.283597 186.274089 L 362.531319 186.704867 L 362.59325 186.597172 L 362.779041 186.274089 L 362.840972 186.381784 L 363.460277 187.243339 L 363.522207 187.135644 L 363.584138 187.243339 L 363.89379 187.566422 L 364.203443 187.02795 L 364.265373 187.135644 L 364.327304 187.243339 L 364.389234 187.135644 L 364.451165 187.02795 L 364.513095 187.135644 L 364.636956 187.351033 L 364.698887 187.243339 L 364.884678 186.920255 L 364.946609 187.02795 L 365.07047 187.243339 L 365.1324 187.135644 L 365.380122 186.704867 L 365.442053 186.812561 L 365.689775 187.02795 L 365.937497 186.812561 L 366.061358 187.02795 L 366.123288 186.920255 L 366.37101 186.704867 L 366.432941 186.812561 L 366.494871 186.704867 L 366.556802 186.597172 L 366.618732 186.704867 L 366.866454 186.920255 L 367.114176 186.704867 L 367.176107 186.812561 L 367.238037 186.704867 L 367.733481 186.058701 L 367.795412 186.166395 L 367.857342 186.058701 L 368.043134 185.735618 L 368.105064 185.843312 L 368.352786 186.058701 L 368.476647 185.843312 L 368.538578 185.951006 L 368.84823 186.489478 L 368.910161 186.381784 L 369.281744 185.951006 L 369.343674 186.058701 L 369.405605 185.951006 L 369.591396 185.627923 L 369.653327 185.735618 L 369.777188 185.951006 L 369.839118 185.843312 L 370.272632 185.30484 L 370.458423 185.627923 L 370.520354 185.520229 L 370.582284 185.412535 L 370.644215 185.520229 L 370.706145 185.627923 L 370.768076 185.520229 L 371.573172 184.335591 L 371.635103 184.443286 L 371.697033 184.335591 L 372.130547 183.797119 L 372.254408 184.012508 L 372.316338 183.904814 L 372.50213 183.581731 L 372.56406 183.689425 L 372.625991 183.797119 L 372.687921 183.689425 L 372.749852 183.581731 L 372.811782 183.689425 L 373.183365 184.120203 L 373.616879 183.581731 L 373.926531 183.904814 L 374.298114 183.474036 L 374.360045 183.581731 L 374.421975 183.474036 L 374.97935 182.720176 L 375.04128 182.82787 L 375.103211 182.720176 L 375.660585 181.966316 L 375.722516 182.07401 L 375.784446 181.966316 L 376.094099 181.643233 L 376.156029 181.750927 L 376.21796 181.643233 L 376.341821 181.427844 L 376.403751 181.535538 L 376.465682 181.643233 L 376.527612 181.535538 L 376.775334 181.104761 L 376.837265 181.212455 L 377.208848 181.643233 L 377.5185 181.32015 L 377.766222 181.750927 L 377.828153 181.643233 L 377.952014 181.427844 L 378.013944 181.535538 L 378.385527 181.966316 L 378.75711 181.535538 L 379.066763 181.858621 L 379.376415 181.535538 L 379.562207 181.643233 L 379.686068 181.427844 L 379.747998 181.535538 L 379.809929 181.643233 L 379.871859 181.535538 L 379.93379 181.427844 L 379.99572 181.535538 L 380.057651 181.643233 L 380.119581 181.535538 L 380.243442 181.32015 L 380.305373 181.427844 L 380.367303 181.535538 L 380.429234 181.427844 L 380.862747 180.889372 L 380.924678 180.997067 L 380.986608 180.889372 L 381.1724 180.781678 L 381.296261 180.997067 L 381.358191 180.889372 L 381.543983 180.566289 L 381.605913 180.673984 L 381.853635 180.889372 L 382.225218 180.458595 L 382.349079 180.673984 L 382.41101 180.566289 L 382.844523 179.812429 L 382.906454 179.920123 L 382.968384 180.027817 L 383.030315 179.920123 L 383.339967 179.381651 L 383.401898 179.489346 L 383.525759 179.704734 L 383.587689 179.59704 L 383.835411 179.381651 L 383.897342 179.489346 L 383.959272 179.381651 L 384.021203 179.273957 L 384.083133 179.381651 L 384.330855 179.812429 L 384.392786 179.704734 L 384.516647 179.489346 L 384.578577 179.59704 L 384.702438 179.812429 L 384.764369 179.704734 L 384.95016 179.59704 L 385.135952 179.920123 L 385.197882 179.812429 L 385.383674 179.704734 L 385.569465 179.812429 L 386.064909 179.166263 L 386.12684 179.273957 L 386.18877 179.166263 L 386.436492 178.735485 L 386.498423 178.84318 L 386.746145 179.058568 L 386.870006 178.84318 L 386.931936 178.950874 L 387.303519 179.381651 L 387.551241 179.166263 L 387.798963 179.381651 L 388.046685 179.166263 L 388.108616 179.273957 L 388.170546 179.166263 L 388.356338 179.058568 L 388.418268 179.166263 L 388.480199 179.058568 L 388.789851 178.735485 L 388.975643 178.84318 L 389.409156 178.304708 L 389.471087 178.412402 L 389.533017 178.304708 L 389.718809 177.981625 L 389.780739 178.089319 L 389.84267 178.197014 L 389.9046 178.089319 L 390.276183 177.658542 L 390.338114 177.766236 L 390.400044 177.658542 L 391.14321 176.581598 L 391.390932 176.796987 L 391.452863 176.689293 L 391.514793 176.796987 L 391.638654 177.012376 L 391.700585 176.904681 L 392.010237 176.581598 L 392.196029 176.689293 L 392.38182 176.36621 L 392.443751 176.473904 L 392.567612 176.689293 L 392.629542 176.581598 L 392.815334 176.258515 L 392.877264 176.36621 L 393.124986 176.581598 L 393.248847 176.36621 L 393.310778 176.473904 L 393.372708 176.581598 L 393.434639 176.473904 L 393.496569 176.36621 L 393.5585 176.473904 L 393.62043 176.581598 L 393.682361 176.473904 L 393.992013 176.150821 L 394.177805 176.258515 L 394.920971 175.181572 L 394.982901 175.289266 L 395.044832 175.181572 L 395.168693 174.966183 L 395.230623 175.073878 L 395.292554 175.181572 L 395.354484 175.073878 L 395.664137 174.750795 L 395.787998 174.966183 L 395.849928 174.858489 L 396.03572 174.750795 L 396.283442 174.966183 L 396.469233 174.858489 L 396.531164 174.966183 L 396.593094 174.858489 L 396.655025 174.750795 L 396.716955 174.858489 L 397.026608 175.181572 L 397.398191 174.750795 L 397.460121 174.858489 L 397.522052 174.750795 L 397.583982 174.6431 L 397.645913 174.750795 L 397.707843 174.858489 L 397.769774 174.750795 L 397.831704 174.6431 L 397.893635 174.750795 L 398.017496 174.966183 L 398.079426 174.858489 L 398.389079 174.535406 L 398.636801 174.750795 L 399.070314 174.212323 L 399.318036 174.427712 L 399.379967 174.320017 L 399.441897 174.427712 L 399.875411 174.966183 L 400.618577 173.88924 L 400.680507 173.996934 L 400.742438 173.88924 L 400.928229 173.566157 L 400.99016 173.673851 L 401.175951 173.781545 L 401.423673 173.566157 L 401.485604 173.673851 L 401.547534 173.566157 L 401.795256 173.350768 L 402.042978 173.566157 L 402.2907 173.135379 L 402.352631 173.243074 L 402.476492 173.458462 L 402.538422 173.350768 L 402.848075 173.027685 L 402.971936 173.243074 L 403.033866 173.135379 L 403.281588 172.919991 L 403.405449 173.135379 L 403.46738 173.027685 L 403.838963 172.596908 L 403.962824 172.812296 L 404.024754 172.704602 L 404.334407 172.16613 L 404.396337 172.273825 L 404.458268 172.381519 L 404.520198 172.273825 L 404.76792 172.058436 L 404.829851 172.16613 L 404.891781 172.058436 L 405.325295 171.304576 L 405.387225 171.41227 L 405.634947 171.627659 L 406.254252 170.766104 L 406.378113 170.981493 L 406.440044 170.873798 L 407.059349 170.012243 L 407.121279 170.119938 L 407.18321 170.012243 L 407.430932 169.796855 L 407.492862 169.904549 L 407.554793 169.796855 L 407.802515 169.581466 L 408.112167 169.904549 L 409.103055 168.396828 L 409.164986 168.504523 L 409.226916 168.396828 L 409.412708 168.289134 L 409.474638 168.396828 L 409.536569 168.289134 L 410.217804 167.319885 L 410.279735 167.427579 L 410.341665 167.319885 L 410.527457 166.996802 L 410.589387 167.104496 L 410.651318 167.21219 L 410.713249 167.104496 L 410.89904 166.996802 L 411.022901 167.21219 L 411.084832 167.104496 L 411.518345 166.566024 L 411.642206 166.781413 L 411.704137 166.673719 L 411.827998 166.45833 L 411.889928 166.566024 L 412.07572 166.673719 L 412.509233 166.135247 L 412.756955 166.350636 L 412.942747 166.027553 L 413.004677 166.135247 L 413.066608 166.242941 L 413.128538 166.135247 L 413.438191 165.812164 L 413.747843 166.135247 L 414.491009 165.058304 L 414.61487 165.273692 L 414.676801 165.165998 L 415.419967 164.089054 L 415.481897 164.196749 L 415.543828 164.089054 L 415.729619 163.98136 L 415.85348 164.196749 L 415.915411 164.089054 L 416.225063 163.765971 L 416.410855 163.873666 L 416.596646 163.550583 L 416.658577 163.658277 L 416.782438 163.873666 L 416.844368 163.765971 L 417.154021 163.442888 L 417.215951 163.550583 L 417.277882 163.442888 L 417.649465 163.012111 L 417.897187 163.2275 L 418.021048 163.012111 L 418.082978 163.119805 L 418.26877 163.2275 L 418.454561 162.904417 L 418.516492 163.012111 L 418.578422 163.119805 L 418.640353 163.012111 L 419.197727 162.258251 L 419.321588 162.473639 L 419.383519 162.365945 L 419.878963 161.50439 L 419.940893 161.612085 L 420.312476 162.042862 L 420.374407 161.935168 L 420.436337 162.042862 L 420.498268 162.150556 L 420.560198 162.042862 L 420.622129 161.935168 L 420.684059 162.042862 L 420.931781 162.258251 L 421.427225 161.612085 L 421.551086 161.827473 L 421.613017 161.719779 L 421.860739 161.289002 L 421.922669 161.396696 L 422.04653 161.612085 L 422.108461 161.50439 L 422.232322 161.289002 L 422.294252 161.396696 L 422.480044 161.50439 L 422.789696 161.181307 L 422.851627 161.289002 L 422.913557 161.181307 L 422.975488 161.073613 L 423.037418 161.181307 L 423.22321 161.50439 L 423.28514 161.396696 L 423.594793 161.073613 L 423.718654 161.289002 L 423.780584 161.181307 L 424.214098 160.642835 L 424.399889 160.965919 L 424.46182 160.858224 L 424.833403 160.427447 L 424.895333 160.535141 L 424.957264 160.427447 L 425.143055 160.104364 L 425.204986 160.212058 L 425.266916 160.319752 L 425.328847 160.212058 L 425.390777 160.104364 L 425.452708 160.212058 L 425.638499 160.319752 L 426.010082 159.888975 L 426.072013 159.996669 L 426.133943 159.888975 L 426.443596 159.350503 L 426.505526 159.458198 L 426.877109 159.888975 L 427.124831 159.458198 L 427.186762 159.565892 L 427.310623 159.781281 L 427.372553 159.673586 L 427.744136 159.242809 L 427.991858 159.458198 L 428.115719 159.242809 L 428.17765 159.350503 L 428.23958 159.458198 L 428.301511 159.350503 L 428.363441 159.242809 L 428.425372 159.350503 L 428.673094 159.565892 L 428.735024 159.458198 L 428.796955 159.565892 L 428.982746 159.673586 L 429.230468 159.458198 L 429.292399 159.565892 L 429.354329 159.458198 L 429.602051 159.242809 L 429.663982 159.350503 L 429.725912 159.242809 L 429.911704 159.135115 L 429.973634 159.242809 L 430.035565 159.135115 L 430.159426 158.919726 L 430.221356 159.02742 L 430.592939 159.673586 L 430.65487 159.565892 L 431.088383 159.02742 L 431.274175 159.135115 L 432.203132 157.519699 L 432.265063 157.627394 L 432.326993 157.735088 L 432.388924 157.627394 L 432.512785 157.412005 L 432.574715 157.519699 L 432.636646 157.627394 L 432.698576 157.519699 L 432.760507 157.412005 L 432.822437 157.519699 L 433.008229 157.627394 L 433.13209 157.412005 L 433.19402 157.519699 L 433.317881 157.735088 L 433.379812 157.627394 L 433.689464 157.304311 L 433.813325 157.519699 L 433.875256 157.412005 L 434.061047 157.304311 L 434.122978 157.412005 L 434.184908 157.304311 L 434.43263 157.088922 L 434.494561 157.196616 L 434.556491 157.088922 L 435.113866 156.335062 L 435.175796 156.442756 L 435.237727 156.335062 L 435.423518 156.227367 L 435.733171 156.55045 L 435.795101 156.442756 L 435.857032 156.55045 L 435.918962 156.658145 L 435.980893 156.55045 L 436.104754 156.335062 L 436.166684 156.442756 L 436.600198 156.981228 L 436.662128 156.873533 L 436.724059 156.981228 L 436.785989 157.088922 L 436.84792 156.981228 L 437.157572 156.658145 L 437.281433 156.873533 L 437.343364 156.765839 L 437.405294 156.658145 L 437.467225 156.765839 L 437.529155 156.873533 L 437.591086 156.765839 L 437.776877 156.442756 L 437.838808 156.55045 L 437.962669 156.765839 L 438.024599 156.658145 L 438.210391 156.335062 L 438.272321 156.442756 L 438.334252 156.55045 L 438.396182 156.442756 L 438.705835 155.904284 L 438.767765 156.011979 L 438.829696 156.119673 L 438.891626 156.011979 L 439.634792 154.935035 L 439.696723 155.04273 L 439.758653 154.935035 L 439.820584 154.827341 L 439.882514 154.935035 L 440.006375 155.150424 L 440.068306 155.04273 L 440.130236 154.935035 L 440.192167 155.04273 L 440.254097 155.150424 L 440.316028 155.04273 L 440.501819 154.935035 L 440.687611 155.04273 L 441.244985 154.288869 L 441.306916 154.396564 L 441.368846 154.288869 L 441.492707 154.07348 L 441.554638 154.181175 L 441.616568 154.288869 L 441.678499 154.181175 L 441.926221 153.750397 L 441.988151 153.858092 L 442.173943 154.181175 L 442.235873 154.07348 L 442.607456 153.642703 L 442.669387 153.750397 L 442.731317 153.642703 L 443.164831 153.104231 L 443.474483 153.427314 L 443.784136 153.104231 L 444.031858 153.535009 L 444.093788 153.427314 L 444.27958 153.31962 L 444.465371 153.642703 L 444.527302 153.535009 L 444.713093 153.427314 L 445.022746 153.965786 L 445.084676 153.858092 L 445.394329 153.535009 L 445.456259 153.642703 L 445.51819 153.535009 L 445.703981 153.427314 L 445.765912 153.535009 L 445.827842 153.427314 L 446.199425 152.996537 L 446.509078 153.31962 L 447.252244 152.242677 L 447.685757 152.781148 L 447.933479 152.56576 L 448.366993 153.104231 L 448.862437 152.458065 L 449.048228 152.56576 L 449.23402 152.242677 L 449.29595 152.350371 L 449.419811 152.56576 L 449.481742 152.458065 L 449.729464 152.242677 L 449.915255 152.56576 L 449.977186 152.458065 L 450.224908 152.027288 L 450.286838 152.134982 L 450.348769 152.242677 L 450.410699 152.134982 L 450.844213 151.596511 L 450.906143 151.704205 L 450.968074 151.596511 L 451.463518 150.950345 L 451.649309 151.058039 L 451.71124 150.950345 L 451.77317 151.058039 L 452.082823 151.381122 L 452.144753 151.273428 L 452.206684 151.381122 L 452.268614 151.488816 L 452.330545 151.381122 L 452.454406 151.165733 L 452.516336 151.273428 L 452.764058 151.488816 L 452.825989 151.381122 L 452.887919 151.488816 L 453.383363 152.134982 L 453.754946 151.704205 L 453.816877 151.811899 L 453.878807 151.704205 L 454.25039 151.273428 L 454.436182 151.381122 L 454.498112 151.273428 L 454.560043 151.381122 L 454.869695 151.704205 L 455.303209 151.165733 L 455.612861 151.488816 L 455.798653 151.165733 L 455.860583 151.273428 L 456.232166 151.704205 L 456.603749 151.273428 L 456.66568 151.381122 L 456.72761 151.273428 L 456.851471 151.058039 L 456.913402 151.165733 L 457.223054 151.704205 L 457.284985 151.596511 L 457.470776 151.488816 L 457.532707 151.596511 L 457.594637 151.488816 L 457.96622 151.058039 L 458.213942 151.273428 L 458.523595 150.950345 L 458.709386 151.058039 L 458.895178 150.950345 L 458.957108 151.058039 L 459.019039 150.950345 L 459.1429 150.734956 L 459.20483 150.84265 L 459.266761 150.950345 L 459.328691 150.84265 L 460.071857 149.765707 L 460.257649 149.873401 L 460.629232 149.442624 L 460.691162 149.550318 L 460.753093 149.442624 L 461.000815 149.227235 L 461.248537 149.442624 L 461.558189 149.119541 L 461.867842 149.442624 L 461.929772 149.334929 L 461.991703 149.442624 L 462.053633 149.550318 L 462.115564 149.442624 L 462.425216 149.119541 L 462.487147 149.227235 L 462.549077 149.119541 L 462.611008 149.011846 L 462.672938 149.119541 L 462.796799 149.334929 L 462.85873 149.227235 L 463.168382 148.688763 L 463.230313 148.796458 L 463.292243 148.904152 L 463.354174 148.796458 L 463.416104 148.688763 L 463.478035 148.796458 L 463.787687 149.119541 L 464.283131 148.473375 L 464.345062 148.581069 L 464.406992 148.473375 L 464.778575 147.827209 L 464.840506 147.934903 L 464.902436 148.042597 L 464.964367 147.934903 L 465.088228 147.719514 L 465.150158 147.827209 L 465.39788 148.042597 L 465.955255 147.288737 L 466.017185 147.396431 L 466.079116 147.288737 L 466.512629 146.750265 L 466.822282 147.073348 L 467.441587 146.211793 L 467.751239 146.534876 L 468.060892 146.211793 L 468.246683 146.319488 L 468.370544 146.104099 L 468.432475 146.211793 L 468.494405 146.319488 L 468.556336 146.211793 L 468.865988 145.673322 L 468.927919 145.781016 L 469.11371 145.88871 L 469.361432 145.673322 L 469.547224 145.781016 L 469.918807 145.350239 L 469.980737 145.457933 L 470.042668 145.350239 L 470.166529 145.13485 L 470.228459 145.242544 L 470.35232 145.457933 L 470.414251 145.350239 L 470.847764 144.811767 L 470.909695 144.919461 L 470.971625 144.811767 L 471.033556 144.704073 L 471.095486 144.811767 L 471.405139 145.350239 L 471.467069 145.242544 L 471.652861 144.919461 L 471.714791 145.027156 L 471.776722 145.13485 L 471.838652 145.027156 L 472.457957 144.165601 L 472.643749 144.273295 L 472.953401 143.734823 L 473.015332 143.842518 L 473.263054 144.057906 L 473.634637 143.627129 L 473.696567 143.734823 L 473.758498 143.627129 L 473.820428 143.519435 L 473.882359 143.627129 L 473.944289 143.734823 L 474.00622 143.627129 L 474.439733 143.088657 L 474.501664 143.196352 L 474.563594 143.088657 L 475.30676 142.011714 L 475.430621 142.227103 L 475.492552 142.119408 L 475.926065 141.365548 L 475.987996 141.473242 L 476.111857 141.688631 L 476.173787 141.580937 L 476.297648 141.365548 L 476.359579 141.473242 L 476.607301 141.688631 L 477.040814 140.93477 L 477.102745 141.042465 L 477.164675 141.150159 L 477.226606 141.042465 L 477.845911 140.18091 L 477.969772 140.396299 L 478.031702 140.288604 L 478.217494 140.18091 L 478.341355 140.396299 L 478.403285 140.288604 L 478.527146 140.073216 L 478.589077 140.18091 L 478.651007 140.288604 L 478.712938 140.18091 L 479.02259 139.857827 L 479.084521 139.965521 L 479.146451 139.857827 L 479.332243 139.534744 L 479.394173 139.642438 L 479.456104 139.750133 L 479.518034 139.642438 L 479.889617 139.211661 L 479.951548 139.319355 L 480.013478 139.211661 L 480.385061 138.780884 L 480.632783 138.996272 L 481.004366 138.565495 L 481.190158 138.673189 L 481.49981 138.350106 L 481.561741 138.457801 L 481.623671 138.350106 L 481.871393 138.134718 L 481.995254 138.350106 L 482.057185 138.242412 L 482.242976 137.919329 L 482.304907 138.027023 L 482.366837 138.134718 L 482.428768 138.027023 L 482.67649 137.811635 L 482.924212 138.027023 L 483.295795 137.596246 L 483.357725 137.70394 L 483.419656 137.596246 L 483.543517 137.380857 L 483.605447 137.488551 L 483.791239 137.596246 L 484.038961 137.165468 L 484.100891 137.273163 L 484.224752 137.488551 L 484.286683 137.380857 L 484.596335 137.057774 L 484.720196 137.273163 L 484.782127 137.165468 L 484.844057 137.057774 L 484.905988 137.165468 L 485.339501 137.70394 L 485.649154 137.380857 L 485.711084 137.488551 L 485.773015 137.380857 L 485.896876 137.165468 L 485.958806 137.273163 L 486.020737 137.380857 L 486.082667 137.273163 L 486.39232 136.95008 L 486.516181 137.165468 L 486.578111 137.057774 L 486.825833 136.842385 L 486.887764 136.95008 L 486.949694 136.842385 L 487.197416 136.626997 L 487.259347 136.734691 L 487.321277 136.626997 L 487.63093 136.303914 L 487.69286 136.411608 L 487.754791 136.303914 L 487.816721 136.196219 L 487.878652 136.303914 L 487.940582 136.411608 L 488.002513 136.303914 L 488.250235 135.873136 L 488.312165 135.980831 L 488.807609 136.626997 L 489.055331 136.411608 L 489.364984 136.734691 L 489.488845 136.519302 L 489.550775 136.626997 L 489.612706 136.734691 L 489.674636 136.626997 L 489.798497 136.411608 L 489.860428 136.519302 L 490.10815 136.734691 L 490.293941 136.626997 L 490.355872 136.734691 L 490.417802 136.626997 L 490.603594 136.519302 L 490.727455 136.734691 L 490.789385 136.626997 L 490.975177 136.519302 L 491.222899 136.734691 L 491.532551 136.411608 L 491.594482 136.519302 L 491.656412 136.411608 L 491.718343 136.303914 L 491.780273 136.411608 L 491.966065 136.519302 L 492.151856 136.411608 L 492.275717 136.626997 L 492.337648 136.519302 L 493.018883 135.550053 L 493.142744 135.765442 L 493.204675 135.657748 L 493.328536 135.442359 L 493.390466 135.550053 L 493.452397 135.657748 L 493.514327 135.550053 L 493.700119 135.22697 L 493.762049 135.334665 L 493.947841 135.442359 L 494.195563 135.22697 L 494.319424 135.442359 L 494.381354 135.334665 L 494.629076 135.119276 L 494.752937 135.334665 L 494.814868 135.22697 L 495.12452 134.903887 L 495.434173 135.22697 L 495.867686 134.688499 L 495.991547 134.903887 L 496.053478 134.796193 L 496.239269 134.47311 L 496.3012 134.580804 L 496.486991 134.688499 L 497.106296 133.826944 L 497.168227 133.934638 L 497.230157 133.826944 L 497.354018 133.611555 L 497.415949 133.719249 L 497.477879 133.826944 L 497.53981 133.719249 L 498.035254 133.073083 L 498.282976 133.288472 L 498.77842 132.642306 L 499.026142 132.857695 L 499.335794 132.534612 L 499.397725 132.642306 L 499.459655 132.534612 L 499.583516 132.319223 L 499.645447 132.426917 L 499.831238 132.534612 L 500.202821 131.888446 L 500.264752 131.99614 L 500.326682 132.103834 L 500.388613 131.99614 L 500.698265 131.673057 L 501.069848 132.103834 L 501.31757 131.888446 L 501.503362 131.99614 L 501.689153 131.888446 L 501.813014 132.103834 L 501.874945 131.99614 L 501.936875 131.888446 L 501.998806 131.99614 L 502.122667 132.211529 L 502.184597 132.103834 L 502.370389 131.99614 L 502.432319 132.103834 L 502.49425 131.99614 L 502.680041 131.888446 L 502.927763 132.103834 L 503.175485 131.888446 L 503.361277 131.99614 L 503.608999 131.780751 L 503.670929 131.888446 L 503.73286 131.780751 L 504.228304 131.134585 L 504.414095 131.24228 L 504.476026 131.134585 L 504.537956 131.24228 L 504.599887 131.349974 L 504.661817 131.24228 L 504.723748 131.134585 L 504.785678 131.24228 L 504.847609 131.349974 L 504.909539 131.24228 L 505.528844 130.380725 L 505.714636 130.488419 L 505.900427 130.380725 L 506.27201 130.811502 L 506.891315 129.949947 L 507.077107 130.057642 L 507.386759 129.734559 L 507.44869 129.842253 L 507.51062 129.734559 L 507.758342 129.51917 L 507.820273 129.626864 L 507.882203 129.51917 L 508.067995 129.196087 L 508.129925 129.303781 L 508.377647 129.51917 L 508.563439 129.411476 L 508.6873 129.626864 L 508.74923 129.51917 L 508.811161 129.411476 L 508.873091 129.51917 L 508.935022 129.626864 L 508.996952 129.51917 L 509.182744 129.196087 L 509.244674 129.303781 L 509.430466 129.411476 L 509.98784 128.657615 L 510.173632 128.76531 L 511.536103 126.611423 L 511.598033 126.719117 L 511.659964 126.611423 L 512.155408 125.965257 L 512.217338 126.072951 L 512.279269 125.965257 L 512.588921 125.642174 L 512.898574 125.965257 L 513.270157 125.534479 L 513.394018 125.749868 L 513.455948 125.642174 L 513.889462 124.888313 L 513.951392 124.996008 L 514.137184 125.103702 L 514.322975 124.996008 L 514.570697 125.211396 L 514.632628 125.103702 L 514.694558 125.211396 L 514.88035 125.319091 L 515.190002 124.996008 L 515.251933 125.103702 L 515.313863 124.996008 L 515.561585 124.780619 L 515.747377 125.103702 L 515.809307 124.996008 L 516.490543 124.026758 L 516.552473 124.134453 L 516.614404 124.026758 L 516.676334 123.919064 L 516.738265 124.026758 L 516.862126 124.242147 L 516.924056 124.134453 L 517.109848 124.026758 L 517.295639 124.134453 L 517.35757 124.026758 L 517.4195 124.134453 L 517.853014 124.672925 L 518.410388 123.919064 L 518.534249 124.134453 L 518.59618 124.026758 L 518.65811 123.919064 L 518.720041 124.026758 L 518.843902 124.242147 L 518.905832 124.134453 L 518.967763 124.026758 L 519.029693 124.134453 L 519.153554 124.349841 L 519.215485 124.242147 L 519.463207 124.026758 L 519.958651 124.672925 L 520.206373 124.242147 L 520.268303 124.349841 L 520.330234 124.457536 L 520.392164 124.349841 L 520.639886 123.919064 L 520.701817 124.026758 L 520.763747 124.134453 L 520.825678 124.026758 L 521.692705 122.734426 L 521.754635 122.842121 L 521.816566 122.734426 L 522.064288 122.519038 L 522.31201 122.734426 L 522.745523 122.195955 L 523.055176 122.519038 L 523.302898 122.303649 L 523.426759 122.519038 L 523.488689 122.411343 L 523.736411 122.195955 L 523.860272 122.411343 L 523.922203 122.303649 L 523.984133 122.195955 L 524.046064 122.303649 L 524.169925 122.519038 L 524.231855 122.411343 L 524.479577 121.980566 L 524.541508 122.08826 L 524.603438 122.195955 L 524.665369 122.08826 L 524.913091 121.872872 L 524.975021 121.980566 L 525.036952 121.872872 L 525.346604 121.549789 L 525.408535 121.657483 L 525.470465 121.549789 L 525.532396 121.442094 L 525.594326 121.549789 L 525.842048 121.765177 L 526.523284 120.580539 L 526.585214 120.688234 L 526.647145 120.795928 L 526.709075 120.688234 L 526.894867 120.580539 L 527.204519 121.119011 L 527.26645 121.011317 L 527.32838 120.903622 L 527.390311 121.011317 L 527.514172 121.226705 L 527.576102 121.119011 L 527.823824 120.688234 L 527.885755 120.795928 L 527.947685 120.903622 L 528.009616 120.795928 L 528.319268 120.472845 L 528.443129 120.688234 L 528.50506 120.580539 L 528.876643 120.149762 L 528.938573 120.257456 L 529.000504 120.149762 L 529.434017 119.61129 L 529.557878 119.826679 L 529.619809 119.718985 L 529.8056 119.395902 L 529.867531 119.503596 L 529.929461 119.61129 L 529.991392 119.503596 L 530.362975 119.072819 L 530.920349 119.826679 L 531.353863 119.288207 L 531.601585 119.503596 L 532.097029 118.85743 L 532.344751 119.072819 L 532.778264 118.534347 L 532.840195 118.642041 L 532.902125 118.534347 L 533.025986 118.318958 L 533.087917 118.426653 L 533.397569 118.749736 L 533.4595 118.642041 L 533.52143 118.749736 L 533.645291 118.965124 L 533.707222 118.85743 L 533.954944 118.426653 L 534.016874 118.534347 L 534.078805 118.642041 L 534.140735 118.534347 L 534.202666 118.426653 L 534.264596 118.534347 L 534.450388 118.642041 L 534.574249 118.426653 L 534.636179 118.534347 L 534.883901 118.749736 L 535.255484 118.318958 L 535.441276 118.642041 L 535.503206 118.534347 L 535.688998 118.426653 L 535.93672 118.642041 L 536.184442 118.211264 L 536.246372 118.318958 L 536.308303 118.426653 L 536.370233 118.318958 L 536.556025 118.211264 L 536.679886 118.426653 L 536.741816 118.318958 L 537.23726 117.672792 L 537.299191 117.780486 L 537.361121 117.672792 L 537.484982 117.457403 L 537.546913 117.565098 L 537.794635 117.780486 L 538.104287 117.457403 L 538.166218 117.565098 L 538.228148 117.457403 L 538.47587 117.026626 L 538.537801 117.13432 L 539.095175 117.888181 L 539.71448 117.026626 L 540.147994 117.565098 L 540.705368 116.811237 L 540.767299 116.918932 L 540.829229 116.811237 L 541.200812 116.165071 L 541.262743 116.272766 L 541.572395 116.595849 L 541.696256 116.38046 L 541.758187 116.488154 L 541.943978 116.595849 L 542.067839 116.38046 L 542.12977 116.488154 L 542.439422 116.811237 L 542.625214 116.703543 L 542.687144 116.811237 L 542.749075 116.703543 L 543.182588 116.165071 L 543.244519 116.272766 L 543.306449 116.165071 L 543.739963 115.6266 L 543.801893 115.734294 L 543.863824 115.6266 L 544.66892 114.441962 L 544.854712 114.549656 L 544.916642 114.441962 L 544.978573 114.549656 L 545.350156 114.980434 L 545.90753 114.226573 L 545.969461 114.334267 L 546.031391 114.226573 L 546.402974 113.795796 L 546.588766 113.90349 L 546.774557 113.795796 L 546.836488 113.90349 L 546.898418 113.795796 L 546.960349 113.688101 L 547.022279 113.795796 L 547.393862 114.226573 L 547.703515 113.90349 L 547.889306 114.011184 L 548.198959 113.688101 L 548.38475 113.795796 L 548.756333 113.365018 L 549.065986 113.688101 L 549.499499 113.14963 L 549.62336 113.365018 L 549.685291 113.257324 L 549.871082 112.934241 L 549.933013 113.041935 L 549.994943 113.14963 L 550.056874 113.041935 L 550.428457 112.611158 L 550.614248 112.718852 L 550.80004 112.611158 L 550.923901 112.826547 L 550.985831 112.718852 L 551.047762 112.611158 L 551.109692 112.718852 L 551.295484 112.826547 L 551.605136 112.503464 L 551.790928 112.611158 L 552.224441 112.072686 L 552.286372 112.180381 L 552.348302 112.072686 L 552.719885 111.641909 L 552.781816 111.749603 L 552.843746 111.641909 L 553.153399 111.318826 L 553.27726 111.534215 L 553.33919 111.42652 L 553.710774 110.995743 L 553.896565 111.103437 L 554.144287 110.888048 L 554.330079 110.995743 L 554.577801 110.564965 L 554.639731 110.67266 L 554.949384 110.995743 L 555.011314 110.888048 L 555.073245 110.995743 L 555.320967 111.211131 L 555.382897 111.103437 L 555.444828 111.211131 L 555.630619 111.318826 L 556.002202 110.888048 L 556.311855 111.211131 L 556.807299 110.564965 L 557.055021 110.780354 L 557.178882 110.564965 L 557.240812 110.67266 L 557.302743 110.780354 L 557.364673 110.67266 L 557.736256 110.241882 L 557.860117 110.457271 L 557.922048 110.349577 L 558.355561 109.811105 L 558.665214 110.134188 L 558.912936 109.918799 L 559.346449 110.457271 L 559.656102 110.134188 L 559.718032 110.241882 L 559.779963 110.134188 L 560.027685 109.918799 L 560.213476 110.241882 L 560.275407 110.134188 L 560.832781 109.380328 L 561.204364 110.026494 L 561.266295 109.918799 L 561.514017 109.488022 L 561.575947 109.595716 L 561.637878 109.703411 L 561.699808 109.595716 L 561.823669 109.380328 L 561.8856 109.488022 L 561.94753 109.595716 L 562.009461 109.488022 L 562.504905 108.626467 L 562.566835 108.734162 L 562.752627 108.841856 L 563.248071 108.19569 L 563.310001 108.303384 L 563.371932 108.19569 L 563.867376 107.549524 L 563.929306 107.657218 L 563.991237 107.549524 L 564.177028 107.441829 L 564.36282 107.549524 L 564.548611 107.441829 L 564.734403 107.549524 L 565.105986 107.118746 L 565.167916 107.226441 L 565.229847 107.118746 L 565.415638 106.795663 L 565.477569 106.903358 L 565.787221 107.226441 L 565.973013 106.903358 L 566.034943 107.011052 L 566.096874 107.118746 L 566.158804 107.011052 L 566.220735 106.903358 L 566.282665 107.011052 L 566.406526 107.226441 L 566.468457 107.118746 L 567.025831 106.364886 L 567.087762 106.47258 L 567.149692 106.364886 L 567.583206 105.826414 L 567.768997 105.934109 L 567.830928 105.826414 L 567.892858 105.934109 L 568.14058 106.364886 L 568.202511 106.257192 L 568.636024 105.71872 L 568.759885 105.934109 L 568.821816 105.826414 L 569.193399 105.180248 L 569.255329 105.287943 L 569.441121 105.611026 L 569.503051 105.503331 L 569.812704 105.180248 L 570.184287 105.611026 L 570.246217 105.503331 L 570.308148 105.611026 L 570.370078 105.71872 L 570.432009 105.611026 L 570.493939 105.503331 L 570.55587 105.611026 L 570.741661 105.71872 L 570.803592 105.611026 L 570.865522 105.71872 L 570.927453 105.826414 L 570.989383 105.71872 L 571.360966 105.287943 L 571.980271 106.149497 L 572.166063 105.826414 L 572.227993 105.934109 L 572.289924 106.041803 L 572.351854 105.934109 L 572.723437 105.287943 L 572.785368 105.395637 L 572.909229 105.611026 L 572.971159 105.503331 L 573.156951 105.180248 L 573.218881 105.287943 L 573.280812 105.395637 L 573.342742 105.287943 L 573.714325 104.641776 L 573.776256 104.749471 L 573.900117 104.96486 L 573.962047 104.857165 L 574.395561 104.318693 L 574.457491 104.426388 L 574.519422 104.318693 L 574.952935 103.780222 L 575.200657 103.99561 L 575.634171 103.457139 L 575.943823 103.780222 L 576.439267 103.134056 L 576.501198 103.24175 L 576.563128 103.134056 L 576.81085 102.918667 L 576.934711 103.134056 L 576.996642 103.026361 L 577.058572 102.918667 L 577.120503 103.026361 L 577.306294 103.134056 L 577.430155 102.918667 L 577.492086 103.026361 L 577.677877 103.134056 L 577.925599 102.918667 L 578.04946 103.134056 L 578.111391 103.026361 L 578.359113 102.810973 L 578.606835 103.24175 L 578.668765 103.134056 L 578.854557 103.026361 L 578.978418 103.24175 L 579.040348 103.134056 L 579.659653 102.272501 L 579.721584 102.380195 L 579.783514 102.272501 L 580.217028 101.734029 L 580.278958 101.841724 L 580.340889 101.734029 L 580.402819 101.626335 L 580.46475 101.734029 L 580.588611 101.949418 L 580.650541 101.841724 L 580.774402 101.626335 L 580.836333 101.734029 L 580.898263 101.841724 L 580.960194 101.734029 L 581.76529 100.549391 L 581.827221 100.657086 L 581.889151 100.549391 L 582.198804 100.226308 L 582.260734 100.334003 L 582.322665 100.226308 L 582.570387 100.01092 L 582.632317 100.118614 L 582.694248 100.01092 L 583.189692 99.149365 L 583.251622 99.257059 L 583.437414 99.580142 L 583.499344 99.472448 L 583.808997 99.149365 L 583.932858 99.364754 L 583.994788 99.257059 L 584.366371 98.826282 L 584.428302 98.933976 L 584.490232 98.826282 L 584.799885 98.503199 L 585.171468 98.933976 L 585.48112 98.610893 L 585.728842 98.826282 L 585.914634 98.718588 L 585.976564 98.826282 L 586.038495 98.718588 L 586.348147 98.395505 L 586.410078 98.503199 L 586.472008 98.395505 L 587.029383 97.641644 L 587.215174 97.749338 L 587.277105 97.641644 L 587.339035 97.749338 L 587.400966 97.857033 L 587.462896 97.749338 L 587.710618 97.53395 L 587.89641 97.641644 L 588.206062 97.103172 L 588.267993 97.210867 L 588.391854 97.426255 L 588.453784 97.318561 L 588.639576 97.210867 L 588.825367 97.318561 L 589.13502 96.780089 L 589.19695 96.887784 L 589.258881 96.995478 L 589.320811 96.887784 L 589.816255 96.241618 L 590.063977 96.672395 L 590.125908 96.564701 L 590.621352 95.918535 L 590.683282 96.026229 L 590.745213 95.918535 L 590.807143 95.81084 L 590.869074 95.918535 L 591.054865 96.026229 L 591.550309 95.380063 L 591.67417 95.595452 L 591.736101 95.487757 L 591.983823 95.05698 L 592.045753 95.164674 L 592.231545 95.272369 L 592.603128 94.841591 L 592.665058 94.949285 L 592.726989 94.841591 " style="fill:none;opacity:0.9;stroke:#d62728;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_16"> <path clip-path="url(#pf8d0b4ca52)" d="M 85.454261 307.564845 L 85.516192 307.484074 L 85.578122 307.564845 L 85.701983 307.726386 L 85.763914 307.645615 L 86.321288 307.08022 L 86.445149 307.241762 L 86.50708 307.160991 L 86.692871 307.08022 L 86.754802 307.160991 L 86.816732 307.08022 L 87.188315 306.757137 L 87.436037 306.918679 L 87.497968 306.837908 L 87.559898 306.918679 L 87.621829 306.999449 L 87.683759 306.918679 L 87.80762 306.757137 L 87.869551 306.837908 L 88.179203 307.08022 L 88.241134 306.999449 L 88.303064 307.08022 L 88.364995 307.160991 L 88.426925 307.08022 L 88.798508 306.757137 L 89.170091 307.241762 L 89.232022 307.160991 L 89.851327 306.514825 L 89.975188 306.676366 L 90.037118 306.595596 L 90.28484 306.272512 L 90.346771 306.353283 L 90.656423 306.595596 L 90.966076 306.353283 L 91.089937 306.514825 L 91.151867 306.434054 L 91.213798 306.353283 L 91.275728 306.434054 L 91.46152 306.514825 L 91.585381 306.353283 L 91.647311 306.434054 L 91.833103 306.676366 L 91.895033 306.595596 L 92.328547 306.191742 L 92.390477 306.272512 L 92.452408 306.191742 L 92.638199 305.949429 L 92.70013 306.0302 L 92.885921 306.110971 L 93.319435 305.707117 L 93.381365 305.787888 L 93.443296 305.707117 L 93.505226 305.626346 L 93.567157 305.707117 L 93.629087 305.787888 L 93.691018 305.707117 L 94.124531 305.141722 L 94.186462 305.222493 L 94.248392 305.303263 L 94.310323 305.222493 L 94.558045 304.89941 L 94.619975 304.98018 L 94.743836 305.141722 L 94.805767 305.060951 L 95.672794 304.091702 L 95.982446 304.334014 L 96.168238 304.091702 L 96.230168 304.172473 L 96.292099 304.253244 L 96.354029 304.172473 L 96.47789 304.010931 L 96.539821 304.091702 L 96.911404 304.414785 L 97.282987 304.091702 L 97.344917 304.172473 L 97.406848 304.091702 L 97.7165 303.84939 L 97.778431 303.93016 L 97.840361 303.84939 L 98.150014 303.607077 L 98.335805 303.687848 L 98.707388 303.364765 L 98.89318 303.445536 L 99.078971 303.364765 L 99.140902 303.445536 L 99.202832 303.364765 L 99.512485 303.122453 L 99.698276 303.203224 L 100.069859 302.880141 L 100.317581 303.041682 L 100.379512 302.960911 L 100.441442 303.041682 L 100.565303 303.203224 L 100.627234 303.122453 L 100.689164 303.041682 L 100.751095 303.122453 L 100.813025 303.203224 L 100.874956 303.122453 L 101.060747 302.880141 L 101.122678 302.960911 L 101.246539 303.122453 L 101.308469 303.041682 L 101.3704 302.960911 L 101.43233 303.041682 L 101.741983 303.283994 L 102.051635 303.041682 L 102.361288 303.283994 L 103.166384 302.395516 L 103.228315 302.476287 L 103.290245 302.395516 L 103.971481 301.668579 L 104.219203 301.830121 L 104.528855 301.587809 L 104.714647 301.668579 L 105.024299 301.426267 L 105.08623 301.507038 L 105.14816 301.426267 L 105.395882 301.264725 L 105.457813 301.345496 L 105.519743 301.264725 L 105.767465 301.103184 L 105.829396 301.183955 L 105.891326 301.103184 L 106.200979 300.860872 L 106.262909 300.941642 L 106.32484 300.860872 L 106.510631 300.780101 L 106.572562 300.860872 L 106.634492 300.780101 L 106.820284 300.69933 L 106.882214 300.780101 L 106.944145 300.69933 L 107.068006 300.537789 L 107.129936 300.618559 L 107.315728 300.860872 L 107.377658 300.780101 L 107.935033 300.214706 L 108.120824 300.295476 L 108.182755 300.214706 L 108.244685 300.295476 L 108.306616 300.376247 L 108.368546 300.295476 L 108.616268 300.133935 L 108.678199 300.214706 L 108.740129 300.133935 L 108.80206 300.053164 L 108.86399 300.133935 L 108.925921 300.214706 L 108.987851 300.133935 L 109.359434 299.810852 L 109.607156 299.972393 L 110.226461 299.164686 L 110.288392 299.245457 L 110.412253 299.406998 L 110.474183 299.326227 L 110.536114 299.245457 L 110.598044 299.326227 L 110.969627 299.64931 L 111.093488 299.487769 L 111.155419 299.56854 L 111.34121 299.64931 L 111.774724 299.245457 L 112.146307 299.56854 L 112.889473 298.760832 L 112.951403 298.841603 L 113.013334 298.760832 L 113.199125 298.51852 L 113.261056 298.59929 L 113.446847 298.680061 L 113.508778 298.59929 L 113.570708 298.680061 L 113.81843 298.841603 L 114.004222 298.59929 L 114.066152 298.680061 L 114.128083 298.760832 L 114.190013 298.680061 L 114.251944 298.59929 L 114.313874 298.680061 L 114.499666 298.760832 L 114.809318 298.51852 L 115.05704 298.680061 L 115.118971 298.59929 L 115.180901 298.680061 L 115.366693 298.760832 L 115.862137 298.276207 L 115.924067 298.356978 L 115.985998 298.276207 L 116.29565 298.033895 L 116.419511 298.195437 L 116.481442 298.114666 L 116.543372 298.033895 L 116.605303 298.114666 L 116.667233 298.195437 L 116.729164 298.114666 L 117.038816 297.872354 L 117.348469 298.114666 L 117.410399 298.033895 L 117.47233 298.114666 L 117.596191 298.276207 L 117.658121 298.195437 L 117.781982 298.033895 L 117.843913 298.114666 L 117.905843 298.195437 L 117.967774 298.114666 L 118.339357 297.791583 L 118.463218 297.953124 L 118.525148 297.872354 L 119.082523 297.145417 L 119.144453 297.226188 L 119.268314 297.387729 L 119.330245 297.306958 L 119.516036 297.226188 L 119.825689 297.4685 L 120.321133 296.983875 L 120.630785 297.226188 L 120.816577 297.145417 L 120.878507 297.226188 L 120.940438 297.145417 L 121.002368 297.064646 L 121.064299 297.145417 L 121.373951 297.387729 L 121.559743 297.145417 L 121.621673 297.226188 L 121.869395 297.387729 L 122.302909 296.983875 L 122.4887 297.064646 L 123.108005 296.41848 L 123.169936 296.499251 L 123.231866 296.41848 L 123.541519 296.176168 L 123.72731 296.256938 L 124.036963 296.014626 L 124.098893 296.095397 L 124.160824 296.014626 L 124.408546 295.691543 L 124.470476 295.772314 L 124.594338 295.933855 L 124.656268 295.853085 L 124.965921 295.610772 L 125.027851 295.691543 L 125.089782 295.610772 L 125.275573 295.530002 L 125.647156 295.853085 L 126.018739 295.530002 L 126.266461 295.691543 L 126.390322 295.530002 L 126.452253 295.610772 L 126.638044 295.691543 L 127.257349 295.045377 L 127.31928 295.126148 L 127.38121 295.045377 L 127.628932 294.883836 L 127.690863 294.964606 L 127.752793 294.883836 L 128.124376 294.560753 L 128.495959 294.883836 L 128.991403 294.399211 L 129.053334 294.479982 L 129.115264 294.399211 L 129.424917 294.156899 L 129.548778 294.31844 L 129.610708 294.23767 L 129.7965 293.995357 L 129.85843 294.076128 L 129.920361 294.156899 L 129.982291 294.076128 L 130.044222 293.995357 L 130.106152 294.076128 L 130.168083 294.156899 L 130.230013 294.076128 L 130.539666 293.833816 L 130.725457 293.914586 L 131.220901 293.26842 L 131.282832 293.349191 L 131.468623 293.591503 L 131.530554 293.510733 L 131.592484 293.429962 L 131.654415 293.510733 L 132.27372 294.156899 L 132.583372 293.914586 L 132.831094 294.076128 L 133.140747 293.833816 L 133.388469 293.995357 L 134.317426 292.945337 L 134.503218 293.026108 L 134.689009 292.945337 L 134.874801 293.18765 L 134.936731 293.106879 L 135.060592 292.945337 L 135.122523 293.026108 L 135.246384 293.18765 L 135.308314 293.106879 L 135.617967 292.864567 L 135.679897 292.945337 L 135.741828 292.864567 L 136.05148 292.622254 L 136.113411 292.703025 L 136.175341 292.622254 L 136.237272 292.541484 L 136.299202 292.622254 L 136.361133 292.703025 L 136.423063 292.622254 L 137.22816 291.733776 L 137.661673 292.13763 L 137.909395 291.976088 L 137.971326 292.056859 L 138.033256 291.976088 L 138.5287 291.491464 L 138.652561 291.653005 L 138.714492 291.572234 L 139.209936 290.926068 L 139.271866 291.006839 L 139.333797 291.08761 L 139.395727 291.006839 L 139.643449 290.845298 L 140.015032 291.168381 L 140.696268 290.441444 L 140.758198 290.522215 L 140.820129 290.441444 L 141.00592 290.199132 L 141.067851 290.279902 L 141.253642 290.360673 L 141.749086 289.876049 L 141.811017 289.956819 L 141.872947 289.876049 L 141.934878 289.795278 L 141.996808 289.876049 L 142.058739 289.956819 L 142.120669 289.876049 L 142.492252 289.391424 L 142.554183 289.472195 L 142.739974 289.552966 L 143.173488 288.98757 L 143.235418 289.068341 L 143.545071 289.310653 L 143.916654 288.98757 L 143.978584 289.068341 L 144.040515 288.98757 L 144.350167 288.745258 L 144.535959 288.98757 L 144.597889 288.906799 L 144.783681 288.664487 L 144.845611 288.745258 L 145.093333 288.906799 L 145.402986 288.502946 L 145.464916 288.583716 L 145.526847 288.664487 L 145.588777 288.583716 L 146.022291 288.179863 L 146.146152 288.341404 L 146.208082 288.260633 L 146.331943 288.099092 L 146.393874 288.179863 L 146.579665 288.260633 L 147.13704 287.695238 L 147.446692 287.93755 L 147.880206 287.372155 L 147.942136 287.452926 L 148.127928 287.533697 L 148.747233 286.887531 L 148.933024 286.968301 L 149.118816 286.725989 L 149.180746 286.80676 L 149.242677 286.887531 L 149.304607 286.80676 L 149.738121 286.402906 L 149.800051 286.483677 L 149.861982 286.402906 L 150.047773 286.322135 L 150.357426 286.564447 L 150.729009 286.241364 L 150.790939 286.322135 L 150.85287 286.241364 L 151.224453 285.918281 L 151.534105 286.160594 L 151.967619 285.75674 L 152.09148 285.918281 L 152.15341 285.837511 L 152.834646 285.110574 L 153.082368 285.272115 L 153.701673 284.464408 L 153.763603 284.545179 L 154.011325 284.70672 L 154.197117 284.625949 L 154.444839 284.949032 L 154.506769 284.868262 L 154.692561 284.625949 L 154.754491 284.70672 L 154.940283 284.787491 L 155.064144 284.625949 L 155.126074 284.70672 L 155.311866 284.949032 L 155.373796 284.868262 L 155.80731 284.464408 L 155.931171 284.625949 L 155.993101 284.545179 L 156.488545 284.060554 L 156.612406 284.222095 L 156.674337 284.141325 L 157.355572 283.414388 L 157.479433 283.575929 L 157.541364 283.495159 L 157.727155 283.414388 L 157.974877 283.575929 L 158.28453 283.172076 L 158.34646 283.252846 L 158.470321 283.414388 L 158.532252 283.333617 L 159.027696 282.848993 L 159.089626 282.929763 L 159.151557 282.848993 L 159.708931 282.283597 L 159.770862 282.364368 L 159.832792 282.283597 L 159.894723 282.202827 L 159.956653 282.283597 L 160.018584 282.364368 L 160.080514 282.283597 L 160.142445 282.202827 L 160.204375 282.283597 L 160.266306 282.364368 L 160.328236 282.283597 L 160.699819 281.960514 L 160.76175 282.041285 L 160.82368 281.960514 L 160.885611 281.879744 L 160.947541 281.960514 L 161.257194 282.202827 L 161.566846 281.798973 L 161.628777 281.879744 L 161.876499 282.202827 L 161.938429 282.122056 L 162.310012 281.798973 L 162.681595 282.122056 L 162.867387 282.041285 L 163.053178 282.122056 L 163.3009 281.960514 L 163.734414 282.364368 L 163.858275 282.202827 L 163.920205 282.283597 L 163.982136 282.364368 L 164.044066 282.283597 L 164.53951 281.637431 L 164.601441 281.718202 L 164.849163 281.879744 L 165.096885 281.718202 L 165.282676 281.960514 L 165.344607 281.879744 L 165.468468 281.718202 L 165.530398 281.798973 L 165.901981 282.122056 L 166.025842 281.960514 L 166.087773 282.041285 L 166.149703 282.122056 L 166.211634 282.041285 L 166.397425 281.798973 L 166.459356 281.879744 L 166.521286 281.960514 L 166.583217 281.879744 L 166.892869 281.637431 L 166.9548 281.718202 L 167.01673 281.637431 L 167.388313 281.152807 L 167.450244 281.233577 L 167.512174 281.314348 L 167.574105 281.233577 L 167.821827 281.072036 L 168.007618 281.152807 L 168.317271 280.748953 L 168.379201 280.829724 L 168.564993 280.910494 L 168.812715 280.587411 L 168.874645 280.668182 L 168.936576 280.748953 L 168.998506 280.668182 L 169.060437 280.587411 L 169.122367 280.668182 L 169.370089 280.829724 L 169.989394 280.183558 L 170.360977 280.506641 L 170.67063 280.264328 L 170.73256 280.345099 L 170.794491 280.264328 L 171.042213 280.102787 L 171.104143 280.183558 L 171.166074 280.102787 L 171.475726 279.698933 L 171.537657 279.779704 L 171.847309 280.022016 L 172.156962 279.779704 L 172.218892 279.860475 L 172.280823 279.779704 L 172.590475 279.537392 L 172.776267 279.618162 L 173.271711 279.133538 L 173.333641 279.214308 L 173.395572 279.133538 L 173.705224 278.891225 L 173.767155 278.971996 L 173.829085 278.891225 L 174.262599 278.487372 L 174.324529 278.568142 L 174.38646 278.487372 L 175.005765 277.841206 L 175.067695 277.921976 L 175.129626 277.841206 L 176.058583 276.791186 L 176.120514 276.871957 L 176.182444 276.791186 L 176.554027 276.468103 L 176.739819 276.548873 L 177.111402 276.22579 L 177.173332 276.306561 L 177.235263 276.22579 L 178.16422 275.175771 L 178.226151 275.256541 L 178.288081 275.175771 L 178.659664 274.852688 L 178.783525 275.014229 L 178.845456 274.933458 L 179.526691 274.206521 L 179.588622 274.287292 L 179.650552 274.206521 L 180.207927 273.641126 L 180.269857 273.721897 L 180.331788 273.641126 L 180.64144 273.398814 L 180.703371 273.479585 L 180.765301 273.398814 L 180.889162 273.237272 L 180.951093 273.318043 L 181.074954 273.479585 L 181.136884 273.398814 L 181.941981 272.510336 L 182.065842 272.671877 L 182.127772 272.591106 L 182.251633 272.429565 L 182.313564 272.510336 L 182.499355 272.591106 L 182.809008 272.348794 L 183.05673 272.510336 L 183.552174 272.025711 L 183.799896 272.187253 L 183.985687 272.106482 L 184.047618 272.187253 L 184.109548 272.106482 L 184.171479 272.025711 L 184.233409 272.106482 L 184.29534 272.187253 L 184.35727 272.106482 L 184.543062 271.864169 L 184.604992 271.94494 L 184.852714 272.106482 L 185.100436 271.94494 L 185.224297 272.106482 L 185.286228 272.025711 L 185.843602 271.460316 L 185.905533 271.541086 L 185.967463 271.460316 L 186.215185 271.298774 L 186.339046 271.460316 L 186.400977 271.379545 L 186.462907 271.298774 L 186.524838 271.379545 L 186.586768 271.460316 L 186.648699 271.379545 L 186.83449 271.298774 L 186.896421 271.379545 L 186.958351 271.298774 L 187.206073 270.975691 L 187.268004 271.056462 L 187.515726 271.379545 L 187.577656 271.298774 L 187.763448 271.218003 L 188.196961 271.621857 L 188.816266 270.975691 L 189.063988 271.137233 L 189.31171 270.975691 L 189.373641 271.056462 L 189.435571 270.975691 L 189.497502 270.89492 L 189.559432 270.975691 L 189.745224 271.218003 L 189.807154 271.137233 L 189.869085 271.056462 L 189.931015 271.137233 L 189.992946 271.218003 L 190.054876 271.137233 L 190.364529 270.89492 L 190.48839 271.056462 L 190.55032 270.975691 L 191.045764 270.491067 L 191.107695 270.571837 L 191.169625 270.491067 L 191.231556 270.410296 L 191.293486 270.491067 L 191.603139 270.733379 L 192.036652 270.329525 L 192.098583 270.410296 L 192.160513 270.329525 L 192.594027 269.925671 L 192.655957 270.006442 L 192.717888 269.925671 L 193.151401 269.521818 L 193.584915 269.925671 L 193.832637 269.602588 L 193.894567 269.683359 L 193.956498 269.76413 L 194.018428 269.683359 L 194.26615 269.521818 L 194.513872 269.683359 L 194.699664 269.602588 L 194.885455 269.683359 L 195.566691 268.794881 L 195.628621 268.875651 L 195.690552 268.956422 L 195.752482 268.875651 L 196.185996 268.471798 L 196.309857 268.633339 L 196.371787 268.552568 L 196.557579 268.471798 L 196.805301 268.633339 L 196.991092 268.552568 L 197.053023 268.633339 L 197.114953 268.552568 L 197.672328 267.825632 L 197.734258 267.906402 L 197.92005 268.148715 L 197.98198 268.067944 L 198.043911 267.987173 L 198.105841 268.067944 L 198.229702 268.229485 L 198.291633 268.148715 L 198.353563 268.067944 L 198.415494 268.148715 L 198.477424 268.229485 L 198.539355 268.148715 L 199.034799 267.66409 L 199.096729 267.744861 L 199.15866 267.66409 L 199.22059 267.583319 L 199.282521 267.66409 L 199.344451 267.744861 L 199.406382 267.66409 L 199.716034 267.260236 L 199.777965 267.341007 L 199.901826 267.502549 L 199.963756 267.421778 L 201.388158 265.725592 L 201.512019 265.887133 L 201.573949 265.806363 L 202.379046 264.917884 L 202.440976 264.998655 L 202.502907 264.917884 L 202.688698 264.837114 L 202.87449 264.917884 L 203.060281 264.675572 L 203.122212 264.756343 L 203.308003 264.837114 L 203.617656 264.594801 L 203.741517 264.756343 L 203.803447 264.675572 L 204.17503 264.352489 L 204.236961 264.43326 L 204.298891 264.352489 L 205.042057 263.544781 L 205.103988 263.625552 L 205.165918 263.544781 L 205.537501 263.221698 L 205.599432 263.302469 L 205.661362 263.221698 L 206.156806 262.737074 L 206.342598 262.817845 L 206.899972 262.252449 L 207.085764 262.33322 L 207.395416 262.090908 L 207.581208 262.171679 L 207.643138 262.090908 L 207.705069 262.171679 L 207.766999 262.252449 L 207.82893 262.171679 L 208.138582 261.929366 L 208.200513 262.010137 L 208.262443 261.929366 L 208.448235 261.687054 L 208.510165 261.767825 L 208.572096 261.848595 L 208.634026 261.767825 L 208.819818 261.687054 L 208.943679 261.848595 L 209.005609 261.767825 L 209.06754 261.687054 L 209.12947 261.767825 L 209.191401 261.848595 L 209.253331 261.767825 L 209.439123 261.525512 L 209.501053 261.606283 L 209.686845 261.687054 L 209.748775 261.606283 L 209.810706 261.687054 L 210.120358 261.929366 L 210.30615 261.848595 L 210.36808 261.929366 L 210.430011 261.848595 L 210.491941 261.767825 L 210.553872 261.848595 L 210.925455 262.33322 L 210.987385 262.252449 L 211.60669 261.606283 L 211.730551 261.767825 L 211.792482 261.687054 L 211.916343 261.525512 L 211.978273 261.606283 L 212.102134 261.767825 L 212.164065 261.687054 L 212.659509 261.202429 L 212.721439 261.2832 L 212.78337 261.202429 L 213.154953 260.717805 L 213.216883 260.798576 L 213.278814 260.879346 L 213.340744 260.798576 L 213.526536 260.717805 L 213.774258 260.879346 L 214.207771 260.475493 L 214.579354 260.798576 L 214.703215 260.637034 L 214.765146 260.717805 L 215.012868 260.879346 L 215.384451 260.556263 L 215.694103 260.960117 L 215.756034 260.879346 L 216.437269 260.15241 L 216.623061 260.394722 L 216.684991 260.313951 L 216.870783 260.23318 L 217.118505 260.394722 L 217.180435 260.313951 L 217.242366 260.394722 L 217.366227 260.556263 L 217.428157 260.475493 L 217.613949 260.23318 L 217.675879 260.313951 L 217.73781 260.394722 L 217.79974 260.313951 L 218.295184 259.829327 L 218.357115 259.910097 L 218.419045 259.829327 L 218.480976 259.748556 L 218.542906 259.829327 L 218.604837 259.910097 L 218.666767 259.829327 L 219.781516 258.536994 L 219.905377 258.698536 L 219.967308 258.617765 L 220.338891 258.133141 L 220.400821 258.213911 L 220.462752 258.294682 L 220.524682 258.213911 L 220.896265 257.890828 L 221.143987 258.05237 L 221.577501 257.648516 L 221.639431 257.729287 L 221.701362 257.648516 L 222.134875 257.244662 L 222.382597 257.406204 L 222.630319 257.083121 L 222.69225 257.163892 L 223.187694 257.648516 L 223.683138 257.163892 L 223.745068 257.244662 L 223.806999 257.163892 L 224.054721 257.00235 L 224.116651 257.083121 L 224.178582 257.00235 L 225.355261 255.629247 L 225.417192 255.710018 L 225.479122 255.629247 L 225.788775 255.386935 L 225.974566 255.467706 L 226.036497 255.386935 L 226.098427 255.467706 L 226.346149 255.629247 L 226.717732 255.306164 L 226.779663 255.386935 L 226.841593 255.306164 L 227.213176 254.983081 L 227.275107 255.063852 L 227.337037 254.983081 L 227.64669 254.740769 L 227.70862 254.82154 L 227.770551 254.740769 L 228.080203 254.336915 L 228.142134 254.417686 L 228.265995 254.579227 L 228.327925 254.498456 L 228.761439 254.094603 L 228.94723 254.336915 L 229.009161 254.256144 L 229.133022 254.094603 L 229.194952 254.175373 L 229.318813 254.336915 L 229.380744 254.256144 L 230.000049 253.609978 L 230.061979 253.690749 L 230.12391 253.609978 L 230.495493 253.286895 L 230.557423 253.367666 L 230.619354 253.286895 L 231.052867 252.883041 L 231.300589 253.206124 L 231.36252 253.125354 L 231.42445 253.044583 L 231.486381 253.125354 L 231.734103 253.448437 L 231.796033 253.367666 L 232.415338 252.7215 L 232.477269 252.802271 L 232.539199 252.7215 L 232.60113 252.640729 L 232.66306 252.7215 L 233.034643 253.044583 L 233.653948 252.398417 L 233.963601 252.640729 L 234.087462 252.479188 L 234.149392 252.559958 L 234.335184 252.640729 L 234.644836 252.236875 L 234.706767 252.317646 L 234.768697 252.398417 L 234.830628 252.317646 L 235.202211 251.994563 L 235.635724 252.398417 L 235.945377 252.156104 L 236.131168 252.398417 L 236.193099 252.317646 L 236.564682 251.994563 L 236.626612 252.075334 L 236.688543 251.994563 L 236.936265 251.833021 L 237.122056 251.913792 L 237.307848 251.833021 L 237.493639 251.913792 L 237.741361 251.752251 L 237.803292 251.833021 L 237.865222 251.752251 L 238.546458 251.025314 L 238.670319 251.186855 L 238.732249 251.106085 L 239.103832 250.62146 L 239.165763 250.702231 L 239.227693 250.783002 L 239.289624 250.702231 L 239.599276 250.459919 L 239.661207 250.540689 L 239.723137 250.459919 L 240.156651 250.056065 L 240.342442 250.298377 L 240.404373 250.217606 L 240.652095 250.056065 L 240.714025 250.136836 L 240.775956 250.056065 L 240.961747 249.813753 L 241.023678 249.894523 L 241.33333 250.136836 L 241.952635 249.490669 L 242.076496 249.652211 L 242.138427 249.57144 L 242.324218 249.490669 L 242.386149 249.57144 L 242.448079 249.490669 L 242.51001 249.409899 L 242.57194 249.490669 L 242.757732 249.732982 L 242.819662 249.652211 L 242.943523 249.490669 L 243.005454 249.57144 L 243.315106 249.813753 L 243.377037 249.732982 L 243.438967 249.813753 L 243.500898 249.894523 L 243.562828 249.813753 L 243.934411 249.490669 L 244.120203 249.57144 L 244.925299 248.682962 L 244.98723 248.763733 L 245.04916 248.682962 L 245.111091 248.602191 L 245.173021 248.682962 L 245.234952 248.763733 L 245.296882 248.682962 L 245.606535 248.44065 L 245.854257 248.602191 L 245.916187 248.52142 L 245.978118 248.602191 L 246.22584 248.763733 L 246.28777 248.682962 L 246.349701 248.763733 L 246.473562 248.925274 L 246.535492 248.844503 L 247.092867 248.117567 L 247.154797 248.198337 L 247.52638 248.52142 L 247.774102 248.359879 L 247.897963 248.52142 L 247.959894 248.44065 L 248.70306 247.632942 L 248.826921 247.794484 L 248.888851 247.713713 L 248.950782 247.632942 L 249.012712 247.713713 L 249.136573 247.875254 L 249.198504 247.794484 L 249.632017 247.39063 L 249.817809 247.471401 L 250.251322 247.067547 L 250.437114 247.148317 L 250.622905 247.067547 L 250.684836 247.148317 L 250.746766 247.067547 L 251.118349 246.582922 L 251.18028 246.663693 L 251.304141 246.825234 L 251.366071 246.744464 L 251.551863 246.663693 L 251.613793 246.744464 L 251.675724 246.663693 L 251.985376 246.421381 L 252.233098 246.744464 L 252.295029 246.663693 L 252.48082 246.582922 L 252.542751 246.663693 L 252.604681 246.582922 L 252.976264 246.259839 L 253.038195 246.34061 L 253.100125 246.259839 L 253.533639 245.855985 L 253.595569 245.936756 L 253.6575 245.855985 L 253.967152 245.613673 L 254.091013 245.775215 L 254.152944 245.694444 L 254.214874 245.613673 L 254.276805 245.694444 L 254.586457 245.936756 L 255.267693 245.209819 L 255.453484 245.29059 L 255.515415 245.209819 L 255.577345 245.29059 L 255.825067 245.452132 L 256.13472 245.209819 L 256.19665 245.29059 L 256.258581 245.209819 L 256.382442 245.048278 L 256.444372 245.129049 L 256.692094 245.29059 L 257.249469 244.725195 L 257.311399 244.805966 L 257.37333 244.725195 L 257.744913 244.402112 L 257.806843 244.482882 L 257.868774 244.402112 L 258.178426 243.998258 L 258.240357 244.079029 L 258.364218 244.24057 L 258.426148 244.159799 L 258.67387 243.998258 L 258.735801 244.079029 L 258.797731 243.998258 L 258.921592 243.836716 L 258.983523 243.917487 L 259.231245 244.079029 L 259.602828 243.755946 L 259.664758 243.836716 L 259.726689 243.755946 L 259.974411 243.594404 L 260.222133 243.755946 L 260.407924 243.675175 L 260.593716 243.755946 L 260.655646 243.675175 L 260.717577 243.755946 L 260.841438 243.917487 L 260.903368 243.836716 L 261.274951 243.513633 L 261.336882 243.594404 L 261.398812 243.513633 L 261.832326 243.10978 L 262.018117 243.352092 L 262.080048 243.271321 L 262.3897 242.867467 L 262.451631 242.948238 L 262.761283 243.19055 L 263.318658 242.463614 L 263.380588 242.544384 L 263.690241 242.786697 L 263.814102 242.625155 L 263.876032 242.705926 L 263.999893 242.867467 L 264.061824 242.786697 L 264.619198 242.221301 L 264.743059 242.382843 L 264.80499 242.302072 L 265.300434 241.817447 L 265.362364 241.898218 L 265.424295 241.817447 L 265.610086 241.736677 L 265.672017 241.817447 L 265.733947 241.736677 L 265.919739 241.655906 L 266.167461 241.817447 L 266.229391 241.736677 L 266.291322 241.817447 L 266.477113 241.898218 L 266.786766 241.655906 L 266.848696 241.736677 L 266.910627 241.655906 L 267.096418 241.575135 L 267.28221 241.655906 L 267.839585 241.090511 L 268.025376 241.171281 L 268.087307 241.090511 L 268.149237 241.171281 L 268.396959 241.332823 L 269.263986 240.363574 L 269.325917 240.444345 L 269.387847 240.363574 L 269.75943 240.040491 L 269.945222 240.121262 L 270.316805 239.798178 L 270.378735 239.878949 L 270.440666 239.798178 L 270.812249 239.475095 L 270.874179 239.555866 L 270.93611 239.475095 L 271.059971 239.313554 L 271.121901 239.394325 L 271.307693 239.475095 L 271.493484 239.232783 L 271.555415 239.313554 L 271.803137 239.636637 L 271.865067 239.555866 L 272.050859 239.313554 L 272.112789 239.394325 L 272.17472 239.475095 L 272.23665 239.394325 L 272.298581 239.313554 L 272.360511 239.394325 L 272.546303 239.475095 L 272.608233 239.394325 L 272.670164 239.475095 L 273.041747 239.798178 L 273.351399 239.394325 L 273.41333 239.475095 L 273.599121 239.717408 L 273.661052 239.636637 L 273.846843 239.555866 L 273.970704 239.717408 L 274.032635 239.636637 L 274.218426 239.555866 L 274.466148 239.717408 L 274.961592 239.232783 L 275.147384 239.313554 L 275.209314 239.232783 L 275.271245 239.313554 L 275.518967 239.636637 L 275.580897 239.555866 L 275.642828 239.475095 L 275.704758 239.555866 L 275.766689 239.636637 L 275.828619 239.555866 L 276.200202 239.232783 L 276.262133 239.313554 L 276.324063 239.232783 L 276.695646 238.9097 L 276.757577 238.990471 L 276.819507 238.9097 L 277.19109 238.586617 L 277.438812 238.748159 L 278.4297 237.617368 L 278.491631 237.698139 L 278.553561 237.617368 L 278.739353 237.536597 L 278.801283 237.617368 L 278.863214 237.536597 L 278.925144 237.455827 L 278.987075 237.536597 L 279.172866 237.617368 L 279.977963 236.72889 L 280.039893 236.80966 L 280.101824 236.72889 L 280.535337 236.325036 L 280.90692 236.648119 L 281.773947 235.67887 L 281.835878 235.759641 L 281.897808 235.67887 L 282.455183 235.113475 L 282.517113 235.194245 L 282.579044 235.113475 L 283.260279 234.386538 L 283.32221 234.467308 L 283.38414 234.386538 L 283.817654 233.982684 L 283.879584 234.063455 L 283.941515 233.982684 L 284.375028 233.57883 L 284.436959 233.659601 L 284.498889 233.57883 L 285.180125 232.851893 L 285.489777 233.094206 L 285.737499 232.932664 L 285.86136 233.094206 L 285.923291 233.013435 L 286.171013 232.851893 L 286.232943 232.932664 L 286.294874 232.851893 L 286.666457 232.52881 L 286.728387 232.609581 L 286.790318 232.52881 L 287.223831 232.124956 L 287.471553 232.44804 L 287.533484 232.367269 L 287.843136 231.963415 L 287.905067 232.044186 L 288.028928 232.205727 L 288.090858 232.124956 L 288.152789 232.044186 L 288.214719 232.124956 L 288.462441 232.286498 L 288.524372 232.205727 L 288.586302 232.286498 L 288.648233 232.367269 L 288.710163 232.286498 L 289.019816 232.044186 L 289.081746 232.124956 L 289.143677 232.044186 L 289.329468 231.963415 L 289.391399 232.044186 L 289.453329 231.963415 L 289.701051 231.801873 L 289.762982 231.882644 L 289.824912 231.801873 L 290.320356 231.317249 L 290.444217 231.47879 L 290.506148 231.39802 L 290.8158 230.994166 L 290.877731 231.074937 L 290.939661 231.155707 L 291.001592 231.074937 L 291.249314 230.913395 L 291.497036 231.074937 L 291.930549 230.671083 L 292.116341 230.751854 L 292.673715 230.186458 L 292.735646 230.267229 L 292.797576 230.186458 L 293.788464 229.055668 L 293.850395 229.136438 L 293.912325 229.055668 L 294.221978 228.813355 L 294.4697 228.974897 L 294.779352 228.732585 L 294.903213 228.894126 L 294.965144 228.813355 L 295.274796 228.571043 L 295.522518 228.732585 L 295.956032 228.328731 L 296.079893 228.490272 L 296.141823 228.409502 L 296.513406 228.086419 L 296.699198 228.167189 L 296.94692 228.005648 L 297.00885 228.086419 L 297.070781 228.005648 L 298.433252 226.390233 L 298.495182 226.471003 L 298.557113 226.390233 L 298.804835 226.228691 L 298.990626 226.471003 L 299.052557 226.390233 L 299.671862 225.744067 L 299.795723 225.905608 L 299.857653 225.824837 L 300.105375 225.501754 L 300.167306 225.582525 L 300.353097 225.824837 L 300.415028 225.744067 L 300.66275 225.582525 L 300.72468 225.663296 L 300.786611 225.582525 L 300.848541 225.501754 L 300.910472 225.582525 L 301.096263 225.824837 L 301.158194 225.744067 L 301.591707 225.178671 L 301.653638 225.259442 L 301.96329 225.501754 L 302.272943 225.259442 L 302.334873 225.340213 L 302.396804 225.259442 L 302.830317 224.855588 L 302.954178 225.01713 L 303.016109 224.936359 L 303.573483 224.370964 L 303.697344 224.532505 L 303.759275 224.451734 L 304.006997 224.290193 L 304.192788 224.370964 L 304.564371 224.047881 L 304.874024 224.290193 L 304.997885 224.128651 L 305.059815 224.209422 L 305.245607 224.290193 L 305.431398 224.047881 L 305.493329 224.128651 L 305.555259 224.209422 L 305.61719 224.128651 L 306.236495 223.482485 L 306.422286 223.724798 L 306.484217 223.644027 L 306.608078 223.482485 L 306.670008 223.563256 L 306.793869 223.724798 L 306.8558 223.644027 L 307.351244 223.159402 L 307.413174 223.240173 L 307.475105 223.159402 L 307.660896 223.078632 L 307.722827 223.159402 L 307.784757 223.078632 L 308.404062 222.432465 L 308.465993 222.513236 L 308.527923 222.432465 L 308.775645 222.109382 L 308.837576 222.190153 L 308.899506 222.270924 L 308.961437 222.190153 L 309.33302 221.86707 L 309.518811 221.947841 L 309.766533 221.786299 L 309.890394 221.947841 L 309.952325 221.86707 L 310.323908 221.382446 L 310.385838 221.463216 L 310.447769 221.543987 L 310.509699 221.463216 L 310.819352 221.220904 L 310.881282 221.301675 L 310.943213 221.220904 L 311.005143 221.140133 L 311.067074 221.220904 L 311.129004 221.301675 L 311.190935 221.220904 L 311.562518 220.897821 L 311.624448 220.978592 L 311.686379 220.897821 L 311.748309 220.81705 L 311.81024 220.897821 L 311.996031 221.140133 L 312.057962 221.059363 L 312.243753 220.81705 L 312.305684 220.897821 L 312.491475 220.978592 L 312.801128 220.73628 L 313.11078 220.978592 L 313.296572 220.73628 L 313.358502 220.81705 L 313.544294 220.897821 L 314.28746 220.090114 L 314.473251 220.170884 L 315.154487 219.282406 L 315.216417 219.363177 L 315.402209 219.605489 L 315.464139 219.524718 L 315.959583 219.040094 L 316.455027 219.524718 L 316.516958 219.443947 L 316.578888 219.524718 L 316.76468 219.76703 L 316.82661 219.68626 L 316.888541 219.605489 L 316.950471 219.68626 L 317.260124 219.928572 L 317.631707 219.605489 L 317.693637 219.68626 L 317.755568 219.605489 L 318.312942 219.040094 L 318.436803 219.201635 L 318.498734 219.120864 L 318.560664 219.040094 L 318.622595 219.120864 L 318.684525 219.201635 L 318.746456 219.120864 L 319.118039 218.797781 L 319.365761 218.959323 L 319.613483 218.797781 L 319.675413 218.878552 L 319.737344 218.797781 L 319.799274 218.717011 L 319.861205 218.797781 L 320.170857 219.201635 L 320.232788 219.120864 L 320.418579 219.040094 L 320.48051 219.120864 L 320.54244 219.040094 L 320.975954 218.63624 L 321.161745 218.717011 L 321.471398 218.313157 L 321.533328 218.393928 L 321.71912 218.474698 L 321.842981 218.313157 L 321.904911 218.393928 L 322.028772 218.555469 L 322.090703 218.474698 L 322.338425 218.151615 L 322.400355 218.232386 L 322.462286 218.313157 L 322.524216 218.232386 L 322.771938 218.070845 L 322.95773 218.313157 L 323.01966 218.232386 L 323.638965 217.58622 L 323.948618 217.828532 L 324.072479 217.666991 L 324.134409 217.747762 L 324.567923 218.151615 L 324.815645 217.828532 L 324.877575 217.909303 L 324.939506 217.990074 L 325.001436 217.909303 L 325.311089 217.666991 L 325.49688 217.747762 L 325.682672 217.505449 L 325.744602 217.58622 L 325.868463 217.747762 L 325.930394 217.666991 L 326.425838 217.182366 L 326.797421 217.666991 L 326.859351 217.58622 L 327.169004 217.343908 L 327.292865 217.505449 L 327.354795 217.424678 L 327.850239 216.940054 L 327.9741 217.101595 L 328.036031 217.020825 L 328.655336 216.374659 L 328.717266 216.455429 L 328.779197 216.374659 L 329.026919 216.213117 L 329.274641 216.374659 L 329.893946 215.728493 L 330.079737 215.809263 L 330.265529 215.728493 L 330.38939 215.890034 L 330.45132 215.809263 L 330.822903 215.48618 L 330.884834 215.566951 L 330.946764 215.48618 L 331.194486 215.324639 L 331.380278 215.40541 L 331.813791 215.001556 L 332.123444 215.243868 L 332.185374 215.163097 L 332.247305 215.243868 L 332.309235 215.324639 L 332.371166 215.243868 L 332.990471 214.597702 L 333.052401 214.678473 L 333.114332 214.597702 L 333.671706 214.032307 L 333.733637 214.113077 L 333.795567 214.032307 L 334.10522 213.789994 L 334.352942 213.951536 L 334.724525 213.466911 L 334.786455 213.547682 L 335.158038 213.870765 L 335.34383 213.628453 L 335.40576 213.709224 L 335.529621 213.870765 L 335.591552 213.789994 L 335.839274 213.628453 L 336.148926 213.870765 L 336.706301 213.30537 L 336.892092 213.547682 L 336.954023 213.466911 L 337.201745 213.30537 L 337.387536 213.386141 L 337.635258 213.224599 L 337.88298 213.386141 L 338.006841 213.224599 L 338.068772 213.30537 L 338.502285 213.709224 L 338.873868 213.386141 L 338.997729 213.547682 L 339.05966 213.466911 L 339.307382 213.30537 L 339.369312 213.386141 L 339.431243 213.30537 L 339.740895 213.063058 L 340.050548 213.30537 L 340.112478 213.224599 L 340.174409 213.30537 L 340.236339 213.386141 L 340.29827 213.30537 L 340.669853 212.982287 L 340.855644 213.224599 L 340.917575 213.143828 L 341.165297 212.982287 L 341.227227 213.063058 L 341.289158 212.982287 L 341.53688 212.820745 L 341.722671 213.063058 L 341.784602 212.982287 L 342.341976 212.416891 L 342.403907 212.497662 L 342.465837 212.416891 L 343.023212 211.851496 L 343.085142 211.932267 L 343.147073 211.851496 L 343.332864 211.609184 L 343.394795 211.689955 L 343.456725 211.770725 L 343.518656 211.689955 L 343.828308 211.447642 L 343.890239 211.528413 L 343.952169 211.447642 L 344.571474 210.801476 L 344.633405 210.882247 L 344.695335 210.801476 L 344.819196 210.639935 L 344.881127 210.720706 L 344.943057 210.801476 L 345.004988 210.720706 L 345.190779 210.478393 L 345.25271 210.559164 L 345.31464 210.639935 L 345.376571 210.559164 L 345.562362 210.316852 L 345.624293 210.397623 L 345.810084 210.639935 L 345.872015 210.559164 L 346.181667 210.316852 L 346.243598 210.397623 L 346.305528 210.316852 L 346.367459 210.236081 L 346.429389 210.316852 L 346.615181 210.397623 L 347.110625 209.912998 L 347.172555 209.993769 L 347.234486 209.912998 L 347.667999 209.509144 L 347.72993 209.589915 L 347.79186 209.509144 L 348.101513 209.266832 L 348.287304 209.347603 L 348.535026 209.186061 L 348.906609 209.670686 L 348.96854 209.589915 L 349.340123 209.266832 L 349.402053 209.347603 L 349.463984 209.266832 L 349.525914 209.186061 L 349.587845 209.266832 L 350.021358 209.670686 L 350.331011 209.428373 L 350.578733 209.589915 L 350.640663 209.509144 L 350.702594 209.589915 L 350.826455 209.751456 L 350.888385 209.670686 L 351.074177 209.589915 L 351.44576 209.912998 L 351.50769 209.832227 L 351.569621 209.912998 L 351.693482 210.074539 L 351.755412 209.993769 L 352.498578 209.186061 L 352.68437 209.266832 L 352.7463 209.186061 L 352.808231 209.266832 L 353.055953 209.428373 L 353.241744 209.186061 L 353.303675 209.266832 L 353.489466 209.509144 L 353.551397 209.428373 L 353.799119 209.266832 L 353.861049 209.347603 L 353.92298 209.266832 L 354.480354 208.701437 L 354.542285 208.782207 L 354.604215 208.701437 L 354.851937 208.539895 L 354.913868 208.620666 L 354.975798 208.539895 L 355.780895 207.651417 L 355.966686 207.732188 L 356.46213 207.247563 L 356.524061 207.328334 L 356.585991 207.247563 L 356.709852 207.086021 L 356.771783 207.166792 L 356.895644 207.328334 L 356.957574 207.247563 L 357.267227 206.843709 L 357.329157 206.92448 L 357.453018 207.086021 L 357.514949 207.005251 L 358.072323 206.439855 L 358.134254 206.520626 L 358.196184 206.439855 L 358.443906 206.278314 L 358.691628 206.439855 L 359.310933 205.793689 L 359.434794 205.955231 L 359.496725 205.87446 L 360.363752 204.905211 L 360.549543 204.985982 L 360.673404 204.82444 L 360.735335 204.905211 L 360.859196 205.066752 L 360.921126 204.985982 L 361.044987 204.82444 L 361.106918 204.905211 L 361.540431 205.470606 L 361.602362 205.389836 L 361.664292 205.309065 L 361.726223 205.389836 L 361.850084 205.551377 L 361.912014 205.470606 L 362.283597 205.147523 L 362.345528 205.228294 L 362.407458 205.147523 L 362.717111 204.905211 L 362.779041 204.985982 L 362.840972 204.905211 L 363.460277 204.259045 L 363.522207 204.339816 L 363.584138 204.259045 L 364.141512 203.69365 L 364.203443 203.77442 L 364.265373 203.69365 L 364.513095 203.532108 L 364.698887 203.612879 L 364.946609 203.451337 L 365.256261 203.69365 L 365.318192 203.612879 L 365.380122 203.69365 L 365.503983 203.855191 L 365.565914 203.77442 L 365.875566 203.532108 L 365.937497 203.612879 L 365.999427 203.532108 L 366.185219 203.451337 L 366.30908 203.612879 L 366.37101 203.532108 L 366.680663 203.289796 L 366.990315 203.532108 L 367.176107 203.451337 L 367.361898 203.69365 L 367.423829 203.612879 L 367.60962 203.532108 L 367.671551 203.612879 L 367.733481 203.532108 L 368.414717 202.805171 L 368.476647 202.885942 L 368.538578 202.805171 L 368.7863 202.482088 L 368.84823 202.562859 L 368.910161 202.64363 L 368.972091 202.562859 L 369.405605 202.159005 L 369.591396 202.239776 L 370.02491 201.674381 L 370.08684 201.755151 L 370.272632 201.835922 L 370.396493 201.674381 L 370.458423 201.755151 L 370.891937 202.159005 L 370.953867 202.078234 L 371.015798 202.159005 L 371.077728 202.239776 L 371.139659 202.159005 L 371.201589 202.078234 L 371.26352 202.159005 L 371.449311 202.239776 L 371.820894 201.916693 L 371.882825 201.997464 L 371.944755 201.916693 L 372.378269 201.512839 L 372.440199 201.59361 L 372.50213 201.512839 L 373.121435 200.866673 L 373.245296 201.028215 L 373.307226 200.947444 L 373.864601 200.382049 L 374.050392 200.462819 L 374.669697 199.816653 L 374.97935 200.058965 L 375.350933 199.735882 L 375.784446 200.139736 L 376.156029 199.816653 L 376.341821 199.897424 L 376.465682 199.735882 L 376.527612 199.816653 L 376.775334 199.978195 L 376.899195 199.816653 L 376.961126 199.897424 L 377.084987 200.058965 L 377.146917 199.978195 L 377.580431 199.574341 L 377.642361 199.655112 L 377.704292 199.574341 L 377.766222 199.49357 L 377.828153 199.574341 L 377.890083 199.655112 L 377.952014 199.574341 L 378.509388 199.008946 L 378.75711 199.170487 L 378.819041 199.089716 L 378.880971 199.170487 L 378.942902 199.251258 L 379.004832 199.170487 L 379.438346 198.766633 L 379.500276 198.847404 L 379.562207 198.766633 L 379.93379 198.44355 L 380.243442 198.685863 L 380.615025 198.36278 L 380.800817 198.44355 L 381.296261 197.958926 L 381.543983 198.282009 L 381.605913 198.201238 L 381.977496 197.878155 L 382.225218 198.201238 L 382.287149 198.120467 L 382.720662 197.716613 L 382.844523 197.878155 L 382.906454 197.797384 L 383.525759 197.151218 L 383.587689 197.231989 L 383.64962 197.151218 L 383.897342 196.828135 L 383.959272 196.908906 L 384.145064 196.989677 L 384.330855 196.747364 L 384.392786 196.828135 L 384.516647 196.989677 L 384.578577 196.908906 L 384.88823 196.505052 L 384.95016 196.585823 L 385.135952 196.666594 L 385.259813 196.505052 L 385.321743 196.585823 L 385.383674 196.666594 L 385.445604 196.585823 L 385.507535 196.505052 L 385.569465 196.585823 L 385.631396 196.666594 L 385.693326 196.585823 L 385.817187 196.424281 L 385.879118 196.505052 L 386.18877 196.747364 L 386.560353 196.424281 L 386.684214 196.585823 L 386.746145 196.505052 L 387.179658 196.101198 L 387.241589 196.181969 L 387.303519 196.101198 L 387.737033 195.697345 L 387.798963 195.778115 L 387.860894 195.697345 L 387.922824 195.616574 L 387.984755 195.697345 L 388.170546 195.778115 L 388.356338 195.535803 L 388.418268 195.616574 L 388.480199 195.697345 L 388.542129 195.616574 L 389.223365 194.889637 L 389.409156 195.131949 L 389.471087 195.051178 L 389.656878 194.970408 L 389.9046 195.131949 L 390.090392 195.051178 L 390.214253 195.21272 L 390.276183 195.131949 L 390.523905 194.970408 L 390.709697 195.051178 L 390.957419 194.728095 L 391.019349 194.808866 L 391.08128 194.889637 L 391.14321 194.808866 L 391.762515 194.1627 L 391.886376 194.324242 L 391.948307 194.243471 L 392.567612 193.435763 L 392.629542 193.516534 L 392.815334 193.597305 L 393.124986 193.354993 L 393.372708 193.516534 L 393.682361 193.274222 L 393.744291 193.354993 L 393.806222 193.274222 L 393.868152 193.193451 L 393.930083 193.274222 L 394.177805 193.435763 L 395.292554 192.143431 L 395.478345 192.224202 L 395.726067 192.06266 L 395.911859 192.143431 L 396.778886 191.174182 L 396.964677 191.254953 L 397.33626 190.93187 L 397.398191 191.012641 L 397.460121 190.93187 L 397.831704 190.608787 L 397.893635 190.689558 L 397.955565 190.608787 L 398.389079 190.204933 L 398.51294 190.366474 L 398.57487 190.285704 L 398.698731 190.124162 L 398.760662 190.204933 L 399.070314 190.447245 L 399.627689 189.88185 L 399.689619 189.962621 L 399.75155 189.88185 L 399.999272 189.558767 L 400.061202 189.639538 L 400.123133 189.720308 L 400.185063 189.639538 L 400.556646 189.316455 L 400.618577 189.397225 L 400.680507 189.316455 L 401.609465 188.266435 L 401.671395 188.347206 L 401.733326 188.266435 L 402.104909 187.943352 L 402.352631 188.266435 L 402.414561 188.185664 L 402.662283 188.024123 L 402.848075 188.104893 L 403.219658 187.78181 L 403.281588 187.862581 L 403.343519 187.78181 L 404.70599 186.166395 L 404.953712 186.327937 L 405.263364 186.085624 L 405.573017 186.327937 L 405.820739 186.166395 L 406.068461 186.327937 L 406.192322 186.166395 L 406.254252 186.247166 L 406.563905 186.489478 L 407.307071 185.681771 L 407.369001 185.762541 L 407.430932 185.681771 L 407.740584 185.439458 L 407.926376 185.520229 L 408.174098 185.358687 L 408.48375 185.601 L 408.669542 185.520229 L 408.979194 185.762541 L 409.350777 185.277917 L 409.412708 185.358687 L 409.66043 185.520229 L 409.72236 185.439458 L 409.784291 185.520229 L 410.093943 185.762541 L 410.403596 185.520229 L 410.527457 185.681771 L 410.589387 185.601 L 411.332554 184.793292 L 411.518345 184.874063 L 411.704137 184.631751 L 411.766067 184.712521 L 411.827998 184.793292 L 411.889928 184.712521 L 412.695025 183.824043 L 412.880816 184.066355 L 412.942747 183.985585 L 413.128538 183.904814 L 413.37626 184.066355 L 413.871704 183.581731 L 414.119426 183.743272 L 414.55294 183.339419 L 414.61487 183.420189 L 414.676801 183.339419 L 415.172245 182.854794 L 415.234175 182.935565 L 415.296106 182.854794 L 415.543828 182.531711 L 415.605758 182.612482 L 415.729619 182.774023 L 415.79155 182.693252 L 416.472785 181.966316 L 416.720507 182.289399 L 416.782438 182.208628 L 417.215951 181.804774 L 417.277882 181.885545 L 417.339812 181.804774 L 417.587534 181.643233 L 417.649465 181.724003 L 417.711395 181.643233 L 417.773326 181.562462 L 417.835256 181.643233 L 418.021048 181.885545 L 418.082978 181.804774 L 418.516492 181.40092 L 418.578422 181.481691 L 418.640353 181.40092 L 418.888075 181.239379 L 418.950005 181.32015 L 419.011936 181.239379 L 419.693171 180.512442 L 420.002824 180.754754 L 420.312476 180.512442 L 420.622129 180.754754 L 421.117573 180.27013 L 421.303364 180.3509 L 421.427225 180.189359 L 421.489156 180.27013 L 421.674947 180.3509 L 421.736878 180.27013 L 421.798808 180.3509 L 421.860739 180.431671 L 421.922669 180.3509 L 422.418113 179.866276 L 422.480044 179.947047 L 422.541974 179.866276 L 422.603905 179.785505 L 422.665835 179.866276 L 422.975488 180.108588 L 423.161279 180.027817 L 423.22321 180.108588 L 423.28514 180.027817 L 423.594793 179.785505 L 423.780584 179.866276 L 424.276028 179.381651 L 424.585681 179.623964 L 425.576569 178.493173 L 425.76236 178.735485 L 425.824291 178.654715 L 426.257804 178.250861 L 426.319735 178.331632 L 426.381665 178.250861 L 426.629387 178.089319 L 426.691318 178.17009 L 426.753248 178.089319 L 426.877109 177.927778 L 426.93904 178.008548 L 427.00097 178.089319 L 427.062901 178.008548 L 427.310623 177.847007 L 427.372553 177.927778 L 427.434484 177.847007 L 427.744136 177.604695 L 427.929928 177.685465 L 428.301511 177.362382 L 428.363441 177.443153 L 428.425372 177.362382 L 428.611163 177.12007 L 428.673094 177.200841 L 428.735024 177.281612 L 428.796955 177.200841 L 428.858885 177.12007 L 428.920816 177.200841 L 429.230468 177.443153 L 429.725912 176.958529 L 429.787843 177.039299 L 429.849773 176.958529 L 430.345217 176.473904 L 430.592939 176.796987 L 430.65487 176.716216 L 430.778731 176.554675 L 430.840661 176.635446 L 430.964522 176.796987 L 431.026453 176.716216 L 431.274175 176.393133 L 431.336105 176.473904 L 431.521897 176.554675 L 431.583827 176.473904 L 431.645758 176.554675 L 431.707688 176.635446 L 431.769619 176.554675 L 432.017341 176.393133 L 432.203132 176.473904 L 432.326993 176.312363 L 432.388924 176.393133 L 432.698576 176.635446 L 432.822437 176.473904 L 432.884368 176.554675 L 432.946298 176.635446 L 433.008229 176.554675 L 433.13209 176.393133 L 433.19402 176.473904 L 433.255951 176.554675 L 433.317881 176.473904 L 433.503673 176.393133 L 433.565603 176.473904 L 433.627534 176.393133 L 433.937186 176.150821 L 434.246839 176.393133 L 434.618422 176.07005 L 434.742283 176.231592 L 434.804213 176.150821 L 435.361588 175.585426 L 435.423518 175.666197 L 435.485449 175.585426 L 435.547379 175.504655 L 435.60931 175.585426 L 435.67124 175.666197 L 435.733171 175.585426 L 436.785989 174.373864 L 436.84792 174.454635 L 436.90985 174.373864 L 437.219503 174.131552 L 437.281433 174.212323 L 437.343364 174.131552 L 437.776877 173.566157 L 437.838808 173.646928 L 437.900738 173.727698 L 437.962669 173.646928 L 438.024599 173.566157 L 438.08653 173.646928 L 438.210391 173.808469 L 438.272321 173.727698 L 438.643904 173.404615 L 439.015487 173.727698 L 439.201279 173.646928 L 439.38707 173.88924 L 439.449001 173.808469 L 439.758653 173.566157 L 439.820584 173.646928 L 439.882514 173.566157 L 439.944445 173.485386 L 440.006375 173.566157 L 440.068306 173.646928 L 440.130236 173.566157 L 440.316028 173.485386 L 440.501819 173.566157 L 440.56375 173.485386 L 440.62568 173.566157 L 440.687611 173.646928 L 440.749541 173.566157 L 440.873402 173.404615 L 440.935333 173.485386 L 441.059194 173.646928 L 441.121124 173.566157 L 441.430777 173.323845 L 441.616568 173.404615 L 442.112012 172.919991 L 442.421665 173.162303 L 442.731317 172.919991 L 442.793248 173.000761 L 442.855178 172.919991 L 443.1029 172.758449 L 443.288692 172.83922 L 443.722205 172.435366 L 443.969927 172.596908 L 445.270468 171.062263 L 445.332398 171.143034 L 445.394329 171.062263 L 445.58012 170.819951 L 445.642051 170.900722 L 445.703981 170.981493 L 445.765912 170.900722 L 446.385217 170.254556 L 446.447147 170.335326 L 446.509078 170.254556 L 447.004522 169.769931 L 447.190313 169.850702 L 447.438035 169.527619 L 447.499966 169.60839 L 447.561896 169.68916 L 447.623827 169.60839 L 447.809618 169.366077 L 447.871549 169.446848 L 448.181201 169.68916 L 448.243132 169.60839 L 448.305062 169.68916 L 448.366993 169.769931 L 448.428923 169.68916 L 448.490854 169.60839 L 448.552784 169.68916 L 448.924367 170.012243 L 449.605603 169.285307 L 449.667533 169.366077 L 449.729464 169.285307 L 450.039116 169.042994 L 450.101047 169.123765 L 450.162977 169.042994 L 450.53456 168.719911 L 450.596491 168.800682 L 450.658421 168.719911 L 450.720352 168.639141 L 450.782282 168.719911 L 450.844213 168.800682 L 450.906143 168.719911 L 451.153865 168.396828 L 451.215796 168.477599 L 451.587379 168.800682 L 452.082823 168.316058 L 452.144753 168.396828 L 452.206684 168.316058 L 452.578267 167.992974 L 452.640197 168.073745 L 452.702128 167.992974 L 453.135641 167.589121 L 453.197572 167.669891 L 453.259502 167.589121 L 453.754946 167.104496 L 453.816877 167.185267 L 453.878807 167.104496 L 454.312321 166.700642 L 454.498112 166.942955 L 454.560043 166.862184 L 454.931626 166.539101 L 454.993556 166.619872 L 455.055487 166.539101 L 455.179348 166.377559 L 455.241278 166.45833 L 455.42707 166.539101 L 455.550931 166.377559 L 455.612861 166.45833 L 455.798653 166.700642 L 455.860583 166.619872 L 456.232166 166.135247 L 456.294097 166.216018 L 456.356027 166.296789 L 456.417958 166.216018 L 456.789541 165.892935 L 456.851471 165.973706 L 456.913402 165.892935 L 457.470776 165.327539 L 457.718498 165.489081 L 457.842359 165.327539 L 457.90429 165.40831 L 457.96622 165.489081 L 458.028151 165.40831 L 458.399734 164.923686 L 458.461664 165.004456 L 458.523595 165.085227 L 458.585525 165.004456 L 459.080969 164.519832 L 459.20483 164.681373 L 459.266761 164.600603 L 459.514483 164.439061 L 459.638344 164.600603 L 459.700274 164.519832 L 459.762205 164.439061 L 459.824135 164.519832 L 459.886066 164.600603 L 459.947996 164.519832 L 460.38151 164.115978 L 460.629232 164.27752 L 460.938884 164.035207 L 461.310467 164.35829 L 461.496259 164.115978 L 461.558189 164.196749 L 461.62012 164.27752 L 461.68205 164.196749 L 462.053633 163.873666 L 462.239425 163.954437 L 462.301355 163.873666 L 462.363286 163.954437 L 462.425216 164.035207 L 462.487147 163.954437 L 462.92066 163.550583 L 463.168382 163.712124 L 463.849618 162.985187 L 463.911548 163.065958 L 463.973479 162.985187 L 464.530853 162.419792 L 464.592784 162.500563 L 464.654714 162.419792 L 465.212089 161.854397 L 465.274019 161.935168 L 465.33595 161.854397 L 465.583672 161.692855 L 465.893324 162.096709 L 465.955255 162.015938 L 466.512629 161.450543 L 466.57456 161.531314 L 466.63649 161.450543 L 467.317726 160.723606 L 467.441587 160.885148 L 467.503517 160.804377 L 467.8751 160.481294 L 468.184753 160.723606 L 468.246683 160.642835 L 468.308614 160.723606 L 468.370544 160.804377 L 468.432475 160.723606 L 468.494405 160.642835 L 468.556336 160.723606 L 468.618266 160.804377 L 468.680197 160.723606 L 468.989849 160.481294 L 469.175641 160.562065 L 469.733015 159.996669 L 469.794946 160.07744 L 469.856876 159.996669 L 470.042668 159.754357 L 470.104598 159.835128 L 470.166529 159.915899 L 470.228459 159.835128 L 470.35232 159.673586 L 470.414251 159.754357 L 470.476181 159.835128 L 470.538112 159.754357 L 471.157417 158.94665 L 471.219347 159.02742 L 471.281278 159.108191 L 471.343208 159.02742 L 471.405139 158.94665 L 471.467069 159.02742 L 471.59093 159.188962 L 471.652861 159.108191 L 471.900583 158.785108 L 471.962513 158.865879 L 472.210235 159.02742 L 472.457957 158.865879 L 472.643749 158.94665 L 472.705679 158.865879 L 472.76761 158.94665 L 472.82954 159.02742 L 472.891471 158.94665 L 473.696567 158.058171 L 473.758498 158.138942 L 473.820428 158.058171 L 474.192011 157.735088 L 474.253942 157.815859 L 474.315872 157.735088 L 474.687455 157.412005 L 474.811316 157.573547 L 474.873247 157.492776 L 475.120969 157.169693 L 475.182899 157.250464 L 475.24483 157.331234 L 475.30676 157.250464 L 475.430621 157.088922 L 475.492552 157.169693 L 475.678343 157.412005 L 475.740274 157.331234 L 476.421509 156.604298 L 476.607301 156.685068 L 476.916953 156.442756 L 476.978884 156.523527 L 477.040814 156.442756 L 477.102745 156.361985 L 477.164675 156.442756 L 477.350467 156.523527 L 477.412397 156.442756 L 477.474328 156.523527 L 477.536258 156.604298 L 477.598189 156.523527 L 478.403285 155.635048 L 478.589077 155.715819 L 479.208382 155.069653 L 479.332243 155.231195 L 479.394173 155.150424 L 479.456104 155.069653 L 479.518034 155.150424 L 479.765756 155.473507 L 479.827687 155.392736 L 479.951548 155.231195 L 480.013478 155.311965 L 480.323131 155.554278 L 480.694714 155.231195 L 481.066297 155.554278 L 481.128227 155.473507 L 481.190158 155.554278 L 481.252088 155.635048 L 481.314019 155.554278 L 481.375949 155.473507 L 481.43788 155.554278 L 481.685602 155.715819 L 481.995254 155.473507 L 482.181046 155.554278 L 482.552629 155.231195 L 482.67649 155.392736 L 482.73842 155.311965 L 483.171934 154.908112 L 483.233864 154.988882 L 483.295795 154.908112 L 483.543517 154.74657 L 483.729308 154.827341 L 484.038961 154.423487 L 484.100891 154.504258 L 484.286683 154.585029 L 484.348613 154.504258 L 484.410544 154.585029 L 484.720196 154.827341 L 485.091779 154.504258 L 485.277571 154.585029 L 485.463362 154.504258 L 485.525293 154.585029 L 485.587223 154.504258 L 485.834945 154.342716 L 485.896876 154.423487 L 485.958806 154.342716 L 486.578111 153.69655 L 486.887764 153.938863 L 487.259347 153.61578 L 487.321277 153.69655 L 487.383208 153.61578 L 487.445138 153.535009 L 487.507069 153.61578 L 487.568999 153.69655 L 487.63093 153.61578 L 487.69286 153.535009 L 487.754791 153.61578 L 487.816721 153.69655 L 487.878652 153.61578 L 488.126374 153.454238 L 488.188304 153.535009 L 488.250235 153.454238 L 488.621818 153.131155 L 488.683748 153.211926 L 488.745679 153.131155 L 488.93147 152.888843 L 488.993401 152.969613 L 489.055331 153.050384 L 489.117262 152.969613 L 489.241123 152.808072 L 489.303053 152.888843 L 489.488845 152.969613 L 489.612706 152.808072 L 489.674636 152.888843 L 489.798497 153.050384 L 489.860428 152.969613 L 490.046219 152.888843 L 490.232011 152.969613 L 490.913246 152.242677 L 491.037107 152.404218 L 491.099038 152.323447 L 491.284829 152.242677 L 491.34676 152.323447 L 491.40869 152.242677 L 491.842204 151.838823 L 492.213787 152.161906 L 492.275717 152.081135 L 492.337648 152.161906 L 492.399578 152.242677 L 492.461509 152.161906 L 492.771161 151.919594 L 493.018883 152.081135 L 493.514327 151.596511 L 493.700119 151.677281 L 494.133632 151.273428 L 494.381354 151.434969 L 494.691007 151.192657 L 495.06259 151.51574 L 495.496103 151.111886 L 495.681895 151.192657 L 495.991547 150.950345 L 496.3012 151.192657 L 496.548922 151.031115 L 496.610852 151.111886 L 496.672783 151.031115 L 496.920505 150.869574 L 497.106296 151.111886 L 497.168227 151.031115 L 497.53981 150.708032 L 497.60174 150.788803 L 497.663671 150.708032 L 497.911393 150.546491 L 498.159115 150.708032 L 498.344906 150.627261 L 498.406837 150.708032 L 498.468767 150.627261 L 498.530698 150.546491 L 498.592628 150.627261 L 498.716489 150.788803 L 498.77842 150.708032 L 499.211933 150.304178 L 499.273864 150.384949 L 499.335794 150.304178 L 499.707377 149.981095 L 499.893169 150.061866 L 499.955099 149.981095 L 500.01703 150.061866 L 500.140891 150.223408 L 500.202821 150.142637 L 500.450543 149.981095 L 500.760196 150.223408 L 501.069848 149.981095 L 501.131779 150.061866 L 501.193709 149.981095 L 501.565292 149.658012 L 501.813014 149.819554 L 501.998806 149.738783 L 502.246528 149.900325 L 502.49425 149.738783 L 502.55618 149.819554 L 502.618111 149.738783 L 503.175485 149.173388 L 503.423207 149.334929 L 503.485138 149.254159 L 503.547068 149.334929 L 503.79479 149.496471 L 504.104443 149.254159 L 504.290234 149.496471 L 504.352165 149.4157 L 504.537956 149.334929 L 504.785678 149.496471 L 504.97147 149.4157 L 505.0334 149.496471 L 505.095331 149.4157 L 505.157261 149.334929 L 505.219192 149.4157 L 505.528844 149.658012 L 505.652705 149.496471 L 505.714636 149.577242 L 505.776566 149.658012 L 505.838497 149.577242 L 506.27201 149.011846 L 506.333941 149.092617 L 506.395871 149.173388 L 506.457802 149.092617 L 507.077107 148.446451 L 507.139037 148.527222 L 507.200968 148.446451 L 507.634481 148.042597 L 507.820273 148.123368 L 508.191856 147.800285 L 508.253786 147.881056 L 508.315717 147.800285 L 508.501508 147.719514 L 508.563439 147.800285 L 508.625369 147.719514 L 508.6873 147.638743 L 508.74923 147.719514 L 508.811161 147.800285 L 508.873091 147.719514 L 509.058883 147.638743 L 509.120813 147.719514 L 509.182744 147.638743 L 509.492396 147.396431 L 509.740118 147.557973 L 510.111701 147.23489 L 510.235562 147.396431 L 510.297493 147.31566 L 510.421354 147.154119 L 510.483284 147.23489 L 510.545215 147.31566 L 510.607145 147.23489 L 510.731006 147.073348 L 510.792937 147.154119 L 511.288381 147.638743 L 511.969616 146.750265 L 512.031547 146.831036 L 512.155408 146.992577 L 512.217338 146.911807 L 512.46506 146.750265 L 512.650852 146.831036 L 513.022435 146.507953 L 513.146296 146.669494 L 513.208226 146.588724 L 513.517879 146.346411 L 513.579809 146.427182 L 513.64174 146.346411 L 514.446836 145.457933 L 514.508767 145.538704 L 514.570697 145.457933 L 514.818419 145.296391 L 515.004211 145.377162 L 515.933168 144.327142 L 515.995099 144.407913 L 516.057029 144.327142 L 516.614404 143.761747 L 516.738265 143.923289 L 516.800195 143.842518 L 517.35757 143.277122 L 517.605292 143.438664 L 518.100736 142.954039 L 518.472319 143.277122 L 518.59618 143.115581 L 518.65811 143.196352 L 518.720041 143.277122 L 518.781971 143.196352 L 519.215485 142.792498 L 519.277415 142.873269 L 519.339346 142.792498 L 519.587068 142.469415 L 519.648998 142.550186 L 519.83479 142.630956 L 520.144442 142.388644 L 520.206373 142.469415 L 520.268303 142.388644 L 520.516025 142.227103 L 520.701817 142.469415 L 520.763747 142.388644 L 520.825678 142.307873 L 520.887608 142.388644 L 521.13533 142.550186 L 521.506913 142.227103 L 521.630774 142.388644 L 521.692705 142.307873 L 522.002357 142.065561 L 522.064288 142.146332 L 522.126218 142.065561 L 522.31201 141.98479 L 522.559732 142.146332 L 522.869384 141.90402 L 522.931315 141.98479 L 522.993245 141.90402 L 523.179037 141.661707 L 523.240967 141.742478 L 523.55062 141.98479 L 523.984133 141.580937 L 524.046064 141.661707 L 524.107994 141.580937 L 524.603438 141.096312 L 524.85116 141.257854 L 524.975021 141.096312 L 525.036952 141.177083 L 525.098882 141.257854 L 525.160813 141.177083 L 525.470465 140.93477 L 525.532396 141.015541 L 525.594326 140.93477 L 525.780118 140.692458 L 525.842048 140.773229 L 526.399423 141.338624 L 527.390311 140.207834 L 527.452241 140.288604 L 527.514172 140.207834 L 527.823824 139.965521 L 528.009616 140.207834 L 528.071546 140.127063 L 528.628921 139.561668 L 528.690851 139.642438 L 528.752782 139.561668 L 528.938573 139.480897 L 529.186295 139.642438 L 529.557878 139.319355 L 529.619809 139.400126 L 529.681739 139.319355 L 529.8056 139.157814 L 529.867531 139.238585 L 529.929461 139.319355 L 529.991392 139.238585 L 530.301044 138.996272 L 530.362975 139.077043 L 530.424905 138.996272 L 530.98228 138.430877 L 531.230002 138.592418 L 531.539654 138.350106 L 531.601585 138.430877 L 531.663515 138.350106 L 532.097029 137.946252 L 532.22089 138.107794 L 532.28282 138.027023 L 532.592473 137.784711 L 532.778264 137.865482 L 533.273708 137.380857 L 533.4595 137.461628 L 533.645291 137.380857 L 533.831083 137.623169 L 533.893013 137.542399 L 534.016874 137.380857 L 534.078805 137.461628 L 534.140735 137.542399 L 534.202666 137.461628 L 534.69811 136.815462 L 534.76004 136.896233 L 534.821971 136.977003 L 534.883901 136.896233 L 535.069693 136.815462 L 535.255484 136.896233 L 535.379345 136.734691 L 535.441276 136.815462 L 535.503206 136.896233 L 535.565137 136.815462 L 535.750928 136.57315 L 535.812859 136.65392 L 536.060581 136.815462 L 536.122511 136.734691 L 536.184442 136.815462 L 536.370233 137.057774 L 536.432164 136.977003 L 536.927608 136.492379 L 536.989538 136.57315 L 537.051469 136.492379 L 537.484982 135.926983 L 537.546913 136.007754 L 537.608843 136.088525 L 537.670774 136.007754 L 538.352009 135.280817 L 538.47587 135.442359 L 538.537801 135.361588 L 539.219036 134.634651 L 539.466758 134.796193 L 539.528689 134.715422 L 539.590619 134.796193 L 539.776411 134.876964 L 540.147994 134.392339 L 540.209924 134.47311 L 540.271855 134.553881 L 540.333785 134.47311 L 540.519577 134.230798 L 540.581507 134.311568 L 541.015021 134.715422 L 541.820117 133.826944 L 541.882048 133.907715 L 541.943978 133.826944 L 542.12977 133.746173 L 542.1917 133.826944 L 542.253631 133.746173 L 542.687144 133.342319 L 542.996797 133.584631 L 543.244519 133.42309 L 543.306449 133.503861 L 543.36838 133.42309 L 543.616102 133.261548 L 543.739963 133.42309 L 543.801893 133.342319 L 544.111546 133.100007 L 544.235407 133.261548 L 544.297337 133.180778 L 544.60699 132.776924 L 544.66892 132.857695 L 544.730851 132.938465 L 544.792781 132.857695 L 544.854712 132.776924 L 544.916642 132.857695 L 544.978573 132.938465 L 545.040503 132.857695 L 545.597878 132.292299 L 545.659808 132.37307 L 545.721739 132.292299 L 545.969461 132.130758 L 546.031391 132.211529 L 546.093322 132.130758 L 546.279113 132.049987 L 546.526835 132.211529 L 546.836488 131.807675 L 546.898418 131.888446 L 547.14614 132.049987 L 548.137028 130.919196 L 548.446681 131.161509 L 548.508611 131.080738 L 548.570542 131.161509 L 548.756333 131.24228 L 548.818264 131.161509 L 548.880194 131.24228 L 548.942125 131.32305 L 549.004055 131.24228 L 549.251777 130.919196 L 549.313708 130.999967 L 549.499499 131.080738 L 549.685291 130.999967 L 549.809152 131.161509 L 549.871082 131.080738 L 550.180735 130.838426 L 550.242665 130.919196 L 550.304596 130.838426 L 550.552318 130.676884 L 550.80004 130.838426 L 550.923901 130.676884 L 550.985831 130.757655 L 551.047762 130.838426 L 551.109692 130.757655 L 551.295484 130.676884 L 551.481275 130.757655 L 551.728997 130.596113 L 551.790928 130.676884 L 551.852858 130.596113 L 552.162511 130.353801 L 552.224441 130.434572 L 552.286372 130.353801 L 552.596024 130.111489 L 552.967607 130.434572 L 553.27726 130.19226 L 553.586912 130.434572 L 553.896565 130.19226 L 554.020426 130.353801 L 554.082357 130.27303 L 554.330079 130.111489 L 554.639731 130.515343 L 554.701662 130.434572 L 554.763592 130.353801 L 554.825523 130.434572 L 554.887453 130.515343 L 554.949384 130.434572 L 555.320967 130.111489 L 555.382897 130.19226 L 555.444828 130.111489 L 555.506758 130.030718 L 555.568689 130.111489 L 555.75448 130.19226 L 555.878341 130.030718 L 555.940272 130.111489 L 556.002202 130.19226 L 556.064133 130.111489 L 556.126063 130.030718 L 556.187994 130.111489 L 556.311855 130.27303 L 556.373785 130.19226 L 556.99309 129.546094 L 557.116951 129.707635 L 557.178882 129.626864 L 557.612395 129.223011 L 557.674326 129.303781 L 557.736256 129.223011 L 557.798187 129.14224 L 557.860117 129.223011 L 557.922048 129.303781 L 557.983978 129.223011 L 558.293631 128.980698 L 558.603283 129.223011 L 559.346449 128.415303 L 559.532241 128.496074 L 560.337337 127.607595 L 560.399268 127.688366 L 560.461198 127.607595 L 560.64699 127.526825 L 560.832781 127.607595 L 561.204364 127.284512 L 561.390156 127.365283 L 561.637878 127.0422 L 561.699808 127.122971 L 561.8856 127.203742 L 562.133322 127.0422 L 562.195252 127.122971 L 562.257183 127.0422 L 562.876488 126.396034 L 563.062279 126.476805 L 563.18614 126.315263 L 563.248071 126.396034 L 563.681584 126.799888 L 563.991237 126.557576 L 564.053167 126.638346 L 564.115098 126.557576 L 564.486681 126.234492 L 564.548611 126.315263 L 564.610542 126.234492 L 564.858264 126.072951 L 565.044055 126.153722 L 565.105986 126.072951 L 565.167916 126.153722 L 565.415638 126.315263 L 565.787221 125.99218 L 566.158804 126.315263 L 566.406526 125.99218 L 566.468457 126.072951 L 566.84004 126.396034 L 566.90197 126.315263 L 566.963901 126.396034 L 567.335484 126.719117 L 567.397414 126.638346 L 567.459345 126.719117 L 567.645136 126.799888 L 568.07865 126.396034 L 568.14058 126.476805 L 568.202511 126.396034 L 568.388302 126.315263 L 568.512163 126.476805 L 568.574094 126.396034 L 568.821816 126.072951 L 568.883746 126.153722 L 569.069538 126.396034 L 569.131468 126.315263 L 569.564982 125.911409 L 569.750773 125.99218 L 570.060426 125.588326 L 570.122356 125.669097 L 570.308148 125.911409 L 570.370078 125.830639 L 570.432009 125.749868 L 570.493939 125.830639 L 570.741661 125.99218 L 570.803592 125.911409 L 570.865522 125.99218 L 571.237105 126.315263 L 571.670619 125.911409 L 571.732549 125.99218 L 571.79448 125.911409 L 571.980271 125.669097 L 572.042202 125.749868 L 572.166063 125.911409 L 572.227993 125.830639 L 572.661507 125.426785 L 572.723437 125.507556 L 572.785368 125.426785 L 573.218881 125.022931 L 573.528534 125.265243 L 573.776256 125.103702 L 573.838186 125.184473 L 573.900117 125.103702 L 574.147839 124.94216 L 574.209769 125.022931 L 574.2717 124.94216 L 574.519422 124.780619 L 574.767144 124.94216 L 574.829074 124.86139 L 574.891005 124.94216 L 575.076796 125.022931 L 575.324518 124.699848 L 575.386449 124.780619 L 575.634171 124.94216 L 575.819962 124.699848 L 575.881893 124.780619 L 576.129615 124.94216 L 576.625059 124.457536 L 576.81085 124.538307 L 577.120503 124.295994 L 577.182433 124.376765 L 577.244364 124.295994 L 577.306294 124.215224 L 577.368225 124.295994 L 577.430155 124.376765 L 577.492086 124.295994 L 577.98753 123.81137 L 578.173321 124.053682 L 578.235252 123.972911 L 578.606835 123.649828 L 578.730696 123.81137 L 578.792626 123.730599 L 579.164209 123.245974 L 579.22614 123.326745 L 579.473862 123.488287 L 579.783514 123.245974 L 579.907375 123.407516 L 579.969306 123.326745 L 580.093167 123.165204 L 580.155097 123.245974 L 580.402819 123.407516 L 580.898263 122.922891 L 580.960194 123.003662 L 581.022124 122.922891 L 581.331777 122.519038 L 581.393707 122.599808 L 581.76529 122.922891 L 581.951082 122.680579 L 582.013012 122.76135 L 582.322665 123.003662 L 582.508456 122.922891 L 583.0039 123.407516 L 583.313553 123.165204 L 583.375483 123.245974 L 583.437414 123.165204 L 583.623205 122.922891 L 583.685136 123.003662 L 583.870927 123.245974 L 583.932858 123.165204 L 583.994788 123.084433 L 584.056719 123.165204 L 584.799885 123.972911 L 584.923746 123.81137 L 584.985676 123.892141 L 585.047607 123.972911 L 585.109537 123.892141 L 585.357259 123.569057 L 585.41919 123.649828 L 585.48112 123.730599 L 585.543051 123.649828 L 585.852703 123.407516 L 585.914634 123.488287 L 585.976564 123.407516 L 586.533939 122.842121 L 586.843591 123.084433 L 587.462896 122.276725 L 587.524827 122.357496 L 587.586757 122.438267 L 587.648688 122.357496 L 587.89641 122.034413 L 587.95834 122.115184 L 588.020271 122.195955 L 588.082201 122.115184 L 588.144132 122.034413 L 588.206062 122.115184 L 588.329923 122.276725 L 588.391854 122.195955 L 588.577645 121.953642 L 588.639576 122.034413 L 589.13502 122.519038 L 589.506603 122.195955 L 589.568533 122.276725 L 589.630464 122.195955 L 589.878186 122.034413 L 589.940116 122.115184 L 590.002047 122.034413 L 590.311699 121.792101 L 590.745213 122.195955 L 591.240657 121.71133 L 591.302587 121.792101 L 591.364518 121.71133 L 591.550309 121.630559 L 591.798031 121.792101 L 592.479267 121.065164 L 592.541197 121.145935 L 592.603128 121.065164 L 592.726989 120.903622 L 592.726989 120.903622 " style="fill:none;opacity:0.9;stroke:#9467bd;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_17"> <path clip-path="url(#pf8d0b4ca52)" d="M 85.454261 307.699463 L 85.640053 307.75331 L 86.754802 306.891755 L 86.878663 306.891755 L 87.312176 306.622519 L 87.436037 306.622519 L 87.74569 306.460978 L 87.869551 306.460978 L 88.426925 306.084047 L 88.550786 306.084047 L 88.9843 305.814812 L 89.232022 305.922506 L 89.727466 305.599423 L 89.913257 305.65327 L 91.275728 304.576327 L 91.399589 304.576327 L 91.771172 304.360938 L 91.895033 304.360938 L 92.018894 304.360938 L 92.266616 304.468632 L 92.452408 304.414785 L 92.70013 304.522479 L 93.257504 304.145549 L 93.443296 304.199396 L 93.876809 303.93016 L 94.062601 303.984008 L 94.496114 303.714772 L 94.681906 303.768619 L 95.301211 303.337842 L 95.487002 303.391689 L 95.858585 303.1763 L 96.044377 303.230147 L 97.097195 302.42244 L 97.282987 302.476287 L 97.902292 302.045509 L 98.026153 302.045509 L 99.450554 300.914719 L 99.574415 300.914719 L 100.317581 300.376247 L 100.441442 300.376247 L 100.627234 300.3224 L 100.874956 300.430094 L 101.494261 299.999317 L 101.618122 299.999317 L 101.989705 299.783928 L 102.175496 299.837775 L 102.361288 299.783928 L 102.485149 299.783928 L 103.042523 299.406998 L 103.228315 299.460845 L 103.414106 299.406998 L 103.661828 299.514692 L 103.84762 299.460845 L 104.033411 299.514692 L 104.219203 299.460845 L 104.343064 299.460845 L 105.395882 298.653138 L 105.581674 298.706985 L 105.767465 298.653138 L 105.891326 298.653138 L 106.077118 298.59929 L 106.38677 298.760832 L 106.758353 298.545443 L 106.944145 298.59929 L 107.811172 297.953124 L 107.935033 297.953124 L 108.368546 297.683889 L 108.678199 297.84543 L 108.86399 297.791583 L 109.049782 297.84543 L 110.164531 296.983875 L 110.288392 296.983875 L 110.845766 296.606945 L 111.031558 296.660792 L 112.208237 295.74539 L 112.332098 295.74539 L 112.51789 295.691543 L 112.765612 295.799238 L 112.951403 295.74539 L 113.075264 295.74539 L 113.446847 295.530002 L 113.570708 295.530002 L 113.942291 295.314613 L 114.190013 295.422307 L 114.623527 295.153071 L 114.747388 295.153071 L 115.118971 294.937683 L 115.242832 294.937683 L 115.490554 294.829988 L 115.614415 294.829988 L 115.924067 294.668447 L 116.23372 294.829988 L 116.729164 294.506905 L 116.853025 294.506905 L 117.658121 293.914586 L 117.781982 293.914586 L 118.153565 293.699198 L 118.339357 293.753045 L 118.525148 293.699198 L 118.834801 293.860739 L 119.887619 293.053032 L 120.073411 293.106879 L 120.259202 293.053032 L 120.444994 293.106879 L 121.435882 292.353018 L 121.683604 292.460713 L 122.302909 292.029935 L 122.42677 292.029935 L 122.736422 291.868394 L 122.860283 291.868394 L 123.417658 291.491464 L 123.541519 291.491464 L 123.851171 291.329922 L 124.098893 291.437617 L 124.284685 291.383769 L 124.408546 291.383769 L 125.027851 290.952992 L 125.151712 290.952992 L 125.647156 290.629909 L 125.956809 290.79145 L 126.514183 290.41452 L 126.638044 290.41452 L 127.009627 290.199132 L 127.195419 290.252979 L 127.38121 290.199132 L 127.690863 290.360673 L 127.938585 290.252979 L 128.062446 290.252979 L 128.495959 289.983743 L 128.61982 289.983743 L 129.115264 289.66066 L 129.239125 289.66066 L 129.734569 289.337577 L 129.920361 289.391424 L 130.353874 289.122188 L 130.477735 289.122188 L 130.911249 288.852952 L 131.03511 288.852952 L 131.406693 288.637564 L 131.530554 288.637564 L 131.778276 288.529869 L 132.025998 288.637564 L 132.33565 288.476022 L 132.521442 288.529869 L 133.016886 288.206786 L 133.202677 288.260633 L 133.698121 287.93755 L 133.945843 288.045245 L 134.441287 287.722162 L 134.565148 287.722162 L 135.370245 287.129843 L 135.494106 287.129843 L 135.803758 286.968301 L 135.927619 286.968301 L 136.05148 286.968301 L 136.175341 286.968301 L 136.856577 286.483677 L 136.980438 286.483677 L 137.29009 286.322135 L 137.413951 286.322135 L 137.785534 286.106747 L 138.033256 286.214441 L 138.46677 285.945205 L 138.590631 285.945205 L 138.776422 285.891358 L 138.962214 285.945205 L 139.271866 285.783663 L 139.519588 285.891358 L 140.015032 285.568275 L 140.262754 285.675969 L 140.510476 285.568275 L 140.634337 285.568275 L 141.00592 285.352886 L 141.129781 285.352886 L 141.377503 285.245192 L 141.501364 285.245192 L 141.934878 284.975956 L 142.058739 284.975956 L 142.306461 284.868262 L 142.492252 284.922109 L 142.863835 284.70672 L 143.049627 284.760567 L 143.297349 284.652873 L 143.48314 284.70672 L 143.792793 284.545179 L 143.978584 284.599026 L 144.226306 284.491331 L 144.474028 284.599026 L 144.72175 284.491331 L 144.845611 284.491331 L 144.969472 284.491331 L 145.155264 284.545179 L 145.526847 284.32979 L 145.774569 284.437484 L 146.146152 284.222095 L 146.331943 284.275943 L 146.579665 284.168248 L 146.889318 284.32979 L 147.384762 284.006707 L 147.508623 284.006707 L 147.756345 283.899012 L 147.942136 283.95286 L 148.499511 283.575929 L 148.685302 283.629777 L 148.809163 283.629777 L 148.933024 283.629777 L 149.056885 283.629777 L 149.242677 283.683624 L 149.861982 283.252846 L 149.985843 283.252846 L 150.357426 283.037458 L 150.481287 283.037458 L 150.976731 282.714375 L 151.162522 282.768222 L 151.905688 282.22975 L 152.029549 282.22975 L 152.339202 282.068209 L 152.524993 282.122056 L 152.710785 282.068209 L 153.020437 282.22975 L 153.144298 282.22975 L 153.33009 282.283597 L 153.701673 282.068209 L 153.825534 282.068209 L 154.320978 281.745126 L 154.692561 281.960514 L 155.126074 281.691278 L 155.249935 281.691278 L 155.559588 281.529737 L 155.745379 281.583584 L 155.931171 281.529737 L 156.055032 281.529737 L 156.612406 281.152807 L 156.736267 281.152807 L 157.04592 280.991265 L 157.231711 281.045112 L 157.603294 280.829724 L 157.789086 280.883571 L 158.160669 280.668182 L 158.28453 280.668182 L 158.903835 280.237405 L 159.027696 280.237405 L 159.647001 279.806627 L 159.770862 279.806627 L 160.947541 278.891225 L 161.133333 278.945073 L 161.381055 278.837378 L 161.628777 278.945073 L 161.752638 278.945073 L 161.876499 278.945073 L 162.248082 278.729684 L 162.433873 278.783531 L 163.053178 278.352754 L 163.23897 278.406601 L 163.548622 278.245059 L 163.858275 278.406601 L 164.291788 278.137365 L 164.415649 278.137365 L 164.911093 277.814282 L 165.034954 277.814282 L 165.344607 277.65274 L 165.468468 277.65274 L 165.71619 277.545046 L 165.963912 277.65274 L 166.149703 277.598893 L 166.397425 277.706588 L 166.707078 277.545046 L 166.9548 277.65274 L 167.512174 277.27581 L 167.636035 277.27581 L 168.25534 276.845033 L 168.379201 276.845033 L 169.246228 276.198867 L 169.43202 276.252714 L 169.555881 276.252714 L 169.741672 276.306561 L 170.918352 275.391159 L 171.104143 275.445006 L 171.351865 275.337312 L 171.475726 275.337312 L 171.90924 275.068076 L 172.033101 275.068076 L 172.466614 274.79884 L 172.590475 274.79884 L 173.023989 274.529605 L 173.14785 274.529605 L 173.457502 274.368063 L 173.643294 274.42191 L 173.829085 274.368063 L 174.076807 274.475757 L 174.200668 274.475757 L 174.324529 274.475757 L 174.572251 274.368063 L 174.696112 274.368063 L 175.253487 273.991133 L 175.377348 273.991133 L 175.687 273.829591 L 175.810861 273.829591 L 175.934722 273.829591 L 176.058583 273.829591 L 176.677888 273.398814 L 176.86368 273.452661 L 176.987541 273.452661 L 177.111402 273.452661 L 177.359124 273.344967 L 177.544915 273.398814 L 177.668776 273.398814 L 177.978429 273.560355 L 178.845456 272.914189 L 179.093178 273.021884 L 179.3409 272.914189 L 179.588622 273.021884 L 179.960205 272.806495 L 180.145996 272.860342 L 180.269857 272.860342 L 180.517579 272.968037 L 180.827232 272.806495 L 180.951093 272.806495 L 181.508467 272.429565 L 181.632328 272.429565 L 181.941981 272.268023 L 182.127772 272.32187 L 182.375494 272.214176 L 182.685147 272.375718 L 183.11866 272.106482 L 183.304452 272.160329 L 183.552174 272.052635 L 183.676035 272.052635 L 184.233409 271.675704 L 184.481131 271.783399 L 184.852714 271.56801 L 184.976575 271.56801 L 185.657811 271.083385 L 185.843602 271.137233 L 186.524838 270.652608 L 186.648699 270.652608 L 187.268004 270.221831 L 187.391865 270.221831 L 188.382753 269.46797 L 188.630475 269.575665 L 189.063988 269.306429 L 189.187849 269.306429 L 189.497502 269.144887 L 189.621363 269.144887 L 190.116807 268.821804 L 190.240668 268.821804 L 190.736112 268.498721 L 190.859973 268.498721 L 192.96561 266.775612 L 193.151401 266.829459 L 193.522984 266.61407 L 193.708776 266.667917 L 194.390011 266.183293 L 194.575803 266.23714 L 194.761594 266.183293 L 195.071247 266.344834 L 195.690552 265.914057 L 195.876343 265.967904 L 196.124065 265.86021 L 196.247926 265.86021 L 196.68144 265.590974 L 196.867231 265.644821 L 196.991092 265.644821 L 197.176884 265.698668 L 197.610397 265.429432 L 197.734258 265.429432 L 197.98198 265.321738 L 198.105841 265.321738 L 198.601285 264.998655 L 198.725146 264.998655 L 199.22059 264.675572 L 199.530243 264.837114 L 200.583061 264.029406 L 200.706922 264.029406 L 201.264297 263.652476 L 201.388158 263.652476 L 202.193254 263.060157 L 202.502907 263.221698 L 203.184142 262.737074 L 203.493795 262.898615 L 203.679586 262.844768 L 203.865378 262.898615 L 204.17503 262.737074 L 204.360822 262.790921 L 204.670474 262.629379 L 204.918196 262.737074 L 205.289779 262.521685 L 205.537501 262.629379 L 205.661362 262.629379 L 206.218737 263.00631 L 206.528389 262.844768 L 206.65225 262.844768 L 206.961903 262.683227 L 207.209625 262.790921 L 207.643138 262.521685 L 207.766999 262.521685 L 208.200513 262.252449 L 208.324374 262.252449 L 208.572096 262.144755 L 208.819818 262.252449 L 209.253331 261.983213 L 209.624914 262.198602 L 209.748775 262.198602 L 209.872636 262.198602 L 210.182289 262.037061 L 210.30615 262.037061 L 210.987385 261.552436 L 211.111246 261.552436 L 211.358968 261.444742 L 211.730551 261.66013 L 212.473717 261.121659 L 212.597578 261.121659 L 212.721439 261.121659 L 212.969161 261.229353 L 213.774258 260.637034 L 214.02198 260.744728 L 214.145841 260.744728 L 214.269702 260.744728 L 214.579354 260.583187 L 214.703215 260.583187 L 214.889007 260.52934 L 215.012868 260.52934 L 215.198659 260.475493 L 215.32252 260.475493 L 216.003756 259.990868 L 216.127617 259.990868 L 216.437269 259.829327 L 216.56113 259.829327 L 216.870783 259.667785 L 216.994644 259.667785 L 217.242366 259.560091 L 217.366227 259.560091 L 217.861671 259.237008 L 217.985532 259.237008 L 218.604837 258.80623 L 218.97642 259.021619 L 219.967308 258.267759 L 220.153099 258.321606 L 220.400821 258.213911 L 220.586613 258.267759 L 220.896265 258.106217 L 221.020126 258.106217 L 221.763292 257.567745 L 221.887153 257.567745 L 222.011014 257.567745 L 222.134875 257.567745 L 222.816111 257.083121 L 223.187694 257.298509 L 223.435416 257.190815 L 223.559277 257.190815 L 223.868929 257.029274 L 224.054721 257.083121 L 224.240512 257.029274 L 224.364373 257.029274 L 224.735956 256.813885 L 224.921748 256.867732 L 225.045609 256.867732 L 225.16947 256.867732 L 225.602983 256.598496 L 225.726844 256.598496 L 226.40808 256.113872 L 226.531941 256.113872 L 227.337037 255.521553 L 227.70862 255.736941 L 227.956342 255.629247 L 228.080203 255.629247 L 228.513717 255.360011 L 228.699508 255.413858 L 229.256883 255.036928 L 229.380744 255.036928 L 229.504605 255.036928 L 229.690396 255.090775 L 230.18584 254.767692 L 230.309701 254.767692 L 230.619354 254.606151 L 230.867076 254.713845 L 231.36252 254.390762 L 231.548311 254.444609 L 232.105686 254.067679 L 232.353408 254.175373 L 232.66306 254.013832 L 232.848852 254.067679 L 233.282365 253.798443 L 233.406226 253.798443 L 233.963601 253.421513 L 234.211323 253.529207 L 234.520975 253.367666 L 234.768697 253.47536 L 234.954489 253.421513 L 235.07835 253.421513 L 235.264141 253.367666 L 235.449933 253.421513 L 235.821516 253.206124 L 236.007307 253.259972 L 236.193099 253.206124 L 236.440821 253.313819 L 236.998195 252.936888 L 237.122056 252.936888 L 237.431709 252.775347 L 237.55557 252.775347 L 237.865222 252.613805 L 237.989083 252.613805 L 238.112944 252.613805 L 238.236805 252.613805 L 238.422597 252.559958 L 238.670319 252.667653 L 238.85611 252.613805 L 239.103832 252.7215 L 239.289624 252.667653 L 239.413485 252.667653 L 240.03279 252.236875 L 240.156651 252.236875 L 240.280512 252.236875 L 240.466303 252.290722 L 241.33333 251.644556 L 241.519122 251.698404 L 242.757732 250.729154 L 242.881593 250.729154 L 243.253176 250.513766 L 243.500898 250.62146 L 243.624759 250.62146 L 243.74862 250.62146 L 243.996342 250.513766 L 244.120203 250.513766 L 245.234952 249.652211 L 245.358813 249.652211 L 245.854257 249.329128 L 246.040048 249.382975 L 246.597423 249.006045 L 246.721284 249.006045 L 246.907075 248.952198 L 247.030936 248.952198 L 247.650241 248.52142 L 247.836033 248.575268 L 248.269546 248.306032 L 248.393407 248.306032 L 248.70306 248.14449 L 248.888851 248.198337 L 249.570087 247.713713 L 249.817809 247.821407 L 250.065531 247.713713 L 250.313253 247.821407 L 250.622905 247.659866 L 250.746766 247.659866 L 250.932558 247.606018 L 251.056419 247.606018 L 251.861515 247.0137 L 252.109237 247.121394 L 252.41889 246.959852 L 252.542751 246.959852 L 252.728542 246.906005 L 252.914334 246.959852 L 253.223986 246.798311 L 253.347847 246.798311 L 253.71943 246.582922 L 253.843291 246.582922 L 254.648388 245.990603 L 254.772249 245.990603 L 255.205762 245.721367 L 255.391554 245.775215 L 255.948928 245.398284 L 256.072789 245.398284 L 256.506303 245.129049 L 256.630164 245.129049 L 256.939816 244.967507 L 257.187538 245.075201 L 257.497191 244.91366 L 257.682982 244.967507 L 257.868774 244.91366 L 257.992635 244.91366 L 258.67387 244.429035 L 258.921592 244.53673 L 259.293175 244.321341 L 259.417036 244.321341 L 259.664758 244.213647 L 259.788619 244.213647 L 260.098272 244.052105 L 260.222133 244.052105 L 260.469855 243.944411 L 260.593716 243.944411 L 260.903368 243.782869 L 261.027229 243.782869 L 261.15109 243.782869 L 261.274951 243.782869 L 261.460743 243.729022 L 261.584604 243.729022 L 262.141978 243.352092 L 262.265839 243.352092 L 262.637422 243.136703 L 262.761283 243.136703 L 262.885144 243.136703 L 263.132866 243.244398 L 263.62831 242.921314 L 263.937963 243.082856 L 264.185685 242.975162 L 264.309546 242.975162 L 264.990781 242.490537 L 265.238503 242.598231 L 265.486225 242.490537 L 265.733947 242.598231 L 266.0436 242.43669 L 266.167461 242.43669 L 267.158349 241.68283 L 267.34414 241.736677 L 267.653793 241.575135 L 267.777654 241.575135 L 268.149237 241.359746 L 268.396959 241.467441 L 268.706612 241.305899 L 268.830473 241.305899 L 269.202056 241.090511 L 269.325917 241.090511 L 269.635569 240.928969 L 269.75943 240.928969 L 270.007152 240.821275 L 270.192944 240.875122 L 270.93611 240.33665 L 271.121901 240.390497 L 271.369623 240.282803 L 271.679276 240.444345 L 272.050859 240.228956 L 272.360511 240.390497 L 272.979816 239.95972 L 273.103677 239.95972 L 273.289469 239.905873 L 273.47526 239.95972 L 273.846843 239.744331 L 274.156496 239.905873 L 274.528079 239.690484 L 274.71387 239.744331 L 275.518967 239.152012 L 275.642828 239.152012 L 276.076341 238.882777 L 276.262133 238.936624 L 276.757577 238.613541 L 276.943368 238.667388 L 277.12916 238.613541 L 277.253021 238.613541 L 277.562673 238.451999 L 277.686534 238.451999 L 278.243909 238.075069 L 278.36777 238.075069 L 279.110936 237.536597 L 279.296727 237.590444 L 279.420588 237.590444 L 279.544449 237.590444 L 279.730241 237.536597 L 279.854102 237.536597 L 280.349546 237.213514 L 280.535337 237.267361 L 280.84499 237.10582 L 280.968851 237.10582 L 281.216573 236.998126 L 281.464295 237.10582 L 281.650086 237.051973 L 281.835878 237.10582 L 282.14553 236.944278 L 282.393252 237.051973 L 282.702905 236.890431 L 282.826766 236.890431 L 283.260279 236.621195 L 283.38414 236.621195 L 283.569932 236.567348 L 283.755723 236.621195 L 284.375028 236.190418 L 284.498889 236.190418 L 285.427847 235.490405 L 285.551708 235.490405 L 286.109082 235.113475 L 286.294874 235.167322 L 286.480665 235.113475 L 286.728387 235.221169 L 286.914179 235.167322 L 287.223831 235.328863 L 287.657345 235.059627 L 287.843136 235.113475 L 288.214719 234.898086 L 288.462441 235.00578 L 288.895955 234.736544 L 289.019816 234.736544 L 289.143677 234.736544 L 289.453329 234.898086 L 289.762982 234.736544 L 289.948773 234.790391 L 290.382287 234.521156 L 290.568078 234.575003 L 290.939661 234.359614 L 291.063522 234.359614 L 291.187383 234.359614 L 291.311244 234.359614 L 291.620897 234.198073 L 291.930549 234.359614 L 292.487924 233.982684 L 292.611785 233.982684 L 292.797576 233.928837 L 292.921437 233.928837 L 293.045298 233.928837 L 293.169159 233.928837 L 293.912325 233.390365 L 294.036186 233.390365 L 294.593561 233.013435 L 294.717422 233.013435 L 295.336727 232.582657 L 295.522518 232.636505 L 295.77024 232.52881 L 295.894101 232.52881 L 296.327615 232.259574 L 296.575337 232.367269 L 296.761128 232.313422 L 296.94692 232.367269 L 297.132711 232.313422 L 297.380433 232.421116 L 297.999738 231.990339 L 298.309391 232.15188 L 298.619043 231.990339 L 298.742904 231.990339 L 298.990626 231.882644 L 299.114487 231.882644 L 299.48607 231.667256 L 299.609931 231.667256 L 300.353097 231.128784 L 300.476958 231.128784 L 301.034333 230.751854 L 301.158194 230.751854 L 301.839429 230.267229 L 301.96329 230.267229 L 302.520665 229.890299 L 302.706456 229.944146 L 303.13997 229.67491 L 303.325761 229.728757 L 303.573483 229.621063 L 303.821205 229.728757 L 304.068927 229.621063 L 304.192788 229.621063 L 304.626302 229.351827 L 304.750163 229.351827 L 305.369468 228.92105 L 305.67912 229.082591 L 306.050703 228.867203 L 306.174564 228.867203 L 306.360356 228.813355 L 306.484217 228.813355 L 306.670008 228.759508 L 306.8558 228.813355 L 307.103522 228.705661 L 307.227383 228.705661 L 307.722827 228.382578 L 307.908618 228.436425 L 308.218271 228.274884 L 308.342132 228.274884 L 308.527923 228.221036 L 308.775645 228.328731 L 309.209159 228.059495 L 309.39495 228.113342 L 309.704603 227.951801 L 309.828464 227.951801 L 310.200047 227.736412 L 310.323908 227.736412 L 311.067074 227.19794 L 311.190935 227.19794 L 311.624448 226.928704 L 311.81024 226.982552 L 312.367614 226.605621 L 312.615336 226.713316 L 312.739197 226.713316 L 312.863058 226.713316 L 313.420433 226.336385 L 313.606224 226.390233 L 313.792016 226.336385 L 313.977807 226.390233 L 315.773792 224.936359 L 315.897653 224.936359 L 316.455027 224.559429 L 316.578888 224.559429 L 317.260124 224.074804 L 317.445915 224.128651 L 317.879429 223.859416 L 318.00329 223.859416 L 318.312942 223.697874 L 318.498734 223.751721 L 319.056108 223.374791 L 319.179969 223.374791 L 319.427691 223.267097 L 319.551552 223.267097 L 319.923135 223.051708 L 320.046996 223.051708 L 320.48051 222.782472 L 320.666301 222.836319 L 320.975954 222.674778 L 321.161745 222.728625 L 321.533328 222.513236 L 321.657189 222.513236 L 322.090703 222.244 L 322.276494 222.297848 L 322.710008 222.028612 L 322.833869 222.028612 L 323.700896 221.382446 L 323.948618 221.49014 L 324.072479 221.49014 L 324.25827 221.543987 L 324.382131 221.543987 L 324.567923 221.597834 L 324.753714 221.543987 L 324.939506 221.597834 L 325.187228 221.49014 L 325.311089 221.49014 L 325.868463 221.11321 L 325.992324 221.11321 L 326.178116 221.059363 L 326.549699 221.274751 L 327.107073 220.897821 L 327.416726 221.059363 L 327.540587 221.059363 L 327.726378 221.11321 L 328.283753 220.73628 L 328.407614 220.73628 L 328.779197 220.520891 L 328.903058 220.520891 L 330.38939 219.336253 L 330.513251 219.336253 L 330.884834 219.120864 L 331.070625 219.174712 L 331.194486 219.174712 L 331.318347 219.174712 L 331.504139 219.120864 L 331.68993 219.174712 L 331.999583 219.01317 L 332.123444 219.01317 L 332.618888 218.690087 L 332.804679 218.743934 L 333.052401 218.63624 L 333.176262 218.63624 L 333.485915 218.474698 L 333.795567 218.63624 L 334.352942 218.25931 L 334.476803 218.25931 L 335.034177 217.882379 L 335.158038 217.882379 L 335.591552 217.613144 L 335.715413 217.613144 L 337.077884 216.5362 L 337.325606 216.643894 L 337.449467 216.643894 L 337.573328 216.643894 L 338.254563 216.15927 L 338.440355 216.213117 L 338.564216 216.213117 L 338.750007 216.266964 L 339.05966 216.105423 L 339.183521 216.105423 L 339.431243 215.997728 L 339.740895 216.15927 L 340.607922 215.513104 L 340.731783 215.513104 L 341.103366 215.297715 L 341.227227 215.297715 L 341.970393 214.759243 L 342.094254 214.759243 L 342.218115 214.759243 L 342.341976 214.759243 L 342.527768 214.705396 L 342.713559 214.759243 L 342.961281 214.651549 L 343.147073 214.705396 L 343.270934 214.705396 L 343.456725 214.759243 L 343.766378 214.597702 L 344.0141 214.705396 L 344.323752 214.543855 L 344.509544 214.597702 L 345.004988 214.274619 L 345.25271 214.382313 L 346.49132 213.413064 L 346.615181 213.413064 L 347.110625 213.089981 L 347.358347 213.197675 L 347.606069 213.089981 L 347.72993 213.089981 L 348.225374 212.766898 L 348.411165 212.820745 L 349.092401 212.336121 L 349.340123 212.443815 L 349.525914 212.389968 L 349.649775 212.389968 L 350.578733 211.689955 L 350.764524 211.743802 L 351.631551 211.097636 L 351.879273 211.20533 L 352.188926 211.043789 L 352.312787 211.043789 L 352.560509 210.936094 L 352.68437 210.936094 L 353.117883 210.666858 L 353.241744 210.666858 L 353.737188 210.343775 L 353.98491 210.45147 L 354.418424 210.182234 L 354.542285 210.182234 L 354.851937 210.020692 L 355.22352 210.236081 L 355.471242 210.128387 L 355.595103 210.128387 L 356.338269 209.589915 L 356.46213 209.589915 L 356.957574 209.266832 L 357.081435 209.266832 L 357.514949 208.997596 L 357.762671 209.10529 L 358.505837 208.566819 L 358.629698 208.566819 L 359.001281 208.35143 L 359.125142 208.35143 L 359.806377 207.866805 L 360.054099 207.9745 L 360.239891 207.920653 L 360.487613 208.028347 L 360.859196 207.812958 L 361.044987 207.866805 L 361.540431 207.543722 L 361.726223 207.59757 L 362.035875 207.436028 L 362.283597 207.543722 L 362.65518 207.328334 L 362.902902 207.436028 L 363.212555 207.274487 L 363.336416 207.274487 L 363.707999 207.059098 L 363.83186 207.059098 L 364.079582 206.951404 L 364.265373 207.005251 L 364.884678 206.574473 L 365.008539 206.574473 L 365.627844 206.143696 L 365.813636 206.197543 L 366.247149 205.928307 L 366.37101 205.928307 L 366.990315 205.49753 L 367.114176 205.49753 L 367.299968 205.443683 L 367.423829 205.443683 L 367.54769 205.443683 L 367.671551 205.443683 L 367.795412 205.443683 L 367.919273 205.443683 L 368.105064 205.389836 L 368.290856 205.443683 L 368.662439 205.228294 L 368.7863 205.228294 L 368.972091 205.174447 L 369.157883 205.228294 L 369.715257 204.851364 L 369.901049 204.905211 L 370.148771 204.797517 L 370.396493 204.905211 L 371.32545 204.205198 L 371.511242 204.259045 L 371.697033 204.205198 L 371.944755 204.312892 L 372.068616 204.312892 L 372.316338 204.420586 L 372.625991 204.259045 L 372.811782 204.312892 L 373.369157 203.935962 L 373.616879 204.043656 L 374.050392 203.77442 L 374.174253 203.77442 L 374.917419 203.235949 L 375.04128 203.235949 L 375.289002 203.128254 L 375.412863 203.128254 L 375.598655 203.074407 L 375.722516 203.074407 L 376.21796 202.751324 L 376.341821 202.751324 L 377.394639 201.943616 L 377.580431 201.997464 L 378.013944 201.728228 L 378.137805 201.728228 L 378.385527 201.620533 L 378.69518 201.782075 L 378.942902 201.674381 L 379.066763 201.674381 L 379.376415 201.512839 L 379.562207 201.566686 L 379.809929 201.458992 L 379.99572 201.512839 L 380.924678 200.812826 L 381.048539 200.812826 L 381.791705 200.274354 L 381.977496 200.328201 L 382.658732 199.843577 L 382.844523 199.897424 L 383.216106 199.682035 L 383.339967 199.682035 L 384.145064 199.089716 L 384.268925 199.089716 L 384.702438 198.820481 L 384.826299 198.820481 L 385.197882 198.605092 L 385.321743 198.605092 L 385.693326 198.389703 L 385.879118 198.44355 L 386.12684 198.335856 L 386.312631 198.389703 L 386.808075 198.06662 L 386.931936 198.06662 L 387.303519 197.851231 L 387.551241 197.958926 L 388.046685 197.635843 L 388.170546 197.635843 L 388.418268 197.528148 L 388.542129 197.528148 L 388.851782 197.366607 L 389.037573 197.420454 L 389.533017 197.097371 L 389.656878 197.097371 L 389.9046 196.989677 L 390.028461 196.989677 L 391.205141 196.074275 L 391.329002 196.074275 L 391.824446 195.751192 L 392.010237 195.805039 L 392.31989 195.643497 L 392.443751 195.643497 L 393.372708 194.943484 L 393.496569 194.943484 L 393.806222 194.781943 L 393.930083 194.781943 L 394.239735 194.620401 L 394.363596 194.620401 L 394.611318 194.512707 L 394.735179 194.512707 L 395.230623 194.189624 L 395.354484 194.189624 L 395.478345 194.189624 L 395.602206 194.189624 L 396.03572 193.920388 L 396.159581 193.920388 L 396.345372 193.866541 L 396.655025 194.028082 L 396.840816 193.974235 L 397.088538 194.081929 L 397.33626 193.974235 L 397.460121 193.974235 L 398.51294 193.166527 L 398.698731 193.220375 L 398.946453 193.11268 L 399.070314 193.11268 L 399.256106 193.058833 L 399.379967 193.058833 L 399.81348 192.789597 L 399.999272 192.843444 L 400.618577 192.412667 L 400.742438 192.412667 L 401.547534 191.820348 L 401.795256 191.928042 L 402.414561 191.497265 L 402.662283 191.604959 L 403.033866 191.389571 L 403.343519 191.551112 L 403.46738 191.551112 L 403.591241 191.551112 L 404.272476 191.066488 L 404.582129 191.228029 L 405.696878 190.366474 L 405.820739 190.366474 L 406.130391 190.204933 L 406.316183 190.25878 L 406.501974 190.204933 L 406.749696 190.312627 L 406.873557 190.312627 L 407.121279 190.420322 L 407.492862 190.204933 L 407.864445 190.420322 L 408.174098 190.25878 L 408.42182 190.366474 L 408.979194 189.989544 L 409.103055 189.989544 L 409.474638 189.774156 L 409.598499 189.774156 L 409.72236 189.774156 L 409.846221 189.774156 L 410.279735 189.50492 L 410.403596 189.50492 L 410.527457 189.50492 L 410.713249 189.558767 L 411.518345 188.966448 L 411.766067 189.074142 L 412.07572 188.912601 L 412.261511 188.966448 L 412.509233 188.858754 L 412.633094 188.858754 L 413.190469 188.481823 L 413.37626 188.535671 L 413.747843 188.320282 L 413.871704 188.320282 L 414.243287 188.104893 L 414.55294 188.266435 L 414.862592 188.104893 L 414.986453 188.104893 L 415.358036 187.889505 L 415.605758 187.997199 L 415.729619 187.997199 L 415.915411 188.051046 L 416.039272 188.051046 L 416.163133 188.051046 L 416.968229 187.458727 L 417.09209 187.458727 L 417.277882 187.40488 L 417.401743 187.40488 L 417.711395 187.243339 L 417.835256 187.243339 L 418.082978 187.135644 L 418.206839 187.135644 L 418.3307 187.135644 L 418.516492 187.189491 L 418.764214 187.081797 L 418.888075 187.081797 L 419.817032 186.381784 L 419.940893 186.381784 L 420.436337 186.058701 L 420.622129 186.112548 L 421.117573 185.789465 L 421.303364 185.843312 L 421.674947 185.627923 L 421.798808 185.627923 L 422.108461 185.466382 L 422.232322 185.466382 L 422.727766 185.143299 L 422.851627 185.143299 L 423.532862 184.658674 L 423.656723 184.658674 L 424.399889 184.120203 L 424.52375 184.120203 L 424.709542 184.066355 L 424.833403 184.066355 L 425.019194 184.012508 L 425.328847 184.17405 L 425.514638 184.120203 L 425.70043 184.17405 L 426.133943 183.904814 L 426.319735 183.958661 L 426.753248 183.689425 L 426.877109 183.689425 L 427.310623 183.420189 L 427.620275 183.581731 L 428.425372 182.989412 L 428.549233 182.989412 L 428.982746 182.720176 L 429.106607 182.720176 L 429.41626 182.558635 L 429.540121 182.558635 L 430.035565 182.235552 L 430.221356 182.289399 L 431.088383 181.643233 L 431.212244 181.643233 L 431.398036 181.589385 L 431.707688 181.750927 L 431.89348 181.69708 L 432.017341 181.69708 L 432.636646 181.266302 L 432.822437 181.32015 L 433.008229 181.266302 L 433.19402 181.32015 L 433.441742 181.212455 L 433.565603 181.212455 L 433.689464 181.212455 L 433.937186 181.32015 L 434.246839 181.158608 L 434.43263 181.212455 L 434.556491 181.212455 L 434.680352 181.212455 L 434.866144 181.158608 L 435.361588 181.481691 L 435.795101 181.212455 L 435.918962 181.212455 L 436.166684 181.104761 L 436.290545 181.104761 L 436.538267 180.997067 L 436.90985 181.212455 L 437.467225 180.835525 L 437.591086 180.835525 L 438.024599 180.566289 L 438.14846 180.566289 L 438.396182 180.458595 L 438.520043 180.458595 L 438.767765 180.3509 L 439.015487 180.458595 L 439.510931 180.135512 L 439.820584 180.297053 L 440.316028 179.97397 L 440.501819 180.027817 L 440.687611 179.97397 L 440.811472 179.97397 L 441.430777 179.543193 L 441.616568 179.59704 L 441.86429 179.489346 L 441.988151 179.489346 L 442.483595 179.166263 L 442.731317 179.273957 L 442.979039 179.166263 L 443.164831 179.22011 L 443.846066 178.735485 L 443.969927 178.735485 L 444.34151 178.520097 L 444.527302 178.573944 L 445.51819 177.820083 L 445.642051 177.820083 L 445.827842 177.766236 L 445.951703 177.766236 L 446.571008 177.335459 L 446.694869 177.335459 L 447.314174 176.904681 L 447.438035 176.904681 L 448.366993 176.204668 L 448.552784 176.258515 L 449.23402 175.773891 L 449.357881 175.773891 L 449.543672 175.720044 L 449.791394 175.827738 L 450.101047 175.666197 L 450.286838 175.720044 L 450.596491 175.558502 L 450.782282 175.612349 L 451.215796 175.343113 L 451.339657 175.343113 L 451.835101 175.02003 L 451.958962 175.02003 L 452.330545 174.804642 L 452.516336 174.858489 L 452.94985 174.589253 L 453.073711 174.589253 L 453.569155 174.26617 L 453.754946 174.320017 L 454.312321 173.943087 L 454.436182 173.943087 L 454.931626 173.620004 L 455.055487 173.620004 L 455.42707 173.404615 L 455.550931 173.404615 L 455.736722 173.350768 L 455.860583 173.350768 L 456.046375 173.296921 L 456.356027 173.458462 L 457.099193 172.919991 L 457.408846 173.081532 L 457.780429 172.866144 L 457.90429 172.866144 L 458.709386 172.273825 L 458.833247 172.273825 L 459.080969 172.16613 L 459.266761 172.219977 L 460.195718 171.519964 L 460.319579 171.519964 L 461.496259 170.604562 L 461.62012 170.604562 L 462.487147 169.958396 L 462.92066 170.227632 L 463.168382 170.119938 L 463.292243 170.119938 L 464.035409 169.581466 L 464.283131 169.68916 L 464.840506 169.31223 L 464.964367 169.31223 L 465.893324 168.612217 L 466.141046 168.719911 L 466.450699 168.55837 L 466.57456 168.55837 L 466.760351 168.504523 L 467.008073 168.612217 L 467.255795 168.504523 L 467.503517 168.612217 L 467.627378 168.612217 L 467.8751 168.719911 L 468.122822 168.612217 L 468.308614 168.666064 L 468.989849 168.18144 L 469.175641 168.235287 L 469.485293 168.073745 L 469.671085 168.127592 L 470.042668 167.912204 L 470.166529 167.912204 L 470.661973 167.589121 L 471.033556 167.804509 L 471.652861 167.373732 L 471.776722 167.373732 L 472.519888 166.83526 L 472.643749 166.83526 L 472.82954 166.781413 L 472.953401 166.781413 L 473.263054 166.619872 L 473.386915 166.619872 L 473.634637 166.512177 L 473.820428 166.566024 L 474.00622 166.512177 L 474.192011 166.566024 L 474.501664 166.404483 L 474.625525 166.404483 L 474.935177 166.242941 L 475.182899 166.350636 L 475.430621 166.242941 L 475.554482 166.242941 L 475.740274 166.189094 L 475.864135 166.189094 L 476.978884 165.327539 L 477.226606 165.435234 L 477.536258 165.273692 L 477.78398 165.381387 L 478.031702 165.273692 L 478.155563 165.273692 L 478.465216 165.112151 L 478.651007 165.165998 L 479.270312 164.735221 L 479.394173 164.735221 L 479.518034 164.735221 L 479.641895 164.735221 L 479.827687 164.681373 L 480.2612 164.950609 L 481.066297 164.35829 L 481.190158 164.35829 L 481.747532 163.98136 L 481.871393 163.98136 L 482.057185 163.927513 L 482.181046 163.927513 L 482.428768 163.819819 L 482.614559 163.873666 L 482.924212 163.712124 L 483.233864 163.873666 L 483.605447 163.658277 L 483.729308 163.658277 L 483.9151 163.60443 L 484.038961 163.60443 L 484.534405 163.281347 L 484.658266 163.281347 L 484.782127 163.281347 L 484.967918 163.335194 L 485.339501 163.119805 L 485.463362 163.119805 L 486.082667 162.689028 L 486.268459 162.742875 L 486.516181 162.635181 L 486.640042 162.635181 L 487.197416 162.258251 L 487.383208 162.312098 L 487.878652 161.989015 L 488.188304 162.150556 L 488.374096 162.096709 L 488.621818 162.204403 L 489.612706 161.450543 L 489.736567 161.450543 L 490.355872 161.019766 L 490.603594 161.12746 L 491.099038 160.804377 L 491.222899 160.804377 L 491.966065 160.265905 L 492.151856 160.319752 L 493.204675 159.512045 L 493.390466 159.565892 L 493.762049 159.350503 L 493.947841 159.404351 L 494.319424 159.188962 L 494.443285 159.188962 L 494.876798 158.919726 L 495.000659 158.919726 L 495.186451 158.865879 L 495.310312 158.865879 L 495.558034 158.758184 L 495.743825 158.812032 L 496.486991 158.27356 L 496.672783 158.327407 L 496.920505 158.219713 L 497.044366 158.219713 L 497.477879 157.950477 L 497.663671 158.004324 L 497.973323 157.842783 L 498.097184 157.842783 L 498.530698 157.573547 L 498.716489 157.627394 L 498.902281 157.573547 L 499.026142 157.573547 L 499.955099 156.873533 L 500.202821 156.981228 L 500.636335 156.711992 L 500.760196 156.711992 L 501.25564 156.388909 L 501.565292 156.55045 L 502.865833 155.527354 L 502.989694 155.527354 L 503.237416 155.41966 L 503.361277 155.41966 L 503.547068 155.365813 L 503.79479 155.473507 L 504.042512 155.365813 L 504.290234 155.473507 L 504.599887 155.311965 L 504.723748 155.311965 L 505.281122 154.935035 L 505.466914 154.988882 L 505.590775 154.988882 L 505.714636 154.988882 L 506.086219 154.773494 L 506.581663 155.096577 L 507.077107 154.773494 L 507.262898 154.827341 L 507.44869 154.773494 L 507.572551 154.773494 L 508.253786 154.288869 L 508.501508 154.396564 L 509.058883 154.019633 L 509.244674 154.07348 L 509.430466 154.019633 L 509.616257 154.07348 L 509.740118 154.07348 L 509.863979 154.07348 L 510.669076 153.481162 L 510.854867 153.535009 L 511.040659 153.481162 L 511.22645 153.535009 L 511.350311 153.535009 L 511.474172 153.535009 L 511.845755 153.31962 L 512.031547 153.373467 L 513.022435 152.619607 L 513.146296 152.619607 L 513.579809 152.350371 L 513.765601 152.404218 L 513.889462 152.404218 L 514.013323 152.404218 L 514.508767 152.081135 L 514.694558 152.134982 L 515.004211 151.973441 L 515.313863 152.134982 L 515.809307 151.811899 L 515.933168 151.811899 L 516.552473 151.381122 L 516.676334 151.381122 L 516.985987 151.21958 L 517.233709 151.327275 L 517.605292 151.111886 L 517.791083 151.165733 L 518.348458 150.788803 L 518.472319 150.788803 L 519.401276 150.08879 L 519.525137 150.08879 L 520.330234 149.496471 L 520.516025 149.550318 L 521.259191 149.011846 L 521.568844 149.173388 L 522.064288 148.850305 L 522.188149 148.850305 L 522.993245 148.257986 L 523.179037 148.311833 L 523.55062 148.096444 L 523.736411 148.150292 L 524.046064 147.98875 L 524.231855 148.042597 L 524.355716 148.042597 L 524.479577 148.042597 L 525.284674 147.450278 L 525.408535 147.450278 L 525.718187 147.288737 L 525.842048 147.288737 L 526.08977 147.181042 L 526.523284 147.450278 L 526.832936 147.288737 L 526.956797 147.288737 L 527.699963 146.750265 L 527.823824 146.750265 L 528.195407 146.534876 L 528.319268 146.534876 L 528.443129 146.534876 L 528.628921 146.588724 L 528.938573 146.427182 L 529.062434 146.427182 L 529.248226 146.373335 L 529.434017 146.427182 L 529.619809 146.373335 L 529.8056 146.427182 L 530.486836 145.942557 L 530.672627 145.996405 L 531.725446 145.188697 L 531.911237 145.242544 L 532.28282 145.027156 L 532.406681 145.027156 L 532.716334 144.865614 L 533.025986 145.027156 L 533.149847 145.027156 L 533.335639 145.081003 L 533.583361 144.973308 L 533.893013 145.13485 L 535.007762 144.273295 L 535.131623 144.273295 L 535.317415 144.219448 L 535.441276 144.219448 L 535.627067 144.165601 L 535.812859 144.219448 L 536.060581 144.111754 L 536.184442 144.111754 L 536.494094 143.950212 L 536.617955 143.950212 L 536.803747 143.896365 L 537.051469 144.004059 L 537.794635 143.465588 L 537.918496 143.465588 L 538.785523 142.819422 L 538.971314 142.873269 L 539.528689 142.496338 L 539.65255 142.496338 L 539.962202 142.334797 L 540.209924 142.442491 L 540.89116 141.957867 L 541.015021 141.957867 L 541.138882 141.957867 L 541.386604 142.065561 L 541.696256 141.90402 L 541.882048 141.957867 L 542.1917 141.796325 L 542.377492 141.850172 L 543.244519 141.204006 L 543.43031 141.257854 L 543.739963 141.096312 L 543.863824 141.096312 L 544.235407 140.880923 L 544.359268 140.880923 L 544.730851 140.665535 L 544.854712 140.665535 L 545.040503 140.611687 L 545.164364 140.611687 L 545.412086 140.503993 L 545.535947 140.503993 L 545.8456 140.342452 L 545.969461 140.342452 L 546.155252 140.288604 L 546.279113 140.288604 L 546.588766 140.127063 L 546.774557 140.18091 L 547.14614 139.965521 L 547.331932 140.019369 L 547.703515 139.80398 L 547.889306 139.857827 L 548.632472 139.319355 L 548.818264 139.373202 L 549.251777 139.103967 L 549.437569 139.157814 L 549.809152 138.942425 L 549.933013 138.942425 L 550.304596 138.727036 L 550.428457 138.727036 L 551.109692 138.242412 L 551.233553 138.242412 L 551.543206 138.08087 L 551.667067 138.08087 L 552.286372 137.650093 L 552.410233 137.650093 L 552.657955 137.542399 L 552.905677 137.650093 L 553.710774 137.057774 L 553.896565 137.111621 L 554.020426 137.111621 L 554.144287 137.111621 L 554.639731 136.788538 L 554.825523 136.842385 L 555.630619 136.250067 L 555.816411 136.303914 L 556.064133 136.196219 L 556.249924 136.250067 L 557.736256 135.065429 L 557.922048 135.119276 L 558.16977 135.011582 L 558.355561 135.065429 L 559.160658 134.47311 L 559.40838 134.580804 L 559.779963 134.365415 L 559.903824 134.365415 L 560.213476 134.203874 L 560.399268 134.257721 L 561.328225 133.557708 L 561.575947 133.665402 L 561.761739 133.611555 L 561.8856 133.611555 L 562.257183 133.396166 L 562.381044 133.396166 L 562.628766 133.288472 L 562.752627 133.288472 L 563.12421 133.073083 L 563.248071 133.073083 L 564.115098 132.426917 L 564.238959 132.426917 L 564.734403 132.103834 L 564.920194 132.157681 L 565.229847 131.99614 L 565.539499 132.157681 L 565.849152 131.99614 L 566.096874 132.103834 L 566.654248 131.726904 L 566.963901 131.888446 L 567.707067 131.349974 L 567.830928 131.349974 L 568.759885 130.649961 L 569.007607 130.757655 L 569.564982 130.380725 L 569.688843 130.380725 L 571.051314 129.303781 L 571.175175 129.303781 L 572.042202 128.657615 L 572.227993 128.711462 L 573.652395 127.580672 L 573.838186 127.634519 L 573.962047 127.634519 L 574.2717 127.79606 L 574.457491 127.742213 L 574.643283 127.79606 L 574.829074 127.742213 L 574.952935 127.742213 L 576.129615 126.826811 L 576.315406 126.880659 L 576.81085 126.557576 L 576.934711 126.557576 L 577.244364 126.396034 L 577.492086 126.503728 L 577.739808 126.396034 L 577.98753 126.503728 L 578.235252 126.396034 L 578.359113 126.396034 L 579.350001 125.642174 L 579.473862 125.642174 L 579.597723 125.642174 L 579.907375 125.803715 L 580.402819 125.480632 L 580.52668 125.480632 L 580.774402 125.372938 L 580.898263 125.372938 L 581.207916 125.211396 L 581.331777 125.211396 L 581.517568 125.157549 L 581.641429 125.157549 L 581.76529 125.157549 L 581.889151 125.157549 L 582.508456 124.726772 L 582.756178 124.834466 L 583.189692 124.56523 L 583.313553 124.56523 L 583.561275 124.457536 L 583.870927 124.619077 L 584.18058 124.457536 L 584.304441 124.457536 L 584.676024 124.242147 L 584.923746 124.349841 L 585.852703 123.649828 L 585.976564 123.649828 L 586.162356 123.595981 L 586.348147 123.649828 L 587.091313 123.111357 L 587.339035 123.219051 L 587.834479 122.895968 L 587.95834 122.895968 L 588.453784 122.572885 L 588.577645 122.572885 L 588.887298 122.411343 L 589.011159 122.411343 L 589.692394 121.926719 L 589.816255 121.926719 L 590.063977 121.819024 L 590.187838 121.819024 L 590.43556 121.71133 L 590.559421 121.71133 L 590.931004 121.495941 L 591.054865 121.495941 L 591.61224 121.119011 L 591.736101 121.119011 L 592.045753 120.95747 L 592.169614 120.95747 L 592.355406 120.903622 L 592.479267 120.903622 L 592.665058 120.849775 L 592.726989 120.903622 L 592.726989 120.903622 " style="fill:none;opacity:0.9;stroke:#8c564b;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_18"> <path clip-path="url(#pf8d0b4ca52)" d="M 85.454261 307.618692 L 85.949705 307.510997 L 86.259358 307.537921 L 87.869551 306.945602 L 88.055342 306.918679 L 88.488856 306.837908 L 88.736578 306.837908 L 90.22291 306.299436 L 90.532562 306.32636 L 91.151867 306.164818 L 91.399589 306.164818 L 92.328547 305.868659 L 92.514338 305.841735 L 93.133643 305.680194 L 93.381365 305.680194 L 94.062601 305.491728 L 94.372253 305.518652 L 95.053489 305.330187 L 95.363141 305.357111 L 96.044377 305.168645 L 96.292099 305.168645 L 96.849473 305.034028 L 97.097195 305.034028 L 97.592639 304.926333 L 97.902292 304.953257 L 98.273875 304.89941 L 98.707388 304.98018 L 99.202832 304.872486 L 99.388624 304.845562 L 99.698276 304.818639 L 100.007929 304.845562 L 100.379512 304.791715 L 100.627234 304.791715 L 101.556191 304.495556 L 101.803913 304.495556 L 102.423218 304.334014 L 102.732871 304.360938 L 102.980593 304.360938 L 103.166384 304.334014 L 104.157272 304.010931 L 104.528855 304.064778 L 104.776577 304.064778 L 105.024299 304.064778 L 105.891326 303.795543 L 106.077118 303.768619 L 106.634492 303.634001 L 106.820284 303.607077 L 107.129936 303.580154 L 107.439589 303.607077 L 107.996963 303.47246 L 108.182755 303.445536 L 109.049782 303.1763 L 109.483295 303.257071 L 110.536114 302.907064 L 110.721905 302.880141 L 111.650863 302.583981 L 111.836654 302.557058 L 112.270168 302.476287 L 112.51789 302.476287 L 113.075264 302.341669 L 113.261056 302.314745 L 113.880361 302.153204 L 114.066152 302.12628 L 114.747388 301.937815 L 114.933179 301.910892 L 116.23372 301.453191 L 116.419511 301.426267 L 116.667233 301.426267 L 116.914955 301.426267 L 117.47233 301.291649 L 117.843913 301.345496 L 118.091635 301.345496 L 118.277426 301.318573 L 119.701828 300.807025 L 120.073411 300.860872 L 120.878507 300.618559 L 121.18816 300.645483 L 121.807465 300.483941 L 122.055187 300.483941 L 122.674492 300.3224 L 122.922214 300.3224 L 123.72731 300.080088 L 123.913102 300.053164 L 124.594338 299.864699 L 124.780129 299.837775 L 125.585226 299.595463 L 125.771017 299.56854 L 126.390322 299.406998 L 126.699975 299.433922 L 128.000515 298.976221 L 128.186307 298.949297 L 128.61982 298.868526 L 128.805612 298.841603 L 129.053334 298.841603 L 129.301056 298.841603 L 130.291944 298.51852 L 130.725457 298.59929 L 131.468623 298.383902 L 131.716345 298.383902 L 132.459511 298.168513 L 132.769164 298.195437 L 133.51233 297.980048 L 133.821982 298.006972 L 134.874801 297.656965 L 135.122523 297.656965 L 135.679897 297.522347 L 135.865689 297.495423 L 136.670785 297.253111 L 136.918507 297.253111 L 137.352021 297.17234 L 137.785534 297.253111 L 138.095187 297.226188 L 138.280978 297.199264 L 139.086075 296.956952 L 139.271866 296.930028 L 139.891171 296.768487 L 140.138893 296.768487 L 140.572407 296.687716 L 140.758198 296.660792 L 141.501364 296.445404 L 141.687156 296.41848 L 142.616113 296.122321 L 142.863835 296.122321 L 143.235418 296.068473 L 143.42121 296.04155 L 144.040515 295.880008 L 144.288237 295.880008 L 144.845611 295.74539 L 145.031403 295.718467 L 146.084221 295.36846 L 146.270013 295.341537 L 147.508623 294.910759 L 147.818275 294.937683 L 148.37565 294.803065 L 148.623372 294.803065 L 150.233565 294.210746 L 150.419356 294.183822 L 151.348314 293.887663 L 151.596036 293.887663 L 152.277271 293.699198 L 152.524993 293.699198 L 153.33009 293.456886 L 153.577812 293.456886 L 154.011325 293.376115 L 154.197117 293.349191 L 154.940283 293.133802 L 155.188005 293.133802 L 155.86924 292.945337 L 156.055032 292.918414 L 156.674337 292.756872 L 156.860128 292.729949 L 157.355572 292.622254 L 157.603294 292.622254 L 157.851016 292.622254 L 158.160669 292.649178 L 159.027696 292.379942 L 159.275418 292.379942 L 160.142445 292.110706 L 160.390167 292.110706 L 160.76175 292.056859 L 161.009472 292.056859 L 161.319124 292.029935 L 161.566846 292.029935 L 162.681595 291.653005 L 162.929317 291.653005 L 163.672483 291.437617 L 163.858275 291.410693 L 164.47758 291.249151 L 164.663371 291.222228 L 165.468468 290.979916 L 165.654259 290.952992 L 166.459356 290.71068 L 166.707078 290.71068 L 167.078661 290.656833 L 167.326383 290.656833 L 167.883757 290.522215 L 168.19341 290.549138 L 169.184298 290.226055 L 169.370089 290.199132 L 170.051325 290.010666 L 170.360977 290.03759 L 170.608699 290.03759 L 170.794491 290.010666 L 171.166074 289.956819 L 171.351865 289.929896 L 171.847309 289.822201 L 172.095031 289.822201 L 172.962058 289.552966 L 173.20978 289.552966 L 174.324529 289.176035 L 174.510321 289.149112 L 175.315417 288.906799 L 175.501209 288.879876 L 175.996653 288.772182 L 176.306305 288.799105 L 176.86368 288.664487 L 177.111402 288.664487 L 177.544915 288.583716 L 177.730707 288.556793 L 178.16422 288.476022 L 178.473873 288.502946 L 179.093178 288.341404 L 179.40283 288.368328 L 180.64144 287.93755 L 181.074954 288.018321 L 181.570398 287.910627 L 181.941981 287.964474 L 182.313564 287.910627 L 182.499355 287.883703 L 183.428313 287.587544 L 183.676035 287.587544 L 184.976575 287.129843 L 185.162367 287.102919 L 185.719741 286.968301 L 185.905533 286.941378 L 186.462907 286.80676 L 186.710629 286.80676 L 187.144143 286.725989 L 187.329934 286.699065 L 187.825378 286.591371 L 188.0731 286.591371 L 188.754336 286.402906 L 189.002058 286.402906 L 189.745224 286.187517 L 190.054876 286.214441 L 190.48839 286.13367 L 190.736112 286.13367 L 191.355417 285.972129 L 191.603139 285.972129 L 192.160513 285.837511 L 192.346305 285.810587 L 192.903679 285.675969 L 193.089471 285.649046 L 193.770706 285.46058 L 193.956498 285.433657 L 195.133177 285.029803 L 195.380899 285.029803 L 195.628621 285.029803 L 195.938274 285.056727 L 196.371787 284.975956 L 196.557579 284.949032 L 197.486536 284.652873 L 197.858119 284.70672 L 198.229702 284.652873 L 198.415494 284.625949 L 198.787077 284.572102 L 199.096729 284.599026 L 199.716034 284.437484 L 200.087617 284.491331 L 201.016575 284.195172 L 201.326227 284.222095 L 201.821671 284.114401 L 202.193254 284.168248 L 202.87449 283.979783 L 203.122212 283.979783 L 203.989239 283.710547 L 204.17503 283.683624 L 205.165918 283.360541 L 205.35171 283.333617 L 206.342598 283.010534 L 206.528389 282.983611 L 206.899972 282.929763 L 207.085764 282.90284 L 207.457347 282.848993 L 207.643138 282.822069 L 207.89086 282.822069 L 208.200513 282.848993 L 208.695957 282.741298 L 208.943679 282.741298 L 209.439123 282.633604 L 209.624914 282.60668 L 210.244219 282.445139 L 210.491941 282.445139 L 210.863524 282.391292 L 211.111246 282.391292 L 211.978273 282.122056 L 212.349856 282.175903 L 212.78337 282.095132 L 212.969161 282.068209 L 214.703215 281.422043 L 215.012868 281.448966 L 215.570242 281.314348 L 215.756034 281.287425 L 216.4992 281.072036 L 216.808852 281.09896 L 217.490088 280.910494 L 217.675879 280.883571 L 218.109393 280.8028 L 218.419045 280.829724 L 219.100281 280.641259 L 219.348003 280.641259 L 219.719586 280.587411 L 219.967308 280.587411 L 220.524682 280.452793 L 220.896265 280.506641 L 221.267848 280.452793 L 221.763292 280.560488 L 222.258736 280.452793 L 222.444528 280.42587 L 223.373485 280.12971 L 223.683138 280.156634 L 223.93086 280.156634 L 224.178582 280.156634 L 224.612095 280.075863 L 224.797887 280.04894 L 225.2314 279.968169 L 225.479122 279.968169 L 225.974566 279.860475 L 226.222288 279.860475 L 226.779663 279.725857 L 227.027385 279.725857 L 227.770551 279.510468 L 228.080203 279.537392 L 228.823369 279.322003 L 229.133022 279.348926 L 229.814257 279.160461 L 230.18584 279.214308 L 230.681284 279.106614 L 230.867076 279.079691 L 231.238659 279.025843 L 231.42445 278.99892 L 232.60113 278.595066 L 233.034643 278.675837 L 233.468157 278.595066 L 233.653948 278.568142 L 234.768697 278.191212 L 234.954489 278.164289 L 235.635724 277.975824 L 235.883446 277.975824 L 236.564682 277.787358 L 236.812404 277.787358 L 237.493639 277.598893 L 237.865222 277.65274 L 238.79418 277.356581 L 238.979971 277.329657 L 239.475415 277.221963 L 239.908929 277.302734 L 240.342442 277.221963 L 240.590164 277.221963 L 241.085608 277.114269 L 241.33333 277.114269 L 241.704913 277.060422 L 242.138427 277.141192 L 243.005454 276.871957 L 243.253176 276.871957 L 243.686689 276.791186 L 243.872481 276.764262 L 244.367925 276.656568 L 244.615647 276.656568 L 244.925299 276.629644 L 245.420743 276.737339 L 245.792326 276.683491 L 245.978118 276.656568 L 246.411631 276.575797 L 246.597423 276.548873 L 247.278658 276.360408 L 247.650241 276.414256 L 248.145685 276.306561 L 248.393407 276.306561 L 248.888851 276.198867 L 249.074643 276.171943 L 249.446226 276.118096 L 249.693948 276.118096 L 250.684836 275.795013 L 250.932558 275.795013 L 251.24221 275.768089 L 251.551863 275.795013 L 251.799585 275.795013 L 251.985376 275.768089 L 253.347847 275.283465 L 253.595569 275.283465 L 253.967152 275.229618 L 254.152944 275.202694 L 254.400666 275.202694 L 254.586457 275.175771 L 254.89611 275.148847 L 255.143832 275.148847 L 255.763137 274.987305 L 255.948928 274.960382 L 256.568233 274.79884 L 256.754025 274.771917 L 257.744913 274.448834 L 257.930704 274.42191 L 259.045453 274.04498 L 259.293175 274.04498 L 259.726689 273.964209 L 260.098272 274.018056 L 260.593716 273.910362 L 260.779507 273.883438 L 262.018117 273.452661 L 262.3897 273.506508 L 263.132866 273.29112 L 263.318658 273.264196 L 264.061824 273.048807 L 264.247615 273.021884 L 264.86692 272.860342 L 265.052712 272.833419 L 265.733947 272.644953 L 265.981669 272.644953 L 266.477113 272.537259 L 266.662905 272.510336 L 266.972557 272.483412 L 267.220279 272.483412 L 267.901515 272.294947 L 268.211168 272.32187 L 269.263986 271.971864 L 269.635569 272.025711 L 270.688388 271.675704 L 270.99804 271.702628 L 271.741206 271.487239 L 271.926998 271.460316 L 272.546303 271.298774 L 272.794025 271.298774 L 274.218426 270.787226 L 274.466148 270.787226 L 275.580897 270.410296 L 275.828619 270.410296 L 277.314951 269.871824 L 277.562673 269.871824 L 277.996187 269.791053 L 278.4297 269.871824 L 278.739353 269.844901 L 278.925144 269.817977 L 279.296727 269.76413 L 279.544449 269.76413 L 280.90692 269.279505 L 281.154642 269.279505 L 281.712017 269.144887 L 281.897808 269.117964 L 282.393252 269.010269 L 282.579044 268.983346 L 283.446071 268.71411 L 283.631862 268.687186 L 284.127306 268.579492 L 284.498889 268.633339 L 284.684681 268.660263 L 284.870472 268.633339 L 285.303986 268.552568 L 285.613638 268.579492 L 286.047152 268.498721 L 286.294874 268.498721 L 286.728387 268.41795 L 286.914179 268.391027 L 287.471553 268.256409 L 287.657345 268.229485 L 288.028928 268.175638 L 288.27665 268.175638 L 288.834024 268.04102 L 289.019816 268.014097 L 289.57719 267.879479 L 289.824912 267.879479 L 290.258426 267.798708 L 290.630009 267.852555 L 291.063522 267.771784 L 291.249314 267.744861 L 292.178271 267.448701 L 292.425993 267.448701 L 293.169159 267.233313 L 293.354951 267.206389 L 293.788464 267.125618 L 294.160047 267.179466 L 294.965144 266.937153 L 295.212866 266.937153 L 295.646379 266.856382 L 296.141823 266.964077 L 297.070781 266.667917 L 297.318503 266.667917 L 298.123599 266.425605 L 298.433252 266.452529 L 299.052557 266.290987 L 299.300279 266.290987 L 299.733792 266.210216 L 300.105375 266.264064 L 301.158194 265.914057 L 301.467846 265.940981 L 301.90136 265.86021 L 302.211012 265.887133 L 302.892248 265.698668 L 303.078039 265.671745 L 303.449622 265.617898 L 303.635414 265.590974 L 304.192788 265.456356 L 304.37858 265.429432 L 304.750163 265.375585 L 304.997885 265.375585 L 305.431398 265.294814 L 305.61719 265.267891 L 306.112634 265.160197 L 306.422286 265.18712 L 307.165452 264.971731 L 307.351244 264.944808 L 307.660896 264.917884 L 307.908618 264.917884 L 309.085298 264.51403 L 309.33302 264.51403 L 309.642672 264.487107 L 309.890394 264.487107 L 310.323908 264.406336 L 310.57163 264.406336 L 311.005143 264.325565 L 311.252865 264.325565 L 312.305684 263.975559 L 312.491475 263.948635 L 313.234641 263.733247 L 313.420433 263.706323 L 314.473251 263.356316 L 314.659043 263.329393 L 315.464139 263.08708 L 315.773792 263.114004 L 316.76468 262.790921 L 317.012402 262.790921 L 317.631707 262.629379 L 317.941359 262.656303 L 318.189081 262.656303 L 318.374873 262.629379 L 319.179969 262.387067 L 319.365761 262.360144 L 319.985066 262.198602 L 320.232788 262.198602 L 320.914023 262.010137 L 321.285606 262.063984 L 321.904911 261.902443 L 322.152633 261.902443 L 322.833869 261.713978 L 323.205452 261.767825 L 324.567923 261.2832 L 324.753714 261.256277 L 325.125297 261.202429 L 325.43495 261.229353 L 326.611629 260.825499 L 326.859351 260.825499 L 327.726378 260.556263 L 327.9741 260.556263 L 328.345683 260.502416 L 328.593405 260.502416 L 329.026919 260.421645 L 329.522363 260.52934 L 330.45132 260.23318 L 330.822903 260.287027 L 331.937652 259.910097 L 332.123444 259.883174 L 333.362054 259.452396 L 333.547845 259.425473 L 334.043289 259.317778 L 334.229081 259.290855 L 334.972247 259.075466 L 335.281899 259.10239 L 335.653482 259.048543 L 335.839274 259.021619 L 336.210857 258.967772 L 336.520509 258.994695 L 336.830162 258.967772 L 337.077884 258.967772 L 337.573328 258.860077 L 337.82105 258.860077 L 338.378424 258.725459 L 338.688077 258.752383 L 339.617034 258.456224 L 339.988617 258.510071 L 340.484061 258.402376 L 340.731783 258.402376 L 341.041436 258.375453 L 341.227227 258.348529 L 341.722671 258.240835 L 341.908463 258.213911 L 342.83742 257.917752 L 343.085142 257.917752 L 343.518656 257.836981 L 343.766378 257.836981 L 344.261822 257.729287 L 344.447613 257.702363 L 345.25271 257.460051 L 345.500432 257.460051 L 345.995876 257.352357 L 346.367459 257.406204 L 346.800972 257.325433 L 347.110625 257.352357 L 347.79186 257.163892 L 348.101513 257.190815 L 348.596957 257.083121 L 349.154331 257.217739 L 349.587845 257.136968 L 350.083289 257.244662 L 350.826455 257.029274 L 351.136107 257.056197 L 351.879273 256.840808 L 352.065065 256.813885 L 352.312787 256.813885 L 352.560509 256.813885 L 352.808231 256.813885 L 353.055953 256.813885 L 353.675258 256.652343 L 353.861049 256.62542 L 354.294563 256.544649 L 354.542285 256.544649 L 355.533173 256.221566 L 355.966686 256.302337 L 356.276339 256.275413 L 356.585991 256.302337 L 357.329157 256.086948 L 357.514949 256.060024 L 358.381976 255.790789 L 358.567767 255.763865 L 358.87742 255.736941 L 359.063211 255.710018 L 359.744447 255.521553 L 359.930238 255.494629 L 360.735335 255.252317 L 360.921126 255.225393 L 361.478501 255.090775 L 361.664292 255.063852 L 362.59325 254.767692 L 362.779041 254.740769 L 363.336416 254.606151 L 363.646068 254.633074 L 364.265373 254.471533 L 364.451165 254.444609 L 365.07047 254.283068 L 365.442053 254.336915 L 366.37101 254.040756 L 366.680663 254.067679 L 367.176107 253.959985 L 367.361898 253.933061 L 368.290856 253.636902 L 368.538578 253.636902 L 368.84823 253.609978 L 369.034022 253.583055 L 369.219813 253.609978 L 369.529466 253.636902 L 370.582284 253.286895 L 371.077728 253.394589 L 371.573172 253.286895 L 371.758964 253.259972 L 372.50213 253.044583 L 372.687921 253.017659 L 372.873713 253.044583 L 373.183365 253.071506 L 373.678809 252.963812 L 373.864601 252.936888 L 374.236184 252.883041 L 374.483906 252.883041 L 374.669697 252.909965 L 374.917419 252.909965 L 375.536724 252.748423 L 375.908307 252.802271 L 376.775334 252.533035 L 377.023056 252.533035 L 377.704292 252.34457 L 378.013944 252.371493 L 378.323597 252.34457 L 378.509388 252.317646 L 379.128693 252.156104 L 379.376415 252.156104 L 379.99572 251.994563 L 380.243442 251.994563 L 380.491164 251.994563 L 380.738886 251.994563 L 380.986608 251.994563 L 381.23433 251.994563 L 381.605913 251.940716 L 381.853635 251.940716 L 382.287149 251.859945 L 382.658732 251.913792 L 383.64962 251.590709 L 383.897342 251.590709 L 384.454716 251.456091 L 384.764369 251.483015 L 385.321743 251.348397 L 385.507535 251.321473 L 386.18877 251.133008 L 386.498423 251.159932 L 387.241589 250.944543 L 387.42738 250.91762 L 388.170546 250.702231 L 388.356338 250.675307 L 389.285295 250.379148 L 389.471087 250.352224 L 390.028461 250.217606 L 390.461975 250.298377 L 390.771627 250.271453 L 391.019349 250.271453 L 392.010237 249.94837 L 392.257959 249.94837 L 392.815334 249.813753 L 393.063056 249.813753 L 393.744291 249.625287 L 394.053944 249.652211 L 394.425527 249.598364 L 394.611318 249.57144 L 394.79711 249.598364 L 395.106762 249.625287 L 395.540276 249.544517 L 395.787998 249.544517 L 396.283442 249.436822 L 396.531164 249.436822 L 397.583982 249.086816 L 397.893635 249.113739 L 398.327148 249.032969 L 398.57487 249.032969 L 399.194175 248.871427 L 399.565758 248.925274 L 400.680507 248.548344 L 400.866299 248.52142 L 401.361743 248.413726 L 401.609465 248.413726 L 402.104909 248.306032 L 402.2907 248.279108 L 402.971936 248.090643 L 403.219658 248.090643 L 403.591241 248.036796 L 403.777032 248.009872 L 404.148615 247.956025 L 404.396337 247.956025 L 405.015642 247.794484 L 405.201434 247.76756 L 405.634947 247.686789 L 405.820739 247.659866 L 406.563905 247.444477 L 406.749696 247.417553 L 407.678654 247.121394 L 407.864445 247.09447 L 408.607611 246.879082 L 408.793403 246.852158 L 409.536569 246.636769 L 409.846221 246.663693 L 410.403596 246.529075 L 410.589387 246.502151 L 410.960971 246.448304 L 411.456415 246.555999 L 413.066608 245.96368 L 413.252399 245.936756 L 413.933635 245.748291 L 414.243287 245.775215 L 414.800662 245.640597 L 414.986453 245.613673 L 415.234175 245.613673 L 415.481897 245.613673 L 416.410855 245.317514 L 416.782438 245.371361 L 417.215951 245.29059 L 417.401743 245.263666 L 417.897187 245.155972 L 418.144909 245.155972 L 418.950005 244.91366 L 419.135797 244.886736 L 420.126685 244.563653 L 420.312476 244.53673 L 421.365295 244.186723 L 421.551086 244.159799 L 421.798808 244.159799 L 422.108461 244.186723 L 422.480044 244.132876 L 422.665835 244.105952 L 423.099349 244.025182 L 423.28514 243.998258 L 423.966376 243.809793 L 424.276028 243.836716 L 425.948152 243.217474 L 426.319735 243.271321 L 426.629387 243.244398 L 427.062901 243.325168 L 427.620275 243.19055 L 427.929928 243.217474 L 428.735024 242.975162 L 428.982746 242.975162 L 429.602051 242.81362 L 430.035565 242.894391 L 430.778731 242.679002 L 431.088383 242.705926 L 431.831549 242.490537 L 432.326993 242.598231 L 432.946298 242.43669 L 433.13209 242.409766 L 434.43263 241.952065 L 434.618422 241.925142 L 435.67124 241.575135 L 435.857032 241.548212 L 436.84792 241.225129 L 437.219503 241.278976 L 437.900738 241.090511 L 438.08653 241.063587 L 439.015487 240.767428 L 439.201279 240.740504 L 439.758653 240.605886 L 440.006375 240.605886 L 440.749541 240.390497 L 441.183055 240.471268 L 441.926221 240.255879 L 442.112012 240.228956 L 443.164831 239.878949 L 443.412553 239.878949 L 443.969927 239.744331 L 444.217649 239.744331 L 445.022746 239.502019 L 445.456259 239.58279 L 446.013634 239.448172 L 446.199425 239.421248 L 446.694869 239.313554 L 446.942591 239.313554 L 447.190313 239.313554 L 447.623827 239.394325 L 448.924367 238.936624 L 449.23402 238.963547 L 450.348769 238.586617 L 450.596491 238.586617 L 451.030004 238.505846 L 451.277726 238.505846 L 452.082823 238.263534 L 452.330545 238.263534 L 453.321433 237.940451 L 453.569155 237.940451 L 454.002668 237.85968 L 454.18846 237.832757 L 454.745834 237.698139 L 455.055487 237.725062 L 455.860583 237.48275 L 456.046375 237.455827 L 456.417958 237.401979 L 456.66568 237.401979 L 456.975332 237.375056 L 457.161124 237.348132 L 458.213942 236.998126 L 458.709386 237.10582 L 459.762205 236.755813 L 459.947996 236.72889 L 460.38151 236.648119 L 460.567301 236.621195 L 461.867842 236.163494 L 462.301355 236.244265 L 463.230313 235.948106 L 463.663826 236.028876 L 463.911548 236.028876 L 464.15927 236.028876 L 465.026297 235.759641 L 465.39788 235.813488 L 465.831394 235.732717 L 466.017185 235.705793 L 466.884212 235.436558 L 467.131934 235.436558 L 467.503517 235.38271 L 467.689309 235.355787 L 468.680197 235.032704 L 468.865988 235.00578 L 469.423363 234.871162 L 469.609154 234.844239 L 469.918807 234.817315 L 470.104598 234.790391 L 470.414251 234.763468 L 470.661973 234.763468 L 471.776722 234.386538 L 471.962513 234.359614 L 472.148305 234.386538 L 472.334096 234.359614 L 473.015332 234.171149 L 473.263054 234.171149 L 474.192011 233.87499 L 474.501664 233.901913 L 475.120969 233.740372 L 475.492552 233.794219 L 475.864135 233.740372 L 476.049926 233.713448 L 476.669231 233.551907 L 476.916953 233.551907 L 478.155563 233.121129 L 478.465216 233.148053 L 478.836799 233.094206 L 479.146451 233.121129 L 480.2612 232.744199 L 480.446992 232.717275 L 480.756644 232.690352 L 481.004366 232.690352 L 481.809463 232.44804 L 482.057185 232.44804 L 482.304907 232.44804 L 482.490698 232.421116 L 483.667378 232.017262 L 483.9151 232.017262 L 484.472474 231.882644 L 484.658266 231.855721 L 485.896876 231.424943 L 486.082667 231.39802 L 486.949694 231.128784 L 487.197416 231.128784 L 487.816721 230.967242 L 488.002513 230.940319 L 488.745679 230.72493 L 488.93147 230.698006 L 489.117262 230.72493 L 489.303053 230.698006 L 489.798497 230.590312 L 490.046219 230.590312 L 491.34676 230.132611 L 491.656412 230.159535 L 492.275717 229.997993 L 492.461509 229.97107 L 493.018883 229.836452 L 493.204675 229.809528 L 493.452397 229.809528 L 493.82398 229.863375 L 494.133632 229.836452 L 494.319424 229.809528 L 495.06259 229.594139 L 495.248381 229.567216 L 495.743825 229.459521 L 495.929617 229.432598 L 496.425061 229.324904 L 496.610852 229.29798 L 497.292088 229.109515 L 497.477879 229.082591 L 498.468767 228.759508 L 498.654559 228.732585 L 499.150003 228.62489 L 499.521586 228.678737 L 499.893169 228.62489 L 500.07896 228.597967 L 500.388613 228.571043 L 500.636335 228.571043 L 501.874945 228.140266 L 502.184597 228.167189 L 502.618111 228.086419 L 503.051624 228.167189 L 503.423207 228.113342 L 503.608999 228.086419 L 503.856721 228.086419 L 504.104443 228.086419 L 505.343053 227.655641 L 505.590775 227.655641 L 506.581663 227.332558 L 506.953246 227.386405 L 507.262898 227.359482 L 507.44869 227.332558 L 507.882203 227.251787 L 508.253786 227.305635 L 510.049771 226.632545 L 510.359423 226.659469 L 510.792937 226.578698 L 510.978728 226.551774 L 511.536103 226.417156 L 511.721894 226.390233 L 512.341199 226.228691 L 512.712782 226.282538 L 513.64174 225.986379 L 513.827531 225.959455 L 514.694558 225.690219 L 515.004211 225.717143 L 515.561585 225.582525 L 515.871238 225.609449 L 516.304751 225.528678 L 516.490543 225.501754 L 518.224597 224.855588 L 518.472319 224.855588 L 518.967763 224.747894 L 519.153554 224.72097 L 519.710929 224.586352 L 520.020581 224.613276 L 520.701817 224.424811 L 521.13533 224.505582 L 521.568844 224.424811 L 521.754635 224.397887 L 521.940427 224.424811 L 522.188149 224.424811 L 522.37394 224.451734 L 522.621662 224.451734 L 522.931315 224.424811 L 523.117106 224.397887 L 524.169925 224.047881 L 524.479577 224.074804 L 524.975021 223.96711 L 525.284674 223.994033 L 525.842048 223.859416 L 526.02784 223.832492 L 526.771006 223.617103 L 527.080658 223.644027 L 527.452241 223.59018 L 527.699963 223.59018 L 529.495948 222.91709 L 529.681739 222.890166 L 530.301044 222.728625 L 530.486836 222.701701 L 530.858419 222.647854 L 531.168071 222.674778 L 531.663515 222.567083 L 531.849307 222.54016 L 532.406681 222.405542 L 532.778264 222.459389 L 533.397569 222.297848 L 533.583361 222.270924 L 534.264596 222.082459 L 534.821971 222.217077 L 535.131623 222.190153 L 535.379345 222.190153 L 536.556025 221.786299 L 536.865677 221.813223 L 537.608843 221.597834 L 538.042357 221.678605 L 538.47587 221.597834 L 538.661662 221.570911 L 539.219036 221.436293 L 539.528689 221.463216 L 539.838341 221.436293 L 540.024133 221.409369 L 540.271855 221.409369 L 540.643438 221.463216 L 541.820117 221.059363 L 542.12977 221.086286 L 542.934866 220.843974 L 543.182588 220.843974 L 543.554171 220.790127 L 543.739963 220.763203 L 544.359268 220.601662 L 544.545059 220.574738 L 545.288225 220.359349 L 545.535947 220.359349 L 546.093322 220.224731 L 546.341044 220.224731 L 547.579654 219.793954 L 547.889306 219.820878 L 548.198959 219.793954 L 548.508611 219.820878 L 549.685291 219.417024 L 549.994943 219.443947 L 550.614248 219.282406 L 550.923901 219.30933 L 551.233553 219.282406 L 551.543206 219.30933 L 551.790928 219.30933 L 552.03865 219.30933 L 553.215329 218.905476 L 553.463051 218.905476 L 553.772704 218.878552 L 553.958496 218.851629 L 554.45394 218.743934 L 554.639731 218.717011 L 555.135175 218.609316 L 555.444828 218.63624 L 555.816411 218.582393 L 556.002202 218.555469 L 556.621507 218.393928 L 556.869229 218.393928 L 557.426604 218.25931 L 557.736256 218.286233 L 558.479422 218.070845 L 558.665214 218.043921 L 559.532241 217.774685 L 559.841893 217.801609 L 560.770851 217.505449 L 561.018573 217.505449 L 561.637878 217.343908 L 561.823669 217.316984 L 562.752627 217.020825 L 563.062279 217.047748 L 563.433862 216.993901 L 563.619654 216.966978 L 564.177028 216.83236 L 564.42475 216.83236 L 565.044055 216.670818 L 565.353708 216.697742 L 566.158804 216.455429 L 566.654248 216.563124 L 567.211623 216.428506 L 567.397414 216.401582 L 567.768997 216.347735 L 568.07865 216.374659 L 568.574094 216.266964 L 568.759885 216.240041 L 569.31726 216.105423 L 569.564982 216.105423 L 569.998495 216.024652 L 570.246217 216.024652 L 571.113244 215.755416 L 571.422897 215.78234 L 571.732549 215.755416 L 571.980271 215.755416 L 572.661507 215.566951 L 573.03309 215.620798 L 573.466603 215.540027 L 573.776256 215.566951 L 575.014866 215.136174 L 575.696101 215.324639 L 576.191545 215.216944 L 576.501198 215.243868 L 576.872781 215.190021 L 577.120503 215.190021 L 577.554016 215.10925 L 577.801738 215.10925 L 578.606835 214.866938 L 578.792626 214.840014 L 579.040348 214.840014 L 579.350001 214.866938 L 580.340889 214.543855 L 580.650541 214.570778 L 581.455638 214.328466 L 581.70336 214.328466 L 582.198804 214.220772 L 582.446526 214.220772 L 583.251622 213.978459 L 583.561275 214.005383 L 584.799885 213.574606 L 584.985676 213.547682 L 585.666912 213.359217 L 585.976564 213.386141 L 587.400966 212.874592 L 587.710618 212.901516 L 588.391854 212.713051 L 588.701506 212.739975 L 589.13502 212.659204 L 589.444672 212.686127 L 590.125908 212.497662 L 590.311699 212.470739 L 590.559421 212.470739 L 590.869074 212.497662 L 591.116796 212.497662 L 591.550309 212.578433 L 592.169614 212.416891 L 592.355406 212.389968 L 592.726989 212.336121 L 592.726989 212.336121 " style="fill:none;opacity:0.9;stroke:#e377c2;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_19"> <path clip-path="url(#pf8d0b4ca52)" d="M 85.454261 307.645615 L 592.726989 307.645615 L 592.726989 307.645615 " style="fill:none;opacity:0.9;stroke:#7f7f7f;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_20"> <path clip-path="url(#pf8d0b4ca52)" d="M 85.454261 307.510997 L 85.516192 307.645615 L 85.578122 307.564845 L 85.887775 307.160991 L 85.949705 307.08022 L 86.011636 307.160991 L 86.073566 307.241762 L 86.135497 307.187914 L 86.321288 306.972526 L 86.383219 307.107144 L 86.445149 307.241762 L 86.50708 307.160991 L 86.692871 306.757137 L 86.816732 306.972526 L 86.940593 306.70329 L 87.126385 307.107144 L 87.188315 307.053296 L 87.250246 306.918679 L 87.374107 307.187914 L 87.436037 307.053296 L 87.621829 307.403303 L 87.683759 307.349456 L 87.80762 307.241762 L 87.869551 307.37638 L 88.179203 306.891755 L 88.303064 307.026373 L 88.364995 306.945602 L 88.426925 306.891755 L 88.612717 307.107144 L 88.798508 306.864831 L 88.860439 306.999449 L 88.922369 307.134067 L 88.9843 307.053296 L 89.04623 306.999449 L 89.232022 307.160991 L 89.293952 307.026373 L 89.355883 307.160991 L 89.603605 306.622519 L 89.665535 306.676366 L 89.727466 306.730213 L 90.037118 306.137895 L 90.099049 306.218665 L 90.160979 306.084047 L 90.22291 306.137895 L 90.532562 305.949429 L 90.594493 306.084047 L 90.656423 306.0302 L 91.089937 305.518652 L 91.399589 305.034028 L 91.585381 305.384034 L 91.895033 304.926333 L 91.956964 305.060951 L 92.142755 304.845562 L 92.204686 304.98018 L 92.266616 305.034028 L 92.390477 304.818639 L 92.452408 304.872486 L 92.70013 304.576327 L 92.947852 304.253244 L 93.009782 304.172473 L 93.257504 304.576327 L 93.381365 304.441709 L 93.505226 304.657097 L 93.752948 304.307091 L 94.00067 304.010931 L 94.372253 303.310918 L 94.619975 303.580154 L 94.681906 303.499383 L 94.743836 303.580154 L 94.867697 303.580154 L 94.991558 303.445536 L 95.17735 303.84939 L 95.301211 303.580154 L 95.363141 303.714772 L 95.425072 303.634001 L 96.292099 302.637828 L 96.354029 302.718599 L 96.41596 302.637828 L 96.47789 302.50321 L 96.539821 302.637828 L 96.601751 302.50321 L 96.663682 302.637828 L 96.725612 302.583981 L 96.973334 302.287822 L 97.097195 302.476287 L 97.221056 302.314745 L 97.282987 302.449363 L 97.344917 302.368592 L 97.592639 301.964739 L 97.7165 301.964739 L 97.778431 301.910892 L 97.840361 302.045509 L 97.902292 301.964739 L 97.964222 301.883968 L 98.150014 302.072433 L 98.335805 302.12628 L 98.645458 301.991662 L 98.707388 302.12628 L 98.769319 302.072433 L 98.831249 301.937815 L 98.89318 301.991662 L 99.140902 301.668579 L 99.388624 301.345496 L 100.069859 300.457018 L 100.13179 300.591636 L 100.19372 300.510865 L 100.379512 300.214706 L 100.441442 300.268553 L 100.503373 300.349324 L 100.565303 300.295476 L 100.813025 299.972393 L 100.874956 300.107011 L 100.936886 300.241629 L 101.43233 299.406998 L 101.680052 299.326227 L 101.741983 299.406998 L 101.803913 299.353151 L 102.299357 298.868526 L 102.361288 299.003144 L 102.423218 298.868526 L 102.485149 298.922373 L 102.547079 299.003144 L 102.67094 298.814679 L 102.980593 299.056991 L 103.414106 298.356978 L 103.476037 298.276207 L 103.537967 298.356978 L 104.095342 297.84543 L 104.219203 298.033895 L 104.404994 297.872354 L 104.466925 297.953124 L 104.528855 297.818506 L 104.590786 297.953124 L 104.652716 297.818506 L 104.776577 298.087742 L 104.838508 298.006972 L 105.08623 297.710812 L 105.272021 297.441576 L 105.333952 297.576194 L 105.395882 297.522347 L 105.891326 296.956952 L 105.953257 296.876181 L 106.139048 297.09157 L 106.200979 296.956952 L 106.32484 297.226188 L 106.38677 297.145417 L 106.696423 296.687716 L 107.006075 296.149244 L 107.068006 296.014626 L 107.129936 296.149244 L 107.191867 296.014626 L 107.315728 296.230015 L 107.377658 296.176168 L 107.439589 296.095397 L 107.501519 296.230015 L 107.56345 296.149244 L 107.687311 295.960779 L 107.811172 295.772314 L 107.873102 295.853085 L 107.935033 295.799238 L 108.182755 295.503078 L 108.368546 295.233842 L 108.430477 295.099224 L 108.492407 295.153071 L 108.554338 295.099224 L 108.616268 295.179995 L 108.678199 295.233842 L 109.173643 294.31844 L 109.421365 294.399211 L 109.916809 293.510733 L 110.04067 293.699198 L 110.1026 293.56458 L 110.226461 293.349191 L 110.288392 293.483809 L 110.350322 293.403038 L 110.412253 293.483809 L 110.659975 293.106879 L 110.783836 293.295344 L 110.845766 293.160726 L 111.031558 293.106879 L 111.093488 293.160726 L 111.155419 293.026108 L 111.217349 293.160726 L 111.403141 292.864567 L 111.465071 292.918414 L 111.527002 292.783796 L 111.588932 292.837643 L 111.650863 292.918414 L 111.712793 292.837643 L 111.898585 292.649178 L 111.960515 292.783796 L 112.022446 292.703025 L 112.146307 292.433789 L 112.208237 292.568407 L 112.455959 292.110706 L 112.51789 292.245324 L 112.57982 292.191477 L 113.075264 291.302999 L 113.384917 291.626082 L 113.446847 291.491464 L 113.570708 291.383769 L 113.632639 291.518387 L 113.942291 291.08761 L 114.004222 291.033763 L 114.128083 291.222228 L 114.313874 290.952992 L 114.375805 291.08761 L 114.437735 291.033763 L 115.05704 289.929896 L 115.552484 289.391424 L 115.924067 288.745258 L 115.985998 288.799105 L 116.047928 288.718334 L 116.109859 288.637564 L 116.171789 288.772182 L 116.481442 288.23371 L 116.729164 288.556793 L 116.791094 288.476022 L 116.853025 288.556793 L 117.038816 288.691411 L 117.162677 288.502946 L 117.224608 288.556793 L 117.348469 288.341404 L 117.410399 288.395251 L 117.53426 288.395251 L 117.596191 288.529869 L 117.658121 288.476022 L 117.720052 288.395251 L 117.781982 288.529869 L 117.967774 288.206786 L 118.029704 288.260633 L 118.091635 288.179863 L 118.215496 287.991398 L 118.277426 288.072168 L 118.463218 287.85678 L 118.587079 288.045245 L 118.649009 287.964474 L 118.71094 288.045245 L 118.77287 287.991398 L 118.896731 288.179863 L 119.020592 287.910627 L 119.268314 288.368328 L 119.454106 288.099092 L 119.639897 288.449099 L 119.701828 288.395251 L 119.825689 288.529869 L 119.887619 288.476022 L 120.135341 288.018321 L 120.197272 288.152939 L 120.259202 288.099092 L 120.630785 287.883703 L 120.692716 288.018321 L 120.754646 287.964474 L 121.126229 287.399079 L 121.373951 286.914454 L 121.497812 286.725989 L 121.559743 286.860607 L 121.621673 286.779836 L 121.869395 286.402906 L 121.993256 286.672142 L 122.055187 286.618295 L 122.240978 286.402906 L 122.302909 286.537524 L 122.42677 286.322135 L 122.4887 286.456753 L 122.550631 286.322135 L 122.612561 286.402906 L 122.984144 286.025976 L 123.046075 286.106747 L 123.108005 286.241364 L 123.417658 285.783663 L 123.541519 285.649046 L 123.66538 285.837511 L 123.851171 285.595198 L 123.913102 285.46058 L 123.975032 285.595198 L 124.036963 285.541351 L 124.098893 285.487504 L 124.346615 285.810587 L 124.656268 285.245192 L 124.90399 285.46058 L 124.965921 285.325963 L 125.027851 285.37981 L 125.585226 284.922109 L 125.709087 285.110574 L 125.894878 284.895185 L 126.08067 284.975956 L 126.266461 284.679796 L 126.328392 284.814414 L 126.761905 284.356713 L 127.133488 283.737471 L 127.195419 283.872089 L 127.505071 283.387464 L 127.567002 283.333617 L 127.752793 283.522082 L 127.938585 283.6567 L 128.124376 283.360541 L 128.186307 283.495159 L 128.248237 283.629777 L 128.310168 283.495159 L 128.372098 283.549006 L 128.495959 283.6567 L 128.681751 283.306694 L 128.805612 283.575929 L 128.867542 283.495159 L 129.362986 282.929763 L 129.610708 282.60668 L 129.734569 282.822069 L 129.920361 282.60668 L 129.982291 282.741298 L 130.230013 282.391292 L 130.291944 282.52591 L 130.415805 282.337444 L 130.539666 282.445139 L 130.911249 281.879744 L 131.09704 282.175903 L 131.158971 282.095132 L 131.282832 281.879744 L 131.344762 282.014361 L 131.468623 282.014361 L 131.592484 282.014361 L 131.778276 282.337444 L 131.964067 282.22975 L 132.211789 282.579757 L 133.016886 281.395119 L 133.078816 281.260501 L 133.140747 281.395119 L 133.202677 281.314348 L 133.264608 281.368195 L 133.388469 281.17973 L 133.450399 281.233577 L 133.636191 281.072036 L 134.131635 280.641259 L 134.255496 280.829724 L 134.379357 280.560488 L 134.441287 280.695106 L 134.503218 280.641259 L 134.81287 280.04894 L 134.936731 280.04894 L 135.246384 279.672009 L 135.308314 279.75278 L 135.432175 279.483544 L 135.494106 279.618162 L 135.679897 279.402774 L 135.98955 278.99892 L 136.237272 278.541219 L 136.361133 278.541219 L 136.732716 277.975824 L 137.166229 277.383505 L 137.413951 277.814282 L 138.157117 276.845033 L 138.219048 276.979651 L 138.280978 276.89888 L 138.714492 276.414256 L 138.900283 276.064249 L 139.024144 276.279638 L 139.333797 275.821937 L 139.457658 275.606548 L 139.519588 275.687319 L 139.581519 275.821937 L 139.643449 275.687319 L 139.70538 275.821937 L 139.76731 275.687319 L 139.829241 275.821937 L 139.891171 275.768089 L 140.262754 275.498854 L 140.324685 275.633472 L 140.696268 275.041153 L 140.758198 274.987305 L 140.882059 275.256541 L 140.94399 275.175771 L 141.253642 274.691146 L 141.315573 274.744993 L 141.377503 274.79884 L 141.439434 274.71807 L 141.501364 274.583452 L 141.563295 274.71807 L 141.625225 274.637299 L 141.687156 274.556528 L 141.749086 274.637299 L 142.24453 274.071904 L 142.430322 273.748821 L 142.554183 273.748821 L 143.48314 273.075731 L 143.545071 273.210349 L 143.730862 272.887266 L 143.792793 272.968037 L 143.854723 272.914189 L 143.916654 272.860342 L 143.978584 272.941113 L 144.164376 273.210349 L 144.226306 273.075731 L 144.597889 272.375718 L 144.65982 272.510336 L 144.969472 272.025711 L 145.279125 271.648781 L 145.464916 271.379545 L 145.588777 271.56801 L 145.96036 270.948768 L 146.208082 271.433392 L 146.455804 270.975691 L 146.517735 271.110309 L 147.075109 270.114136 L 147.756345 269.360276 L 147.818275 269.414123 L 147.942136 269.144887 L 148.004067 269.225658 L 148.127928 269.225658 L 148.499511 268.983346 L 148.561441 269.117964 L 148.809163 268.767957 L 148.994955 268.902575 L 149.67619 267.66409 L 149.738121 267.744861 L 149.923912 267.583319 L 150.047773 267.798708 L 150.109704 267.717937 L 150.295495 267.421778 L 150.357426 267.475625 L 150.419356 267.394854 L 150.729009 266.964077 L 150.9148 266.61407 L 150.976731 266.694841 L 151.162522 266.883306 L 151.657966 265.994828 L 151.719897 266.129446 L 151.905688 265.887133 L 151.967619 266.021751 L 152.029549 265.967904 L 152.277271 265.56405 L 152.339202 265.617898 L 152.401132 265.698668 L 152.524993 265.429432 L 152.648854 265.617898 L 152.896576 265.321738 L 152.958507 265.375585 L 153.020437 265.321738 L 153.144298 265.537127 L 153.639742 264.944808 L 153.701673 265.025579 L 153.825534 264.837114 L 153.887464 264.890961 L 153.949395 264.756343 L 154.135186 265.106349 L 154.197117 265.052502 L 154.320978 264.890961 L 154.444839 265.106349 L 154.5687 264.837114 L 154.63063 264.890961 L 154.692561 264.971731 L 155.002213 264.51403 L 155.249935 264.729419 L 155.311866 264.648648 L 155.435727 264.379413 L 155.621518 264.567878 L 155.683449 264.487107 L 155.80731 264.756343 L 155.993101 264.540954 L 156.116962 264.756343 L 156.240823 264.594801 L 156.364684 264.783266 L 156.426615 264.648648 L 156.488545 264.783266 L 156.550476 264.729419 L 156.612406 264.783266 L 156.674337 264.648648 L 156.736267 264.783266 L 156.983989 264.43326 L 157.04592 264.567878 L 157.10785 264.51403 L 158.34646 263.033233 L 158.470321 263.302469 L 158.841904 262.683227 L 158.903835 262.737074 L 159.213487 262.279373 L 159.337348 262.387067 L 159.399279 262.252449 L 159.461209 262.387067 L 159.52314 262.306296 L 160.018584 261.740901 L 160.390167 261.175506 L 160.514028 261.175506 L 160.575958 261.040888 L 160.637889 261.094735 L 161.133333 260.690881 L 161.195263 260.825499 L 161.257194 260.690881 L 161.319124 260.744728 L 161.381055 260.690881 L 161.442985 260.771652 L 161.504916 260.825499 L 161.690707 260.556263 L 161.814568 260.771652 L 162.06229 260.448569 L 162.124221 260.52934 L 162.186151 260.475493 L 162.310012 260.287027 L 162.557734 260.367798 L 162.805456 260.15241 L 162.867387 260.23318 L 162.929317 260.179333 L 163.858275 259.263931 L 163.982136 259.075466 L 164.353719 259.344702 L 164.53951 259.048543 L 164.601441 259.18316 L 164.787232 258.940848 L 164.849163 258.994695 L 164.911093 258.860077 L 165.034954 259.048543 L 165.096885 258.913925 L 165.220746 259.129313 L 165.282676 259.075466 L 165.406537 259.075466 L 165.592329 259.129313 L 165.77812 258.967772 L 165.901981 258.833154 L 165.963912 258.913925 L 166.149703 258.590842 L 166.335495 258.671612 L 166.521286 258.402376 L 166.583217 258.536994 L 166.830939 258.213911 L 166.9548 258.483147 L 167.202522 258.186988 L 167.326383 258.321606 L 167.388313 258.267759 L 167.636035 257.917752 L 167.697966 258.05237 L 167.759896 257.971599 L 167.821827 257.917752 L 167.883757 257.998523 L 167.945688 258.079293 L 168.007618 257.944676 L 168.069549 258.079293 L 168.131479 258.025446 L 168.19341 257.890828 L 168.25534 257.971599 L 168.441132 257.702363 L 168.503062 257.836981 L 168.564993 257.890828 L 168.998506 257.110044 L 169.060437 257.244662 L 169.246228 256.921579 L 169.308159 257.056197 L 169.370089 256.975426 L 169.617811 256.760038 L 169.679742 256.894656 L 169.865533 256.733114 L 170.237116 256.383108 L 170.299047 256.517725 L 170.360977 256.436955 L 170.794491 255.736941 L 170.856421 255.656171 L 170.918352 255.790789 L 171.042213 255.5754 L 171.166074 255.844636 L 171.289935 255.5754 L 171.351865 255.629247 L 171.661518 255.386935 L 171.785379 255.5754 L 172.218892 255.306164 L 172.466614 255.494629 L 172.528545 255.413858 L 172.652406 255.629247 L 172.714336 255.494629 L 172.776267 255.5754 L 172.962058 255.333088 L 173.023989 255.19847 L 173.085919 255.333088 L 173.457502 254.740769 L 173.581363 254.740769 L 174.014877 254.498456 L 174.200668 254.713845 L 174.262599 254.767692 L 174.510321 254.363839 L 174.696112 254.552304 L 174.758043 254.606151 L 174.819973 254.52538 L 174.881904 254.444609 L 174.943834 254.579227 L 175.129626 254.363839 L 175.191556 254.309991 L 175.253487 254.444609 L 175.315417 254.363839 L 175.563139 253.959985 L 175.62507 254.013832 L 175.687 254.067679 L 175.748931 253.986908 L 175.934722 253.583055 L 175.996653 253.717672 L 176.120514 253.529207 L 176.182444 253.583055 L 176.244375 253.448437 L 176.306305 253.529207 L 176.430166 253.529207 L 176.492097 253.663825 L 176.615958 253.47536 L 176.677888 253.556131 L 176.801749 253.340742 L 176.86368 253.47536 L 176.92561 253.421513 L 177.111402 253.09843 L 177.235263 253.313819 L 177.544915 252.748423 L 177.606846 252.883041 L 177.854568 252.479188 L 177.916498 252.559958 L 178.040359 252.34457 L 178.10229 252.42534 L 178.16422 252.371493 L 178.288081 252.102257 L 178.350012 252.156104 L 178.535803 251.913792 L 178.597734 252.04841 L 178.659664 252.183028 L 178.721595 252.102257 L 178.783525 252.183028 L 178.907386 251.967639 L 178.969317 252.04841 L 179.031247 251.994563 L 179.217039 251.725327 L 179.3409 251.536862 L 179.526691 251.752251 L 180.022135 250.890696 L 180.145996 250.99839 L 180.207927 250.91762 L 180.64144 250.540689 L 180.827232 250.863772 L 181.013023 250.459919 L 181.198815 250.783002 L 181.446537 250.432995 L 182.251633 249.544517 L 182.375494 249.356052 L 182.870938 248.52142 L 183.180591 248.117567 L 183.366382 248.306032 L 183.428313 248.225261 L 183.552174 248.494497 L 183.614104 248.44065 L 183.676035 248.494497 L 183.737965 248.359879 L 183.799896 248.413726 L 184.171479 248.198337 L 184.233409 248.252185 L 184.481131 247.902178 L 184.852714 247.471401 L 184.976575 247.202165 L 185.224297 247.659866 L 185.286228 247.606018 L 185.348158 247.740636 L 185.843602 246.906005 L 186.091324 246.421381 L 186.277116 246.017527 L 186.400977 246.286763 L 186.462907 246.152145 L 186.524838 246.286763 L 186.586768 246.232916 L 187.020282 245.829062 L 187.144143 246.04445 L 187.206073 245.990603 L 187.453795 245.66752 L 187.825378 245.075201 L 187.887309 245.129049 L 188.196961 244.698271 L 188.320822 244.563653 L 188.382753 244.644424 L 188.568544 244.375188 L 188.630475 244.455959 L 188.692405 244.402112 L 189.187849 243.836716 L 189.373641 243.621328 L 190.178737 243.002085 L 190.240668 243.082856 L 190.302598 242.948238 L 190.364529 243.002085 L 190.798042 242.652079 L 190.859973 242.786697 L 190.921903 242.732849 L 191.045764 242.517461 L 191.107695 242.598231 L 191.169625 242.517461 L 191.541208 241.925142 L 191.912791 241.467441 L 191.974722 241.332823 L 192.036652 241.467441 L 192.160513 241.278976 L 192.222444 241.413594 L 192.408235 241.090511 L 192.594027 241.332823 L 192.655957 241.198205 L 192.841749 240.848198 L 192.96561 241.036663 L 193.213332 240.552039 L 193.275262 240.605886 L 193.399123 240.794351 L 193.770706 240.148185 L 193.956498 240.202032 L 194.018428 240.067414 L 194.080359 240.148185 L 194.142289 240.228956 L 194.20422 240.175109 L 194.390011 240.121262 L 194.451942 240.202032 L 194.513872 240.121262 L 194.575803 240.175109 L 194.637733 240.094338 L 194.947386 239.717408 L 195.133177 239.528943 L 195.195108 239.663561 L 195.257038 239.58279 L 195.50476 239.717408 L 195.876343 239.125089 L 196.000204 239.313554 L 196.124065 239.152012 L 196.185996 239.28663 L 196.247926 239.232783 L 196.867231 238.478923 L 196.991092 238.667388 L 197.053023 238.802006 L 197.114953 238.748159 L 197.176884 238.802006 L 197.300745 238.53277 L 197.362675 238.667388 L 197.424606 238.53277 L 197.486536 238.586617 L 197.548467 238.640464 L 197.610397 238.559694 L 198.043911 238.182763 L 198.105841 238.317381 L 198.167772 238.263534 L 198.663216 237.725062 L 198.725146 237.85968 L 198.849007 237.590444 L 198.910938 237.644292 L 199.096729 237.698139 L 199.406382 237.455827 L 199.530243 237.617368 L 199.592173 237.536597 L 199.839895 237.294285 L 199.901826 237.375056 L 199.963756 237.321209 L 200.025687 237.240438 L 200.149548 237.509674 L 200.39727 237.186591 L 200.644992 237.078896 L 200.706922 237.213514 L 201.078505 236.648119 L 202.193254 235.544252 L 202.255185 235.463481 L 202.317115 235.598099 L 202.688698 235.032704 L 202.998351 235.38271 L 203.060281 235.248092 L 203.246073 235.032704 L 203.431864 235.00578 L 203.555725 235.00578 L 203.927308 234.682697 L 203.989239 234.817315 L 204.298891 234.359614 L 204.670474 234.036531 L 204.732405 234.171149 L 204.794335 234.090378 L 204.918196 233.982684 L 204.980127 234.117302 L 205.042057 233.982684 L 205.289779 234.278843 L 205.35171 234.224996 L 205.41364 234.359614 L 205.537501 234.090378 L 205.599432 234.171149 L 205.661362 234.090378 L 205.785223 234.359614 L 205.847154 234.278843 L 205.909084 234.332691 L 205.971015 234.25192 L 206.218737 233.928837 L 206.466459 234.144225 L 206.65225 233.95576 L 206.714181 234.009607 L 206.776111 233.87499 L 206.838042 233.928837 L 206.899972 234.063455 L 206.961903 233.982684 L 207.147694 233.686524 L 207.209625 233.821142 L 207.271555 233.87499 L 207.395416 233.605754 L 207.457347 233.740372 L 207.643138 233.390365 L 207.705069 233.524983 L 207.766999 233.390365 L 207.952791 233.605754 L 208.014721 233.659601 L 208.138582 233.444212 L 208.200513 233.498059 L 208.262443 233.417289 L 208.324374 233.551907 L 208.386304 233.471136 L 208.510165 233.659601 L 208.572096 233.524983 L 208.634026 233.390365 L 208.695957 233.444212 L 208.757887 233.57883 L 208.819818 233.498059 L 209.005609 233.148053 L 209.06754 233.2019 L 209.12947 233.282671 L 209.191401 233.148053 L 209.253331 233.282671 L 209.315262 233.228823 L 209.377192 233.148053 L 209.439123 233.2019 L 209.501053 233.282671 L 209.562984 233.2019 L 209.748775 232.959588 L 209.934567 233.309594 L 209.996497 233.174976 L 210.120358 232.986511 L 210.430011 232.44804 L 210.491941 232.501887 L 210.677733 232.286498 L 211.235107 232.663428 L 211.54476 232.232651 L 211.60669 232.313422 L 211.730551 232.124956 L 211.792482 232.205727 L 211.854412 232.15188 L 211.916343 232.071109 L 212.102134 232.286498 L 212.597578 231.451867 L 212.78337 231.640332 L 212.907231 231.371096 L 212.969161 231.505714 L 213.031092 231.371096 L 213.093022 231.424943 L 213.340744 231.721103 L 213.836188 232.232651 L 214.08391 231.936491 L 214.207771 232.124956 L 214.269702 232.044186 L 214.455493 231.801873 L 214.517424 231.667256 L 214.579354 231.748026 L 214.827076 231.505714 L 214.889007 231.640332 L 214.950937 231.559561 L 215.198659 231.344172 L 215.26059 231.47879 L 215.446381 231.290325 L 215.508312 231.371096 L 215.694103 231.182631 L 216.003756 231.021089 L 216.065686 231.155707 L 216.251478 230.832624 L 216.313408 230.913395 L 216.375339 230.778777 L 216.437269 230.832624 L 216.684991 230.671083 L 216.746922 230.751854 L 216.808852 230.671083 L 216.932713 230.401847 L 216.994644 230.455694 L 217.056574 230.536465 L 217.304296 230.240305 L 217.366227 230.374923 L 217.428157 230.294153 L 217.613949 229.944146 L 217.675879 229.997993 L 217.73781 230.132611 L 217.79974 229.997993 L 217.861671 230.05184 L 218.047462 230.159535 L 218.419045 229.567216 L 218.480976 229.621063 L 218.666767 229.217209 L 218.728698 229.29798 L 218.852559 229.082591 L 218.914489 229.136438 L 219.03835 229.244133 L 219.100281 229.163362 L 219.348003 228.840279 L 219.471864 229.028744 L 219.719586 228.571043 L 219.843447 228.759508 L 219.905377 228.62489 L 220.091169 228.54412 L 220.153099 228.597967 L 220.21503 228.463349 L 220.27696 228.54412 L 220.400821 228.54412 L 220.586613 228.867203 L 220.710474 228.705661 L 220.772404 228.840279 L 220.958196 228.490272 L 221.205918 228.894126 L 221.391709 228.651814 L 221.763292 228.059495 L 222.134875 227.655641 L 222.258736 227.467176 L 222.320667 227.601794 L 222.382597 227.521023 L 222.630319 227.332558 L 222.69225 227.467176 L 222.75418 227.413329 L 222.939972 227.601794 L 223.063833 227.386405 L 223.311555 227.709488 L 223.373485 227.763336 L 223.868929 226.928704 L 224.302443 226.471003 L 224.488234 226.686392 L 224.735956 226.471003 L 224.797887 226.605621 L 224.921748 226.390233 L 224.983678 226.524851 L 225.107539 226.255615 L 225.2314 226.524851 L 225.293331 226.390233 L 225.355261 226.524851 L 225.417192 226.390233 L 225.479122 226.471003 L 225.541053 226.605621 L 225.912636 226.040226 L 225.974566 226.174844 L 226.036497 226.120997 L 226.346149 225.636372 L 226.40808 225.690219 L 226.531941 225.824837 L 226.593871 225.744067 L 226.841593 225.259442 L 227.027385 225.663296 L 227.089315 225.528678 L 227.151246 225.609449 L 227.275107 225.609449 L 227.337037 225.474831 L 227.398968 225.528678 L 227.64669 225.232518 L 227.70862 225.367136 L 227.894412 225.609449 L 227.956342 225.474831 L 228.451786 224.963283 L 228.699508 224.478658 L 229.071091 225.070977 L 229.133022 224.936359 L 229.194952 225.070977 L 229.256883 224.936359 L 229.318813 225.070977 L 229.628466 224.6402 L 229.814257 224.505582 L 229.876188 224.6402 L 229.938118 224.586352 L 230.371632 224.155575 L 230.433562 224.290193 L 230.495493 224.236346 L 230.619354 224.236346 L 230.805145 224.182499 L 231.300589 224.532505 L 231.610242 224.317117 L 231.734103 224.505582 L 231.796033 224.424811 L 231.919894 224.236346 L 232.043755 223.96711 L 232.105686 224.020957 L 232.167616 224.155575 L 232.229547 224.074804 L 232.353408 224.074804 L 232.539199 224.424811 L 232.66306 224.155575 L 232.724991 224.236346 L 232.786921 224.290193 L 232.848852 224.155575 L 232.910782 224.236346 L 232.972713 224.370964 L 233.034643 224.290193 L 233.096574 224.155575 L 233.158504 224.290193 L 233.406226 223.940186 L 233.468157 224.074804 L 233.530087 224.020957 L 233.715879 223.778645 L 233.83974 223.59018 L 233.963601 223.778645 L 234.149392 223.536333 L 234.397114 223.078632 L 234.644836 223.186326 L 234.768697 222.91709 L 234.892558 223.105555 L 235.016419 222.890166 L 235.07835 223.024784 L 235.202211 223.159402 L 235.264141 223.078632 L 235.449933 222.809396 L 235.511863 222.944014 L 235.573794 222.809396 L 235.635724 222.890166 L 235.883446 222.728625 L 235.945377 222.782472 L 236.255029 222.16323 L 236.31696 222.217077 L 236.37889 222.16323 L 236.626612 222.486313 L 236.688543 222.405542 L 236.750473 222.54016 L 236.812404 222.459389 L 236.998195 222.217077 L 237.307848 221.786299 L 237.493639 221.732452 L 237.989083 222.055535 L 238.298736 221.732452 L 238.360666 221.813223 L 238.484527 221.624758 L 238.608388 221.759376 L 238.85611 221.328598 L 239.103832 221.651681 L 239.165763 221.570911 L 239.413485 221.355522 L 239.537346 221.543987 L 239.599276 221.409369 L 239.908929 220.978592 L 240.09472 220.843974 L 240.156651 220.978592 L 240.218581 220.897821 L 240.590164 220.709356 L 240.714025 220.978592 L 240.775956 220.897821 L 241.023678 221.059363 L 241.2714 220.951668 L 241.642983 221.220904 L 241.704913 221.140133 L 241.766844 221.274751 L 241.828774 221.193981 L 242.014566 221.059363 L 242.076496 221.193981 L 242.324218 220.897821 L 242.386149 221.032439 L 242.448079 220.897821 L 242.51001 221.032439 L 242.57194 220.897821 L 242.695801 221.11321 L 242.757732 221.059363 L 242.943523 220.897821 L 243.005454 220.951668 L 243.315106 220.413197 L 243.500898 220.493967 L 243.686689 220.628585 L 243.81055 220.44012 L 243.934411 220.709356 L 244.182133 220.224731 L 244.244064 220.359349 L 244.305994 220.305502 L 244.553716 219.955496 L 244.615647 220.090114 L 244.863369 219.793954 L 244.925299 219.740107 L 244.98723 219.874725 L 245.04916 219.740107 L 245.111091 219.820878 L 245.234952 219.659336 L 245.296882 219.713183 L 245.358813 219.847801 L 245.606535 219.3901 L 245.730396 219.497795 L 246.040048 218.905476 L 246.101979 219.040094 L 246.163909 218.905476 L 246.28777 219.174712 L 246.535492 218.797781 L 246.597423 218.932399 L 246.845145 218.528546 L 246.907075 218.663163 L 247.340589 217.96315 L 247.402519 218.097768 L 247.46445 218.043921 L 247.588311 217.828532 L 247.712172 218.016997 L 247.836033 217.882379 L 247.897963 217.936227 L 247.959894 217.990074 L 248.083755 217.801609 L 248.145685 217.882379 L 248.207616 217.828532 L 248.393407 217.747762 L 248.579199 217.990074 L 248.641129 218.124692 L 248.70306 217.990074 L 248.826921 218.205462 L 248.888851 218.124692 L 249.012712 218.34008 L 249.198504 218.151615 L 249.260434 218.205462 L 249.322365 218.124692 L 249.693948 217.693914 L 249.879739 217.370831 L 250.0036 217.640067 L 250.065531 217.505449 L 250.127461 217.58622 L 250.499044 217.343908 L 250.560975 217.478526 L 250.622905 217.424678 L 250.746766 217.236213 L 250.808697 217.290061 L 250.932558 217.101595 L 251.118349 217.263137 L 251.366071 216.859283 L 251.428002 216.993901 L 251.489932 216.940054 L 251.675724 216.670818 L 251.737654 216.805436 L 251.799585 216.751589 L 251.861515 216.670818 L 251.985376 216.886207 L 252.047307 216.83236 L 252.295029 216.455429 L 252.356959 216.590047 L 252.41889 216.509277 L 252.48082 216.563124 L 252.542751 216.428506 L 252.604681 216.509277 L 252.666612 216.590047 L 252.728542 216.455429 L 252.790473 216.509277 L 253.162056 216.186194 L 253.285917 216.374659 L 253.533639 216.051576 L 253.71943 215.836187 L 253.781361 215.890034 L 253.843291 215.755416 L 253.905222 215.890034 L 253.967152 215.809263 L 254.091013 215.593875 L 254.152944 215.728493 L 254.214874 215.674645 L 254.648388 214.947709 L 254.834179 214.705396 L 254.89611 214.786167 L 254.95804 214.920785 L 255.019971 214.840014 L 255.329623 215.163097 L 255.391554 215.082326 L 256.010859 214.220772 L 256.072789 214.35539 L 257.249469 213.332293 L 257.37333 213.520759 L 257.868774 212.982287 L 258.054565 212.578433 L 258.116496 212.713051 L 258.178426 212.63228 L 258.426148 212.336121 L 258.488079 212.25535 L 258.550009 212.389968 L 258.61194 212.25535 L 258.67387 212.309197 L 258.735801 212.443815 L 258.797731 212.389968 L 259.107384 212.066885 L 259.169314 212.147656 L 259.231245 212.093808 L 259.602828 211.905343 L 259.664758 211.959191 L 259.726689 211.87842 L 260.469855 211.232254 L 260.531785 211.366872 L 260.593716 211.232254 L 260.655646 211.366872 L 260.717577 211.286101 L 260.903368 211.366872 L 260.965299 211.232254 L 261.027229 211.313024 L 261.956187 210.209157 L 262.141978 210.478393 L 262.637422 209.966845 L 262.699353 209.832227 L 262.761283 209.966845 L 262.823214 209.912998 L 262.885144 209.859151 L 262.947075 209.993769 L 263.009005 209.939922 L 263.56638 209.212985 L 263.62831 209.266832 L 263.690241 209.40145 L 263.752171 209.320679 L 264.309546 208.620666 L 264.371476 208.755284 L 264.433407 208.620666 L 264.495337 208.755284 L 264.743059 208.324506 L 264.80499 208.405277 L 265.052712 207.947576 L 265.114642 208.082194 L 265.176573 207.947576 L 265.238503 208.082194 L 265.300434 208.001423 L 265.857808 206.843709 L 265.919739 206.92448 L 266.0436 206.709091 L 266.10553 206.762938 L 266.477113 206.332161 L 266.600974 206.062925 L 266.662905 206.197543 L 266.724835 206.062925 L 266.786766 206.116772 L 267.158349 205.659071 L 267.220279 205.793689 L 267.28221 205.87446 L 267.34414 205.793689 L 267.468001 205.928307 L 267.591863 205.659071 L 267.653793 205.739842 L 267.777654 205.605224 L 267.839585 205.739842 L 267.901515 205.605224 L 267.963446 205.659071 L 268.087307 205.659071 L 268.273098 205.335988 L 268.52082 205.739842 L 268.892403 205.174447 L 268.954334 205.228294 L 269.016264 205.093676 L 269.078195 205.147523 L 269.140125 205.093676 L 269.202056 205.228294 L 269.263986 205.093676 L 269.325917 205.228294 L 269.387847 205.174447 L 269.511708 204.905211 L 269.573639 204.959058 L 269.635569 205.093676 L 269.6975 205.039829 L 269.75943 204.905211 L 269.821361 205.039829 L 269.945222 204.851364 L 270.007152 204.985982 L 270.131013 204.797517 L 270.254874 204.797517 L 270.316805 204.662899 L 270.378735 204.797517 L 270.440666 204.743669 L 270.502596 204.797517 L 270.812249 204.339816 L 270.874179 204.420586 L 270.93611 204.339816 L 271.307693 204.016733 L 271.369623 204.097503 L 271.431554 204.178274 L 271.679276 203.882115 L 271.865067 204.124427 L 271.926998 204.07058 L 271.988928 204.205198 L 272.17472 203.801344 L 272.360511 204.043656 L 272.608233 203.747497 L 272.732094 204.016733 L 272.855955 203.801344 L 272.917886 203.935962 L 272.979816 203.882115 L 273.041747 203.747497 L 273.103677 203.882115 L 273.289469 203.559032 L 273.41333 203.828268 L 273.537191 203.559032 L 273.661052 203.747497 L 273.846843 203.478261 L 274.032635 203.128254 L 274.094565 203.182101 L 274.71387 202.778248 L 274.775801 202.912866 L 274.837731 202.832095 L 275.023523 202.562859 L 275.147384 202.293623 L 275.271245 202.562859 L 275.395106 202.34747 L 275.457036 202.401317 L 275.518967 202.535935 L 275.580897 202.455165 L 276.262133 201.701304 L 276.324063 201.835922 L 276.385994 201.701304 L 276.571785 201.889769 L 276.757577 202.132082 L 276.819507 202.051311 L 277.005299 201.782075 L 277.067229 201.835922 L 277.12916 201.755151 L 277.438812 201.458992 L 277.624604 201.728228 L 277.872326 201.432068 L 277.934256 201.351298 L 277.996187 201.432068 L 278.120048 201.243603 L 278.305839 200.92052 L 278.36777 201.055138 L 278.4297 200.974367 L 278.677422 200.597437 L 278.801283 200.812826 L 278.863214 200.758979 L 279.172866 200.462819 L 279.358658 200.597437 L 279.482519 200.435896 L 279.544449 200.489743 L 279.730241 200.839749 L 279.792171 200.785902 L 279.916032 200.570514 L 279.977963 200.624361 L 280.473407 201.162833 L 280.535337 201.29745 L 280.659198 201.082062 L 280.721129 201.21668 L 280.783059 201.082062 L 280.84499 201.162833 L 280.968851 201.324374 L 281.092712 201.108985 L 281.154642 201.189756 L 281.216573 201.108985 L 281.278503 200.974367 L 281.340434 201.028215 L 281.464295 200.92052 L 281.526225 201.055138 L 281.588156 201.001291 L 281.650086 200.866673 L 281.712017 200.92052 L 282.021669 200.54359 L 282.393252 199.924348 L 282.455183 200.058965 L 282.702905 199.762806 L 283.012557 199.412799 L 283.136418 199.224334 L 283.260279 199.412799 L 283.32221 199.278181 L 283.38414 199.412799 L 283.446071 199.278181 L 283.693793 199.682035 L 284.003445 199.251258 L 284.375028 199.035869 L 284.62275 199.143564 L 284.870472 198.847404 L 285.056264 198.685863 L 285.118194 198.820481 L 285.180125 198.73971 L 285.242055 198.820481 L 285.303986 198.766633 L 285.613638 198.524321 L 285.675569 198.605092 L 285.737499 198.551245 L 285.923291 198.201238 L 285.985221 198.255085 L 286.109082 198.06662 L 286.232943 197.878155 L 286.294874 198.012773 L 286.356804 197.958926 L 286.666457 197.501225 L 286.914179 197.151218 L 287.03804 196.881982 L 287.09997 196.962753 L 287.347692 197.070447 L 287.657345 196.774288 L 287.781206 196.774288 L 288.028928 196.397358 L 288.152789 196.666594 L 288.214719 196.612746 L 288.462441 196.801212 L 288.524372 196.666594 L 288.586302 196.747364 L 289.081746 196.155045 L 289.143677 196.235816 L 289.453329 195.778115 L 289.57719 195.58965 L 290.134565 194.566554 L 290.196495 194.512707 L 290.258426 194.647325 L 290.320356 194.566554 L 290.506148 194.485783 L 290.568078 194.620401 L 290.630009 194.53963 L 291.001592 194.270394 L 291.187383 194.45886 L 291.435105 194.351165 L 291.497036 194.405012 L 291.558966 194.324242 L 291.682827 194.216547 L 291.744758 194.351165 L 291.868619 194.135777 L 291.930549 194.189624 L 292.05441 194.351165 L 292.116341 194.216547 L 292.178271 194.351165 L 292.240202 194.297318 L 292.425993 193.947311 L 292.549854 194.081929 L 292.983368 193.220375 L 293.107229 193.48961 L 293.169159 193.435763 L 293.29302 193.220375 L 293.354951 193.354993 L 293.416881 193.274222 L 293.726534 193.597305 L 293.974256 193.328069 L 294.160047 193.543458 L 294.345839 193.301145 L 294.407769 193.435763 L 294.4697 193.381916 L 294.655491 193.624228 L 294.717422 193.48961 L 295.150935 193.166527 L 295.212866 193.301145 L 295.274796 193.247298 L 295.584449 192.73575 L 295.894101 192.951139 L 296.327615 192.224202 L 296.389545 192.304973 L 296.575337 191.98189 L 296.637267 192.06266 L 296.699198 192.008813 L 296.761128 191.874195 L 296.823059 191.954966 L 296.884989 192.089584 L 297.00885 191.874195 L 297.070781 192.008813 L 297.318503 191.658807 L 297.504294 191.416494 L 297.566225 191.281876 L 297.628155 191.335724 L 297.690086 191.470342 L 297.752016 191.416494 L 298.309391 190.420322 L 298.371321 190.55494 L 298.433252 190.420322 L 298.557113 190.689558 L 298.804835 190.285704 L 298.928696 190.420322 L 299.300279 190.070315 L 299.48607 190.204933 L 299.548001 190.124162 L 299.609931 190.25878 L 299.671862 190.204933 L 299.733792 190.25878 L 299.857653 190.043391 L 299.919584 190.178009 L 299.981514 190.097239 L 300.229236 189.639538 L 300.415028 189.962621 L 300.538889 189.747232 L 300.600819 189.88185 L 300.66275 189.828003 L 300.972402 189.989544 L 301.343985 189.316455 L 301.405916 189.451073 L 301.467846 189.397225 L 301.591707 189.397225 L 301.777499 189.477996 L 301.90136 189.289531 L 302.025221 189.020295 L 302.149082 189.20876 L 303.078039 188.266435 L 303.449622 187.916428 L 303.511553 188.051046 L 303.821205 187.566422 L 303.883136 187.701039 L 303.945066 187.620269 L 304.068927 187.754887 L 304.37858 187.431804 L 304.502441 187.701039 L 304.564371 187.566422 L 304.626302 187.620269 L 304.750163 187.808734 L 304.874024 188.07797 L 304.935954 187.943352 L 305.059815 188.212588 L 305.121746 188.15874 L 305.369468 187.808734 L 305.741051 187.189491 L 306.050703 186.704867 L 306.298425 186.516402 L 306.360356 186.65102 L 306.422286 186.597172 L 306.793869 186.381784 L 306.979661 186.543325 L 307.165452 186.193319 L 307.227383 186.327937 L 307.598966 185.762541 L 307.970549 185.439458 L 308.032479 185.574076 L 308.09441 185.520229 L 308.651784 184.766369 L 308.837576 185.035604 L 309.766533 184.120203 L 309.890394 183.904814 L 310.014255 184.093279 L 310.200047 183.87789 L 310.261977 183.824043 L 310.323908 183.904814 L 310.385838 184.039432 L 310.63356 183.689425 L 310.757421 183.850967 L 310.819352 183.770196 L 310.943213 183.770196 L 311.129004 183.527884 L 311.190935 183.662502 L 311.252865 183.608654 L 311.438657 183.285571 L 311.562518 183.474036 L 311.87217 184.066355 L 311.934101 183.931737 L 311.996031 184.066355 L 312.057962 184.012508 L 312.429545 183.339419 L 312.615336 183.689425 L 312.801128 183.366342 L 312.863058 183.420189 L 313.11078 183.070183 L 313.668155 182.639405 L 313.730085 182.774023 L 313.792016 182.720176 L 314.163599 182.316322 L 314.34939 181.993239 L 314.411321 182.127857 L 314.473251 182.047086 L 314.659043 181.69708 L 314.720973 181.750927 L 315.092556 181.373997 L 315.154487 181.454768 L 315.216417 181.32015 L 315.278348 181.373997 L 315.402209 181.643233 L 315.464139 181.562462 L 315.588 181.562462 L 316.021514 181.293226 L 316.207305 181.427844 L 316.516958 181.050914 L 316.578888 181.185532 L 316.82661 181.589385 L 316.888541 181.454768 L 316.950471 181.589385 L 317.198193 181.185532 L 317.260124 181.239379 L 317.322054 181.158608 L 318.00329 180.3509 L 318.06522 180.485518 L 318.127151 180.404748 L 318.622595 179.866276 L 318.746456 180.054741 L 318.870317 179.866276 L 318.932247 179.920123 L 319.30383 179.300881 L 319.489622 179.273957 L 319.551552 179.408575 L 319.985066 178.681638 L 320.108927 178.816256 L 320.170857 178.762409 L 320.356649 178.627791 L 320.418579 178.762409 L 320.48051 178.627791 L 320.54244 178.681638 L 320.728232 178.627791 L 320.790162 178.762409 L 321.285606 177.873931 L 321.533328 178.197014 L 321.904911 177.631618 L 322.524216 177.146994 L 322.710008 177.443153 L 322.771938 177.308535 L 322.95773 177.362382 L 323.143521 177.335459 L 323.205452 177.470077 L 323.267382 177.335459 L 323.329313 177.470077 L 323.391243 177.335459 L 323.453174 177.470077 L 323.515104 177.389306 L 323.638965 177.12007 L 323.700896 177.173917 L 323.762826 177.254688 L 323.824757 177.173917 L 324.072479 176.716216 L 324.19634 176.904681 L 324.25827 176.823911 L 324.629853 176.231592 L 324.691784 176.312363 L 324.753714 176.231592 L 324.939506 175.827738 L 325.001436 175.962356 L 325.063367 175.881585 L 325.868463 175.154648 L 325.930394 175.289266 L 325.992324 175.154648 L 326.054255 175.208496 L 326.178116 175.073878 L 326.240046 175.208496 L 326.487768 174.912336 L 326.797421 174.562329 L 326.859351 174.616177 L 326.921282 174.481559 L 326.983212 174.616177 L 327.230934 174.239246 L 327.354795 174.454635 L 327.416726 174.320017 L 327.664448 173.916163 L 327.726378 174.050781 L 327.788309 173.996934 L 328.097961 173.566157 L 328.407614 173.21615 L 328.655336 172.893067 L 328.779197 172.704602 L 328.841127 172.569984 L 328.903058 172.650755 L 329.026919 172.919991 L 329.088849 172.785373 L 329.15078 172.919991 L 329.398502 172.381519 L 329.460432 172.516137 L 329.522363 172.46229 L 329.584293 172.327672 L 329.770085 172.516137 L 329.893946 172.327672 L 329.955876 172.381519 L 330.017807 172.300748 L 330.203598 172.112283 L 330.327459 172.381519 L 330.575181 172.004589 L 330.637112 172.139207 L 330.699042 172.08536 L 331.194486 171.250728 L 331.256417 171.196881 L 331.318347 171.331499 L 331.504139 171.008416 L 331.566069 171.089187 L 331.628 171.03534 L 331.875722 170.73918 L 332.061513 170.335326 L 332.123444 170.469944 L 332.185374 170.416097 L 332.247305 170.281479 L 332.309235 170.36225 L 332.433096 170.36225 L 332.495027 170.416097 L 332.92854 169.68916 L 333.485915 169.123765 L 333.795567 168.639141 L 333.857498 168.773758 L 333.919428 168.719911 L 334.229081 168.208363 L 334.291011 168.289134 L 334.352942 168.208363 L 334.786455 167.696815 L 335.219969 167.185267 L 335.34383 167.373732 L 335.839274 166.431406 L 335.901204 166.485254 L 336.272787 165.866011 L 336.396648 166.0814 L 336.64437 165.731393 L 336.706301 165.78524 L 336.768231 165.70447 L 336.954023 165.300616 L 337.077884 165.489081 L 337.263675 165.273692 L 337.325606 165.40831 L 337.387536 165.327539 L 337.449467 165.381387 L 337.511397 165.300616 L 337.697189 165.165998 L 337.759119 165.300616 L 337.82105 165.165998 L 337.88298 165.300616 L 337.944911 165.219845 L 338.068772 165.03138 L 338.316494 164.708297 L 338.440355 164.869838 L 338.626146 164.627526 L 338.750007 164.627526 L 338.811938 164.573679 L 338.935799 164.842915 L 338.997729 164.789068 L 339.183521 164.600603 L 339.802826 163.819819 L 339.864756 163.954437 L 340.050548 163.712124 L 340.236339 163.792895 L 340.484061 163.469812 L 340.545992 163.60443 L 340.979505 162.85057 L 341.227227 163.146729 L 341.59881 163.335194 L 341.722671 163.173653 L 341.784602 163.254423 L 341.908463 163.442888 L 341.970393 163.362118 L 342.156185 163.146729 L 342.218115 163.200576 L 342.403907 163.039035 L 342.589698 163.254423 L 342.713559 163.039035 L 342.83742 163.2275 L 342.961281 163.012111 L 343.023212 163.146729 L 343.270934 162.823646 L 343.332864 162.769799 L 343.394795 162.904417 L 343.518656 162.715952 L 343.580586 162.85057 L 343.766378 162.527487 L 343.828308 162.608257 L 343.890239 162.527487 L 344.199891 162.069786 L 344.261822 162.123633 L 344.447613 161.962091 L 344.881127 161.477467 L 344.943057 161.531314 L 345.066918 161.342849 L 345.190779 161.531314 L 345.686223 160.992842 L 345.748154 161.12746 L 345.995876 160.642835 L 346.119737 160.912071 L 346.305528 160.588988 L 346.367459 160.723606 L 346.429389 160.642835 L 346.615181 160.3736 L 346.739042 160.185135 L 346.800972 160.319752 L 347.234486 159.431274 L 347.420277 159.538968 L 347.79186 158.973573 L 347.915721 158.838955 L 348.225374 159.242809 L 348.287304 159.108191 L 348.473096 159.32358 L 348.720818 159.02742 L 348.782748 158.892802 L 348.844679 158.94665 L 348.906609 159.02742 L 348.96854 158.892802 L 349.092401 159.162038 L 349.154331 159.108191 L 349.340123 158.865879 L 349.587845 158.515872 L 349.711706 158.515872 L 349.773636 158.462025 L 349.835567 158.596643 L 349.959428 158.408178 L 350.021358 158.462025 L 350.20715 158.112018 L 350.26908 158.165866 L 350.331011 158.085095 L 350.392941 158.219713 L 350.702594 157.681241 L 350.764524 157.815859 L 350.950316 157.412005 L 351.074177 157.681241 L 351.136107 157.627394 L 351.383829 157.762012 L 351.50769 157.762012 L 351.693482 158.031248 L 351.755412 157.89663 L 351.817343 157.9774 L 351.879273 158.031248 L 351.941204 157.89663 L 352.003134 157.950477 L 352.065065 157.89663 L 352.126995 158.031248 L 352.188926 157.950477 L 352.312787 157.815859 L 352.374717 157.950477 L 352.436648 157.89663 L 352.560509 157.708165 L 352.622439 157.573547 L 352.68437 157.627394 L 352.808231 157.842783 L 352.870161 157.708165 L 352.932092 157.654317 L 353.055953 157.842783 L 353.303675 157.304311 L 353.427536 157.573547 L 353.551397 157.304311 L 353.613327 157.438929 L 353.675258 157.385082 L 353.799119 157.492776 L 353.861049 157.358158 L 353.92298 157.412005 L 354.108771 157.573547 L 354.232632 157.358158 L 354.418424 157.654317 L 354.975798 156.658145 L 355.347381 156.146597 L 355.409312 156.200444 L 355.471242 156.335062 L 355.533173 156.200444 L 355.595103 156.335062 L 355.657034 156.254291 L 356.028617 155.904284 L 356.090547 156.038902 L 356.152478 155.985055 L 356.833713 155.392736 L 357.019505 155.554278 L 357.143366 155.554278 L 357.576879 155.069653 L 357.70074 155.285042 L 357.762671 155.150424 L 357.824601 155.015806 L 357.886532 155.150424 L 357.948462 155.015806 L 358.010393 155.150424 L 358.134254 154.961959 L 358.381976 155.177348 L 358.443906 155.096577 L 358.753559 154.611952 L 358.815489 154.74657 L 359.001281 154.773494 L 359.496725 154.208098 L 359.620586 153.938863 L 359.682516 154.07348 L 360.17796 153.211926 L 360.301821 153.211926 L 360.611474 152.727301 L 360.797265 152.94269 L 361.664292 152.242677 L 361.726223 152.296524 L 361.788153 152.215753 L 361.973945 152.161906 L 362.035875 152.296524 L 362.097806 152.242677 L 362.283597 152.161906 L 363.088694 151.327275 L 363.336416 151.031115 L 363.398346 151.165733 L 363.460277 151.111886 L 363.769929 150.654185 L 363.955721 150.734956 L 364.017651 150.600338 L 364.203443 150.84265 L 364.513095 150.654185 L 364.636956 150.788803 L 364.698887 150.734956 L 364.822748 150.734956 L 364.884678 150.681109 L 364.946609 150.815727 L 365.194331 150.277255 L 365.256261 150.331102 L 365.937497 149.738783 L 365.999427 149.873401 L 366.247149 149.577242 L 366.30908 149.71186 L 366.37101 149.658012 L 366.432941 149.604165 L 366.494871 149.738783 L 366.556802 149.658012 L 366.680663 149.469547 L 366.742593 149.334929 L 366.804524 149.388777 L 367.114176 148.984923 L 367.361898 148.634916 L 367.54769 148.823381 L 367.981203 148.096444 L 368.166995 148.284909 L 368.290856 148.150292 L 368.352786 148.284909 L 368.414717 148.204139 L 368.600508 147.934903 L 368.662439 148.015674 L 368.724369 148.096444 L 368.7863 147.961826 L 368.84823 148.015674 L 369.467535 147.450278 L 369.591396 147.638743 L 369.653327 147.504125 L 369.839118 147.692591 L 370.396493 147.019501 L 370.458423 147.073348 L 370.830006 146.400258 L 370.891937 146.534876 L 371.015798 146.346411 L 371.077728 146.481029 L 371.139659 146.346411 L 371.201589 146.400258 L 371.26352 146.481029 L 371.387381 146.211793 L 371.449311 146.292564 L 371.511242 146.238717 L 371.697033 146.588724 L 371.758964 146.534876 L 371.882825 146.346411 L 372.068616 146.157946 L 372.50213 145.754092 L 372.625991 145.754092 L 372.997574 145.188697 L 373.121435 145.188697 L 373.245296 145.404086 L 373.493018 145.000232 L 373.678809 145.13485 L 373.74074 145.000232 L 373.80267 145.13485 L 373.864601 145.054079 L 373.988462 144.865614 L 374.050392 145.000232 L 374.421975 144.434837 L 374.545836 144.650225 L 374.607767 144.596378 L 374.855489 144.300219 L 375.103211 143.977136 L 375.536724 143.465588 L 375.660585 143.465588 L 375.784446 143.277122 L 375.908307 143.277122 L 375.970238 143.196352 L 376.032168 143.277122 L 376.094099 143.41174 L 376.156029 143.357893 L 376.403751 143.142505 L 376.465682 143.277122 L 376.527612 143.223275 L 376.713404 142.900192 L 376.837265 143.007887 L 377.208848 142.361721 L 377.394639 142.415568 L 377.890083 141.580937 L 378.075875 141.365548 L 378.199736 141.527089 L 378.261666 141.446319 L 378.633249 140.692458 L 378.69518 140.827076 L 379.004832 140.396299 L 379.066763 140.530917 L 379.128693 140.396299 L 379.190624 140.47707 L 379.438346 140.827076 L 379.624137 140.880923 L 379.747998 140.692458 L 379.809929 140.773229 L 379.871859 140.907847 L 379.93379 140.773229 L 380.057651 140.961694 L 380.119581 140.907847 L 380.305373 141.257854 L 380.429234 140.988618 L 380.491164 141.123236 L 380.676956 140.961694 L 380.738886 141.015541 L 380.862747 140.827076 L 380.986608 141.015541 L 381.23433 140.719382 L 381.420122 140.584764 L 381.482052 140.719382 L 381.543983 140.665535 L 381.853635 140.234757 L 381.915566 140.369375 L 382.039427 140.153986 L 382.101357 140.207834 L 382.287149 140.342452 L 383.278037 139.077043 L 383.401898 139.292432 L 383.463828 139.238585 L 383.773481 138.673189 L 383.897342 138.457801 L 383.959272 138.538571 L 384.145064 138.269335 L 384.454716 138.538571 L 384.95016 137.919329 L 385.012091 138.053947 L 385.074021 137.973176 L 385.197882 137.784711 L 385.321743 137.973176 L 385.383674 137.838558 L 385.817187 137.353934 L 386.002979 137.057774 L 386.064909 137.111621 L 386.18877 136.896233 L 386.436492 137.165468 L 386.808075 136.95008 L 386.993867 137.246239 L 387.055797 137.165468 L 387.117728 137.084698 L 387.241589 137.273163 L 387.303519 137.138545 L 387.551241 137.488551 L 388.046685 136.95008 L 388.294407 137.246239 L 388.356338 137.380857 L 388.60406 137.084698 L 388.66599 137.165468 L 388.975643 136.707767 L 389.099504 136.842385 L 389.161434 136.761615 L 389.347226 137.084698 L 389.656878 136.65392 L 389.780739 136.869309 L 389.9046 136.600073 L 390.090392 136.923156 L 390.461975 136.707767 L 390.647766 136.923156 L 390.833558 136.842385 L 391.019349 136.923156 L 391.08128 136.869309 L 391.14321 137.003927 L 391.390932 136.57315 L 391.514793 136.707767 L 391.886376 135.953907 L 391.948307 136.088525 L 392.134098 135.846213 L 392.257959 135.846213 L 392.505681 135.52313 L 392.691473 135.200047 L 392.877264 135.253894 L 392.939195 135.200047 L 393.001125 135.334665 L 393.063056 135.253894 L 393.124986 135.200047 L 393.310778 135.469283 L 393.372708 135.415435 L 393.5585 135.711595 L 393.868152 135.52313 L 393.992013 135.711595 L 394.239735 135.550053 L 394.301666 135.684671 L 394.363596 135.630824 L 394.79711 135.065429 L 395.044832 135.6039 L 395.106762 135.550053 L 395.230623 135.361588 L 395.292554 135.22697 L 395.478345 135.630824 L 396.159581 134.392339 L 396.531164 133.961562 L 396.593094 134.09618 L 396.778886 133.880791 L 396.840816 133.826944 L 396.964677 134.042332 L 397.026608 133.988485 L 397.212399 133.584631 L 397.27433 133.665402 L 397.460121 133.450014 L 397.522052 133.503861 L 397.645913 133.315396 L 397.769774 133.04616 L 397.831704 133.180778 L 398.017496 132.911542 L 398.265218 133.100007 L 398.327148 132.965389 L 398.389079 133.019236 L 398.451009 133.153854 L 398.636801 132.75 L 398.698731 132.884618 L 398.822592 132.696153 L 398.884523 132.830771 L 399.379967 131.807675 L 399.627689 132.130758 L 399.875411 131.753828 L 399.999272 131.915369 L 400.061202 131.780751 L 400.123133 131.834598 L 400.185063 131.915369 L 400.246994 131.861522 L 400.370855 131.753828 L 400.432785 131.834598 L 400.494716 131.969216 L 400.556646 131.888446 L 400.866299 131.349974 L 400.99016 131.538439 L 401.237882 131.349974 L 401.485604 131.511515 L 401.609465 131.511515 L 401.671395 131.565363 L 401.733326 131.430745 L 401.857187 131.61921 L 403.157727 130.461496 L 403.219658 130.596113 L 403.281588 130.542266 L 403.591241 130.084565 L 403.653171 130.165336 L 403.715102 130.084565 L 404.024754 129.626864 L 404.334407 129.330705 L 404.458268 129.438399 L 404.644059 129.088393 L 404.70599 129.14224 L 404.76792 129.276858 L 404.829851 129.196087 L 405.015642 128.980698 L 405.077573 129.115316 L 405.139503 129.061469 L 405.201434 128.926851 L 405.263364 129.061469 L 405.325295 128.980698 L 405.449156 129.169163 L 405.511086 129.034545 L 405.573017 128.899928 L 405.758808 129.088393 L 405.820739 128.953775 L 405.882669 129.088393 L 406.192322 128.549921 L 406.254252 128.603768 L 406.316183 128.46915 L 406.378113 128.603768 L 406.440044 128.549921 L 406.687766 128.065296 L 406.749696 128.199914 L 406.811627 128.065296 L 406.873557 128.119144 L 406.935488 128.253761 L 406.997418 128.199914 L 407.18321 128.011449 L 407.24514 128.09222 L 407.554793 128.361456 L 407.678654 128.226838 L 407.740584 128.280685 L 407.802515 128.415303 L 407.926376 128.226838 L 408.050237 128.415303 L 409.66043 127.122971 L 409.908152 127.472977 L 410.341665 126.961429 L 410.527457 126.638346 L 410.651318 126.772964 L 410.89904 126.449881 L 411.456415 126.019104 L 411.704137 126.396034 L 412.07572 125.696021 L 412.13765 125.749868 L 412.199581 125.669097 L 412.509233 125.507556 L 412.756955 125.99218 L 412.880816 125.722944 L 412.942747 125.776792 L 413.933635 124.888313 L 413.995565 125.022931 L 414.305218 124.430612 L 414.429079 124.619077 L 414.491009 124.484459 L 414.800662 124.053682 L 415.048384 123.919064 L 415.110314 123.999835 L 415.296106 123.649828 L 415.358036 123.703675 L 415.481897 123.595981 L 415.605758 123.865217 L 415.667689 123.81137 L 415.85348 124.080606 L 415.915411 123.945988 L 415.977341 123.865217 L 416.039272 123.919064 L 416.163133 123.919064 L 416.410855 123.51521 L 416.534716 123.730599 L 416.596646 123.649828 L 417.03016 123.245974 L 417.215951 123.057509 L 417.277882 123.192127 L 417.463673 122.949815 L 417.711395 123.030586 L 417.959117 122.707503 L 418.021048 122.76135 L 418.082978 122.680579 L 418.392631 122.357496 L 418.516492 122.357496 L 418.578422 122.222878 L 418.640353 122.276725 L 418.702283 122.411343 L 418.888075 122.061337 L 418.950005 122.115184 L 419.197727 121.792101 L 419.259658 121.926719 L 419.321588 121.845948 L 419.631241 121.388247 L 420.064754 120.903622 L 420.312476 120.607463 L 420.436337 120.742081 L 420.684059 120.392074 L 420.74599 120.472845 L 420.80792 120.418998 L 420.931781 120.418998 L 420.993712 120.553616 L 421.055642 120.472845 L 421.179503 120.203609 L 421.241434 120.257456 L 421.613017 119.988221 L 421.736878 120.095915 L 421.9846 119.718985 L 422.170391 119.961297 L 422.294252 120.230533 L 422.356183 120.149762 L 422.541974 120.068991 L 422.727766 120.257456 L 422.851627 120.068991 L 422.913557 119.934373 L 423.099349 120.28438 L 423.28514 119.988221 L 423.347071 120.042068 L 423.409001 119.961297 L 423.594793 119.61129 L 423.656723 119.692061 L 424.090237 118.85743 L 424.276028 118.938201 L 424.337959 118.803583 L 424.399889 118.884354 L 424.647611 119.018971 L 424.833403 118.938201 L 424.957264 119.126666 L 425.081125 119.395902 L 425.390777 118.776659 L 425.452708 118.830506 L 425.576569 118.830506 L 426.195874 117.915104 L 426.257804 118.049722 L 426.381665 118.238187 L 426.567457 117.968952 L 426.629387 118.10357 L 426.691318 118.049722 L 426.753248 117.995875 L 426.93904 118.18434 L 427.062901 118.292035 L 427.124831 118.211264 L 427.372553 117.888181 L 427.434484 117.80741 L 427.496414 117.861257 L 427.558345 117.995875 L 427.744136 117.672792 L 427.806067 117.726639 L 427.867997 117.645869 L 428.053789 117.322786 L 428.115719 117.457403 L 428.425372 116.999702 L 428.796955 116.542002 L 428.920816 116.272766 L 428.982746 116.353536 L 429.230468 116.057377 L 429.602051 115.465058 L 429.663982 115.384287 L 429.725912 115.518905 L 429.911704 115.276593 L 429.973634 115.411211 L 430.035565 115.33044 L 430.407148 114.926586 L 430.469078 115.007357 L 430.531009 114.95351 L 430.592939 114.872739 L 430.65487 115.007357 L 430.7168 114.95351 L 430.778731 115.007357 L 430.840661 114.872739 L 430.902592 115.007357 L 430.964522 114.95351 L 431.212244 114.495809 L 431.274175 114.549656 L 431.459966 114.361191 L 432.203132 113.499636 L 432.265063 113.580407 L 432.326993 113.499636 L 432.450854 113.284248 L 432.512785 113.338095 L 432.636646 113.2304 L 432.698576 113.365018 L 433.070159 112.799623 L 433.255951 113.015012 L 433.317881 112.961165 L 433.379812 113.095783 L 433.689464 112.47654 L 433.751395 112.611158 L 433.937186 112.368846 L 433.999117 112.503464 L 434.494561 111.641909 L 434.680352 111.345749 L 434.742283 111.399597 L 434.928074 111.42652 L 434.990005 111.291902 L 435.051935 111.42652 L 435.299657 111.076514 L 435.423518 111.264979 L 435.485449 111.399597 L 435.547379 111.345749 L 435.60931 111.211131 L 435.67124 111.291902 L 435.918962 111.103437 L 435.980893 111.238055 L 436.166684 110.914972 L 436.414406 110.995743 L 436.600198 110.753431 L 436.90985 110.241882 L 436.971781 110.29573 L 437.033711 110.214959 L 437.095642 110.161112 L 437.219503 110.430347 L 437.281433 110.3765 L 437.343364 110.430347 L 437.714947 109.864952 L 437.838808 109.703411 L 438.024599 109.99957 L 438.14846 109.730334 L 438.210391 109.864952 L 438.272321 109.811105 L 438.334252 109.730334 L 438.396182 109.784181 L 438.458113 109.918799 L 438.520043 109.838029 L 438.891626 109.488022 L 438.953557 109.62264 L 439.015487 109.568793 L 439.139348 109.568793 L 439.263209 109.757258 L 439.32514 109.62264 L 439.758653 109.138015 L 439.882514 109.138015 L 440.192167 108.653391 L 440.501819 108.303384 L 440.687611 108.087995 L 441.121124 107.791836 L 441.183055 107.872607 L 441.244985 107.81876 L 441.306916 107.684142 L 441.368846 107.737989 L 441.430777 107.791836 L 441.492707 107.711065 L 442.050082 107.280288 L 442.112012 107.414906 L 442.173943 107.361059 L 442.235873 107.414906 L 442.607456 106.822587 L 442.669387 106.741816 L 442.731317 106.822587 L 442.855178 107.091823 L 443.04097 106.876434 L 443.1029 106.930281 L 443.164831 106.849511 L 443.350622 106.634122 L 443.412553 106.687969 L 443.660275 106.984128 L 443.969927 106.634122 L 444.031858 106.76874 L 444.34151 106.284115 L 444.403441 106.230268 L 444.465371 106.364886 L 444.651163 106.149497 L 444.713093 106.284115 L 444.775024 106.230268 L 445.51819 105.42256 L 445.827842 105.207172 L 445.889773 105.287943 L 445.951703 105.207172 L 446.261356 104.722547 L 447.128383 103.99561 L 447.190313 104.130228 L 447.252244 104.049458 L 447.561896 103.61868 L 447.747688 103.834069 L 447.871549 103.645604 L 448.05734 103.457139 L 448.305062 103.214826 L 448.366993 103.349444 L 448.428923 103.295597 L 448.490854 103.214826 L 448.552784 103.349444 L 448.614715 103.268674 L 448.800506 103.376368 L 448.986298 103.134056 L 449.048228 102.999438 L 449.110159 103.080208 L 449.172089 103.134056 L 449.481742 102.676355 L 449.543672 102.730202 L 449.605603 102.649431 L 449.853325 102.19173 L 449.977186 102.380195 L 450.039116 102.299424 L 450.162977 102.48789 L 450.348769 102.434042 L 450.410699 102.56866 L 450.47263 102.434042 L 450.53456 102.56866 L 450.596491 102.48789 L 450.782282 102.272501 L 450.968074 102.48789 L 451.030004 102.353272 L 451.091935 102.48789 L 451.153865 102.434042 L 451.339657 102.110959 L 451.463518 102.326348 L 451.525448 102.19173 L 451.587379 102.245577 L 451.77317 102.56866 L 451.897031 102.353272 L 451.958962 102.48789 L 452.020892 102.434042 L 452.082823 102.56866 L 452.144753 102.514813 L 452.206684 102.460966 L 452.268614 102.595584 L 452.330545 102.541737 L 452.640197 102.19173 L 452.825989 102.353272 L 453.754946 101.087863 L 453.816877 101.222481 L 453.940738 101.330175 L 454.312321 100.737857 L 454.498112 100.549391 L 454.621973 100.818627 L 454.683904 100.737857 L 454.869695 100.38785 L 454.931626 100.468621 L 455.303209 99.903225 L 455.365139 100.037843 L 455.42707 99.983996 L 455.550931 100.172461 L 455.612861 100.307079 L 455.674792 100.226308 L 455.736722 100.09169 L 455.798653 100.145538 L 455.860583 100.199385 L 455.922514 100.118614 L 455.984444 99.983996 L 456.046375 100.118614 L 456.108305 100.064767 L 456.294097 99.741684 L 456.417958 99.903225 L 456.479888 99.822455 L 456.789541 99.526295 L 457.037263 99.876302 L 457.099193 99.741684 L 457.223054 100.01092 L 457.284985 99.930149 L 457.656568 99.660913 L 457.718498 99.741684 L 457.96622 99.33783 L 458.152012 99.472448 L 458.399734 99.068594 L 458.585525 99.257059 L 458.833247 99.041671 L 458.895178 99.176289 L 458.957108 99.095518 L 459.266761 98.691664 L 459.328691 98.826282 L 459.514483 98.557046 L 459.700274 98.772435 L 459.947996 98.341657 L 460.071857 98.341657 L 460.567301 97.776262 L 460.753093 97.453179 L 460.815023 97.587797 L 460.876954 97.53395 L 460.938884 97.453179 L 461.000815 97.587797 L 461.248537 97.210867 L 461.372398 97.480103 L 461.558189 97.210867 L 461.62012 97.345485 L 461.68205 97.210867 L 461.743981 97.264714 L 461.867842 97.372408 L 461.991703 97.103172 L 462.053633 97.23779 L 462.177494 96.968554 L 462.239425 97.103172 L 462.301355 97.049325 L 462.487147 96.914707 L 462.549077 96.995478 L 462.796799 96.537777 L 462.85873 96.672395 L 462.92066 96.537777 L 462.982591 96.672395 L 463.044521 96.618548 L 463.106452 96.537777 L 463.168382 96.672395 L 463.354174 96.48393 L 463.601896 96.160847 L 463.973479 95.568528 L 464.283131 95.272369 L 464.468923 95.487757 L 464.530853 95.43391 L 464.592784 95.568528 L 464.654714 95.514681 L 465.026297 95.972382 L 465.088228 95.837764 L 465.459811 95.218521 L 465.707533 94.68005 L 465.831394 94.949285 L 465.955255 94.76082 L 466.017185 94.895438 L 466.079116 94.841591 L 467.627378 93.468488 L 467.751239 93.683877 L 467.81317 93.603106 L 467.8751 93.737724 L 468.122822 93.414641 L 468.246683 93.603106 L 468.308614 93.522335 L 468.432475 93.2531 L 468.494405 93.306947 L 468.556336 93.360794 L 468.618266 93.280023 L 468.865988 92.95694 L 469.05178 92.768475 L 469.361432 92.445392 L 469.485293 92.445392 L 469.794946 92.095385 L 469.856876 91.960767 L 469.980737 92.230003 L 470.104598 91.960767 L 470.166529 92.095385 L 470.228459 92.041538 L 470.414251 91.90692 L 470.600042 92.068462 L 470.661973 92.014615 L 470.847764 92.364621 L 470.909695 92.28385 L 470.971625 92.364621 L 471.033556 92.310774 L 471.095486 92.391545 L 471.343208 92.741551 L 471.59093 92.28385 L 471.652861 92.364621 L 471.714791 92.310774 L 471.776722 92.230003 L 472.024444 92.606934 L 472.210235 92.256927 L 472.272166 92.391545 L 472.334096 92.256927 L 472.396027 92.391545 L 472.457957 92.310774 L 472.519888 92.364621 L 472.82954 91.933844 L 473.572706 91.341525 L 473.634637 91.476143 L 473.696567 91.395372 L 474.130081 90.883824 L 474.192011 91.018442 L 474.315872 91.287678 L 474.625525 90.829977 L 475.059038 90.426123 L 475.182899 90.291505 L 475.24483 90.426123 L 475.30676 90.372276 L 475.368691 90.237658 L 475.430621 90.318429 L 475.554482 90.129964 L 476.297648 88.729937 L 476.48344 88.595319 L 476.54537 88.67609 L 476.607301 88.622243 L 476.978884 88.245313 L 477.040814 88.37993 L 477.102745 88.514548 L 477.164675 88.37993 L 477.226606 88.433778 L 477.288536 88.487625 L 477.350467 88.406854 L 477.907841 87.868382 L 477.969772 87.949153 L 478.031702 88.083771 L 478.341355 87.491452 L 478.465216 87.679917 L 478.651007 87.437605 L 478.712938 87.518376 L 478.774868 87.652994 L 479.208382 86.926057 L 479.270312 87.006828 L 479.332243 86.87221 L 479.394173 87.006828 L 479.518034 86.737592 L 479.579965 86.791439 L 479.641895 86.926057 L 480.075409 86.19912 L 480.508922 85.902961 L 480.942436 86.279891 L 481.190158 85.82219 L 481.314019 86.010655 L 481.49981 86.226044 L 481.623671 86.010655 L 481.685602 86.091426 L 481.747532 86.226044 L 481.809463 86.172196 L 481.995254 85.929884 L 482.057185 86.064502 L 482.119115 86.010655 L 482.242976 85.876037 L 482.428768 85.956808 L 482.67649 85.418336 L 482.73842 85.499107 L 483.853169 84.502934 L 483.97703 84.77217 L 484.224752 84.422163 L 484.348613 84.233698 L 484.534405 84.045233 L 484.596335 83.991386 L 484.658266 84.126004 L 484.720196 84.045233 L 484.782127 84.09908 L 484.967918 83.856768 L 485.15371 83.991386 L 485.277571 83.775997 L 485.339501 83.856768 L 485.463362 83.856768 L 485.834945 83.452914 L 485.896876 83.318296 L 485.958806 83.452914 L 486.268459 82.860595 L 486.39232 83.04906 L 486.45425 82.914443 L 486.516181 82.860595 L 486.701972 83.183678 L 487.011625 82.96829 L 487.259347 83.372143 L 488.002513 82.779825 L 488.064443 82.914443 L 488.126374 82.833672 L 488.497957 82.106735 L 488.745679 82.187506 L 489.117262 81.568263 L 489.612706 81.110562 L 489.798497 81.379798 L 489.984289 81.056715 L 490.10815 81.191333 L 490.232011 81.002868 L 490.293941 81.083639 L 490.479733 80.679785 L 490.541663 80.814403 L 490.603594 80.760556 L 491.037107 80.006695 L 491.099038 80.087466 L 491.160968 80.033619 L 491.222899 79.899001 L 491.284829 80.033619 L 491.34676 79.952848 L 491.656412 79.468224 L 491.780273 79.575918 L 492.027995 79.252835 L 492.089926 79.198988 L 492.213787 79.387453 L 492.337648 79.198988 L 492.399578 79.252835 L 492.523439 79.06437 L 492.6473 79.252835 L 492.833092 79.010523 L 492.895022 78.875905 L 492.956953 78.956675 L 493.018883 79.037446 L 493.328536 78.579745 L 494.257493 77.368184 L 494.381354 77.63742 L 494.443285 77.583572 L 494.505215 77.448955 L 494.567146 77.502802 L 494.629076 77.63742 L 494.814868 77.314337 L 494.876798 77.395107 L 494.938729 77.260489 L 495.000659 77.395107 L 495.06259 77.314337 L 495.496103 76.856636 L 495.681895 76.506629 L 495.867686 76.856636 L 495.929617 76.722018 L 495.991547 76.856636 L 496.177339 76.506629 L 496.239269 76.641247 L 496.3012 76.5874 L 496.425061 76.775865 L 496.486991 76.910483 L 496.734713 76.5874 L 496.858574 76.452782 L 496.920505 76.5874 L 497.354018 75.806616 L 497.53981 76.156622 L 497.60174 76.102775 L 498.035254 75.698921 L 498.097184 75.779692 L 498.282976 75.860463 L 498.406837 75.591227 L 498.530698 75.779692 L 499.459655 74.971985 L 499.583516 75.16045 L 500.574404 74.325819 L 500.636335 74.460437 L 500.698265 74.325819 L 500.884057 74.648902 L 500.945987 74.514284 L 501.007918 74.648902 L 501.069848 74.514284 L 501.131779 74.648902 L 501.193709 74.595054 L 501.379501 74.271971 L 501.441431 74.406589 L 501.503362 74.352742 L 501.565292 74.271971 L 501.627223 74.325819 L 501.813014 74.460437 L 502.184597 73.841194 L 502.246528 73.895041 L 502.618111 73.329646 L 502.741972 73.195028 L 502.865833 73.356569 L 502.989694 73.168104 L 503.175485 73.571958 L 503.237416 73.518111 L 504.537956 71.687307 L 504.599887 71.821925 L 504.661817 71.956543 L 505.095331 71.25653 L 505.157261 71.391148 L 505.219192 71.25653 L 505.343053 71.525766 L 505.590775 71.148835 L 505.714636 71.337301 L 506.148149 70.825752 L 506.21008 70.691134 L 506.27201 70.825752 L 506.333941 70.691134 L 506.395871 70.744982 L 506.581663 70.987294 L 506.643593 70.933447 L 506.705524 71.014217 L 506.767454 71.148835 L 506.829385 71.094988 L 506.953246 70.825752 L 507.015176 70.906523 L 507.200968 70.718058 L 507.386759 70.96037 L 507.572551 70.852676 L 507.882203 71.283453 L 508.129925 70.987294 L 508.315717 71.094988 L 508.625369 70.744982 L 508.74923 70.933447 L 508.811161 70.798829 L 508.996952 70.448822 L 509.058883 70.529593 L 509.120813 70.448822 L 509.182744 70.314204 L 509.244674 70.394975 L 509.306605 70.529593 L 509.368535 70.394975 L 509.430466 70.475746 L 509.678188 70.098816 L 509.740118 70.152663 L 509.92591 70.287281 L 510.111701 69.937274 L 510.421354 70.421899 L 510.545215 70.20651 L 510.607145 70.341128 L 510.669076 70.260357 L 510.916798 70.152663 L 511.040659 70.341128 L 512.155408 68.941101 L 512.217338 69.075719 L 512.588921 68.510324 L 512.650852 68.564171 L 512.774713 68.375706 L 513.022435 68.564171 L 513.270157 68.241088 L 513.332087 68.294935 L 513.394018 68.375706 L 513.455948 68.321859 L 513.827531 67.891082 L 513.951392 67.891082 L 514.261045 67.621846 L 514.322975 67.756464 L 514.508767 67.594922 L 514.570697 67.675693 L 514.818419 67.35261 L 514.88035 67.298763 L 514.94228 67.433381 L 515.004211 67.35261 L 515.066141 67.271839 L 515.128072 67.35261 L 515.251933 67.35261 L 515.375794 67.567998 L 515.499655 67.298763 L 515.561585 67.433381 L 515.623516 67.35261 L 515.809307 66.948756 L 515.871238 67.002603 L 515.995099 67.191068 L 516.057029 67.110298 L 516.242821 66.867985 L 516.304751 67.002603 L 516.366682 66.948756 L 516.428612 66.814138 L 516.490543 66.948756 L 516.552473 66.894909 L 517.047917 66.410284 L 517.109848 66.544902 L 517.171778 66.491055 L 517.4195 66.248743 L 517.481431 66.383361 L 517.853014 65.764118 L 518.038805 65.898736 L 518.162666 65.683347 L 518.224597 65.817965 L 518.286527 65.764118 L 518.720041 65.064105 L 518.967763 64.87564 L 519.029693 64.956411 L 519.587068 63.987162 L 519.648998 63.933314 L 519.710929 64.067932 L 519.958651 63.771773 L 520.268303 63.583308 L 520.330234 63.717926 L 520.392164 63.664078 L 520.516025 63.44869 L 520.577956 63.583308 L 520.639886 63.529461 L 520.825678 63.852544 L 520.887608 63.798696 L 521.13533 64.256397 L 521.568844 63.744849 L 521.630774 63.798696 L 521.754635 63.529461 L 521.816566 63.664078 L 522.250079 62.937142 L 522.683593 62.587135 L 522.745523 62.721753 L 522.993245 62.317899 L 523.055176 62.452517 L 523.117106 62.39867 L 523.488689 61.779427 L 523.55062 61.833275 L 523.61255 61.967893 L 523.674481 61.887122 L 523.984133 62.02174 L 524.046064 61.967893 L 524.231855 62.290976 L 524.355716 62.075587 L 524.417647 62.129434 L 524.78923 61.779427 L 525.036952 61.887122 L 525.098882 61.833275 L 525.160813 61.967893 L 525.408535 61.510192 L 525.532396 61.698657 L 525.594326 61.564039 L 525.656257 61.483268 L 525.780118 61.698657 L 525.965909 61.617886 L 526.08977 61.429421 L 526.151701 61.294803 L 526.213631 61.375574 L 526.275562 61.456344 L 526.337492 61.402497 L 526.523284 61.267879 L 526.585214 61.402497 L 526.647145 61.321727 L 526.771006 61.510192 L 526.832936 61.375574 L 527.018728 61.321727 L 527.080658 61.456344 L 527.142589 61.375574 L 527.204519 61.240956 L 527.26645 61.375574 L 527.32838 61.240956 L 527.390311 61.375574 L 527.638033 60.998643 L 527.699963 61.133261 L 527.761894 61.079414 L 528.009616 60.864026 L 528.133477 60.864026 L 528.50506 60.352477 L 528.690851 60.567866 L 528.876643 60.379401 L 528.938573 60.514019 L 529.000504 60.460172 L 529.310156 60.325554 L 529.372087 60.460172 L 529.495948 60.190936 L 529.557878 60.271707 L 529.619809 60.190936 L 529.681739 60.325554 L 529.74367 60.244783 L 529.8056 60.164012 L 529.929461 60.433248 L 529.991392 60.379401 L 530.053322 60.433248 L 530.115253 60.352477 L 530.486836 59.733235 L 530.548766 59.598617 L 530.672627 59.867853 L 530.858419 59.463999 L 530.920349 59.598617 L 530.98228 59.463999 L 531.04421 59.598617 L 531.230002 59.194763 L 531.291932 59.275534 L 531.539654 58.925527 L 531.725446 58.763986 L 531.787376 58.898604 L 531.849307 58.844757 L 531.973168 58.737062 L 532.158959 59.060145 L 532.22089 59.006298 L 532.344751 59.275534 L 532.406681 59.221687 L 532.530542 58.952451 L 532.592473 59.087069 L 532.654403 59.033222 L 532.840195 58.790909 L 532.902125 58.87168 L 532.964056 58.737062 L 533.025986 58.87168 L 533.087917 58.817833 L 533.4595 58.171667 L 533.52143 58.225514 L 533.583361 58.090896 L 533.707222 58.279361 L 533.954944 57.929355 L 534.202666 57.525501 L 534.388457 57.606272 L 534.450388 57.552424 L 534.512318 57.687042 L 534.574249 57.552424 L 534.636179 57.687042 L 534.821971 57.363959 L 534.945832 57.552424 L 535.007762 57.417807 L 535.93672 56.717793 L 535.99865 56.77164 L 536.060581 56.69087 L 536.556025 55.856239 L 536.679886 55.990856 L 536.865677 55.829315 L 537.299191 55.533156 L 537.546913 55.775468 L 538.166218 55.156225 L 538.47587 54.671601 L 538.599731 54.671601 L 538.847453 54.456212 L 538.971314 54.725448 L 539.157106 54.402365 L 539.219036 54.456212 L 539.404828 54.052358 L 539.466758 54.106205 L 539.590619 53.91774 L 539.776411 53.675428 L 540.086063 54.133129 L 540.147994 53.998511 L 540.209924 54.133129 L 540.519577 53.702352 L 540.767299 53.406192 L 540.829229 53.486963 L 540.89116 53.54081 L 540.95309 53.460039 L 541.138882 53.217727 L 541.324673 52.894644 L 541.448534 53.083109 L 541.510465 52.948491 L 541.572395 53.083109 L 541.634326 53.029262 L 541.882048 52.706179 L 541.943978 52.760026 L 542.1917 52.383096 L 542.253631 52.517714 L 542.377492 52.302325 L 542.439422 52.436943 L 542.749075 51.763853 L 542.811005 51.817701 L 542.934866 51.629236 L 543.182588 51.252305 L 543.244519 51.386923 L 543.43031 50.983069 L 543.554171 51.171535 L 543.616102 51.090764 L 543.739963 51.279229 L 544.916642 50.336903 L 544.978573 50.471521 L 545.040503 50.417674 L 545.164364 50.552292 L 545.226295 50.471521 L 545.412086 50.30998 L 545.474017 50.444598 L 545.535947 50.390751 L 545.597878 50.30998 L 545.659808 50.444598 L 545.721739 50.390751 L 545.90753 50.121515 L 545.969461 50.256133 L 546.031391 50.175362 L 546.093322 50.256133 L 546.155252 50.175362 L 547.08421 49.421501 L 547.14614 49.556119 L 547.208071 49.502272 L 547.641584 48.802259 L 547.951237 49.044571 L 548.137028 48.640717 L 548.260889 48.909953 L 548.32282 48.856106 L 548.508611 48.909953 L 549.127916 48.236864 L 549.437569 47.886857 L 549.871082 48.236864 L 549.994943 47.967628 L 550.056874 48.048399 L 550.118804 48.183017 L 550.180735 48.129169 L 550.366526 47.994551 L 550.428457 48.129169 L 550.490387 48.048399 L 550.552318 47.967628 L 550.676179 48.183017 L 550.738109 48.129169 L 551.047762 47.83301 L 551.109692 47.913781 L 551.171623 47.994551 L 551.233553 47.913781 L 551.419345 47.698392 L 551.481275 47.752239 L 551.605136 47.752239 L 551.728997 47.590698 L 551.914789 47.940704 L 552.10058 47.671468 L 552.162511 47.806086 L 552.224441 47.725316 L 552.286372 47.644545 L 552.348302 47.698392 L 552.472163 47.698392 L 553.029538 46.702219 L 553.586912 46.136824 L 554.330079 45.517581 L 554.392009 45.598352 L 554.45394 45.544505 L 554.577801 45.329116 L 554.639731 45.463734 L 554.701662 45.409887 L 554.825523 45.409887 L 555.011314 45.463734 L 555.259036 45.086804 L 555.320967 45.140651 L 555.382897 45.059881 L 555.444828 44.97911 L 555.506758 45.032957 L 555.568689 45.113728 L 555.630619 44.97911 L 555.69255 45.032957 L 555.816411 45.248346 L 555.940272 44.97911 L 556.002202 45.032957 L 556.064133 45.113728 L 556.311855 44.763721 L 556.621507 44.898339 L 556.745368 44.709874 L 556.93116 44.440638 L 557.055021 44.709874 L 557.116951 44.656027 L 557.364673 44.736797 L 557.674326 44.252173 L 557.798187 44.440638 L 558.107839 43.848319 L 558.2317 44.063708 L 558.355561 43.92909 L 558.417492 44.063708 L 558.541353 43.794472 L 558.727144 44.090631 L 559.036797 43.848319 L 559.098727 43.92909 L 559.532241 43.229077 L 559.594171 43.363695 L 559.656102 43.229077 L 559.718032 43.282924 L 559.841893 43.17523 L 559.903824 43.256 L 559.965754 43.309847 L 560.213476 43.013688 L 560.275407 43.148306 L 560.461198 42.986764 L 560.832781 42.744452 L 560.894712 42.825223 L 560.956642 42.690605 L 561.080503 42.87907 L 561.266295 42.529063 L 561.328225 42.663681 L 561.390156 42.609834 L 561.452086 42.555987 L 561.761739 43.013688 L 562.133322 42.448293 L 562.504905 42.20598 L 562.566835 42.340598 L 562.628766 42.259828 L 562.690696 42.20598 L 562.814557 42.475216 L 562.938418 42.286751 L 563.000349 42.367522 L 563.18614 42.044439 L 563.371932 42.313675 L 563.495793 42.20598 L 563.557723 42.340598 L 563.619654 42.286751 L 563.743515 42.098286 L 563.805445 42.179057 L 563.867376 42.12521 L 564.053167 41.802127 L 564.115098 41.936745 L 564.42475 41.479044 L 564.858264 41.07519 L 564.982125 41.344426 L 565.291777 40.832878 L 565.66336 41.182884 L 565.725291 41.102113 L 565.787221 40.967495 L 565.849152 41.048266 L 565.911082 41.182884 L 565.973013 41.129037 L 566.158804 40.832878 L 566.220735 40.967495 L 566.282665 41.102113 L 566.406526 40.913648 L 566.468457 41.048266 L 566.530387 40.967495 L 566.716179 40.805954 L 566.778109 40.886725 L 566.84004 40.805954 L 566.90197 40.859801 L 567.149692 40.536718 L 567.273553 40.644412 L 567.335484 40.509794 L 567.583206 40.859801 L 567.645136 40.913648 L 567.892858 40.536718 L 567.954789 40.590565 L 568.016719 40.455947 L 568.202511 40.805954 L 568.450233 40.509794 L 568.574094 40.375177 L 568.636024 40.509794 L 568.821816 40.105941 L 568.883746 40.159788 L 569.255329 39.72901 L 569.503051 39.379004 L 569.626912 39.379004 L 569.936565 38.840532 L 569.998495 38.97515 L 570.122356 38.705914 L 570.184287 38.759761 L 570.246217 38.813609 L 570.432009 38.409755 L 570.493939 38.463602 L 570.679731 38.867456 L 570.741661 38.813609 L 570.865522 38.678991 L 570.989383 38.894379 L 571.051314 38.759761 L 571.237105 38.490526 L 571.360966 38.678991 L 571.670619 38.059748 L 571.79448 38.22129 L 571.85641 38.140519 L 572.042202 37.790512 L 572.104132 37.92513 L 572.475715 37.198193 L 572.537646 37.332811 L 572.661507 37.144346 L 572.723437 37.225117 L 572.785368 37.17127 L 573.03309 36.686645 L 573.09502 36.740492 L 573.156951 36.79434 L 573.590464 36.094326 L 574.147839 35.663549 L 574.2717 35.663549 L 574.33363 35.582778 L 574.457491 35.771243 L 574.643283 35.421237 L 574.705213 35.502007 L 574.891005 35.152001 L 574.952935 35.232772 L 575.014866 35.152001 L 575.138727 35.340466 L 575.200657 35.205848 L 575.634171 34.748147 L 575.881893 34.909689 L 576.191545 34.721223 L 576.253476 34.775071 L 576.501198 34.478911 L 576.686989 34.882765 L 576.74892 34.828918 L 576.996642 34.532758 L 577.058572 34.586606 L 577.120503 34.640453 L 577.492086 34.048134 L 577.554016 34.182752 L 577.615947 34.101981 L 577.801738 33.886592 L 578.297182 33.563509 L 578.359113 33.698127 L 578.421043 33.64428 L 578.482974 33.563509 L 578.544904 33.617356 L 578.606835 33.671204 L 578.668765 33.590433 L 578.916487 33.240426 L 578.978418 33.375044 L 579.040348 33.240426 L 579.102279 33.375044 L 579.164209 33.321197 L 579.411931 32.782725 L 579.473862 32.836572 L 579.969306 32.271177 L 580.031236 32.190406 L 580.093167 32.271177 L 580.217028 32.540413 L 580.278958 32.486566 L 580.52668 32.351948 L 580.774402 32.513489 L 581.084055 32.082712 L 581.145985 32.163483 L 581.517568 31.598087 L 581.641429 31.867323 L 581.827221 31.651935 L 582.013012 31.759629 L 582.570387 31.248081 L 582.756178 31.46347 L 582.94197 31.598087 L 583.375483 30.871151 L 583.561275 31.221157 L 583.747066 30.978845 L 583.870927 31.194234 L 583.932858 31.140387 L 584.056719 31.005769 L 584.18058 31.275004 L 584.366371 31.059616 L 584.428302 31.005769 L 584.552163 31.275004 L 584.614093 31.194234 L 584.737954 31.194234 L 584.799885 31.113463 L 584.861815 31.194234 L 584.985676 31.005769 L 585.233398 30.682686 L 585.666912 30.11729 L 585.728842 30.171137 L 585.852703 30.171137 L 585.914634 30.11729 L 586.038495 30.386526 L 586.100425 30.305755 L 586.224286 30.144214 L 586.286217 30.198061 L 586.348147 30.332679 L 586.410078 30.278832 L 586.472008 30.198061 L 586.533939 30.278832 L 586.595869 30.224985 L 586.6578 30.359603 L 586.71973 30.224985 L 586.781661 30.359603 L 587.029383 30.009596 L 587.153244 30.198061 L 587.400966 29.901902 L 587.462896 29.955749 L 587.772549 29.471124 L 587.834479 29.524971 L 587.89641 29.444201 L 587.95834 29.309583 L 588.020271 29.390353 L 588.453784 28.932652 L 588.701506 28.636493 L 589.816255 27.344161 L 589.940116 27.532626 L 590.43556 26.994154 L 590.497491 26.859536 L 590.559421 26.994154 L 590.621352 26.859536 L 590.683282 26.913384 L 590.807143 26.913384 L 590.931004 26.724918 L 591.364518 25.971058 L 591.736101 26.563377 L 591.859962 26.428759 L 591.921892 26.50953 L 591.983823 26.374912 L 592.045753 26.428759 L 592.541197 25.971058 L 592.603128 26.105676 L 592.665058 25.971058 L 592.726989 26.105676 L 592.726989 26.105676 " style="fill:none;stroke:#bcbd22;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="patch_3"> <path d="M 60.090625 346.663276 L 60.090625 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_4"> <path d="M 618.090625 346.663276 L 618.090625 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_5"> <path d="M 60.090625 346.663276 L 618.090625 346.663276 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="patch_6"> <path d="M 60.090625 10.7 L 618.090625 10.7 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> </g> <g id="legend_1"> <g id="patch_7"> <path d="M 67.090625 150.803125 L 168.151563 150.803125 Q 170.151563 150.803125 170.151563 148.803125 L 170.151563 17.7 Q 170.151563 15.7 168.151563 15.7 L 67.090625 15.7 Q 65.090625 15.7 65.090625 17.7 L 65.090625 148.803125 Q 65.090625 150.803125 67.090625 150.803125 z " style="fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;"/> </g> <g id="line2d_21"> <path d="M 69.090625 23.798437 L 89.090625 23.798437 " style="fill:none;opacity:0.9;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_22"/> <g id="text_14"> <defs> <path d="M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z M 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 L 18.109375 0 L 9.078125 0 L 9.078125 75.984375 L 18.109375 75.984375 z " id="DejaVuSans-62"/> <path d="M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z " id="DejaVuSans-6f"/> <path d="M 2.984375 54.6875 L 12.5 54.6875 L 29.59375 8.796875 L 46.6875 54.6875 L 56.203125 54.6875 L 35.6875 0 L 23.484375 0 z " id="DejaVuSans-76"/> </defs> <g transform="translate(97.090625 27.298437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-30"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> </g> </g> <g id="line2d_23"> <path d="M 69.090625 38.476562 L 89.090625 38.476562 " style="fill:none;opacity:0.9;stroke:#ff7f0e;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_24"/> <g id="text_15"> <g transform="translate(97.090625 41.976562)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-31"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> </g> </g> <g id="line2d_25"> <path d="M 69.090625 53.154687 L 89.090625 53.154687 " style="fill:none;opacity:0.9;stroke:#2ca02c;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_26"/> <g id="text_16"> <g transform="translate(97.090625 56.654687)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-32"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_27"> <path d="M 69.090625 67.832812 L 89.090625 67.832812 " style="fill:none;opacity:0.9;stroke:#d62728;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_28"/> <g id="text_17"> <defs> <path d="M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z " id="DejaVuSans-33"/> </defs> <g transform="translate(97.090625 71.332812)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-33"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_29"> <path d="M 69.090625 82.510938 L 89.090625 82.510938 " style="fill:none;opacity:0.9;stroke:#9467bd;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_30"/> <g id="text_18"> <g transform="translate(97.090625 86.010938)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-34"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_31"> <path d="M 69.090625 97.189062 L 89.090625 97.189062 " style="fill:none;opacity:0.9;stroke:#8c564b;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_32"/> <g id="text_19"> <defs> <path d="M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> </defs> <g transform="translate(97.090625 100.689062)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-35"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_33"> <path d="M 69.090625 111.867187 L 89.090625 111.867187 " style="fill:none;opacity:0.9;stroke:#e377c2;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_34"/> <g id="text_20"> <g transform="translate(97.090625 115.367187)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-36"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_35"> <path d="M 69.090625 126.545312 L 89.090625 126.545312 " style="fill:none;opacity:0.9;stroke:#7f7f7f;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_36"/> <g id="text_21"> <defs> <path d="M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z " id="DejaVuSans-37"/> </defs> <g transform="translate(97.090625 130.045312)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-37"/> <use x="63.623047" xlink:href="#DejaVuSans-20"/> <use x="95.410156" xlink:href="#DejaVuSans-62"/> <use x="158.886719" xlink:href="#DejaVuSans-61"/> <use x="220.166016" xlink:href="#DejaVuSans-6c"/> <use x="247.949219" xlink:href="#DejaVuSans-6c"/> <use x="275.732422" xlink:href="#DejaVuSans-6f"/> <use x="336.914062" xlink:href="#DejaVuSans-6e"/> <use x="400.292969" xlink:href="#DejaVuSans-73"/> <use x="452.392578" xlink:href="#DejaVuSans-20"/> <use x="484.179688" xlink:href="#DejaVuSans-76"/> <use x="543.359375" xlink:href="#DejaVuSans-75"/> <use x="606.738281" xlink:href="#DejaVuSans-73"/> <use x="658.837891" xlink:href="#DejaVuSans-20"/> </g> </g> <g id="line2d_37"> <path d="M 69.090625 141.223437 L 89.090625 141.223437 " style="fill:none;stroke:#bcbd22;stroke-linecap:square;stroke-width:1.5;"/> </g> <g id="line2d_38"/> <g id="text_22"> <defs> <path d="M 18.3125 70.21875 L 18.3125 54.6875 L 36.8125 54.6875 L 36.8125 47.703125 L 18.3125 47.703125 L 18.3125 18.015625 Q 18.3125 11.328125 20.140625 9.421875 Q 21.96875 7.515625 27.59375 7.515625 L 36.8125 7.515625 L 36.8125 0 L 27.59375 0 Q 17.1875 0 13.234375 3.875 Q 9.28125 7.765625 9.28125 18.015625 L 9.28125 47.703125 L 2.6875 47.703125 L 2.6875 54.6875 L 9.28125 54.6875 L 9.28125 70.21875 z " id="DejaVuSans-74"/> <path d="M 4.890625 31.390625 L 31.203125 31.390625 L 31.203125 23.390625 L 4.890625 23.390625 z " id="DejaVuSans-2d"/> </defs> <g transform="translate(97.090625 144.723437)scale(0.1 -0.1)"> <use xlink:href="#DejaVuSans-6d"/> <use x="97.412109" xlink:href="#DejaVuSans-65"/> <use x="158.935547" xlink:href="#DejaVuSans-74"/> <use x="198.144531" xlink:href="#DejaVuSans-61"/> <use x="259.423828" xlink:href="#DejaVuSans-2d"/> <use x="295.507812" xlink:href="#DejaVuSans-61"/> <use x="356.787109" xlink:href="#DejaVuSans-67"/> <use x="420.263672" xlink:href="#DejaVuSans-65"/> <use x="481.787109" xlink:href="#DejaVuSans-6e"/> <use x="545.166016" xlink:href="#DejaVuSans-74"/> </g> </g> </g> </g> </g> <defs> <clipPath id="pf8d0b4ca52"> <rect height="335.963276" width="558" x="60.090625" y="10.7"/> </clipPath> </defs> </svg>

... mais est-ce l'agent vraiment optimal? Peut-on créer un meta-meta-agent? La question reste ouverte :-)