{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Plotly plot of a rectangular phylogenetic tree ##" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In this Jupyter Notebook we illustrate how to generate the Plotly plot of a phylogram with rectangular layout." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from Bio import Phylo\n", "import pandas as pd" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ], "text/vnd.plotly.v1+html": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from plotly.offline import download_plotlyjs, init_notebook_mode, iplot\n", "init_notebook_mode(connected=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Read the Zika Virus tree file in `newick` format, downloaded from [nextstrain](http://nextstrain.org/zika):" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "tree = Phylo.read('Data/nextstrain_zika_tree.new', \"newick\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The next cells contain commented lines that were typed to inspect the file structure:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "#print(tree)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "#dir(tree)\n", "#tree.get_terminals()" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "#tree.count_terminals()# Counts the number of terminal (leaf) nodes within this tree." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The functions `get_x_coordinates()`, `get_y_coordinates()` are mainly the functions with the same name \n", "from Biopython: [https://github.com/biopython/biopython/blob/master/Bio/Phylo/_utils.py](https://github.com/biopython/biopython/blob/master/Bio/Phylo/_utils.py).\n", "\n", "They assign cartesian coordinates to the tree nodes." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "def get_x_coordinates(tree):\n", " # Associates to each clade a x-coord.\n", " # returns a dict {clade: x-coord}, i.e the key is a clade, and x-coord its value\n", " \n", " xcoords = tree.depths()\n", " # tree.depth() maps tree clades to depths (by branch length).\n", " # returns a dict {clade: depth} where clade runs over all Clade instances of the tree,\n", " # and depth is the distance from root to clade\n", " \n", " # If there are no branch lengths, assign unit branch lengths\n", " if not max(xcoords.values()):\n", " xcoords = tree.depths(unit_branch_lengths=True)\n", " return xcoords\n", " \n", "def get_y_coordinates(tree, dist=1.3):\n", " # y-coordinates are multiple of dist (i*dist below); \n", " # dist: vertical distance between two consecutive leafs; it is chosen such that to get a tree of \n", " # reasonable height \n", " # returns a dict {clade: y-coord}\n", " \n", " maxheight = tree.count_terminals()#Counts the number of tree leafs.\n", " \n", " ycoords = dict((leaf, maxheight - i*dist) for i, leaf in enumerate(reversed(tree.get_terminals())))\n", " def calc_row(clade):\n", " for subclade in clade:\n", " if subclade not in ycoords:\n", " calc_row(subclade)\n", " ycoords[clade] = (ycoords[clade.clades[0]] +\n", " ycoords[clade.clades[-1]]) / 2\n", "\n", " if tree.root.clades:\n", " calc_row(tree.root)\n", " return ycoords\n" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "x_coords = get_x_coordinates(tree)\n", "y_coords = get_y_coordinates(tree)" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "def get_clade_lines(orientation='horizontal', y_curr=0, x_start=0, x_curr=0, y_bot=0, y_top=0,\n", " line_color='rgb(25,25,25)', line_width=0.5):\n", " # define a Plotly shape of type 'line', for each branch\n", " \n", " branch_line = dict(type= 'line',\n", " layer='below',\n", " line=dict(color=line_color, \n", " width=line_width)\n", " )\n", " if orientation == 'horizontal':\n", " branch_line.update(x0=x_start,\n", " y0=y_curr,\n", " x1=x_curr,\n", " y1=y_curr)\n", " elif orientation == 'vertical':\n", " branch_line.update(x0=x_curr,\n", " y0=y_bot,\n", " x1=x_curr,\n", " y1=y_top)\n", " else:\n", " raise ValueError(\"Line type can be 'horizontal' or 'vertical'\")\n", " \n", " return branch_line \n", " \n", " \n", "\n", "def draw_clade(clade, x_start, line_shapes, line_color='rgb(15,15,15)', line_width=1):\n", " # defines recursively the tree lines (branches), starting from the argument clade\n", " \n", " x_curr = x_coords[clade]\n", " y_curr = y_coords[clade]\n", " \n", " # Draw a horizontal line \n", " branch_line=get_clade_lines(orientation='horizontal', y_curr=y_curr, x_start=x_start, x_curr=x_curr, \n", " line_color=line_color, line_width=line_width)\n", " \n", " line_shapes.append(branch_line)\n", " \n", " if clade.clades:\n", " # Draw a vertical line connecting all children\n", " y_top = y_coords[clade.clades[0]]\n", " y_bot = y_coords[clade.clades[-1]]\n", " \n", " line_shapes.append(get_clade_lines(orientation='vertical', x_curr=x_curr, y_bot=y_bot, y_top=y_top,\n", " line_color=line_color, line_width=line_width))\n", " \n", " # Draw descendants\n", " for child in clade:\n", " draw_clade(child, x_curr, line_shapes)\n", " \n", " " ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "line_shapes = [] \n", "draw_clade(tree.root, 0, line_shapes, line_color='rgb(25,25,25)', line_width=1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Get the node coordinates:" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "my_tree_clades = x_coords.keys()\n", "X = [] # list of nodes x-coordinates\n", "Y = [] # list of nodes y-coords\n", "text = [] #list of text to be displayed on hover over nodes\n", "\n", "for cl in my_tree_clades:\n", " X.append(x_coords[cl])\n", " Y.append(y_coords[cl])\n", " text.append(cl.name)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Read the metatadata file to record more info about nodes:" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Index(['Strain', 'Accession', 'Date', 'Region', 'Country', 'Division',\n", " 'Authors', 'Journal', 'Title', 'Url', 'Num Date', 'Db', 'Raw Date'],\n", " dtype='object')" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df = pd.read_csv('Data/nextstrain_zika_metadata.csv')\n", "df.columns" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "377" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(df)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'China',\n", " 'Japan Korea',\n", " 'North America',\n", " 'Oceania',\n", " 'South America',\n", " 'Southeast Asia'}" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "set(list(df['Region']))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Set the intermediate node color:" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "intermediate_node_color = 'rgb(100,100,100)'" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Set the node colors depending on region (continent):" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "# North Amer.\n", "NA_color = {'Cuba': 'rgb(252, 196, 174)',\n", " 'Dominican Republic': 'rgb(201, 32, 32)',\n", " 'El Salvador': 'rgb(253, 202, 181)',\n", " 'Guadeloupe': 'rgb(253, 202, 181)',\n", " 'Guatemala': 'rgb(252, 190, 167)',\n", " 'Haiti': 'rgb(252, 145, 114)',\n", " 'Honduras': 'rgb(239, 66, 49)',\n", " 'Jamaica': 'rgb(252, 185, 161)',\n", " 'Martinique': 'rgb(252, 190, 167)',\n", " 'Mexico': 'rgb(247, 109, 82)',\n", " 'Nicaragua': 'rgb(249, 121, 92)',\n", " 'Panama': 'rgb(252, 185, 161)',\n", " 'Puerto Rico': 'rgb(252, 174, 148)',\n", " 'Saint Barthelemy': 'rgb(253, 202, 181)',\n", " 'USA': 'rgb(188, 20, 26)',\n", " 'USVI': 'rgb(206, 36, 34)'}\n", "\n", "\n", "\n", "# South Amer.\n", "SAmer_color = {'Brazil': 'rgb(21, 127, 59)',\n", " 'Colombia': 'rgb(153, 213, 149)',\n", " 'Ecuador': 'rgb(208, 237, 202)',\n", " 'French Guiana': 'rgb(211, 238, 205)',\n", " 'Peru': 'rgb(208, 237, 202)',\n", " 'Suriname': 'rgb(206, 236, 200)',\n", " 'Venezuela': 'rgb(202, 234, 196)'}\n", "\n", "# South Asia\n", "SAsia_color = {'Singapore': '#0000EE', 'Vietnam': '#1E90FF'}\n", "pl_SAsia = [[0.0, '#1E90FF'], \n", " [0.5, '#1E90FF'], \n", " [0.5, '#0000EE'], \n", " [1.0,'#0000EE' ]]\n", "\n", "\n", "Oceania_color = {'American Samoa': 'rgb(209,95,238)',\n", " 'Fiji': 'rgb(238,130, 238)',\n", " 'French Polynesia': 'rgb(148,0,211)',\n", " 'Tonga': 'rgb(238,130, 238)'}\n", "\n", "\n", "China_color={'China': 'rgb(255,185,15'} \n", "\n", "JapanKorea_color={'Japan': '#fcdd04'}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Assign color to nodes according to region and country:" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "country=[]\n", "region=[]\n", "color=[intermediate_node_color]*len(X)\n", "\n", "for k, strain in enumerate(df['Strain']):\n", " \n", " i=text.index(strain)\n", " text[i]=text[i]+f\"
Country: {df.loc[k, 'Country']}\\\n", "
Region: {df.loc[k, 'Region']}\\\n", "
Collection date: {df.loc[k,'Date']}\\\n", "
Journal: {df.loc[k, 'Journal']}\\\n", "
Authors: {df.loc[k, 'Authors']}\"\n", " country.append(df.loc[k, 'Country'])\n", " region.append(df.loc[k, 'Region'])\n", " if df.loc[k, 'Region'] == 'North America':\n", " color[i] = NA_color[df.loc[k, 'Country']]\n", " elif df.loc[k, 'Region'] == 'South America':\n", " color[i] = SAmer_color[df.loc[k, 'Country']] \n", " elif df.loc[k, 'Region'] == 'Southeast Asia':\n", " color[i] = SAsia_color[df.loc[k, 'Country']]\n", " elif df.loc[k, 'Region'] == 'Oceania':\n", " color[i] = Oceania_color[df.loc[k, 'Country']] \n", " elif df.loc[k, 'Region'] == 'China':\n", " color[i] = '#fecc00'\n", " elif df.loc[k, 'Region'] == 'Japan Korea':\n", " color[i]= '#dc7928'\n", " else: pass" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Define the Plotly trace for the tree nodes:" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "nodes = dict(type='scatter',\n", " x=X,\n", " y=Y,\n", " mode='markers',\n", " marker=dict(color=color, \n", " size=5),\n", " opacity=1.0,\n", " text=text,\n", " hoverinfo='text')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The branches are already defined and stored as Plotly shapes that are included in the plot layout below:" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "layout=dict(title='Phylogeny of Zika Virus
377 genomes colored according to region and country',\n", " font=dict(family='Balto',size=14),\n", " width=1000,\n", " height=3000,\n", " autosize=False,\n", " showlegend=False,\n", " xaxis=dict(showline=True, \n", " zeroline=False,\n", " showgrid=False,\n", " ticklen=4, \n", " showticklabels=True,\n", " title='branch length'),\n", " yaxis=dict(visible=False), \n", " hovermode='closest',\n", " plot_bgcolor='rgb(250,250,250)',\n", " margin=dict(l=10),\n", " shapes=line_shapes # lines for tree branches\n", " )" ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "scrolled": false }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "data": [ { "hoverinfo": "text", "marker": { "color": [ "rgb(100,100,100)", "rgb(100,100,100)", "#1E90FF", "rgb(100,100,100)", "#0000EE", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "#0000EE", "rgb(100,100,100)", "rgb(100,100,100)", "#0000EE", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "#0000EE", "rgb(100,100,100)", "rgb(100,100,100)", "#0000EE", "#0000EE", "rgb(100,100,100)", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "#0000EE", "#0000EE", "rgb(100,100,100)", "rgb(148,0,211)", "rgb(100,100,100)", "rgb(148,0,211)", "rgb(148,0,211)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(148,0,211)", "rgb(100,100,100)", "rgb(148,0,211)", "rgb(100,100,100)", "rgb(148,0,211)", "rgb(148,0,211)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(238,130, 238)", "rgb(238,130, 238)", "rgb(100,100,100)", "rgb(209,95,238)", "rgb(100,100,100)", "rgb(209,95,238)", "rgb(100,100,100)", "rgb(209,95,238)", "rgb(100,100,100)", "rgb(209,95,238)", "rgb(209,95,238)", "rgb(100,100,100)", "#fecc00", "#fecc00", "rgb(209,95,238)", "rgb(100,100,100)", "rgb(209,95,238)", "rgb(100,100,100)", "rgb(100,100,100)", "#fecc00", "#fecc00", "rgb(100,100,100)", "rgb(209,95,238)", "rgb(209,95,238)", "rgb(100,100,100)", "rgb(148,0,211)", "rgb(148,0,211)", "rgb(100,100,100)", "rgb(148,0,211)", "rgb(148,0,211)", "rgb(100,100,100)", "rgb(148,0,211)", "rgb(148,0,211)", "rgb(100,100,100)", "rgb(148,0,211)", "rgb(148,0,211)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(252, 145, 114)", "rgb(100,100,100)", "rgb(252, 145, 114)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "#0000EE", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(208, 237, 202)", "rgb(208, 237, 202)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(253, 202, 181)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(252, 145, 114)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(253, 202, 181)", "rgb(252, 145, 114)", "rgb(100,100,100)", "rgb(252, 145, 114)", "rgb(252, 145, 114)", "rgb(252, 145, 114)", "rgb(100,100,100)", "rgb(252, 145, 114)", "rgb(252, 145, 114)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(252, 196, 174)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(201, 32, 32)", "rgb(100,100,100)", "#dc7928", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(252, 185, 161)", "rgb(252, 145, 114)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(252, 185, 161)", "rgb(252, 185, 161)", "rgb(100,100,100)", "rgb(252, 185, 161)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(252, 145, 114)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(208, 237, 202)", "rgb(208, 237, 202)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(252, 190, 167)", "rgb(252, 190, 167)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(252, 190, 167)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(252, 185, 161)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(252, 185, 161)", "rgb(252, 185, 161)", "rgb(100,100,100)", "rgb(252, 185, 161)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(202, 234, 196)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(153, 213, 149)", "rgb(153, 213, 149)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(202, 234, 196)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(206, 236, 200)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(202, 234, 196)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(201, 32, 32)", "rgb(100,100,100)", "rgb(202, 234, 196)", "rgb(100,100,100)", "rgb(202, 234, 196)", "#fecc00", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(206, 236, 200)", "rgb(100,100,100)", "rgb(211, 238, 205)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 236, 200)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(252, 174, 148)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(252, 174, 148)", "rgb(252, 174, 148)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(252, 174, 148)", "rgb(100,100,100)", "rgb(252, 174, 148)", "rgb(252, 174, 148)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(206, 36, 34)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(206, 36, 34)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(21, 127, 59)", "rgb(21, 127, 59)", "rgb(100,100,100)", "rgb(249, 121, 92)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(249, 121, 92)", "rgb(249, 121, 92)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(249, 121, 92)", "rgb(100,100,100)", "rgb(249, 121, 92)", "rgb(249, 121, 92)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(252, 190, 167)", "rgb(252, 190, 167)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(188, 20, 26)", "rgb(188, 20, 26)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(100,100,100)", "#fecc00", "rgb(100,100,100)", "rgb(252, 196, 174)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(253, 202, 181)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(249, 121, 92)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(249, 121, 92)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(239, 66, 49)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(247, 109, 82)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(252, 190, 167)", "rgb(100,100,100)", "rgb(100,100,100)", "rgb(249, 121, 92)", "rgb(100,100,100)", "rgb(249, 121, 92)", "rgb(249, 121, 92)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(249, 121, 92)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(249, 121, 92)", "rgb(249, 121, 92)", "rgb(249, 121, 92)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(100,100,100)", "rgb(239, 66, 49)", "rgb(239, 66, 49)" ], "size": 5 }, "mode": "markers", "opacity": 1, "text": [ "NODE_0000385", "NODE_0000349", "NIID123/2016
Country: Vietnam
Region: Southeast Asia
Collection date: 2016-11-22
Journal: Unpublished
Authors: Tajima Et Al", "NODE_0000355", "ZKA_16_097
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-27
Journal: Unpublished
Authors: Ng Et Al", "SG_108
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-06
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000363", "SG_037
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-28
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000365", "SG_046
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-28
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "SG_027
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-27
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000483", "NODE_0000380", "SG_109
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-06
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "SG_111
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-06
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000484", "SG_063
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-28
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000485", "NODE_0000373", "SG_105
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-05
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000374", "SG_020
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-13
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "SG_016
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-12
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000486", "NODE_0000358", "SG_013
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-08
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "SG_061
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-30
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000487", "NODE_0000359", "SG_008
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-07
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000488", "SG_005
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-06
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000489", "SG_097
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-07
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "SG_014
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-08
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000490", "SG_009
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-07
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000386", "SG_025
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-20
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000387", "SG_102
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-30
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000388", "SG_095
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-30
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000389", "SG_033
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-29
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000390", "SG_100
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-30
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000391", "SG_041
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-29
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000392", "SG_090
Country: Singapore
Region: Southeast Asia
Collection date: 2016-09-13
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000393", "SG_073
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-26
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "SG_039
Country: Singapore
Region: Southeast Asia
Collection date: 2016-08-28
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000348", "1_0038_PF
Country: French Polynesia
Region: Oceania
Collection date: 2014-01-01
Journal: Unpublished
Authors: Nougairede Et Al", "NODE_0000333", "1_0111_PF
Country: French Polynesia
Region: Oceania
Collection date: 2014-01-01
Journal: Unpublished
Authors: Nougairede Et Al", "1_0030_PF
Country: French Polynesia
Region: Oceania
Collection date: 2013-11-01
Journal: Unpublished
Authors: Nougairede Et Al", "NODE_0000394", "NODE_0000328", "1_0035_PF
Country: French Polynesia
Region: Oceania
Collection date: 2014-01-01
Journal: Unpublished
Authors: Nougairede Et Al", "NODE_0000395", "H/PF/2013
Country: French Polynesia
Region: Oceania
Collection date: 2013-11-28
Journal: Genome Announc 2 3 E00500-14 2014
Authors: Baronti Et Al", "NODE_0000396", "1_0080_PF
Country: French Polynesia
Region: Oceania
Collection date: 2014-02-01
Journal: Unpublished
Authors: Nougairede Et Al", "1_0087_PF
Country: French Polynesia
Region: Oceania
Collection date: 2013-12-01
Journal: Unpublished
Authors: Nougairede Et Al", "NODE_0000334", "NODE_0000335", "Chiba/S36/2016
Country: Fiji
Region: Oceania
Collection date: 2016-04-21
Journal: Unpublished
Authors: Taira Et Al", "TS17_2016
Country: Tonga
Region: Oceania
Collection date: 2016-02-01
Journal: Unpublished
Authors: Pyke Et Al", "NODE_0000336", "ZJ02
Country: American Samoa
Region: Oceania
Collection date: 2016-02-01
Journal: Unpublished
Authors: Tong Et Al", "NODE_0000337", "ZJ03
Country: American Samoa
Region: Oceania
Collection date: 2016-02-01
Journal: Unpublished
Authors: Tong Et Al", "NODE_0000338", "Zhejiang04
Country: American Samoa
Region: Oceania
Collection date: 2016-02-17
Journal: Unpublished
Authors: Zhang Et Al", "NODE_0000339", "CN/SZ02/2016
Country: American Samoa
Region: Oceania
Collection date: 2016-02-17
Journal: Unpublished
Authors: Zhao Et Al", "SZ_WIV01
Country: American Samoa
Region: Oceania
Collection date: 2016-01-01
Journal: Unpublished
Authors: Deng Et Al", "NODE_0000340", "ZJ04
Country: China
Region: China
Collection date: 2016-02-17
Journal: Unpublished
Authors: Tong Et Al", "ZJ01
Country: China
Region: China
Collection date: 2016-02-16
Journal: Unpublished
Authors: Tong Et Al", "SZ01/2016/China
Country: American Samoa
Region: Oceania
Collection date: 2016-01-01
Journal: Sci China Life Sci 59 4 428-430 2016
Authors: Deng Et Al", "NODE_0000344", "SMGC_1
Country: American Samoa
Region: Oceania
Collection date: 2016-02-14
Journal: Chin. Sci. Bull. 61 22 2463-2474 2016
Authors: Bi Et Al", "NODE_0000397", "NODE_0000347", "_CCMU01/2016
Country: China
Region: China
Collection date: 2016-11-02
Journal: Unpublished
Authors: Wu Et Al", "SY01_2016
Country: China
Region: China
Collection date: 2016-11-01
Journal: Unpublished
Authors: Wu Et Al", "NODE_0000398", "Z16006
Country: American Samoa
Region: Oceania
Collection date: 2016-02-16
Journal: Unpublished
Authors: Wu Et Al", "ZKC2/2016
Country: American Samoa
Region: Oceania
Collection date: 2016-02-16
Journal: Submitted 18-may-2016 Center For Diseases Control And Prevention Of Guangdong Province; National Institute Of Viral Disease Control And Prevention China
Authors: Wu Et Al", "NODE_0000323", "1_0016_PF
Country: French Polynesia
Region: Oceania
Collection date: 2014-01-01
Journal: Unpublished
Authors: Nougairede Et Al", "1_0015_PF
Country: French Polynesia
Region: Oceania
Collection date: 2014-01-01
Journal: Unpublished
Authors: Nougairede Et Al", "NODE_0000325", "1_0134_PF
Country: French Polynesia
Region: Oceania
Collection date: 2013-12-01
Journal: Unpublished
Authors: Nougairede Et Al", "1_0199_PF
Country: French Polynesia
Region: Oceania
Collection date: 2013-11-01
Journal: Unpublished
Authors: Nougairede Et Al", "NODE_0000322", "PF13/251013_18
Country: French Polynesia
Region: Oceania
Collection date: 2013-10-25
Journal: Unpublished
Authors: Troesemeier Et Al", "1_0181_PF
Country: French Polynesia
Region: Oceania
Collection date: 2013-12-01
Journal: Unpublished
Authors: Nougairede Et Al", "NODE_0000320", "1_0049_PF
Country: French Polynesia
Region: Oceania
Collection date: 2013-12-01
Journal: Unpublished
Authors: Nougairede Et Al", "1_0117_PF
Country: French Polynesia
Region: Oceania
Collection date: 2013-12-01
Journal: Unpublished
Authors: Nougairede Et Al", "NODE_0000309", "NODE_0000310", "Haiti/1/2016
Country: Haiti
Region: North America
Collection date: 2016-02-05
Journal: Clin. Infect. Dis. 2016 In Press
Authors: Iovine Et Al", "NODE_0000311", "Haiti/1225/2014
Country: Haiti
Region: North America
Collection date: 2014-12-12
Journal: Plos Negl Trop Dis 10 4 E0004687 2016
Authors: Lednicky Et Al", "NODE_0000312", "SPH2015
Country: Brazil
Region: South America
Collection date: 2015-03-01
Journal: Genome Announc 4 2 2016
Authors: Cunha Et Al", "NODE_0000313", "V17829
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: Unpublished
Authors: Nunes Et Al", "PE243
Country: Brazil
Region: South America
Collection date: 2015-05-13
Journal: Submitted 14-jun-2017 Institute For Medical Engineering And Science Massachusetts Institute Of Technology 77 Massachusetts Ave Building 48-419 Cambridge Ma 02139 Usa
Authors: Marques Et Al", "Brazil/PE243/2015
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: Plos Negl Trop Dis 10 10 E0005048 2016
Authors: Donald Et Al", "NODE_0000316", "Brazil/2016/ZBRC25
Country: Brazil
Region: South America
Collection date: 2016-01-18
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000317", "ZBRC13
Country: Brazil
Region: South America
Collection date: 2016-01-12
Journal: ?
Authors: Zika In Brazil Real-time Analysis Consortium", "NODE_0000399", "Brazil/2016/ZBRC14
Country: Brazil
Region: South America
Collection date: 2016-01-15
Journal: Unpublished
Authors: Faria Et Al", "ZBRC15
Country: Brazil
Region: South America
Collection date: 2016-01-15
Journal: ?
Authors: Zika In Brazil Real-time Analysis Consortium", "NODE_0000284", "SG_118
Country: Singapore
Region: Southeast Asia
Collection date: 2016-05-13
Journal: Lancet Infect Dis 2017 In Press
Authors: Ho Et Al", "NODE_0000091", "NODE_0000401", "Brazil/2015/ZBRC321
Country: Brazil
Region: South America
Collection date: 2015-08-09
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000092", "NODE_0000093", "EcEs089_16
Country: Ecuador
Region: South America
Collection date: 2016-04-01
Journal: Genome Announc 5 8 E01673-16 2017
Authors: Marquez Et Al", "EcEs062_16
Country: Ecuador
Region: South America
Collection date: 2016-04-01
Journal: Genome Announc 5 8 E01673-16 2017
Authors: Marquez Et Al", "NODE_0000402", "Brazil/2016/ZBRX16
Country: Brazil
Region: South America
Collection date: 2016-04-25
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000095", "Paraiba_01
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: Unpublished
Authors: Tsetsarkin Et Al", "Brazil_2015_MG
Country: Brazil
Region: South America
Collection date: 2016-06-14
Journal: Unpublished
Authors: Green Et Al", "NODE_0000088", "NODE_0000089", "Rio_S1
Country: Brazil
Region: South America
Collection date: 2016-01-29
Journal: Plos Negl Trop Dis 10 6 E0004816 2016
Authors: Bonaldo Et Al", "Natal_RGN
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: N. Engl. J. Med. 374 10 951-958 2016
Authors: Mlakar Et Al", "NODE_0000087", "BeH823339
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000086", "Brazil/2015/ZBRA105
Country: Brazil
Region: South America
Collection date: 2015-02-23
Journal: Nature 546 7658 406-410 2017
Authors: Faria Et Al", "NODE_0000085", "NODE_0000403", "DOM/2016/MA_WGS16_020
Country: Dominican Republic
Region: North America
Collection date: 2016-06-30
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "Saint_Barthelemi_Rus_6BRN_2016
Country: Saint Barthelemy
Region: North America
Collection date: 2016-07-25
Journal: Unpublished
Authors: Karan Et Al", "NODE_0000001", "NODE_0000404", "Brazil/2016/ZBRY11
Country: Brazil
Region: South America
Collection date: 2016-01-01
Journal: Unpublished
Authors: Faria Et Al", "Brazil/2016/ZBRY14
Country: Brazil
Region: South America
Collection date: 2016-01-01
Journal: Nature 546 7658 406-410 2017
Authors: Faria Et Al", "NODE_0000003", "NODE_0000405", "DOM/2016/BB_0216
Country: Dominican Republic
Region: North America
Collection date: 2016-04-21
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "DOM/2016/BB_0180
Country: Dominican Republic
Region: North America
Collection date: 2016-04-18
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000005", "NODE_0000012", "mosquito/Haiti/1682/2016
Country: Haiti
Region: North America
Collection date: 2016-05-17
Journal: Unpublished
Authors: White Et Al", "NODE_0000013", "NODE_0000406", "PHE_Guadeloupe
Country: Guadeloupe
Region: North America
Collection date: 2016-04-21
Journal: Unpublished
Authors: Atkinson Et Al", "Haiti/0054/2014
Country: Haiti
Region: North America
Collection date: 2014-06-05
Journal: Unpublished
Authors: White Et Al", "NODE_0000015", "Haiti/0033/2014
Country: Haiti
Region: North America
Collection date: 2014-05-29
Journal: Unpublished
Authors: White Et Al", "Haiti/0036/2014
Country: Haiti
Region: North America
Collection date: 2014-06-02
Journal: Unpublished
Authors: White Et Al", "Haiti/0029/2014
Country: Haiti
Region: North America
Collection date: 2014-05-29
Journal: Unpublished
Authors: White Et Al", "NODE_0000016", "Haiti/0074/2014
Country: Haiti
Region: North America
Collection date: 2014-06-10
Journal: Unpublished
Authors: White Et Al", "Haiti/0097/2014
Country: Haiti
Region: North America
Collection date: 2014-06-24
Journal: Unpublished
Authors: White Et Al", "NODE_0000407", "NODE_0000036", "Cuba_2017
Country: Cuba
Region: North America
Collection date: 2017-02-12
Journal: Unpublished
Authors: Lasala-sanchez Et Al", "DOM/2016/BB_0433
Country: Dominican Republic
Region: North America
Collection date: 2016-06-13
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000408", "NODE_0000024", "NODE_0000025", "USVI/28/2016
Country: USVI
Region: North America
Collection date: 2016-11-28
Journal: ?
Authors: Black Et Al", "USVI/42/2016
Country: USVI
Region: North America
Collection date: 2016-10-26
Journal: ?
Authors: Black Et Al", "NODE_0000026", "USVI/20/2016
Country: USVI
Region: North America
Collection date: 2016-10-13
Journal: ?
Authors: Black Et Al", "NODE_0000027", "USVI/19/2016
Country: USVI
Region: North America
Collection date: 2016-11-21
Journal: ?
Authors: Black Et Al", "USVI/41/2016
Country: USVI
Region: North America
Collection date: 2016-11-10
Journal: ?
Authors: Black Et Al", "NODE_0000409", "NODE_0000032", "DOM/2016/MA_WGS16_013
Country: Dominican Republic
Region: North America
Collection date: 2016-06-15
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "DOM/2016/BB_0091
Country: Dominican Republic
Region: North America
Collection date: 2016-04-07
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000410", "NODE_0000044", "Dominican_Republic/2016/ZB
Country: Dominican Republic
Region: North America
Collection date: 2016-08-25
Journal: Submitted 13-aug-2017 Molecular Genetics Ivanovsky Virilogy Institute Gamalei Centre Of Microbiology And Epidemiology Gamalei Str. 16 Moscow 123098 Russia
Authors: Prilipov Et Al", "NODE_0000411", "Dominican_Rep_Rus_8ZBR_2016
Country: Dominican Republic
Region: North America
Collection date: 2016-08-25
Journal: Unpublished
Authors: Karan Et Al", "Dominican_Rep_Rus_7EGR_2016
Country: Dominican Republic
Region: North America
Collection date: 2016-08-25
Journal: Unpublished
Authors: Karan Et Al", "NODE_0000412", "DOM/2016/BB_0071
Country: Dominican Republic
Region: North America
Collection date: 2016-04-05
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000413", "NODE_0000010", "DOM/2016/BB_0436
Country: Dominican Republic
Region: North America
Collection date: 2016-06-14
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000414", "DOM/2016/MA_WGS16_014
Country: Dominican Republic
Region: North America
Collection date: 2016-06-18
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "DOM/2016/BB_0115
Country: Dominican Republic
Region: North America
Collection date: 2016-04-11
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000415", "NODE_0000022", "Dominican_Republic/2016/PD1
Country: Dominican Republic
Region: North America
Collection date: 2016-02-01
Journal: Euro Surveill. 21 10 2016
Authors: Barzon Et Al", "USA/2016/FL039
Country: USA
Region: North America
Collection date: 2016-08-17
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000416", "NODE_0000043", "DOM/2016/BB_0269
Country: Dominican Republic
Region: North America
Collection date: 2016-04-27
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "DOM/2016/BB_0183
Country: Dominican Republic
Region: North America
Collection date: 2016-04-18
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000417", "Yokohama/1/2016
Country: Japan
Region: Japan Korea
Collection date: 2016-05-20
Journal: Unpublished
Authors: Ozawa Et Al", "NODE_0000418", "NODE_0000034", "Dominican_Rep_Rus_5RMN_2016
Country: Dominican Republic
Region: North America
Collection date: 2016-05-31
Journal: Unpublished
Authors: Karan Et Al", "DOM/2016/MA_WGS16_031
Country: Dominican Republic
Region: North America
Collection date: 2016-08-17
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000419", "DOM/2016/BB_0076
Country: Dominican Republic
Region: North America
Collection date: 2016-04-05
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000420", "NODE_0000038", "Dominican_Rep_Rus_3ALT_2016
Country: Dominican Republic
Region: North America
Collection date: 2016-05-11
Journal: Unpublished
Authors: Karan Et Al", "NODE_0000039", "USVI/22/2016
Country: USVI
Region: North America
Collection date: 2016-09-07
Journal: ?
Authors: Black Et Al", "NODE_0000040", "DOM/2016/MA_WGS16_040
Country: Dominican Republic
Region: North America
Collection date: 2016-10-06
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "DOM/2016/MA_WGS16_036
Country: Dominican Republic
Region: North America
Collection date: 2016-09-22
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000421", "NODE_0000422", "NODE_0000029", "DOM/2016/MA_WGS16_011
Country: Dominican Republic
Region: North America
Collection date: 2016-06-06
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "DOM/2016/MA_WGS16_024
Country: Dominican Republic
Region: North America
Collection date: 2016-07-07
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000423", "DOM/2016/BB_0428
Country: Dominican Republic
Region: North America
Collection date: 2016-06-13
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000424", "JAM/2016/MA_WGS16_038
Country: Jamaica
Region: North America
Collection date: 2016-09-26
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "Haiti/2016/PD
Country: Haiti
Region: North America
Collection date: 2016-02-01
Journal: Euro Surveill. 21 32 2016
Authors: Barzon Et Al", "NODE_0000046", "NODE_0000052", "NODE_0000053", "USA/2016/FLUR058
Country: USA
Region: North America
Collection date: 2016-10-11
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/FLSR036
Country: USA
Region: North America
Collection date: 2016-09-19
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000054", "NODE_0000055", "Aedes_aegypti/USA/2016/FL05
Country: USA
Region: North America
Collection date: 2016-09-09
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/FLUR014
Country: USA
Region: North America
Collection date: 2016-08-24
Journal: Unpublished
Authors: Ladner Et Al", "NODE_0000056", "USA/2016/FL032
Country: USA
Region: North America
Collection date: 2016-08-05
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000060", "Aedes_aegypti/USA/2016/FL04
Country: USA
Region: North America
Collection date: 2016-09-04
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/MA_WGS16_034
Country: USA
Region: North America
Collection date: 2016-08-15
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000425", "Aedes_aegypti/USA/2016/FL03
Country: USA
Region: North America
Collection date: 2016-08-23
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000426", "USA/2016/FL035
Country: USA
Region: North America
Collection date: 2016-08-03
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "USA/2016/FLUR026
Country: USA
Region: North America
Collection date: 2016-09-13
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000427", "NODE_0000048", "NODE_0000049", "DOM/2016/MA_WGS16_007
Country: Dominican Republic
Region: North America
Collection date: 2016-05-10
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "DOM/2016/BB_0208
Country: Dominican Republic
Region: North America
Collection date: 2016-04-20
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000050", "JAM/2016/MA_WGS16_041
Country: Jamaica
Region: North America
Collection date: 2016-10-12
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "JAM/2016/MA_WGS16_039
Country: Jamaica
Region: North America
Collection date: 2016-09-28
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000428", "JAM/2016/MA_WGS16_025
Country: Jamaica
Region: North America
Collection date: 2016-07-10
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000061", "USVI/7/2016
Country: USVI
Region: North America
Collection date: 2016-10-27
Journal: ?
Authors: Black Et Al", "NODE_0000429", "Dominican_Rep_Rus_4MRG_2016
Country: Dominican Republic
Region: North America
Collection date: 2016-05-23
Journal: Unpublished
Authors: Karan Et Al", "NODE_0000063", "DOM/2016/BB_0059
Country: Dominican Republic
Region: North America
Collection date: 2016-04-04
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000064", "USA/2016/FL029
Country: USA
Region: North America
Collection date: 2016-08-01
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000065", "USA/2016/FL028
Country: USA
Region: North America
Collection date: 2016-08-01
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000066", "USA/2016/FL022
Country: USA
Region: North America
Collection date: 2016-07-22
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/FLUR006
Country: USA
Region: North America
Collection date: 2016-07-29
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000081", "USA/2016/FLUR005
Country: USA
Region: North America
Collection date: 2016-07-29
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "HTI/2016/MA_WGS16_022
Country: Haiti
Region: North America
Collection date: 2016-07-05
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "USA/2016/FL030
Country: USA
Region: North America
Collection date: 2016-08-02
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000491", "USA/2016/FL038
Country: USA
Region: North America
Collection date: 2016-08-05
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000492", "NODE_0000069", "USA/2016/FL021
Country: USA
Region: North America
Collection date: 2016-07-19
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/FLUR002
Country: USA
Region: North America
Collection date: 2016-07-28
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000430", "Aedes_aegypti/USA/2016/FL08
Country: USA
Region: North America
Collection date: 2016-10-05
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000431", "USA/2016/FLUR007
Country: USA
Region: North America
Collection date: 2016-08-04
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/FLUR008
Country: USA
Region: North America
Collection date: 2016-08-04
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000432", "USA/2016/FLUR001
Country: USA
Region: North America
Collection date: 2016-07-28
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000433", "USA/2016/FLUR009
Country: USA
Region: North America
Collection date: 2016-08-04
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000434", "NODE_0000084", "USA/2016/FLUR057
Country: USA
Region: North America
Collection date: 2016-10-05
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/FLWB042
Country: USA
Region: North America
Collection date: 2016-09-26
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000435", "NODE_0000436", "USA/2016/FLUR013
Country: USA
Region: North America
Collection date: 2016-08-23
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/FL010
Country: USA
Region: North America
Collection date: 2016-06-22
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000076", "USA/2016/FLUR015
Country: USA
Region: North America
Collection date: 2016-08-24
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/FLUR063
Country: USA
Region: North America
Collection date: 2016-10-03
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "Aedes_aegypti/USA/2016/FL06
Country: USA
Region: North America
Collection date: 2016-09-20
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000493", "NODE_0000299", "NODE_0000300", "Brazil/2015/ZBRD116
Country: Brazil
Region: South America
Collection date: 2015-08-28
Journal: Unpublished
Authors: Faria Et Al", "BeH828305
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000301", "Bahia01
Country: Brazil
Region: South America
Collection date: 2015-05-01
Journal: Emerging Infect. Dis. 22 10 1788-1792 2016
Authors: Naccache Et Al", "NODE_0000302", "Bahia02
Country: Brazil
Region: South America
Collection date: 2015-05-01
Journal: Emerging Infect. Dis. 22 10 1788-1792 2016
Authors: Naccache Et Al", "NODE_0000303", "NODE_0000304", "Bahia07
Country: Brazil
Region: South America
Collection date: 2015-07-01
Journal: Emerging Infect. Dis. 22 10 1788-1792 2016
Authors: Naccache Et Al", "NODE_0000305", "Bahia09
Country: Brazil
Region: South America
Collection date: 2015-08-01
Journal: Emerging Infect. Dis. 22 10 1788-1792 2016
Authors: Naccache Et Al", "HS_2015_BA_01
Country: Brazil
Region: South America
Collection date: 2015-08-01
Journal: Unpublished
Authors: Teixeira Et Al", "NODE_0000306", "Bahia03
Country: Brazil
Region: South America
Collection date: 2015-05-01
Journal: Emerging Infect. Dis. 22 10 1788-1792 2016
Authors: Naccache Et Al", "NODE_0000400", "Bahia08
Country: Brazil
Region: South America
Collection date: 2015-07-15
Journal: Emerging Infect. Dis. 22 10 1788-1792 2016
Authors: Naccache Et Al", "Bahia15
Country: Brazil
Region: South America
Collection date: 2016-01-01
Journal: Emerging Infect. Dis. 22 10 1788-1792 2016
Authors: Naccache Et Al", "NODE_0000437", "NODE_0000438", "NODE_0000286", "USVI/36/2016
Country: USVI
Region: North America
Collection date: 2016-09-13
Journal: ?
Authors: Black Et Al", "NODE_0000287", "Brazil/2016/ZBRX1
Country: Brazil
Region: South America
Collection date: 2016-04-18
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000288", "NODE_0000439", "Brazil/2016/ZBRX137
Country: Brazil
Region: South America
Collection date: 2016-03-03
Journal: Unpublished
Authors: Faria Et Al", "Brazil/2016/ZBRX6
Country: Brazil
Region: South America
Collection date: 2016-04-19
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000290", "Brazil/2016/ZBRX103
Country: Brazil
Region: South America
Collection date: 2016-05-24
Journal: Unpublished
Authors: Faria Et Al", "Brazil/2016/ZBRX13
Country: Brazil
Region: South America
Collection date: 2016-04-24
Journal: Unpublished
Authors: Faria Et Al", "Brazil/2016/ZBRX7
Country: Brazil
Region: South America
Collection date: 2016-04-19
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000293", "Brazil/2016/ZBRX12
Country: Brazil
Region: South America
Collection date: 2016-04-19
Journal: Unpublished
Authors: Faria Et Al", "Brazil/2016/ZBRX100
Country: Brazil
Region: South America
Collection date: 2016-05-19
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000295", "Brazil/2016/ZBRX11
Country: Brazil
Region: South America
Collection date: 2016-04-19
Journal: Unpublished
Authors: Faria Et Al", "Brazil/2016/ZBRX8
Country: Brazil
Region: South America
Collection date: 2016-04-19
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000440", "NODE_0000297", "BRA/2016/FC_5790
Country: Brazil
Region: South America
Collection date: 2016-03-22
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000298", "V9
Country: Brazil
Region: South America
Collection date: 2015-12-01
Journal: Unpublished
Authors: Miranda Et Al", "DOM/2016/BB_0085
Country: Dominican Republic
Region: North America
Collection date: 2016-04-07
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000441", "NODE_0000221", "BRA/2016/FC_6696
Country: Brazil
Region: South America
Collection date: 2016-04-05
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000222", "BRA/2016/FC_DQ58D1
Country: Brazil
Region: South America
Collection date: 2016-03-30
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "BRA/2016/FC_DQ107D1
Country: Brazil
Region: South America
Collection date: 2016-04-13
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000223", "BRA/2016/FC_DQ131D1
Country: Brazil
Region: South America
Collection date: 2016-04-18
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "BRA/2016/FC_DQ42D1
Country: Brazil
Region: South America
Collection date: 2016-03-23
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000442", "BRA/2016/FC_DQ28D1
Country: Brazil
Region: South America
Collection date: 2016-03-21
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000443", "BRA/2016/FC_DQ47D1
Country: Brazil
Region: South America
Collection date: 2016-03-28
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "Brazil/2016/ZBRY8
Country: Brazil
Region: South America
Collection date: 2016-01-01
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000228", "Brazil/2016/ZBRY10
Country: Brazil
Region: South America
Collection date: 2016-01-01
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000229", "Brazil_ZKV2015
Country: Brazil
Region: South America
Collection date: 2015-11-30
Journal: Lancet Infect Dis 16 6 653-660 2016
Authors: Calvet Et Al", "NODE_0000444", "NODE_0000236", "Brazil/2015/ZBRC301
Country: Brazil
Region: South America
Collection date: 2015-05-13
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000445", "Brazil/2015/ZBRD103
Country: Brazil
Region: South America
Collection date: 2015-08-20
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000446", "Brazil/2015/ZBRD107
Country: Brazil
Region: South America
Collection date: 2015-09-09
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000238", "Brazil/2016/ZBRX128
Country: Brazil
Region: South America
Collection date: 2016-03-13
Journal: Unpublished
Authors: Faria Et Al", "Brazil/2016/INMI1
Country: Brazil
Region: South America
Collection date: 2016-03-06
Journal: Unpublished
Authors: Carletti Et Al", "NODE_0000230", "Brazil/2016/ZBRC18
Country: Brazil
Region: South America
Collection date: 2016-01-06
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000233", "BRA/2016/FC_DQ49D1
Country: Brazil
Region: South America
Collection date: 2016-03-28
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "Brazil/2016/ZBRY6
Country: Brazil
Region: South America
Collection date: 2016-02-16
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000447", "BRA/2016/FC_6703
Country: Brazil
Region: South America
Collection date: 2016-04-08
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "Brazil/2015/ZBRC303
Country: Brazil
Region: South America
Collection date: 2015-05-14
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000240", "NODE_0000243", "BRA/2016/FC_DQ62D1
Country: Brazil
Region: South America
Collection date: 2016-03-30
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "Brazil/2015/ZBRC313
Country: Brazil
Region: South America
Collection date: 2015-06-15
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000448", "Brazil/2016/ZBRX15
Country: Brazil
Region: South America
Collection date: 2016-04-24
Journal: Unpublished
Authors: Faria Et Al", "Brazil/2016/ZBRC319
Country: Brazil
Region: South America
Collection date: 2016-07-10
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000244", "Brazil/2015/ZBRC302
Country: Brazil
Region: South America
Collection date: 2015-05-13
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000245", "NODE_0000246", "COL/FCC00093/2015
Country: Colombia
Region: South America
Collection date: 2015-10-07
Journal: Unpublished
Authors: Leguia Et Al", "NODE_0000247", "Colombia/2016/ZC192Se
Country: Colombia
Region: South America
Collection date: 2016-01-07
Journal: Nat Protoc 12 6 1261-1276 2017
Authors: Quick Et Al", "NODE_0000248", "FPI15263/PERU/Loreto/2016
Country: Peru
Region: South America
Collection date: 2016-07-11
Journal: Unpublished
Authors: Leguia Et Al", "FPI15198/PERU/Loreto/2016
Country: Peru
Region: South America
Collection date: 2016-06-28
Journal: Unpublished
Authors: Leguia Et Al", "NODE_0000250", "NODE_0000251", "Martinique/2016/FL001Sa
Country: Martinique
Region: North America
Collection date: 2016-03-22
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "Martinique/2016/FL001
Country: Martinique
Region: North America
Collection date: 2016-03-22
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000252", "MEX/InDRE/2016
Country: Mexico
Region: North America
Collection date: 2016-02-25
Journal: Unpublished
Authors: Diaz-quinonez Et Al", "MRS_OPY_Martinique_PaRi_2015
Country: Martinique
Region: North America
Collection date: 2015-12-01
Journal: New Microbes New Infect 11 52-53 2016
Authors: Piorkowski Et Al", "NODE_0000253", "NODE_0000449", "NODE_0000257", "Colombia/2016/ZC207Se
Country: Colombia
Region: South America
Collection date: 2016-01-09
Journal: Nat Protoc 12 6 1261-1276 2017
Authors: Quick Et Al", "Colombia/2016/ZC199Se
Country: Colombia
Region: South America
Collection date: 2016-01-10
Journal: Nat Protoc 12 6 1261-1276 2017
Authors: Quick Et Al", "NODE_0000450", "NODE_0000259", "Colombia/2016/ZC188Se
Country: Colombia
Region: South America
Collection date: 2016-01-16
Journal: Nat Protoc 12 6 1261-1276 2017
Authors: Quick Et Al", "Colombia/2016/ZC204Se
Country: Colombia
Region: South America
Collection date: 2016-01-06
Journal: Nat Protoc 12 6 1261-1276 2017
Authors: Quick Et Al", "NODE_0000451", "PAN/BEI_259634_V4/2016
Country: Panama
Region: North America
Collection date: 2016-01-01
Journal: Submitted 05-may-2016 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NODE_0000452", "NODE_0000453", "COL/2016/SU_1856A
Country: Colombia
Region: South America
Collection date: 2016-04-28
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "DOM/2016/BB_0127
Country: Dominican Republic
Region: North America
Collection date: 2016-04-11
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000260", "COL/2016/SU_2293A
Country: Colombia
Region: South America
Collection date: 2016-06-09
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000261", "COL/2016/SU_2724A
Country: Colombia
Region: South America
Collection date: 2016-04-05
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "COL/2016/SU_1810A
Country: Colombia
Region: South America
Collection date: 2016-04-06
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000263", "NODE_0000264", "FLA
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 26-apr-2017 Molecular Virology And Microbiology Baylor College Of Medicine One Baylor Plaza Houston Tx 77030 Usa
Authors: Kneubehl Et Al", "NODE_0000265", "PAN/CDC_259249_V1_V3/2015
Country: Panama
Region: North America
Collection date: 2015-12-11
Journal: Submitted 29-apr-2016 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "PAN/CDC_259364_V1_V2/2015
Country: Panama
Region: North America
Collection date: 2015-12-18
Journal: Submitted 29-apr-2016 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NODE_0000267", "PAN/CDC_259359_V1_V3/2015
Country: Panama
Region: North America
Collection date: 2015-12-18
Journal: Submitted 29-apr-2016 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NODE_0000454", "COL/PAN_00030/2015
Country: Colombia
Region: South America
Collection date: 2016-12-01
Journal: Submitted 30-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "COL/PAN_00029/2015
Country: Colombia
Region: South America
Collection date: 2016-12-01
Journal: Submitted 30-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "NODE_0000269", "NODE_0000270", "VEN/UF_1/2016
Country: Venezuela
Region: South America
Collection date: 2016-03-25
Journal: Genome Announc 5 17 E00231-17 2017
Authors: Blohm Et Al", "COL/UF_1/2016
Country: Colombia
Region: South America
Collection date: 2016-02-09
Journal: Unpublished
Authors: Lednicky Et Al", "NODE_0000271", "COL/FLR_00004/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "COL/FLR_00011/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "NODE_0000278", "COL/FLR_00002/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "COL/FLR_00006/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "NODE_0000279", "COL/FLR_00005/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "COL/FLR_00008/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "NODE_0000281", "COL/FLR_00016/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "COL/FLR_00014/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "NODE_0000282", "COL/FLR_00024/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "NODE_0000283", "COL/FLR_00025/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "COL/FLR_00026/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "NODE_0000455", "COL/FLR_00020/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "NODE_0000456", "COL/FLR_00017/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "COL/FLR_00001/2015
Country: Colombia
Region: South America
Collection date: 2015-12-01
Journal: Submitted 28-jul-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Pickett Et Al", "NODE_0000097", "NODE_0000100", "NODE_0000101", "FVM00318/VEN/Maracay/2016
Country: Venezuela
Region: South America
Collection date: 2016-10-19
Journal: Unpublished
Authors: Leguia Et Al", "BR/AM/16800005
Country: Brazil
Region: South America
Collection date: 2016-01-08
Journal: Unpublished
Authors: Souza Et Al", "NODE_0000102", "NODE_0000103", "Brazil/2016/ZBRX106
Country: Brazil
Region: South America
Collection date: 2016-03-07
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000104", "BeH819966
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: Unpublished
Authors: Azevedo Et Al", "SSABR1
Country: Brazil
Region: South America
Collection date: 2015-07-01
Journal: Infect. Genet. Evol. 41 142-145 2016
Authors: Giovanetti Et Al", "NODE_0000106", "BeH818995
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: Unpublished
Authors: Azevedo Et Al", "BeH815744
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: Unpublished
Authors: Azevedo Et Al", "NODE_0000107", "Z1106033
Country: Suriname
Region: South America
Collection date: 2015-10-02
Journal: Lancet 387 10015 227-228 2016
Authors: Enfissi Et Al", "NODE_0000109", "BRA/2016/FC_6864
Country: Brazil
Region: South America
Collection date: 2016-04-12
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "BRA/2016/FC_6863
Country: Brazil
Region: South America
Collection date: 2016-04-12
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000110", "NODE_0000111", "GZ01
Country: Venezuela
Region: South America
Collection date: 2016-02-14
Journal: Unpublished
Authors: Deng Et Al", "USVI/11/2016
Country: USVI
Region: North America
Collection date: 2016-03-22
Journal: ?
Authors: Black Et Al", "NODE_0000113", "R114916
Country: Dominican Republic
Region: North America
Collection date: 2016-06-06
Journal: Submitted 23-aug-2016 Diagnostic & Reference Laboratory Arbovirus Diseases Branch Centers For Disease Control & Prevention 3150 Rampart Road Fort Collins Co 80521 Usa
Authors: Lanciotti Et Al", "NODE_0000114", "GZ02/2016
Country: Venezuela
Region: South America
Collection date: 2016-02-25
Journal: Unpublished
Authors: Li Et Al", "NODE_0000115", "Z16019
Country: Venezuela
Region: South America
Collection date: 2016-02-26
Journal: Unpublished
Authors: Wu Et Al", "GDZ16021
Country: China
Region: China
Collection date: 2016-02-26
Journal: Unpublished
Authors: Sun Et Al", "NODE_0000116", "BeH819015
Country: Brazil
Region: South America
Collection date: 2015-01-01
Journal: Unpublished
Authors: Azevedo Et Al", "NODE_0000117", "SL1602
Country: Suriname
Region: South America
Collection date: 2016-01-22
Journal: Sci Rep 7 1 2368 2017
Authors: Van Boheemen Et Al", "NODE_0000457", "V17271
Country: French Guiana
Region: South America
Collection date: 2015-12-01
Journal: Submitted 25-feb-2016 Laboratoire De Virologie Institut Pasteur De La Guyane 23 Avenue Pasteur Cayenne French Guiana 97300 France
Authors: Enfissi Et Al", "NODE_0000119", "USVI/4/2016
Country: USVI
Region: North America
Collection date: 2016-10-14
Journal: ?
Authors: Black Et Al", "NL00013
Country: Suriname
Region: South America
Collection date: 2016-02-11
Journal: Submitted 18-mar-2016 Department Of Viroscience Erasmus Medical Center Dr Molewaterplein 50 Rotterdam 3015 Ge The Netherlands
Authors: Stalin Raj Et Al", "NODE_0000121", "USVI/40/2016
Country: USVI
Region: North America
Collection date: 2016-11-05
Journal: ?
Authors: Black Et Al", "NODE_0000122", "NODE_0000458", "PRI/2016/MA_WGS16_005
Country: Puerto Rico
Region: North America
Collection date: 2016-04-12
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000123", "NODE_0000127", "PRVABC59
Country: Puerto Rico
Region: North America
Collection date: 2015-12-01
Journal: Emerging Infect. Dis. 22 5 933-935 2016
Authors: Lanciotti Et Al", "PuertoRico/2016/FL008U
Country: Puerto Rico
Region: North America
Collection date: 2016-06-21
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "BRA/2016/FC_DQ192D1
Country: Brazil
Region: South America
Collection date: 2016-05-10
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000459", "BRA/2016/FC_DQ12D1
Country: Brazil
Region: South America
Collection date: 2016-03-15
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000124", "PuertoRico/2016/FL016U
Country: Puerto Rico
Region: North America
Collection date: 2016-07-03
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000460", "PRI/2016/MA_WGS16_016
Country: Puerto Rico
Region: North America
Collection date: 2016-06-26
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "PRI/2016/MA_WGS16_004
Country: Puerto Rico
Region: North America
Collection date: 2016-04-13
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000130", "NODE_0000131", "USVI/23/2016
Country: USVI
Region: North America
Collection date: 2016-07-12
Journal: ?
Authors: Black Et Al", "NODE_0000132", "NODE_0000461", "USVI/39/2016
Country: USVI
Region: North America
Collection date: 2016-11-09
Journal: ?
Authors: Black Et Al", "NODE_0000133", "USVI/30/2016
Country: USVI
Region: North America
Collection date: 2016-08-07
Journal: ?
Authors: Black Et Al", "USVI/32/2016
Country: USVI
Region: North America
Collection date: 2016-08-11
Journal: ?
Authors: Black Et Al", "NODE_0000135", "USVI/37/2016
Country: USVI
Region: North America
Collection date: 2016-10-06
Journal: ?
Authors: Black Et Al", "NODE_0000136", "USVI/12/2016
Country: USVI
Region: North America
Collection date: 2016-11-04
Journal: ?
Authors: Black Et Al", "NODE_0000137", "USVI/1/2016
Country: USVI
Region: North America
Collection date: 2016-09-28
Journal: ?
Authors: Black Et Al", "USVI/2/2016
Country: USVI
Region: North America
Collection date: 2016-09-28
Journal: ?
Authors: Black Et Al", "NODE_0000138", "USIV/35/2016
Country: USVI
Region: North America
Collection date: 2016-09-08
Journal: ?
Authors: Black Et Al", "NODE_0000139", "USVI/25/2016
Country: USVI
Region: North America
Collection date: 2016-09-27
Journal: ?
Authors: Black Et Al", "USVI/27/2016
Country: USVI
Region: North America
Collection date: 2016-08-19
Journal: ?
Authors: Black Et Al", "NODE_0000140", "USVI/43/2016
Country: USVI
Region: North America
Collection date: 2016-07-19
Journal: ?
Authors: Black Et Al", "USVI/34/2016
Country: USVI
Region: North America
Collection date: 2016-08-01
Journal: ?
Authors: Black Et Al", "NODE_0000141", "USVI/13/2016
Country: USVI
Region: North America
Collection date: 2016-08-13
Journal: ?
Authors: Black Et Al", "USVI/38/2016
Country: USVI
Region: North America
Collection date: 2016-10-25
Journal: ?
Authors: Black Et Al", "NODE_0000145", "NODE_0000146", "USVI/3/2016
Country: USVI
Region: North America
Collection date: 2016-09-26
Journal: ?
Authors: Black Et Al", "USVI/5/2016
Country: USVI
Region: North America
Collection date: 2016-10-17
Journal: ?
Authors: Black Et Al", "NODE_0000147", "USVI/21/2016
Country: USVI
Region: North America
Collection date: 2016-11-07
Journal: ?
Authors: Black Et Al", "USVI/6/2016
Country: USVI
Region: North America
Collection date: 2016-10-19
Journal: ?
Authors: Black Et Al", "NODE_0000462", "NODE_0000098", "Brazil/2016/ZBRX102
Country: Brazil
Region: South America
Collection date: 2016-02-25
Journal: Unpublished
Authors: Faria Et Al", "USVI/24/2016
Country: USVI
Region: North America
Collection date: 2016-09-13
Journal: ?
Authors: Black Et Al", "NODE_0000148", "NODE_0000463", "NODE_0000150", "Brazil/2016/ZBRC16
Country: Brazil
Region: South America
Collection date: 2016-01-19
Journal: Unpublished
Authors: Faria Et Al", "BRA/2016/FC_6418
Country: Brazil
Region: South America
Collection date: 2016-03-27
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000151", "BRA/2016/FC_DQ5D1
Country: Brazil
Region: South America
Collection date: 2016-03-14
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "RIO_BM1
Country: Brazil
Region: South America
Collection date: 2016-02-12
Journal: Unpublished
Authors: Bonaldo Et Al", "NODE_0000464", "Brazil/2016/ZBRY7
Country: Brazil
Region: South America
Collection date: 2016-01-01
Journal: Nature 546 7658 406-410 2017
Authors: Faria Et Al", "NODE_0000465", "BRA/2016/FC_5905
Country: Brazil
Region: South America
Collection date: 2016-03-23
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "Brazil/2016/ZBRY1
Country: Brazil
Region: South America
Collection date: 2016-01-15
Journal: Unpublished
Authors: Faria Et Al", "NODE_0000155", "NIC/6188_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-06-30
Journal: Submitted 13-mar-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NODE_0000156", "NODE_0000157", "2016\\HND\\19563
Country: Honduras
Region: North America
Collection date: 2016-04-16
Journal: ?
Authors: ?", "NODE_0000158", "V103451
Country: Honduras
Region: North America
Collection date: 2016-01-06
Journal: Submitted 18-may-2016 Diagnostic & Reference Laboratory Arbovirus Diseases Branch Centers For Disease Control & Prevention 3150 Rampart Road Fort Collins Co 80521 Usa
Authors: Lanciotti Et Al", "HND/R103451/2015
Country: Honduras
Region: North America
Collection date: 2015-01-06
Journal: Submitted 12-aug-2016 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NODE_0000206", "Mexico_Rus_10GNN_2016
Country: Mexico
Region: North America
Collection date: 2016-11-09
Journal: Unpublished
Authors: Karan Et Al", "NODE_0000214", "mex07/Mexico/2016
Country: Mexico
Region: North America
Collection date: 2016-08-05
Journal: Unpublished
Authors: Chiu Et Al", "NODE_0000215", "MEX_ENCB165
Country: Mexico
Region: North America
Collection date: 2015-10-15
Journal: Unpublished
Authors: Sevilla-reyes Et Al", "ENCB165P4
Country: Mexico
Region: North America
Collection date: 2015-10-15
Journal: Unpublished
Authors: Sevilla-reyes Et Al", "NODE_0000217", "USA/UT_1/2016
Country: Mexico
Region: North America
Collection date: 2016-01-01
Journal: N. Engl. J. Med. 375 19 1907-1909 2016
Authors: Swaminathan Et Al", "R116265
Country: Mexico
Region: North America
Collection date: 2016-06-23
Journal: Submitted 23-aug-2016 Diagnostic & Reference Laboratory Arbovirus Diseases Branch Centers For Disease Control & Prevention 3150 Rampart Road Fort Collins Co 80521 Usa
Authors: Lanciotti Et Al", "NODE_0000468", "NODE_0000207", "Aedes_aegypti/MEX/MEX_I_44/2016
Country: Mexico
Region: North America
Collection date: 2016-01-01
Journal: Submitted 22-feb-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "Aedes_sp/MEX_I_44/2016
Country: Mexico
Region: North America
Collection date: 2016-01-01
Journal: Unpublished
Authors: Balaraman Et Al", "NODE_0000469", "Mexico_Rus_12TVR_2017
Country: Mexico
Region: North America
Collection date: 2017-01-30
Journal: Unpublished
Authors: Karan Et Al", "NODE_0000211", "MEX_CIENI551
Country: Mexico
Region: North America
Collection date: 2016-03-03
Journal: Unpublished
Authors: Boukadida Et Al", "NODE_0000212", "Aedessp/MEX/MEX_2_81/2016
Country: Mexico
Region: North America
Collection date: 2016-01-01
Journal: Submitted 27-jun-2016 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NODE_0000213", "MEX_I_7
Country: Mexico
Region: North America
Collection date: 2015-11-01
Journal: Unpublished
Authors: Barrows Et Al", "Aedessp/MEX/MEX_I_7/2016
Country: Mexico
Region: North America
Collection date: 2016-01-01
Journal: Submitted 27-jun-2016 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NODE_0000494", "NODE_0000168", "NODE_0000169", "NIC/8610_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-07-07
Journal: Submitted 13-mar-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NIC/5256_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-08-26
Journal: Unpublished
Authors: Theze Et Al", "NODE_0000170", "NODE_0000171", "HN16
Country: Honduras
Region: North America
Collection date: 2016-05-01
Journal: Emerging Infect. Dis. 23 1 99-101 2017
Authors: Murray Et Al", "NODE_0000172", "HND/2016/HU_ME58
Country: Honduras
Region: North America
Collection date: 2016-05-13
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "HND/2016/HU_ME156
Country: Honduras
Region: North America
Collection date: 2016-06-07
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000173", "HND/2016/HU_ME42
Country: Honduras
Region: North America
Collection date: 2016-05-09
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000174", "HND/2016/HU_ME38
Country: Honduras
Region: North America
Collection date: 2016-04-30
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000178", "NIC/6547_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-07-19
Journal: Unpublished
Authors: Theze Et Al", "NODE_0000179", "NIC/4886_12A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-07-10
Journal: Submitted 13-mar-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NIC/7252_12A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-06-29
Journal: Submitted 13-mar-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NODE_0000466", "HND/2016/HU_ME147
Country: Honduras
Region: North America
Collection date: 2016-06-04
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000467", "USA/2016/FL019
Country: USA
Region: North America
Collection date: 2016-07-07
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "HND/2016/HU_ME33
Country: Honduras
Region: North America
Collection date: 2016-04-28
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000470", "NODE_0000164", "mex48/Mexico/2016
Country: Mexico
Region: North America
Collection date: 2016-06-30
Journal: Unpublished
Authors: Chiu Et Al", "NODE_0000165", "V103344
Country: Guatemala
Region: North America
Collection date: 2015-12-01
Journal: Emerging Infect. Dis. 22 5 933-935 2016
Authors: Lanciotti Et Al", "V8375
Country: Guatemala
Region: North America
Collection date: 2015-11-01
Journal: Emerging Infect. Dis. 22 5 933-935 2016
Authors: Lanciotti Et Al", "NODE_0000471", "NODE_0000472", "NODE_0000167", "USA/2016/FLWB044
Country: USA
Region: North America
Collection date: 2016-09-28
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "USA/2016/FLSR043
Country: USA
Region: North America
Collection date: 2016-09-28
Journal: Nature 2017 In Press
Authors: Grubaugh Et Al", "NODE_0000473", "Mex03/Mexico/2016
Country: Mexico
Region: North America
Collection date: 2016-03-05
Journal: Nature 546 7658 406-410 2017
Authors: Faria Et Al", "NODE_0000474", "Henan/001/2016
Country: China
Region: China
Collection date: 2016-09-14
Journal: Unpublished
Authors: Li Et Al", "NODE_0000475", "Cuba/2017/Hu0046Sa
Country: Cuba
Region: North America
Collection date: 2017-04-19
Journal: Unpublished
Authors: Grubaugh Et Al", "NODE_0000197", "NODE_0000476", "UNK/2016/MA_WGS16_029
Country: El Salvador
Region: North America
Collection date: 2016-08-05
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000199", "HND/2016/HU_ME152
Country: Honduras
Region: North America
Collection date: 2016-06-06
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "HND/2016/HU_ME59
Country: Honduras
Region: North America
Collection date: 2016-05-13
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000200", "NODE_0000201", "NIC/5005_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-04-22
Journal: Submitted 13-mar-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "FHT1175/HON/2016
Country: Honduras
Region: North America
Collection date: 2016-08-26
Journal: Unpublished
Authors: Leguia Et Al", "NODE_0000202", "HND/2016/HU_ME136
Country: Honduras
Region: North America
Collection date: 2016-05-31
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NIC/5847_12B1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-02-07
Journal: Unpublished
Authors: Theze Et Al", "NODE_0000204", "HND/2016/HU_ME167
Country: Honduras
Region: North America
Collection date: 2016-06-09
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "HND/2016/HU_ME50
Country: Honduras
Region: North America
Collection date: 2016-05-12
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "HND/2016/HU_ME178
Country: Honduras
Region: North America
Collection date: 2016-06-10
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000181", "mex39/Mexico/2016
Country: Mexico
Region: North America
Collection date: 2016-07-07
Journal: Unpublished
Authors: Chiu Et Al", "NODE_0000477", "NODE_0000183", "HND/2016/HU_ME180
Country: Honduras
Region: North America
Collection date: 2016-06-13
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "FB_GWUH_2016
Country: Guatemala
Region: North America
Collection date: 2016-02-02
Journal: Unpublished
Authors: Driggers Et Al", "NODE_0000478", "NODE_0000186", "NIC/6406_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-05-29
Journal: Submitted 13-mar-2017 J. Craig Venter Institute 9704 Medical Center Drive Rockville Md 20850 Usa
Authors: Shabman Et Al", "NODE_0000479", "Nica2_16
Country: Nicaragua
Region: North America
Collection date: 2016-01-13
Journal: Cell Host Microbe 20 2 155-166 2016
Authors: Tabata Et Al", "Nica1_16
Country: Nicaragua
Region: North America
Collection date: 2016-01-19
Journal: Cell Host Microbe 20 2 155-166 2016
Authors: Tabata Et Al", "NODE_0000480", "HND/2016/HU_ME137
Country: Honduras
Region: North America
Collection date: 2016-05-31
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000188", "NIC/1659_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-08-19
Journal: Unpublished
Authors: Theze Et Al", "HND/2016/HU_SZ76
Country: Honduras
Region: North America
Collection date: 2016-05-03
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000190", "NIC/7253_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-08-29
Journal: Unpublished
Authors: Theze Et Al", "NIC/1304_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-08-05
Journal: Unpublished
Authors: Theze Et Al", "NIC/5338_13A1/2016
Country: Nicaragua
Region: North America
Collection date: 2016-07-22
Journal: Unpublished
Authors: Theze Et Al", "NODE_0000481", "HND/2016/HU_ME171
Country: Honduras
Region: North America
Collection date: 2016-06-10
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000482", "HND/2016/HU_ME172
Country: Honduras
Region: North America
Collection date: 2016-06-10
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "NODE_0000192", "HND/2016/HU_ME131
Country: Honduras
Region: North America
Collection date: 2016-05-28
Journal: Nature 546 7658 411-415 2017
Authors: Metsky Et Al", "FHT1166/HON/2016
Country: Honduras
Region: North America
Collection date: 2016-08-26
Journal: Unpublished
Authors: Leguia Et Al" ], "type": "scatter", "uid": "0a4bf6ba-c550-11e8-a7b7-8af2f04e441a", "x": [ 0, 6.555195508771621e-09, 0.005791689352737594, 0.00438466852368986, 0.004942353684003155, 0.005035420108373306, 0.0044775787847450765, 0.004477585339940585, 0.004570489763677347, 0.0049422651635439765, 0.004756347436075718, 0.004384675078885369, 0.004477584553210342, 0.004756363278207898, 0.0045704940275496705, 0.004384681634080878, 0.004570516937643193, 0.0043846881892763865, 0.0044775976636013595, 0.004477604218796868, 0.004570507137940688, 0.004663418463293267, 0.004570513693136197, 0.004384694744471895, 0.004477605089100985, 0.004663442136160482, 0.004477611644296494, 0.004384701299667404, 0.004477630240046842, 0.004570535577754826, 0.00447763679524235, 0.004477643350437859, 0.004477643350437859, 0.004477649905633368, 0.004477649905633368, 0.004384707854862913, 0.004477617481716897, 0.004384714410058422, 0.00447762810896365, 0.0043847209652539305, 0.004384727520449439, 0.004384727520449439, 0.004384734075644948, 0.004384734075644948, 0.004384740630840457, 0.004384740630840457, 0.004384747186035966, 0.004384747186035966, 0.0043847537412314746, 0.0043847537412314746, 0.004384760296426983, 0.004384760296426983, 0.004384766851622492, 0.004384766851622492, 0.0012088403113641886, 0.002417689407026362, 0.001301733356889144, 0.0019523706603379017, 0.001766405933095651, 0.0013017399120846527, 0.0013946328740957975, 0.0018592426197967344, 0.0013946394292913063, 0.0016733918602715176, 0.0013946459844868151, 0.001766306186889093, 0.0015804448941250378, 0.0019523189329635694, 0.002045213482565325, 0.005025903146984859, 0.002788815290330644, 0.003347526943494409, 0.0033475334986899177, 0.003440431594245871, 0.0038121462050035126, 0.003719194122191927, 0.0038120982913291204, 0.003812098925493441, 0.0038121054806889497, 0.003997922989289412, 0.003905014024618623, 0.003997925051686169, 0.003997925769478311, 0.0039979248991065825, 0.003997922989289412, 0.003997929544484921, 0.003997929544484921, 0.004369716152512725, 0.0043697227077082335, 0.0043697227077082335, 0.003997936099680429, 0.003997942654875938, 0.003997942654875938, 0.0013946256848911785, 0.0022315226251980527, 0.0019522082524871284, 0.0014875172264353163, 0.0018591735833402147, 0.0015804086844372612, 0.0014875173789306501, 0.0016733154913112292, 0.0016733142212756406, 0.0016733507353717523, 0.002045040061474638, 0.0019520786172473534, 0.0019520786172473534, 0.002509703207316023, 0.0033463947305382487, 0.0027884207214996745, 0.0027884272766951833, 0.0032530202948781164, 0.003253026850073625, 0.003345918742532306, 0.0033459252977278147, 0.003531719394911894, 0.003624652344309757, 0.0045550286689896875, 0.00464793962197412, 0.004647939705528881, 0.00464794626072439, 0.00464794626072439, 0.004647952815919899, 0.004647952815919899, 0.002044972051249887, 0.004373527650117375, 0.0022307722131347375, 0.0022307787683302463, 0.0029743646838081366, 0.0023236714158571667, 0.003626022063752644, 0.0037189033754402197, 0.003904715867636001, 0.0023236779710526755, 0.0026953566485403476, 0.0031603496747214612, 0.00316035622991697, 0.0036250056314946237, 0.002323665730684382, 0.002416560034625468, 0.004184173813866531, 0.003998072747637807, 0.0025094674945695707, 0.0039047048364586998, 0.0026023610121426568, 0.002881087449966677, 0.002695254529692301, 0.00269526108488781, 0.002973989461241487, 0.004370123499600677, 0.0030669280357455203, 0.003066934590941029, 0.0031598315052091307, 0.0035315768230369986, 0.003717578174230825, 0.003717584729426334, 0.004461304275291323, 0.004182288699216915, 0.0038104787841072136, 0.004461103106365956, 0.004646919234193448, 0.004646926119245454, 0.004739821455414164, 0.005390422154220745, 0.004739828010609673, 0.004646932674440963, 0.004646939229636471, 0.004646939229636471, 0.004646939229636471, 0.004739827224042719, 0.0047398337792382275, 0.0047398337792382275, 0.0038104853393027224, 0.0039033859491644732, 0.006137333617420523, 0.0049262941278098125, 0.003810491894498231, 0.004554117515363077, 0.005018761976638612, 0.006600345337510047, 0.00520457097378547, 0.0048328598265171795, 0.006508276975821518, 0.004925757825997668, 0.0051115699769261665, 0.00529744580284156, 0.00381049844969374, 0.004089250517559303, 0.004925919047582555, 0.005018967392363001, 0.003810505004889249, 0.0052056385274192735, 0.005298541030172187, 0.005205645082614782, 0.005205651637810291, 0.005205651637810291, 0.0038105115600847576, 0.004647210449298342, 0.0038105181152802664, 0.0039034187251420173, 0.004926353575416225, 0.003903425280337526, 0.0045540623590796594, 0.004647096192685296, 0.003810524670475775, 0.003996339203434292, 0.004275102070074011, 0.004833173899733591, 0.003810531225671284, 0.004182226180156528, 0.00455392716623581, 0.00446101157139453, 0.003810537780866793, 0.004461159847660774, 0.0038105443360623016, 0.004461165305251032, 0.004461171860446541, 0.004554065044945187, 0.0038105508912578104, 0.004368192498148875, 0.003810557446453319, 0.004089304528187788, 0.004368046376803035, 0.0041822042678819425, 0.004925837819359829, 0.004368038603797105, 0.00501870545765946, 0.004368045158992613, 0.003810564001648828, 0.003810570556844337, 0.004089320008068078, 0.004461032817233301, 0.004368069211930342, 0.0038105771120398456, 0.00436827367518243, 0.0038105836672353544, 0.00408934345438657, 0.003996404919281727, 0.0039034637413404723, 0.004833155938368339, 0.005204851512130192, 0.005204858067325701, 0.005297753228220414, 0.0049260571823617726, 0.00501895842634585, 0.005204774229528804, 0.0052047737567121055, 0.00501895842634585, 0.005297709537144785, 0.005111858952673402, 0.005483550418311151, 0.005111865507868911, 0.0050189649815413585, 0.005111865507868911, 0.005018971536736867, 0.005018978091932376, 0.005018978091932376, 0.003903470296535981, 0.003996370036230136, 0.0044610475821237165, 0.004832758175818868, 0.004553943473782514, 0.0047400334193091415, 0.0054836205954597005, 0.004832928204921407, 0.00390347685173149, 0.004461107746560668, 0.003996384429121495, 0.005112279182677864, 0.003996390984317004, 0.004461078891386767, 0.0041822172014883965, 0.00446098203395115, 0.004460982743839709, 0.004925670853890752, 0.004553887988850659, 0.004553894544046168, 0.004646793317439101, 0.00520446352569186, 0.004925557662597601, 0.004739698798559439, 0.004832605343899702, 0.005204468463236902, 0.0050184631437135835, 0.00464679987263461, 0.00492557169757872, 0.004646806427830118, 0.004739711756420407, 0.004925537010091772, 0.005018473237428417, 0.004739718311615916, 0.005018487519419544, 0.004739724866811425, 0.004739731422006933, 0.004832630111837888, 0.004646812983025627, 0.004832654105419971, 0.004646819538221136, 0.0048326447918133, 0.004646826093416645, 0.004925592808243271, 0.00492559936343878, 0.00492559936343878, 0.004646832648612154, 0.004646839203807662, 0.004646845759003171, 0.004646845759003171, 0.004832658068336905, 0.004832664623532414, 0.004925563396927193, 0.004832664623532414, 0.002044978606445396, 0.0021378712539723162, 0.002230763817951253, 0.0033465184287454, 0.003346487897364946, 0.003067664506652428, 0.0039043750214937, 0.0032534512702437407, 0.003625085860809554, 0.0037180428993524774, 0.00381093185196513, 0.003810938407160639, 0.0039038215220045867, 0.0039038280772000955, 0.00418255005881643, 0.003810941184918819, 0.004275563200605196, 0.0038109477401143278, 0.00399674981084578, 0.004368650584994044, 0.0020449851616409047, 0.0020449917168364135, 0.0024166499663663132, 0.004743702249158091, 0.0026024426921060625, 0.0032529711372351455, 0.0028811575005854733, 0.002881164055780982, 0.002881170610976491, 0.003159878864227685, 0.003345748181107348, 0.0033457547363028566, 0.0039032855113410488, 0.0038103261868097193, 0.0034386339431977057, 0.0041821550558296845, 0.003717339459901485, 0.003531520491668729, 0.003996156342946958, 0.003717306247189394, 0.0020449982720319223, 0.0022307998699396072, 0.0038122671687958526, 0.0023236948915316613, 0.003253440714318424, 0.0027883286044859063, 0.002045004827227431, 0.0024166649994035675, 0.002788324552309941, 0.002602459792304422, 0.003625162450294008, 0.003718154347382423, 0.004090516835459018, 0.0041834041797771, 0.0040905233906545265, 0.0026024663474999306, 0.0034390258898616853, 0.0026024729026954394, 0.0034390467440885922, 0.0029741395495033367, 0.0021378974747543514, 0.0025095573200028614, 0.002230790122252371, 0.004092292318433857, 0.0022307966774478796, 0.0023236901114779404, 0.0029742865251776588, 0.002323696666673449, 0.0029743556807844806, 0.002323703221868958, 0.0026024330103374543, 0.002416596503380309, 0.003439525048005952, 0.003253192858823364, 0.0023236893249748, 0.0031604116518673337, 0.0024165812549912426, 0.0032531672153855557, 0.0033462142288071626, 0.002323695880170309, 0.0027883210737257936, 0.0024165878101867514, 0.0023236932154538192, 0.002416592955147974, 0.004370857109265431, 0.003253288940883175, 0.002323699770649328, 0.0032535687028405398, 0.0028813920360637223, 0.002416592085025682, 0.0031602697135071803, 0.0029742179871900883, 0.003067108024764024, 0.004276048326479938, 0.003252918515339203, 0.003996507327764377, 0.00436885217044, 0.004926458340427509, 0.004647584725532606, 0.003438727346502075, 0.003717495374643477, 0.005019695511320917, 0.003903313655589944, 0.0037174670411008574, 0.004089230608750916, 0.0037174735962963662, 0.0031600126140843413, 0.00316001916927985, 0.0032529097573643032, 0.003996718994042555, 0.0034387120650642027, 0.003160025724475359, 0.0035316776817752517, 0.0039034229242872693, 0.0036245776034592903, 0.0031600322796708677, 0.0037176088898913198, 0.0031600388348663765, 0.0031600453900618854, 0.003438762592068138, 0.003717674603091527, 0.0032529286364494543, 0.003624581213002589, 0.0039036856803083752, 0.003903692235503884, 0.003903692235503884, 0.003345808676987597, 0.0034387002185317346, 0.003903311519000474, 0.003903309118921107, 0.004182030356351372, 0.0039962001789398335, 0.004089104691344298, 0.004181999423709933, 0.004089111246539807, 0.004089117801735316, 0.004274908561701826, 0.0039965157159272315, 0.004089414265941798, 0.004647068635272161, 0.0040894208211373064, 0.004089414983588227, 0.004740050147917602, 0.004368163262422113, 0.004182315037840678, 0.004554014586383282, 0.004647000084023346, 0.004182314403741881, 0.004368124977796261, 0.004461089057940464, 0.004554088127433043, 0.004646982441050317, 0.004554094682628552, 0.004275279237630125, 0.0042752857928256335, 0.0043681853624338764, 0.004461090616956182, 0.004368191917629385, 0.004089421538783736, 0.0040894280939792445, 0.0040894280939792445, 0.004089434649174753, 0.004089434649174753, 0.002137878595670965, 0.0023236798868053517, 0.0030673284455677717, 0.00492808173971192, 0.004462229467940498, 0.0026024080159380634, 0.002788208343822231, 0.0036248157432943007, 0.0034387790228256948, 0.0034387855780212036, 0.0034387855780212036, 0.003810441117822705, 0.003810447673018214, 0.0039962405001785495, 0.0027882080370632773, 0.003997186313967943, 0.0037179378350833004, 0.003717944390278809, 0.003717944390278809, 0.0028811015546129216, 0.0038108211078679757, 0.004554517220143827, 0.004368442470071378, 0.003996630411804066, 0.00474024842216039, 0.004647312235480463, 0.004647318790675972, 0.004833118053666641, 0.00483312460886215, 0.004926014313001228, 0.0030669242428945204, 0.004182752307707176, 0.003252741623029702, 0.004648089263204479, 0.003252748178225211, 0.0038103942960107146, 0.003438566687963313, 0.004833799589870986, 0.004182248412927998, 0.0034386226862043213, 0.004740642843689, 0.003996284297062078, 0.003996290852257587, 0.004553915748389146, 0.0040891887201144885, 0.004182085717843738, 0.004182092273039247, 0.00529794205908464, 0.005298521728720361, 0.004089195275309997, 0.004275005976868876, 0.004275024936701248, 0.00483268248961058, 0.004275031491896757, 0.004739759219369315, 0.004553789503241086, 0.0041820933392259915, 0.004460828120636631, 0.005111418761148781, 0.0045537229802152706, 0.004553729535410779, 0.004925401445864038, 0.004646624547453028, 0.0047395196430975155, 0.004646631102648536, 0.004739527266433161, 0.005111201391819235, 0.004832422676573567, 0.005111158407611595, 0.005297109318546666, 0.005297115873742175, 0.005482930044283912, 0.004460832643722061, 0.005297484661971308, 0.004832513126891237, 0.005390126375975085, 0.00529715972018921, 0.004925409888620018, 0.005297086229378273, 0.005297083394678274, 0.00520414586687548, 0.0058548065670848805, 0.0053899509504121415, 0.004832519682086746, 0.005204202380510527, 0.005390013183445901, 0.005297101280519317, 0.0052041957303483495, 0.00576195934807211, 0.00529709130247875, 0.002137885150866474, 0.0022307784323778246, 0.0022307849875733334, 0.0038126078668415013, 0.0022307785848690075, 0.0022307851400645163, 0.0023236786576141606, 0.003625614949418504, 0.003346503561327871, 0.0023236785740945766, 0.0034397099726208953, 0.003718740717623436, 0.0023236851292900854, 0.0030672659564578843, 0.002323691684485594, 0.002881313961361606, 0.0027884688394063393, 0.00288150867331411, 0.0035320447437110773, 0.0029743879999990295, 0.003253086664171042, 0.0038106255597150224, 0.0034388511995180307, 0.0035317278690133827, 0.0037175408646363596, 0.003531902389364068, 0.005113177148111897, 0.003624794527211636, 0.004089410511103857, 0.00418235487688903, 0.004182361432084539, 0.004182361432084539, 0.004926688485919954, 0.004926695041115463, 0.004926695041115463, 0.0035319089445595767, 0.004182415644155602, 0.004368206469132957, 0.004182422199351111, 0.0035319154997550855, 0.004834044991136224, 0.0036247975192925243, 0.003996417970174272, 0.003717679455369024, 0.004275207641972809, 0.003996377294165756, 0.0040892620851127395, 0.004182158095931149, 0.0029743945551945383, 0.003160164578687677, 0.00381063017226796, 0.004926458285828767, 0.0052986148403982684, 0.0035317615649279013, 0.003717526834497053, 0.0038104021321266257, 0.0038104021321266257, 0.004367886761027342, 0.004367872270375359, 0.0036246377322003923, 0.004182127379423157, 0.0037175146856807365, 0.004275128877307123, 0.003903281224801799, 0.004553780170688091, 0.0046467408948926295, 0.004832490838225838, 0.004739609340025108, 0.0037175212408762453, 0.00427507321726665, 0.003717527796071754, 0.003810408818709881, 0.0040891766190458, 0.002974401110390047, 0.003067280437193079, 0.003903845588398526, 0.003810769371133081, 0.0039036401890371456, 0.00381077592632859, 0.002974407665585556, 0.0029744142207810647, 0.0042761518233737986, 0.004276158378569307, 0.004276158378569307, 0.0029744207759765736, 0.0037178891246657545, 0.0029744273311720824, 0.003996932008430045, 0.002974433886367591, 0.00390400397508848, 0.003067313296538078, 0.0030673198517335866, 0.0034389307866547355, 0.0033460108001628717, 0.003903601835339615, 0.0033460173553583805, 0.0031602031493898975, 0.003345989115833116, 0.003810604045098649, 0.003903598974870769, 0.0032530896497584235, 0.0036247315428932884, 0.0039037079940371622, 0.0033459770199850123, 0.0040895022174966735, 0.004182515392705675, 0.004089537314722986, 0.0030672869923885878, 0.005865259981761898, 0.0030672935475840966, 0.0031601735915996005, 0.0037176917948550316, 0.004275786466494979, 0.0030673001027796054, 0.0035318749871874828, 0.004833723064970512, 0.0035318815423829916, 0.0035318880975785004, 0.0035318880975785004, 0.003067306657975114, 0.003717789195207921, 0.0031601858322637504, 0.004275797701152431, 0.00353178851990781, 0.0032530641367735993, 0.004740986294865137, 0.00455496357671422, 0.004182539055843101, 0.003253070691969108, 0.0039965187276572774, 0.003253077247164617, 0.003624720496066805, 0.003531757733558391, 0.0035317642887539, 0.0039033610403130707 ], "y": [ -86.2024474695325, -108.77472686767578, -111.80000000000001, -105.74945373535157, -110.5, -109.19999999999999, -106.92500000000003, -107.90000000000003, -105.95000000000002, -106.60000000000002, -105.30000000000001, -100.99890747070313, -103.35, -104, -102.69999999999999, -98.64781494140627, -101.40000000000003, -95.89562988281251, -99.12500000000001, -100.10000000000002, -98.15, -98.80000000000001, -97.5, -92.66625976562501, -95.55000000000001, -96.19999999999999, -94.90000000000003, -89.78251953125002, -92.4625, -93.60000000000002, -91.325, -92.30000000000001, -90.35, -91, -89.69999999999999, -87.10253906250003, -88.40000000000003, -85.80507812500002, -87.10000000000002, -84.51015625000001, -85.80000000000001, -83.2203125, -84.5, -81.94062500000001, -83.19999999999999, -80.68125000000002, -81.90000000000003, -79.4625, -80.60000000000002, -78.325, -79.30000000000001, -77.35, -78, -76.69999999999999, -63.63016807138922, -75.40000000000003, -51.860336142778415, -74.10000000000002, -72.80000000000001, -67.107421875, -70.36250000000001, -71.5, -69.22500000000001, -70.19999999999999, -68.25000000000003, -68.90000000000003, -67.60000000000002, -63.85234375, -65.65, -66.30000000000001, -65, -62.05468750000001, -63.69999999999999, -60.409375000000026, -62.400000000000034, -58.41875000000002, -61.10000000000002, -55.73750000000001, -59.80000000000001, -58.5, -55.900000000000006, -57.19999999999999, -55.900000000000034, -54.60000000000002, -51.67500000000001, -53.30000000000001, -50.05000000000001, -51.349999999999994, -52, -50.69999999999999, -48.75000000000003, -49.400000000000034, -48.10000000000002, -29.620672285556804, -46.80000000000001, -45.5, -43.55000000000001, -44.19999999999999, -42.900000000000034, -40.95000000000002, -41.60000000000002, -40.30000000000001, -12.441344571113596, -39, -37.69999999999999, 14.117310857772807, -34.94765625000002, -36.400000000000034, -33.49531250000001, -35.10000000000002, -31.890625000000007, -33.80000000000001, -29.981250000000006, -32.5, -31.19999999999999, -29.900000000000034, -27.462500000000013, -28.600000000000023, -26.325000000000003, -27.30000000000001, -25.349999999999994, -26, -24.69999999999999, 63.18227796554564, -23.400000000000034, -16.046150857360782, -20.393750000000015, -22.100000000000023, -18.687500000000007, -20.150000000000006, -20.80000000000001, -19.5, -17.22500000000001, -18.19999999999999, -16.25000000000003, -16.900000000000034, -15.600000000000023, -11.69855171472155, -13.650000000000006, -14.300000000000011, -13, -9.747103429443094, -11.699999999999989, -7.794206858886197, -10.400000000000034, -5.188413717772359, -8.450000000000017, -9.100000000000023, -7.800000000000011, -1.9268274355446995, -5.849999999999994, -6.5, -5.199999999999989, 1.9963451289105953, -3.2500000000000284, -3.900000000000034, -2.6000000000000227, 7.242690257821219, 0.7312499999999922, -1.3000000000000114, 2.7624999999999957, 0.6500000000000057, 0, 1.3000000000000114, 4.874999999999986, 2.599999999999966, 3.8999999999999773, 5.199999999999989, 7.150000000000006, 6.5, 7.800000000000011, 13.754130515642446, 9.749999999999972, 9.099999999999966, 10.399999999999977, 17.75826103128492, 13.812499999999993, 12.349999999999994, 11.699999999999989, 13, 15.274999999999991, 14.300000000000011, 16.24999999999997, 15.599999999999966, 16.899999999999977, 21.704022062569848, 18.849999999999994, 18.19999999999999, 19.5, 24.558044125139702, 21.77499999999999, 20.80000000000001, 22.74999999999997, 22.099999999999966, 23.399999999999977, 27.341088250279416, 24.69999999999999, 29.982176500558843, 26.974999999999994, 26, 27.94999999999999, 27.30000000000001, 28.599999999999966, 32.98935300111769, 30.549999999999983, 29.899999999999977, 31.19999999999999, 35.4287060022354, 33.150000000000006, 32.5, 33.80000000000001, 37.707412004470804, 35.099999999999966, 40.31482400894164, 37.04999999999998, 36.39999999999998, 37.69999999999999, 43.579648017883294, 39, 48.15929603576659, 41.43749999999999, 40.30000000000001, 42.574999999999974, 41.599999999999966, 43.54999999999998, 42.89999999999998, 44.19999999999999, 54.88109207153319, 47.61249999999999, 46.150000000000006, 45.5, 46.80000000000001, 49.074999999999974, 48.099999999999966, 50.04999999999998, 49.39999999999998, 50.69999999999999, 62.149684143066395, 55.04687499999999, 52.650000000000006, 52, 53.30000000000001, 57.44374999999998, 55.24999999999997, 54.599999999999966, 55.89999999999998, 59.63749999999998, 57.19999999999999, 59.150000000000006, 58.5, 59.80000000000001, 62.074999999999974, 61.099999999999966, 63.04999999999998, 62.39999999999998, 63.69999999999999, 69.2524932861328, 66.94999999999999, 65.65, 65, 66.30000000000001, 68.24999999999997, 67.59999999999997, 68.89999999999998, 71.55498657226562, 70.19999999999999, 72.90997314453125, 71.5, 74.3199462890625, 72.80000000000001, 75.83989257812497, 74.09999999999997, 77.57978515624998, 75.39999999999998, 79.75957031249999, 76.69999999999999, 82.819140625, 78, 79.30000000000001, 81.89999999999998, 80.59999999999997, 81.89999999999998, 83.19999999999999, 87.63828125, 84.5, 90.7765625, 87.5875, 85.80000000000001, 87.09999999999997, 89.37499999999999, 88.39999999999998, 90.35, 89.69999999999999, 91, 93.96562499999999, 92.30000000000001, 95.63124999999998, 93.59999999999997, 97.6625, 95.54999999999998, 94.89999999999998, 96.19999999999999, 99.77499999999999, 98.15, 97.5, 98.80000000000001, 101.39999999999998, 100.09999999999997, 101.39999999999998, 102.69999999999999, 149.7645559310913, 106.47812499999999, 104.65, 104, 105.30000000000001, 108.30624999999998, 106.59999999999997, 110.01249999999999, 107.89999999999998, 112.12499999999999, 110.175, 109.19999999999999, 111.15, 110.5, 111.80000000000001, 114.07499999999997, 113.09999999999997, 115.04999999999998, 114.39999999999998, 115.69999999999999, 193.0509868621826, 128.53023986816407, 118.7265625, 117, 120.453125, 118.30000000000001, 122.60624999999999, 120.24999999999997, 119.59999999999997, 120.89999999999998, 124.96249999999999, 122.19999999999999, 123.5, 124.79999999999998, 127.725, 126.1, 127.39999999999998, 129.35, 128.7, 130, 138.33391723632812, 132.27499999999998, 131.29999999999998, 133.25, 132.6, 133.9, 144.39283447265626, 137.39374999999998, 135.2, 139.58749999999998, 136.5, 137.79999999999998, 139.75, 139.1, 140.4, 142.67499999999998, 141.7, 143.64999999999998, 143, 144.29999999999998, 151.3919189453125, 145.6, 157.183837890625, 146.9, 153.19687499999998, 149.41875, 148.2, 150.6375, 149.5, 151.77499999999998, 150.79999999999998, 152.75, 152.1, 153.4, 156.975, 154.7, 156.64999999999998, 156, 157.29999999999998, 159.25, 158.6, 159.9, 167.46767578125002, 161.85, 161.2, 162.5, 164.45, 163.79999999999998, 165.1, 173.08535156250002, 166.4, 179.770703125, 169.8125, 167.7, 171.925, 169, 170.95, 170.29999999999998, 171.6, 174.85, 173.55, 172.9, 174.2, 176.14999999999998, 175.5, 176.79999999999998, 189.72890625, 180.96406249999998, 178.75, 178.1, 179.4, 183.17812499999997, 181.35, 180.7, 182, 185.00624999999997, 183.29999999999998, 186.71249999999998, 185.25, 184.6, 185.9, 188.17499999999998, 187.2, 189.14999999999998, 188.5, 189.79999999999998, 198.49375, 192.64375, 191.1, 194.1875, 192.4, 193.7, 195.975, 195, 196.95, 196.29999999999998, 197.6, 204.34375, 199.55, 198.9, 200.2, 209.1375, 201.5, 202.79999999999998, 204.75, 204.1, 205.4, 207.35, 206.7, 208, 209.95, 209.29999999999998, 210.6, 212.875, 211.9, 213.85, 213.2, 214.5, 216.77499999999998, 215.79999999999998, 217.75, 217.1, 218.4, 257.57173385620115, 224.79066162109376, 220.35, 219.7, 221, 229.2313232421875, 223.7625, 222.29999999999998, 225.225, 223.6, 224.9, 226.85, 226.2, 227.5, 234.700146484375, 228.79999999999998, 230.75, 230.1, 231.4, 240.60029296875, 234.56875, 232.7, 234, 236.4375, 235.29999999999998, 237.575, 236.6, 238.55, 237.9, 239.2, 246.6318359375, 240.5, 242.9375, 241.79999999999998, 244.075, 243.1, 245.05, 244.4, 245.7, 252.763671875, 247, 258.52734375, 250.53437499999998, 248.29999999999998, 252.76874999999998, 250.89999999999998, 249.6, 250.89999999999998, 252.2, 254.6375, 253.5, 255.775, 254.8, 256.75, 256.1, 257.4, 266.5203125, 260.853125, 258.7, 263.00625, 260.975, 260, 261.95000000000005, 261.3, 262.6, 265.03749999999997, 263.9, 266.17499999999995, 265.2, 267.15, 266.5, 267.8, 272.1875, 269.1, 275.275, 270.4, 271.7, 274.625, 273, 274.3, 276.25, 275.6, 276.9, 280.15000000000003, 278.85, 278.2, 279.5, 281.45000000000005, 280.8, 282.1, 290.3528060913086, 284.04999999999995, 283.4, 284.7, 296.6556121826172, 288.51874999999995, 286.65, 286, 287.3, 290.3875, 288.6, 289.9, 292.17499999999995, 291.2, 293.15, 292.5, 293.8, 304.7924743652344, 295.1, 314.4849487304688, 297.375, 296.4, 298.35, 297.7, 299, 305.31718750000005, 300.3, 303.875, 301.6, 303.54999999999995, 302.9, 304.2, 306.15, 305.5, 306.8, 310.334375, 308.75, 308.1, 309.4, 311.91875, 310.7, 313.1375, 312, 314.275, 313.3, 315.25, 314.6, 315.9, 331.5948974609375, 320.5921875, 317.85, 317.2, 318.5, 323.33437499999997, 320.775, 319.8, 321.75, 321.1, 322.4, 325.89374999999995, 323.7, 328.0875, 325, 327.275, 326.3, 328.25, 327.6, 328.9, 331.17499999999995, 330.2, 332.15, 331.5, 332.8, 342.59760742187495, 335.075, 334.1, 336.04999999999995, 335.4, 336.7, 350.12021484375, 340.42734375, 338.65, 338, 339.3, 342.2046875, 340.6, 343.809375, 341.9, 345.71875, 343.2, 348.2375, 345.475, 344.5, 346.45000000000005, 345.8, 347.1, 351, 349.04999999999995, 348.4, 349.7, 352.95, 351, 352.3, 354.9, 353.6, 354.9, 356.2, 359.8130859375, 357.5, 362.126171875, 359.45000000000005, 358.8, 360.1, 364.80234375, 362.375, 361.4, 363.35, 362.7, 364, 367.2296875, 365.3, 369.159375, 366.6, 367.9, 371.71875, 369.2, 370.5, 371.8, 374.2375, 373.1, 375.375, 374.4, 376.35, 375.7, 377 ] } ], "layout": { "autosize": false, "font": { "family": "Balto", "size": 14 }, "height": 3000, "hovermode": "closest", "margin": { "l": 10 }, "plot_bgcolor": "rgb(250,250,250)", "shapes": [ { "layer": "below", "line": { "color": "rgb(25,25,25)", "width": 1 }, "type": "line", "x0": 0, "x1": 0, "y0": -86.2024474695325, "y1": -86.2024474695325 }, { "layer": "below", "line": { "color": "rgb(25,25,25)", "width": 1 }, "type": "line", "x0": 0, "x1": 0, "y0": -63.63016807138922, "y1": -108.77472686767578 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0, "x1": 6.555195508771621e-09, "y0": -108.77472686767578, "y1": -108.77472686767578 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 6.555195508771621e-09, "x1": 6.555195508771621e-09, "y0": -105.74945373535157, "y1": -111.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 6.555195508771621e-09, "x1": 0.005791689352737594, "y0": -111.80000000000001, "y1": -111.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 6.555195508771621e-09, "x1": 0.00438466852368986, "y0": -105.74945373535157, "y1": -105.74945373535157 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00438466852368986, "x1": 0.00438466852368986, "y0": -100.99890747070313, "y1": -110.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00438466852368986, "x1": 0.004942353684003155, "y0": -110.5, "y1": -110.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00438466852368986, "x1": 0.005035420108373306, "y0": -109.19999999999999, "y1": -109.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00438466852368986, "x1": 0.0044775787847450765, "y0": -106.92500000000003, "y1": -106.92500000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0044775787847450765, "x1": 0.0044775787847450765, "y0": -105.95000000000002, "y1": -107.90000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0044775787847450765, "x1": 0.004477585339940585, "y0": -107.90000000000003, "y1": -107.90000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0044775787847450765, "x1": 0.004570489763677347, "y0": -105.95000000000002, "y1": -105.95000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004570489763677347, "x1": 0.004570489763677347, "y0": -105.30000000000001, "y1": -106.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004570489763677347, "x1": 0.0049422651635439765, "y0": -106.60000000000002, "y1": -106.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004570489763677347, "x1": 0.004756347436075718, "y0": -105.30000000000001, "y1": -105.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00438466852368986, "x1": 0.004384675078885369, "y0": -100.99890747070313, "y1": -100.99890747070313 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384675078885369, "x1": 0.004384675078885369, "y0": -98.64781494140627, "y1": -103.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384675078885369, "x1": 0.004477584553210342, "y0": -103.35, "y1": -103.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477584553210342, "x1": 0.004477584553210342, "y0": -102.69999999999999, "y1": -104 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477584553210342, "x1": 0.004756363278207898, "y0": -104, "y1": -104 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477584553210342, "x1": 0.0045704940275496705, "y0": -102.69999999999999, "y1": -102.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384675078885369, "x1": 0.004384681634080878, "y0": -98.64781494140627, "y1": -98.64781494140627 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384681634080878, "x1": 0.004384681634080878, "y0": -95.89562988281251, "y1": -101.40000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384681634080878, "x1": 0.004570516937643193, "y0": -101.40000000000003, "y1": -101.40000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384681634080878, "x1": 0.0043846881892763865, "y0": -95.89562988281251, "y1": -95.89562988281251 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043846881892763865, "x1": 0.0043846881892763865, "y0": -92.66625976562501, "y1": -99.12500000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043846881892763865, "x1": 0.0044775976636013595, "y0": -99.12500000000001, "y1": -99.12500000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0044775976636013595, "x1": 0.0044775976636013595, "y0": -98.15, "y1": -100.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0044775976636013595, "x1": 0.004477604218796868, "y0": -100.10000000000002, "y1": -100.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0044775976636013595, "x1": 0.004570507137940688, "y0": -98.15, "y1": -98.15 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004570507137940688, "x1": 0.004570507137940688, "y0": -97.5, "y1": -98.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004570507137940688, "x1": 0.004663418463293267, "y0": -98.80000000000001, "y1": -98.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004570507137940688, "x1": 0.004570513693136197, "y0": -97.5, "y1": -97.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043846881892763865, "x1": 0.004384694744471895, "y0": -92.66625976562501, "y1": -92.66625976562501 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384694744471895, "x1": 0.004384694744471895, "y0": -89.78251953125002, "y1": -95.55000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384694744471895, "x1": 0.004477605089100985, "y0": -95.55000000000001, "y1": -95.55000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477605089100985, "x1": 0.004477605089100985, "y0": -94.90000000000003, "y1": -96.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477605089100985, "x1": 0.004663442136160482, "y0": -96.19999999999999, "y1": -96.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477605089100985, "x1": 0.004477611644296494, "y0": -94.90000000000003, "y1": -94.90000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384694744471895, "x1": 0.004384701299667404, "y0": -89.78251953125002, "y1": -89.78251953125002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384701299667404, "x1": 0.004384701299667404, "y0": -87.10253906250003, "y1": -92.4625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384701299667404, "x1": 0.004477630240046842, "y0": -92.4625, "y1": -92.4625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477630240046842, "x1": 0.004477630240046842, "y0": -91.325, "y1": -93.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477630240046842, "x1": 0.004570535577754826, "y0": -93.60000000000002, "y1": -93.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477630240046842, "x1": 0.00447763679524235, "y0": -91.325, "y1": -91.325 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00447763679524235, "x1": 0.00447763679524235, "y0": -90.35, "y1": -92.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00447763679524235, "x1": 0.004477643350437859, "y0": -92.30000000000001, "y1": -92.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00447763679524235, "x1": 0.004477643350437859, "y0": -90.35, "y1": -90.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477643350437859, "x1": 0.004477643350437859, "y0": -89.69999999999999, "y1": -91 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477643350437859, "x1": 0.004477649905633368, "y0": -91, "y1": -91 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004477643350437859, "x1": 0.004477649905633368, "y0": -89.69999999999999, "y1": -89.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384701299667404, "x1": 0.004384707854862913, "y0": -87.10253906250003, "y1": -87.10253906250003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384707854862913, "x1": 0.004384707854862913, "y0": -85.80507812500002, "y1": -88.40000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384707854862913, "x1": 0.004477617481716897, "y0": -88.40000000000003, "y1": -88.40000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384707854862913, "x1": 0.004384714410058422, "y0": -85.80507812500002, "y1": -85.80507812500002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384714410058422, "x1": 0.004384714410058422, "y0": -84.51015625000001, "y1": -87.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384714410058422, "x1": 0.00447762810896365, "y0": -87.10000000000002, "y1": -87.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384714410058422, "x1": 0.0043847209652539305, "y0": -84.51015625000001, "y1": -84.51015625000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043847209652539305, "x1": 0.0043847209652539305, "y0": -83.2203125, "y1": -85.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043847209652539305, "x1": 0.004384727520449439, "y0": -85.80000000000001, "y1": -85.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043847209652539305, "x1": 0.004384727520449439, "y0": -83.2203125, "y1": -83.2203125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384727520449439, "x1": 0.004384727520449439, "y0": -81.94062500000001, "y1": -84.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384727520449439, "x1": 0.004384734075644948, "y0": -84.5, "y1": -84.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384727520449439, "x1": 0.004384734075644948, "y0": -81.94062500000001, "y1": -81.94062500000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384734075644948, "x1": 0.004384734075644948, "y0": -80.68125000000002, "y1": -83.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384734075644948, "x1": 0.004384740630840457, "y0": -83.19999999999999, "y1": -83.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384734075644948, "x1": 0.004384740630840457, "y0": -80.68125000000002, "y1": -80.68125000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384740630840457, "x1": 0.004384740630840457, "y0": -79.4625, "y1": -81.90000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384740630840457, "x1": 0.004384747186035966, "y0": -81.90000000000003, "y1": -81.90000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384740630840457, "x1": 0.004384747186035966, "y0": -79.4625, "y1": -79.4625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384747186035966, "x1": 0.004384747186035966, "y0": -78.325, "y1": -80.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384747186035966, "x1": 0.0043847537412314746, "y0": -80.60000000000002, "y1": -80.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384747186035966, "x1": 0.0043847537412314746, "y0": -78.325, "y1": -78.325 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043847537412314746, "x1": 0.0043847537412314746, "y0": -77.35, "y1": -79.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043847537412314746, "x1": 0.004384760296426983, "y0": -79.30000000000001, "y1": -79.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043847537412314746, "x1": 0.004384760296426983, "y0": -77.35, "y1": -77.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384760296426983, "x1": 0.004384760296426983, "y0": -76.69999999999999, "y1": -78 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384760296426983, "x1": 0.004384766851622492, "y0": -78, "y1": -78 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004384760296426983, "x1": 0.004384766851622492, "y0": -76.69999999999999, "y1": -76.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0, "x1": 0.0012088403113641886, "y0": -63.63016807138922, "y1": -63.63016807138922 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0012088403113641886, "x1": 0.0012088403113641886, "y0": -51.860336142778415, "y1": -75.40000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0012088403113641886, "x1": 0.002417689407026362, "y0": -75.40000000000003, "y1": -75.40000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0012088403113641886, "x1": 0.001301733356889144, "y0": -51.860336142778415, "y1": -51.860336142778415 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.001301733356889144, "x1": 0.001301733356889144, "y0": -29.620672285556804, "y1": -74.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.001301733356889144, "x1": 0.0019523706603379017, "y0": -74.10000000000002, "y1": -74.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.001301733356889144, "x1": 0.001766405933095651, "y0": -72.80000000000001, "y1": -72.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.001301733356889144, "x1": 0.0013017399120846527, "y0": -67.107421875, "y1": -67.107421875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013017399120846527, "x1": 0.0013017399120846527, "y0": -63.85234375, "y1": -70.36250000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013017399120846527, "x1": 0.0013946328740957975, "y0": -70.36250000000001, "y1": -70.36250000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946328740957975, "x1": 0.0013946328740957975, "y0": -69.22500000000001, "y1": -71.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946328740957975, "x1": 0.0018592426197967344, "y0": -71.5, "y1": -71.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946328740957975, "x1": 0.0013946394292913063, "y0": -69.22500000000001, "y1": -69.22500000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946394292913063, "x1": 0.0013946394292913063, "y0": -68.25000000000003, "y1": -70.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946394292913063, "x1": 0.0016733918602715176, "y0": -70.19999999999999, "y1": -70.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946394292913063, "x1": 0.0013946459844868151, "y0": -68.25000000000003, "y1": -68.25000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946459844868151, "x1": 0.0013946459844868151, "y0": -67.60000000000002, "y1": -68.90000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946459844868151, "x1": 0.001766306186889093, "y0": -68.90000000000003, "y1": -68.90000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946459844868151, "x1": 0.0015804448941250378, "y0": -67.60000000000002, "y1": -67.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013017399120846527, "x1": 0.0019523189329635694, "y0": -63.85234375, "y1": -63.85234375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0019523189329635694, "x1": 0.0019523189329635694, "y0": -62.05468750000001, "y1": -65.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0019523189329635694, "x1": 0.002045213482565325, "y0": -65.65, "y1": -65.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002045213482565325, "x1": 0.002045213482565325, "y0": -65, "y1": -66.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002045213482565325, "x1": 0.005025903146984859, "y0": -66.30000000000001, "y1": -66.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002045213482565325, "x1": 0.002788815290330644, "y0": -65, "y1": -65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0019523189329635694, "x1": 0.003347526943494409, "y0": -62.05468750000001, "y1": -62.05468750000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003347526943494409, "x1": 0.003347526943494409, "y0": -60.409375000000026, "y1": -63.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003347526943494409, "x1": 0.0033475334986899177, "y0": -63.69999999999999, "y1": -63.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003347526943494409, "x1": 0.003440431594245871, "y0": -60.409375000000026, "y1": -60.409375000000026 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003440431594245871, "x1": 0.003440431594245871, "y0": -58.41875000000002, "y1": -62.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003440431594245871, "x1": 0.0038121462050035126, "y0": -62.400000000000034, "y1": -62.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003440431594245871, "x1": 0.003719194122191927, "y0": -58.41875000000002, "y1": -58.41875000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003719194122191927, "x1": 0.003719194122191927, "y0": -55.73750000000001, "y1": -61.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003719194122191927, "x1": 0.0038120982913291204, "y0": -61.10000000000002, "y1": -61.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003719194122191927, "x1": 0.003812098925493441, "y0": -55.73750000000001, "y1": -55.73750000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003812098925493441, "x1": 0.003812098925493441, "y0": -51.67500000000001, "y1": -59.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003812098925493441, "x1": 0.0038121054806889497, "y0": -59.80000000000001, "y1": -59.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003812098925493441, "x1": 0.003997922989289412, "y0": -58.5, "y1": -58.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003812098925493441, "x1": 0.003905014024618623, "y0": -55.900000000000006, "y1": -55.900000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003905014024618623, "x1": 0.003905014024618623, "y0": -54.60000000000002, "y1": -57.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003905014024618623, "x1": 0.003997925051686169, "y0": -57.19999999999999, "y1": -57.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003905014024618623, "x1": 0.003997925769478311, "y0": -55.900000000000034, "y1": -55.900000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003905014024618623, "x1": 0.0039979248991065825, "y0": -54.60000000000002, "y1": -54.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003812098925493441, "x1": 0.003997922989289412, "y0": -51.67500000000001, "y1": -51.67500000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003997922989289412, "x1": 0.003997922989289412, "y0": -50.05000000000001, "y1": -53.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003997922989289412, "x1": 0.003997929544484921, "y0": -53.30000000000001, "y1": -53.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003997922989289412, "x1": 0.003997929544484921, "y0": -50.05000000000001, "y1": -50.05000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003997929544484921, "x1": 0.003997929544484921, "y0": -48.75000000000003, "y1": -51.349999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003997929544484921, "x1": 0.004369716152512725, "y0": -51.349999999999994, "y1": -51.349999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004369716152512725, "x1": 0.004369716152512725, "y0": -50.69999999999999, "y1": -52 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004369716152512725, "x1": 0.0043697227077082335, "y0": -52, "y1": -52 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004369716152512725, "x1": 0.0043697227077082335, "y0": -50.69999999999999, "y1": -50.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003997929544484921, "x1": 0.003997936099680429, "y0": -48.75000000000003, "y1": -48.75000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003997936099680429, "x1": 0.003997936099680429, "y0": -48.10000000000002, "y1": -49.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003997936099680429, "x1": 0.003997942654875938, "y0": -49.400000000000034, "y1": -49.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003997936099680429, "x1": 0.003997942654875938, "y0": -48.10000000000002, "y1": -48.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.001301733356889144, "x1": 0.0013946256848911785, "y0": -29.620672285556804, "y1": -29.620672285556804 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946256848911785, "x1": 0.0013946256848911785, "y0": -12.441344571113596, "y1": -46.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946256848911785, "x1": 0.0022315226251980527, "y0": -46.80000000000001, "y1": -46.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946256848911785, "x1": 0.0019522082524871284, "y0": -45.5, "y1": -45.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946256848911785, "x1": 0.0014875172264353163, "y0": -43.55000000000001, "y1": -43.55000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0014875172264353163, "x1": 0.0014875172264353163, "y0": -42.900000000000034, "y1": -44.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0014875172264353163, "x1": 0.0018591735833402147, "y0": -44.19999999999999, "y1": -44.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0014875172264353163, "x1": 0.0015804086844372612, "y0": -42.900000000000034, "y1": -42.900000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946256848911785, "x1": 0.0014875173789306501, "y0": -40.95000000000002, "y1": -40.95000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0014875173789306501, "x1": 0.0014875173789306501, "y0": -40.30000000000001, "y1": -41.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0014875173789306501, "x1": 0.0016733154913112292, "y0": -41.60000000000002, "y1": -41.60000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0014875173789306501, "x1": 0.0016733142212756406, "y0": -40.30000000000001, "y1": -40.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0013946256848911785, "x1": 0.0016733507353717523, "y0": -12.441344571113596, "y1": -12.441344571113596 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0016733507353717523, "x1": 0.0016733507353717523, "y0": 14.117310857772807, "y1": -39 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0016733507353717523, "x1": 0.002045040061474638, "y0": -39, "y1": -39 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0016733507353717523, "x1": 0.0019520786172473534, "y0": -37.69999999999999, "y1": -37.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0016733507353717523, "x1": 0.0019520786172473534, "y0": 14.117310857772807, "y1": 14.117310857772807 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0019520786172473534, "x1": 0.0019520786172473534, "y0": 63.18227796554564, "y1": -34.94765625000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0019520786172473534, "x1": 0.002509703207316023, "y0": -34.94765625000002, "y1": -34.94765625000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002509703207316023, "x1": 0.002509703207316023, "y0": -33.49531250000001, "y1": -36.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002509703207316023, "x1": 0.0033463947305382487, "y0": -36.400000000000034, "y1": -36.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002509703207316023, "x1": 0.0027884207214996745, "y0": -33.49531250000001, "y1": -33.49531250000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0027884207214996745, "x1": 0.0027884207214996745, "y0": -31.890625000000007, "y1": -35.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0027884207214996745, "x1": 0.0027884272766951833, "y0": -35.10000000000002, "y1": -35.10000000000002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0027884207214996745, "x1": 0.0032530202948781164, "y0": -31.890625000000007, "y1": -31.890625000000007 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530202948781164, "x1": 0.0032530202948781164, "y0": -29.981250000000006, "y1": -33.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530202948781164, "x1": 0.003253026850073625, "y0": -33.80000000000001, "y1": -33.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530202948781164, "x1": 0.003345918742532306, "y0": -29.981250000000006, "y1": -29.981250000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345918742532306, "x1": 0.003345918742532306, "y0": -27.462500000000013, "y1": -32.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345918742532306, "x1": 0.0033459252977278147, "y0": -32.5, "y1": -32.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345918742532306, "x1": 0.003531719394911894, "y0": -31.19999999999999, "y1": -31.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345918742532306, "x1": 0.003624652344309757, "y0": -29.900000000000034, "y1": -29.900000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345918742532306, "x1": 0.0045550286689896875, "y0": -27.462500000000013, "y1": -27.462500000000013 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0045550286689896875, "x1": 0.0045550286689896875, "y0": -26.325000000000003, "y1": -28.600000000000023 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0045550286689896875, "x1": 0.00464793962197412, "y0": -28.600000000000023, "y1": -28.600000000000023 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0045550286689896875, "x1": 0.004647939705528881, "y0": -26.325000000000003, "y1": -26.325000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004647939705528881, "x1": 0.004647939705528881, "y0": -25.349999999999994, "y1": -27.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004647939705528881, "x1": 0.00464794626072439, "y0": -27.30000000000001, "y1": -27.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004647939705528881, "x1": 0.00464794626072439, "y0": -25.349999999999994, "y1": -25.349999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00464794626072439, "x1": 0.00464794626072439, "y0": -24.69999999999999, "y1": -26 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00464794626072439, "x1": 0.004647952815919899, "y0": -26, "y1": -26 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00464794626072439, "x1": 0.004647952815919899, "y0": -24.69999999999999, "y1": -24.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0019520786172473534, "x1": 0.002044972051249887, "y0": 63.18227796554564, "y1": 63.18227796554564 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002044972051249887, "x1": 0.002044972051249887, "y0": 149.7645559310913, "y1": -23.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002044972051249887, "x1": 0.004373527650117375, "y0": -23.400000000000034, "y1": -23.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002044972051249887, "x1": 0.0022307722131347375, "y0": -16.046150857360782, "y1": -16.046150857360782 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307722131347375, "x1": 0.0022307722131347375, "y0": -11.69855171472155, "y1": -20.393750000000015 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307722131347375, "x1": 0.0022307787683302463, "y0": -20.393750000000015, "y1": -20.393750000000015 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307787683302463, "x1": 0.0022307787683302463, "y0": -18.687500000000007, "y1": -22.100000000000023 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307787683302463, "x1": 0.0029743646838081366, "y0": -22.100000000000023, "y1": -22.100000000000023 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307787683302463, "x1": 0.0023236714158571667, "y0": -18.687500000000007, "y1": -18.687500000000007 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236714158571667, "x1": 0.0023236714158571667, "y0": -17.22500000000001, "y1": -20.150000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236714158571667, "x1": 0.003626022063752644, "y0": -20.150000000000006, "y1": -20.150000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003626022063752644, "x1": 0.003626022063752644, "y0": -19.5, "y1": -20.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003626022063752644, "x1": 0.0037189033754402197, "y0": -20.80000000000001, "y1": -20.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003626022063752644, "x1": 0.003904715867636001, "y0": -19.5, "y1": -19.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236714158571667, "x1": 0.0023236779710526755, "y0": -17.22500000000001, "y1": -17.22500000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236779710526755, "x1": 0.0023236779710526755, "y0": -16.25000000000003, "y1": -18.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236779710526755, "x1": 0.0026953566485403476, "y0": -18.19999999999999, "y1": -18.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236779710526755, "x1": 0.0031603496747214612, "y0": -16.25000000000003, "y1": -16.25000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031603496747214612, "x1": 0.0031603496747214612, "y0": -15.600000000000023, "y1": -16.900000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031603496747214612, "x1": 0.00316035622991697, "y0": -16.900000000000034, "y1": -16.900000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031603496747214612, "x1": 0.0036250056314946237, "y0": -15.600000000000023, "y1": -15.600000000000023 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307722131347375, "x1": 0.002323665730684382, "y0": -11.69855171472155, "y1": -11.69855171472155 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323665730684382, "x1": 0.002323665730684382, "y0": -9.747103429443094, "y1": -13.650000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323665730684382, "x1": 0.002416560034625468, "y0": -13.650000000000006, "y1": -13.650000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416560034625468, "x1": 0.002416560034625468, "y0": -13, "y1": -14.300000000000011 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416560034625468, "x1": 0.004184173813866531, "y0": -14.300000000000011, "y1": -14.300000000000011 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416560034625468, "x1": 0.003998072747637807, "y0": -13, "y1": -13 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323665730684382, "x1": 0.0025094674945695707, "y0": -9.747103429443094, "y1": -9.747103429443094 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0025094674945695707, "x1": 0.0025094674945695707, "y0": -7.794206858886197, "y1": -11.699999999999989 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0025094674945695707, "x1": 0.0039047048364586998, "y0": -11.699999999999989, "y1": -11.699999999999989 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0025094674945695707, "x1": 0.0026023610121426568, "y0": -7.794206858886197, "y1": -7.794206858886197 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026023610121426568, "x1": 0.0026023610121426568, "y0": -5.188413717772359, "y1": -10.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026023610121426568, "x1": 0.002881087449966677, "y0": -10.400000000000034, "y1": -10.400000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026023610121426568, "x1": 0.002695254529692301, "y0": -5.188413717772359, "y1": -5.188413717772359 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002695254529692301, "x1": 0.002695254529692301, "y0": -1.9268274355446995, "y1": -8.450000000000017 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002695254529692301, "x1": 0.00269526108488781, "y0": -8.450000000000017, "y1": -8.450000000000017 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00269526108488781, "x1": 0.00269526108488781, "y0": -7.800000000000011, "y1": -9.100000000000023 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00269526108488781, "x1": 0.002973989461241487, "y0": -9.100000000000023, "y1": -9.100000000000023 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00269526108488781, "x1": 0.004370123499600677, "y0": -7.800000000000011, "y1": -7.800000000000011 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002695254529692301, "x1": 0.0030669280357455203, "y0": -1.9268274355446995, "y1": -1.9268274355446995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030669280357455203, "x1": 0.0030669280357455203, "y0": 1.9963451289105953, "y1": -5.849999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030669280357455203, "x1": 0.003066934590941029, "y0": -5.849999999999994, "y1": -5.849999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003066934590941029, "x1": 0.003066934590941029, "y0": -5.199999999999989, "y1": -6.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003066934590941029, "x1": 0.0031598315052091307, "y0": -6.5, "y1": -6.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003066934590941029, "x1": 0.0035315768230369986, "y0": -5.199999999999989, "y1": -5.199999999999989 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030669280357455203, "x1": 0.003717578174230825, "y0": 1.9963451289105953, "y1": 1.9963451289105953 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717578174230825, "x1": 0.003717578174230825, "y0": 7.242690257821219, "y1": -3.2500000000000284 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717578174230825, "x1": 0.003717584729426334, "y0": -3.2500000000000284, "y1": -3.2500000000000284 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717584729426334, "x1": 0.003717584729426334, "y0": -2.6000000000000227, "y1": -3.900000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717584729426334, "x1": 0.004461304275291323, "y0": -3.900000000000034, "y1": -3.900000000000034 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717584729426334, "x1": 0.004182288699216915, "y0": -2.6000000000000227, "y1": -2.6000000000000227 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717578174230825, "x1": 0.0038104787841072136, "y0": 7.242690257821219, "y1": 7.242690257821219 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038104787841072136, "x1": 0.0038104787841072136, "y0": 13.754130515642446, "y1": 0.7312499999999922 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038104787841072136, "x1": 0.004461103106365956, "y0": 0.7312499999999922, "y1": 0.7312499999999922 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004461103106365956, "x1": 0.004461103106365956, "y0": 2.7624999999999957, "y1": -1.3000000000000114 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004461103106365956, "x1": 0.004646919234193448, "y0": -1.3000000000000114, "y1": -1.3000000000000114 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004461103106365956, "x1": 0.004646926119245454, "y0": 2.7624999999999957, "y1": 2.7624999999999957 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646926119245454, "x1": 0.004646926119245454, "y0": 4.874999999999986, "y1": 0.6500000000000057 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646926119245454, "x1": 0.004739821455414164, "y0": 0.6500000000000057, "y1": 0.6500000000000057 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739821455414164, "x1": 0.004739821455414164, "y0": 1.3000000000000114, "y1": 0 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739821455414164, "x1": 0.005390422154220745, "y0": 0, "y1": 0 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739821455414164, "x1": 0.004739828010609673, "y0": 1.3000000000000114, "y1": 1.3000000000000114 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646926119245454, "x1": 0.004646932674440963, "y0": 4.874999999999986, "y1": 4.874999999999986 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646932674440963, "x1": 0.004646932674440963, "y0": 7.150000000000006, "y1": 2.599999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646932674440963, "x1": 0.004646939229636471, "y0": 2.599999999999966, "y1": 2.599999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646932674440963, "x1": 0.004646939229636471, "y0": 3.8999999999999773, "y1": 3.8999999999999773 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646932674440963, "x1": 0.004646939229636471, "y0": 5.199999999999989, "y1": 5.199999999999989 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646932674440963, "x1": 0.004739827224042719, "y0": 7.150000000000006, "y1": 7.150000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739827224042719, "x1": 0.004739827224042719, "y0": 7.800000000000011, "y1": 6.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739827224042719, "x1": 0.0047398337792382275, "y0": 6.5, "y1": 6.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739827224042719, "x1": 0.0047398337792382275, "y0": 7.800000000000011, "y1": 7.800000000000011 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038104787841072136, "x1": 0.0038104853393027224, "y0": 13.754130515642446, "y1": 13.754130515642446 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038104853393027224, "x1": 0.0038104853393027224, "y0": 17.75826103128492, "y1": 9.749999999999972 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038104853393027224, "x1": 0.0039033859491644732, "y0": 9.749999999999972, "y1": 9.749999999999972 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039033859491644732, "x1": 0.0039033859491644732, "y0": 10.399999999999977, "y1": 9.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039033859491644732, "x1": 0.006137333617420523, "y0": 9.099999999999966, "y1": 9.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039033859491644732, "x1": 0.0049262941278098125, "y0": 10.399999999999977, "y1": 10.399999999999977 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038104853393027224, "x1": 0.003810491894498231, "y0": 17.75826103128492, "y1": 17.75826103128492 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810491894498231, "x1": 0.003810491894498231, "y0": 21.704022062569848, "y1": 13.812499999999993 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810491894498231, "x1": 0.004554117515363077, "y0": 13.812499999999993, "y1": 13.812499999999993 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004554117515363077, "x1": 0.004554117515363077, "y0": 15.274999999999991, "y1": 12.349999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004554117515363077, "x1": 0.005018761976638612, "y0": 12.349999999999994, "y1": 12.349999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005018761976638612, "x1": 0.005018761976638612, "y0": 13, "y1": 11.699999999999989 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005018761976638612, "x1": 0.006600345337510047, "y0": 11.699999999999989, "y1": 11.699999999999989 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005018761976638612, "x1": 0.00520457097378547, "y0": 13, "y1": 13 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004554117515363077, "x1": 0.0048328598265171795, "y0": 15.274999999999991, "y1": 15.274999999999991 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0048328598265171795, "x1": 0.0048328598265171795, "y0": 16.24999999999997, "y1": 14.300000000000011 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0048328598265171795, "x1": 0.006508276975821518, "y0": 14.300000000000011, "y1": 14.300000000000011 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0048328598265171795, "x1": 0.004925757825997668, "y0": 16.24999999999997, "y1": 16.24999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925757825997668, "x1": 0.004925757825997668, "y0": 16.899999999999977, "y1": 15.599999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925757825997668, "x1": 0.0051115699769261665, "y0": 15.599999999999966, "y1": 15.599999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925757825997668, "x1": 0.00529744580284156, "y0": 16.899999999999977, "y1": 16.899999999999977 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810491894498231, "x1": 0.00381049844969374, "y0": 21.704022062569848, "y1": 21.704022062569848 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00381049844969374, "x1": 0.00381049844969374, "y0": 24.558044125139702, "y1": 18.849999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00381049844969374, "x1": 0.004089250517559303, "y0": 18.849999999999994, "y1": 18.849999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089250517559303, "x1": 0.004089250517559303, "y0": 19.5, "y1": 18.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089250517559303, "x1": 0.004925919047582555, "y0": 18.19999999999999, "y1": 18.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089250517559303, "x1": 0.005018967392363001, "y0": 19.5, "y1": 19.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00381049844969374, "x1": 0.003810505004889249, "y0": 24.558044125139702, "y1": 24.558044125139702 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810505004889249, "x1": 0.003810505004889249, "y0": 27.341088250279416, "y1": 21.77499999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810505004889249, "x1": 0.0052056385274192735, "y0": 21.77499999999999, "y1": 21.77499999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0052056385274192735, "x1": 0.0052056385274192735, "y0": 22.74999999999997, "y1": 20.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0052056385274192735, "x1": 0.005298541030172187, "y0": 20.80000000000001, "y1": 20.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0052056385274192735, "x1": 0.005205645082614782, "y0": 22.74999999999997, "y1": 22.74999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005205645082614782, "x1": 0.005205645082614782, "y0": 23.399999999999977, "y1": 22.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005205645082614782, "x1": 0.005205651637810291, "y0": 22.099999999999966, "y1": 22.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005205645082614782, "x1": 0.005205651637810291, "y0": 23.399999999999977, "y1": 23.399999999999977 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810505004889249, "x1": 0.0038105115600847576, "y0": 27.341088250279416, "y1": 27.341088250279416 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105115600847576, "x1": 0.0038105115600847576, "y0": 29.982176500558843, "y1": 24.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105115600847576, "x1": 0.004647210449298342, "y0": 24.69999999999999, "y1": 24.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105115600847576, "x1": 0.0038105181152802664, "y0": 29.982176500558843, "y1": 29.982176500558843 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105181152802664, "x1": 0.0038105181152802664, "y0": 32.98935300111769, "y1": 26.974999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105181152802664, "x1": 0.0039034187251420173, "y0": 26.974999999999994, "y1": 26.974999999999994 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039034187251420173, "x1": 0.0039034187251420173, "y0": 27.94999999999999, "y1": 26 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039034187251420173, "x1": 0.004926353575416225, "y0": 26, "y1": 26 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039034187251420173, "x1": 0.003903425280337526, "y0": 27.94999999999999, "y1": 27.94999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903425280337526, "x1": 0.003903425280337526, "y0": 28.599999999999966, "y1": 27.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903425280337526, "x1": 0.0045540623590796594, "y0": 27.30000000000001, "y1": 27.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903425280337526, "x1": 0.004647096192685296, "y0": 28.599999999999966, "y1": 28.599999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105181152802664, "x1": 0.003810524670475775, "y0": 32.98935300111769, "y1": 32.98935300111769 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810524670475775, "x1": 0.003810524670475775, "y0": 35.4287060022354, "y1": 30.549999999999983 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810524670475775, "x1": 0.003996339203434292, "y0": 30.549999999999983, "y1": 30.549999999999983 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996339203434292, "x1": 0.003996339203434292, "y0": 31.19999999999999, "y1": 29.899999999999977 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996339203434292, "x1": 0.004275102070074011, "y0": 29.899999999999977, "y1": 29.899999999999977 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996339203434292, "x1": 0.004833173899733591, "y0": 31.19999999999999, "y1": 31.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810524670475775, "x1": 0.003810531225671284, "y0": 35.4287060022354, "y1": 35.4287060022354 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810531225671284, "x1": 0.003810531225671284, "y0": 37.707412004470804, "y1": 33.150000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810531225671284, "x1": 0.004182226180156528, "y0": 33.150000000000006, "y1": 33.150000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182226180156528, "x1": 0.004182226180156528, "y0": 33.80000000000001, "y1": 32.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182226180156528, "x1": 0.00455392716623581, "y0": 32.5, "y1": 32.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182226180156528, "x1": 0.00446101157139453, "y0": 33.80000000000001, "y1": 33.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810531225671284, "x1": 0.003810537780866793, "y0": 37.707412004470804, "y1": 37.707412004470804 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810537780866793, "x1": 0.003810537780866793, "y0": 40.31482400894164, "y1": 35.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810537780866793, "x1": 0.004461159847660774, "y0": 35.099999999999966, "y1": 35.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810537780866793, "x1": 0.0038105443360623016, "y0": 40.31482400894164, "y1": 40.31482400894164 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105443360623016, "x1": 0.0038105443360623016, "y0": 43.579648017883294, "y1": 37.04999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105443360623016, "x1": 0.004461165305251032, "y0": 37.04999999999998, "y1": 37.04999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004461165305251032, "x1": 0.004461165305251032, "y0": 37.69999999999999, "y1": 36.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004461165305251032, "x1": 0.004461171860446541, "y0": 36.39999999999998, "y1": 36.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004461165305251032, "x1": 0.004554065044945187, "y0": 37.69999999999999, "y1": 37.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105443360623016, "x1": 0.0038105508912578104, "y0": 43.579648017883294, "y1": 43.579648017883294 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105508912578104, "x1": 0.0038105508912578104, "y0": 48.15929603576659, "y1": 39 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105508912578104, "x1": 0.004368192498148875, "y0": 39, "y1": 39 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105508912578104, "x1": 0.003810557446453319, "y0": 48.15929603576659, "y1": 48.15929603576659 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810557446453319, "x1": 0.003810557446453319, "y0": 54.88109207153319, "y1": 41.43749999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810557446453319, "x1": 0.004089304528187788, "y0": 41.43749999999999, "y1": 41.43749999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089304528187788, "x1": 0.004089304528187788, "y0": 42.574999999999974, "y1": 40.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089304528187788, "x1": 0.004368046376803035, "y0": 40.30000000000001, "y1": 40.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089304528187788, "x1": 0.0041822042678819425, "y0": 42.574999999999974, "y1": 42.574999999999974 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0041822042678819425, "x1": 0.0041822042678819425, "y0": 43.54999999999998, "y1": 41.599999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0041822042678819425, "x1": 0.004925837819359829, "y0": 41.599999999999966, "y1": 41.599999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0041822042678819425, "x1": 0.004368038603797105, "y0": 43.54999999999998, "y1": 43.54999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004368038603797105, "x1": 0.004368038603797105, "y0": 44.19999999999999, "y1": 42.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004368038603797105, "x1": 0.00501870545765946, "y0": 42.89999999999998, "y1": 42.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004368038603797105, "x1": 0.004368045158992613, "y0": 44.19999999999999, "y1": 44.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810557446453319, "x1": 0.003810564001648828, "y0": 54.88109207153319, "y1": 54.88109207153319 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810564001648828, "x1": 0.003810564001648828, "y0": 62.149684143066395, "y1": 47.61249999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810564001648828, "x1": 0.003810570556844337, "y0": 47.61249999999999, "y1": 47.61249999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810570556844337, "x1": 0.003810570556844337, "y0": 49.074999999999974, "y1": 46.150000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810570556844337, "x1": 0.004089320008068078, "y0": 46.150000000000006, "y1": 46.150000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089320008068078, "x1": 0.004089320008068078, "y0": 46.80000000000001, "y1": 45.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089320008068078, "x1": 0.004461032817233301, "y0": 45.5, "y1": 45.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089320008068078, "x1": 0.004368069211930342, "y0": 46.80000000000001, "y1": 46.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810570556844337, "x1": 0.0038105771120398456, "y0": 49.074999999999974, "y1": 49.074999999999974 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105771120398456, "x1": 0.0038105771120398456, "y0": 50.04999999999998, "y1": 48.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105771120398456, "x1": 0.00436827367518243, "y0": 48.099999999999966, "y1": 48.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105771120398456, "x1": 0.0038105836672353544, "y0": 50.04999999999998, "y1": 50.04999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105836672353544, "x1": 0.0038105836672353544, "y0": 50.69999999999999, "y1": 49.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105836672353544, "x1": 0.00408934345438657, "y0": 49.39999999999998, "y1": 49.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038105836672353544, "x1": 0.003996404919281727, "y0": 50.69999999999999, "y1": 50.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810564001648828, "x1": 0.0039034637413404723, "y0": 62.149684143066395, "y1": 62.149684143066395 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039034637413404723, "x1": 0.0039034637413404723, "y0": 69.2524932861328, "y1": 55.04687499999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039034637413404723, "x1": 0.004833155938368339, "y0": 55.04687499999999, "y1": 55.04687499999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004833155938368339, "x1": 0.004833155938368339, "y0": 57.44374999999998, "y1": 52.650000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004833155938368339, "x1": 0.005204851512130192, "y0": 52.650000000000006, "y1": 52.650000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005204851512130192, "x1": 0.005204851512130192, "y0": 53.30000000000001, "y1": 52 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005204851512130192, "x1": 0.005204858067325701, "y0": 52, "y1": 52 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005204851512130192, "x1": 0.005297753228220414, "y0": 53.30000000000001, "y1": 53.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004833155938368339, "x1": 0.0049260571823617726, "y0": 57.44374999999998, "y1": 57.44374999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0049260571823617726, "x1": 0.0049260571823617726, "y0": 59.63749999999998, "y1": 55.24999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0049260571823617726, "x1": 0.00501895842634585, "y0": 55.24999999999997, "y1": 55.24999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00501895842634585, "x1": 0.00501895842634585, "y0": 55.89999999999998, "y1": 54.599999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00501895842634585, "x1": 0.005204774229528804, "y0": 54.599999999999966, "y1": 54.599999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00501895842634585, "x1": 0.0052047737567121055, "y0": 55.89999999999998, "y1": 55.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0049260571823617726, "x1": 0.00501895842634585, "y0": 59.63749999999998, "y1": 59.63749999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00501895842634585, "x1": 0.00501895842634585, "y0": 62.074999999999974, "y1": 57.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00501895842634585, "x1": 0.005297709537144785, "y0": 57.19999999999999, "y1": 57.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00501895842634585, "x1": 0.005111858952673402, "y0": 59.150000000000006, "y1": 59.150000000000006 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005111858952673402, "x1": 0.005111858952673402, "y0": 59.80000000000001, "y1": 58.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005111858952673402, "x1": 0.005483550418311151, "y0": 58.5, "y1": 58.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005111858952673402, "x1": 0.005111865507868911, "y0": 59.80000000000001, "y1": 59.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00501895842634585, "x1": 0.0050189649815413585, "y0": 62.074999999999974, "y1": 62.074999999999974 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0050189649815413585, "x1": 0.0050189649815413585, "y0": 63.04999999999998, "y1": 61.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0050189649815413585, "x1": 0.005111865507868911, "y0": 61.099999999999966, "y1": 61.099999999999966 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0050189649815413585, "x1": 0.005018971536736867, "y0": 63.04999999999998, "y1": 63.04999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005018971536736867, "x1": 0.005018971536736867, "y0": 63.69999999999999, "y1": 62.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005018971536736867, "x1": 0.005018978091932376, "y0": 62.39999999999998, "y1": 62.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005018971536736867, "x1": 0.005018978091932376, "y0": 63.69999999999999, "y1": 63.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039034637413404723, "x1": 0.003903470296535981, "y0": 69.2524932861328, "y1": 69.2524932861328 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903470296535981, "x1": 0.003903470296535981, "y0": 71.55498657226562, "y1": 66.94999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903470296535981, "x1": 0.003996370036230136, "y0": 66.94999999999999, "y1": 66.94999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996370036230136, "x1": 0.003996370036230136, "y0": 68.24999999999997, "y1": 65.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996370036230136, "x1": 0.0044610475821237165, "y0": 65.65, "y1": 65.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0044610475821237165, "x1": 0.0044610475821237165, "y0": 66.30000000000001, "y1": 65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0044610475821237165, "x1": 0.004832758175818868, "y0": 65, "y1": 65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0044610475821237165, "x1": 0.004553943473782514, "y0": 66.30000000000001, "y1": 66.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996370036230136, "x1": 0.0047400334193091415, "y0": 68.24999999999997, "y1": 68.24999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0047400334193091415, "x1": 0.0047400334193091415, "y0": 68.89999999999998, "y1": 67.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0047400334193091415, "x1": 0.0054836205954597005, "y0": 67.59999999999997, "y1": 67.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0047400334193091415, "x1": 0.004832928204921407, "y0": 68.89999999999998, "y1": 68.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903470296535981, "x1": 0.00390347685173149, "y0": 71.55498657226562, "y1": 71.55498657226562 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00390347685173149, "x1": 0.00390347685173149, "y0": 72.90997314453125, "y1": 70.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00390347685173149, "x1": 0.004461107746560668, "y0": 70.19999999999999, "y1": 70.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00390347685173149, "x1": 0.003996384429121495, "y0": 72.90997314453125, "y1": 72.90997314453125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996384429121495, "x1": 0.003996384429121495, "y0": 74.3199462890625, "y1": 71.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996384429121495, "x1": 0.005112279182677864, "y0": 71.5, "y1": 71.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996384429121495, "x1": 0.003996390984317004, "y0": 74.3199462890625, "y1": 74.3199462890625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996390984317004, "x1": 0.003996390984317004, "y0": 75.83989257812497, "y1": 72.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996390984317004, "x1": 0.004461078891386767, "y0": 72.80000000000001, "y1": 72.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996390984317004, "x1": 0.0041822172014883965, "y0": 75.83989257812497, "y1": 75.83989257812497 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0041822172014883965, "x1": 0.0041822172014883965, "y0": 77.57978515624998, "y1": 74.09999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0041822172014883965, "x1": 0.00446098203395115, "y0": 74.09999999999997, "y1": 74.09999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0041822172014883965, "x1": 0.004460982743839709, "y0": 77.57978515624998, "y1": 77.57978515624998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004460982743839709, "x1": 0.004460982743839709, "y0": 79.75957031249999, "y1": 75.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004460982743839709, "x1": 0.004925670853890752, "y0": 75.39999999999998, "y1": 75.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004460982743839709, "x1": 0.004553887988850659, "y0": 79.75957031249999, "y1": 79.75957031249999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004553887988850659, "x1": 0.004553887988850659, "y0": 82.819140625, "y1": 76.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004553887988850659, "x1": 0.004553894544046168, "y0": 76.69999999999999, "y1": 76.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004553887988850659, "x1": 0.004646793317439101, "y0": 82.819140625, "y1": 82.819140625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646793317439101, "x1": 0.004646793317439101, "y0": 87.63828125, "y1": 78 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646793317439101, "x1": 0.00520446352569186, "y0": 78, "y1": 78 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646793317439101, "x1": 0.004925557662597601, "y0": 79.30000000000001, "y1": 79.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646793317439101, "x1": 0.004739698798559439, "y0": 81.89999999999998, "y1": 81.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739698798559439, "x1": 0.004739698798559439, "y0": 83.19999999999999, "y1": 80.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739698798559439, "x1": 0.004832605343899702, "y0": 80.59999999999997, "y1": 80.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739698798559439, "x1": 0.005204468463236902, "y0": 81.89999999999998, "y1": 81.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739698798559439, "x1": 0.0050184631437135835, "y0": 83.19999999999999, "y1": 83.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646793317439101, "x1": 0.00464679987263461, "y0": 87.63828125, "y1": 87.63828125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00464679987263461, "x1": 0.00464679987263461, "y0": 90.7765625, "y1": 84.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00464679987263461, "x1": 0.00492557169757872, "y0": 84.5, "y1": 84.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00464679987263461, "x1": 0.004646806427830118, "y0": 90.7765625, "y1": 90.7765625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646806427830118, "x1": 0.004646806427830118, "y0": 93.96562499999999, "y1": 87.5875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646806427830118, "x1": 0.004739711756420407, "y0": 87.5875, "y1": 87.5875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739711756420407, "x1": 0.004739711756420407, "y0": 89.37499999999999, "y1": 85.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739711756420407, "x1": 0.004925537010091772, "y0": 85.80000000000001, "y1": 85.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739711756420407, "x1": 0.005018473237428417, "y0": 87.09999999999997, "y1": 87.09999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739711756420407, "x1": 0.004739718311615916, "y0": 89.37499999999999, "y1": 89.37499999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739718311615916, "x1": 0.004739718311615916, "y0": 90.35, "y1": 88.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739718311615916, "x1": 0.005018487519419544, "y0": 88.39999999999998, "y1": 88.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739718311615916, "x1": 0.004739724866811425, "y0": 90.35, "y1": 90.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739724866811425, "x1": 0.004739724866811425, "y0": 91, "y1": 89.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739724866811425, "x1": 0.004739731422006933, "y0": 89.69999999999999, "y1": 89.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739724866811425, "x1": 0.004832630111837888, "y0": 91, "y1": 91 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646806427830118, "x1": 0.004646812983025627, "y0": 93.96562499999999, "y1": 93.96562499999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646812983025627, "x1": 0.004646812983025627, "y0": 95.63124999999998, "y1": 92.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646812983025627, "x1": 0.004832654105419971, "y0": 92.30000000000001, "y1": 92.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646812983025627, "x1": 0.004646819538221136, "y0": 95.63124999999998, "y1": 95.63124999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646819538221136, "x1": 0.004646819538221136, "y0": 97.6625, "y1": 93.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646819538221136, "x1": 0.0048326447918133, "y0": 93.59999999999997, "y1": 93.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646819538221136, "x1": 0.004646826093416645, "y0": 97.6625, "y1": 97.6625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646826093416645, "x1": 0.004646826093416645, "y0": 99.77499999999999, "y1": 95.54999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646826093416645, "x1": 0.004925592808243271, "y0": 95.54999999999998, "y1": 95.54999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925592808243271, "x1": 0.004925592808243271, "y0": 96.19999999999999, "y1": 94.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925592808243271, "x1": 0.00492559936343878, "y0": 94.89999999999998, "y1": 94.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925592808243271, "x1": 0.00492559936343878, "y0": 96.19999999999999, "y1": 96.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646826093416645, "x1": 0.004646832648612154, "y0": 99.77499999999999, "y1": 99.77499999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646832648612154, "x1": 0.004646832648612154, "y0": 101.39999999999998, "y1": 98.15 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646832648612154, "x1": 0.004646839203807662, "y0": 98.15, "y1": 98.15 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646839203807662, "x1": 0.004646839203807662, "y0": 98.80000000000001, "y1": 97.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646839203807662, "x1": 0.004646845759003171, "y0": 97.5, "y1": 97.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646839203807662, "x1": 0.004646845759003171, "y0": 98.80000000000001, "y1": 98.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646832648612154, "x1": 0.004832658068336905, "y0": 101.39999999999998, "y1": 101.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832658068336905, "x1": 0.004832658068336905, "y0": 102.69999999999999, "y1": 100.09999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832658068336905, "x1": 0.004832664623532414, "y0": 100.09999999999997, "y1": 100.09999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832658068336905, "x1": 0.004925563396927193, "y0": 101.39999999999998, "y1": 101.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832658068336905, "x1": 0.004832664623532414, "y0": 102.69999999999999, "y1": 102.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002044972051249887, "x1": 0.002044978606445396, "y0": 149.7645559310913, "y1": 149.7645559310913 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002044978606445396, "x1": 0.002044978606445396, "y0": 193.0509868621826, "y1": 106.47812499999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002044978606445396, "x1": 0.0021378712539723162, "y0": 106.47812499999999, "y1": 106.47812499999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0021378712539723162, "x1": 0.0021378712539723162, "y0": 108.30624999999998, "y1": 104.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0021378712539723162, "x1": 0.002230763817951253, "y0": 104.65, "y1": 104.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002230763817951253, "x1": 0.002230763817951253, "y0": 105.30000000000001, "y1": 104 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002230763817951253, "x1": 0.0033465184287454, "y0": 104, "y1": 104 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002230763817951253, "x1": 0.003346487897364946, "y0": 105.30000000000001, "y1": 105.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0021378712539723162, "x1": 0.003067664506652428, "y0": 108.30624999999998, "y1": 108.30624999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067664506652428, "x1": 0.003067664506652428, "y0": 110.01249999999999, "y1": 106.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067664506652428, "x1": 0.0039043750214937, "y0": 106.59999999999997, "y1": 106.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067664506652428, "x1": 0.0032534512702437407, "y0": 110.01249999999999, "y1": 110.01249999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032534512702437407, "x1": 0.0032534512702437407, "y0": 112.12499999999999, "y1": 107.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032534512702437407, "x1": 0.003625085860809554, "y0": 107.89999999999998, "y1": 107.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032534512702437407, "x1": 0.0037180428993524774, "y0": 112.12499999999999, "y1": 112.12499999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037180428993524774, "x1": 0.0037180428993524774, "y0": 114.07499999999997, "y1": 110.175 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037180428993524774, "x1": 0.00381093185196513, "y0": 110.175, "y1": 110.175 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00381093185196513, "x1": 0.00381093185196513, "y0": 111.15, "y1": 109.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00381093185196513, "x1": 0.003810938407160639, "y0": 109.19999999999999, "y1": 109.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00381093185196513, "x1": 0.0039038215220045867, "y0": 111.15, "y1": 111.15 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039038215220045867, "x1": 0.0039038215220045867, "y0": 111.80000000000001, "y1": 110.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039038215220045867, "x1": 0.0039038280772000955, "y0": 110.5, "y1": 110.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039038215220045867, "x1": 0.00418255005881643, "y0": 111.80000000000001, "y1": 111.80000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037180428993524774, "x1": 0.003810941184918819, "y0": 114.07499999999997, "y1": 114.07499999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810941184918819, "x1": 0.003810941184918819, "y0": 115.04999999999998, "y1": 113.09999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810941184918819, "x1": 0.004275563200605196, "y0": 113.09999999999997, "y1": 113.09999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810941184918819, "x1": 0.0038109477401143278, "y0": 115.04999999999998, "y1": 115.04999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038109477401143278, "x1": 0.0038109477401143278, "y0": 115.69999999999999, "y1": 114.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038109477401143278, "x1": 0.00399674981084578, "y0": 114.39999999999998, "y1": 114.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038109477401143278, "x1": 0.004368650584994044, "y0": 115.69999999999999, "y1": 115.69999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002044978606445396, "x1": 0.0020449851616409047, "y0": 193.0509868621826, "y1": 193.0509868621826 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0020449851616409047, "x1": 0.0020449851616409047, "y0": 257.57173385620115, "y1": 128.53023986816407 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0020449851616409047, "x1": 0.0020449917168364135, "y0": 128.53023986816407, "y1": 128.53023986816407 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0020449917168364135, "x1": 0.0020449917168364135, "y0": 138.33391723632812, "y1": 118.7265625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0020449917168364135, "x1": 0.0024166499663663132, "y0": 118.7265625, "y1": 118.7265625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0024166499663663132, "x1": 0.0024166499663663132, "y0": 120.453125, "y1": 117 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0024166499663663132, "x1": 0.004743702249158091, "y0": 117, "y1": 117 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0024166499663663132, "x1": 0.0026024426921060625, "y0": 120.453125, "y1": 120.453125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024426921060625, "x1": 0.0026024426921060625, "y0": 122.60624999999999, "y1": 118.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024426921060625, "x1": 0.0032529711372351455, "y0": 118.30000000000001, "y1": 118.30000000000001 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024426921060625, "x1": 0.0028811575005854733, "y0": 122.60624999999999, "y1": 122.60624999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0028811575005854733, "x1": 0.0028811575005854733, "y0": 124.96249999999999, "y1": 120.24999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0028811575005854733, "x1": 0.002881164055780982, "y0": 120.24999999999997, "y1": 120.24999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002881164055780982, "x1": 0.002881164055780982, "y0": 120.89999999999998, "y1": 119.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002881164055780982, "x1": 0.002881170610976491, "y0": 119.59999999999997, "y1": 119.59999999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002881164055780982, "x1": 0.003159878864227685, "y0": 120.89999999999998, "y1": 120.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0028811575005854733, "x1": 0.003345748181107348, "y0": 124.96249999999999, "y1": 124.96249999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345748181107348, "x1": 0.003345748181107348, "y0": 127.725, "y1": 122.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345748181107348, "x1": 0.0033457547363028566, "y0": 122.19999999999999, "y1": 122.19999999999999 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345748181107348, "x1": 0.0039032855113410488, "y0": 123.5, "y1": 123.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345748181107348, "x1": 0.0038103261868097193, "y0": 124.79999999999998, "y1": 124.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345748181107348, "x1": 0.0034386339431977057, "y0": 127.725, "y1": 127.725 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034386339431977057, "x1": 0.0034386339431977057, "y0": 129.35, "y1": 126.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034386339431977057, "x1": 0.0041821550558296845, "y0": 126.1, "y1": 126.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034386339431977057, "x1": 0.003717339459901485, "y0": 127.39999999999998, "y1": 127.39999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034386339431977057, "x1": 0.003531520491668729, "y0": 129.35, "y1": 129.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531520491668729, "x1": 0.003531520491668729, "y0": 130, "y1": 128.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531520491668729, "x1": 0.003996156342946958, "y0": 128.7, "y1": 128.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531520491668729, "x1": 0.003717306247189394, "y0": 130, "y1": 130 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0020449917168364135, "x1": 0.0020449982720319223, "y0": 138.33391723632812, "y1": 138.33391723632812 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0020449982720319223, "x1": 0.0020449982720319223, "y0": 144.39283447265626, "y1": 132.27499999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0020449982720319223, "x1": 0.0022307998699396072, "y0": 132.27499999999998, "y1": 132.27499999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307998699396072, "x1": 0.0022307998699396072, "y0": 133.25, "y1": 131.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307998699396072, "x1": 0.0038122671687958526, "y0": 131.29999999999998, "y1": 131.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307998699396072, "x1": 0.0023236948915316613, "y0": 133.25, "y1": 133.25 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236948915316613, "x1": 0.0023236948915316613, "y0": 133.9, "y1": 132.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236948915316613, "x1": 0.003253440714318424, "y0": 132.6, "y1": 132.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236948915316613, "x1": 0.0027883286044859063, "y0": 133.9, "y1": 133.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0020449982720319223, "x1": 0.002045004827227431, "y0": 144.39283447265626, "y1": 144.39283447265626 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002045004827227431, "x1": 0.002045004827227431, "y0": 151.3919189453125, "y1": 137.39374999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002045004827227431, "x1": 0.0024166649994035675, "y0": 137.39374999999998, "y1": 137.39374999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0024166649994035675, "x1": 0.0024166649994035675, "y0": 139.58749999999998, "y1": 135.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0024166649994035675, "x1": 0.002788324552309941, "y0": 135.2, "y1": 135.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0024166649994035675, "x1": 0.002602459792304422, "y0": 139.58749999999998, "y1": 139.58749999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002602459792304422, "x1": 0.002602459792304422, "y0": 142.67499999999998, "y1": 136.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002602459792304422, "x1": 0.003625162450294008, "y0": 136.5, "y1": 136.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002602459792304422, "x1": 0.003718154347382423, "y0": 137.79999999999998, "y1": 137.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002602459792304422, "x1": 0.004090516835459018, "y0": 139.75, "y1": 139.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004090516835459018, "x1": 0.004090516835459018, "y0": 140.4, "y1": 139.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004090516835459018, "x1": 0.0041834041797771, "y0": 139.1, "y1": 139.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004090516835459018, "x1": 0.0040905233906545265, "y0": 140.4, "y1": 140.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002602459792304422, "x1": 0.0026024663474999306, "y0": 142.67499999999998, "y1": 142.67499999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024663474999306, "x1": 0.0026024663474999306, "y0": 143.64999999999998, "y1": 141.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024663474999306, "x1": 0.0034390258898616853, "y0": 141.7, "y1": 141.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024663474999306, "x1": 0.0026024729026954394, "y0": 143.64999999999998, "y1": 143.64999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024729026954394, "x1": 0.0026024729026954394, "y0": 144.29999999999998, "y1": 143 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024729026954394, "x1": 0.0034390467440885922, "y0": 143, "y1": 143 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024729026954394, "x1": 0.0029741395495033367, "y0": 144.29999999999998, "y1": 144.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002045004827227431, "x1": 0.0021378974747543514, "y0": 151.3919189453125, "y1": 151.3919189453125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0021378974747543514, "x1": 0.0021378974747543514, "y0": 157.183837890625, "y1": 145.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0021378974747543514, "x1": 0.0025095573200028614, "y0": 145.6, "y1": 145.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0021378974747543514, "x1": 0.002230790122252371, "y0": 157.183837890625, "y1": 157.183837890625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002230790122252371, "x1": 0.002230790122252371, "y0": 167.46767578125002, "y1": 146.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002230790122252371, "x1": 0.004092292318433857, "y0": 146.9, "y1": 146.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002230790122252371, "x1": 0.0022307966774478796, "y0": 153.19687499999998, "y1": 153.19687499999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307966774478796, "x1": 0.0022307966774478796, "y0": 156.975, "y1": 149.41875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307966774478796, "x1": 0.0023236901114779404, "y0": 149.41875, "y1": 149.41875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236901114779404, "x1": 0.0023236901114779404, "y0": 150.6375, "y1": 148.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236901114779404, "x1": 0.0029742865251776588, "y0": 148.2, "y1": 148.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236901114779404, "x1": 0.002323696666673449, "y0": 150.6375, "y1": 150.6375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323696666673449, "x1": 0.002323696666673449, "y0": 151.77499999999998, "y1": 149.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323696666673449, "x1": 0.0029743556807844806, "y0": 149.5, "y1": 149.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323696666673449, "x1": 0.002323703221868958, "y0": 151.77499999999998, "y1": 151.77499999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323703221868958, "x1": 0.002323703221868958, "y0": 152.75, "y1": 150.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323703221868958, "x1": 0.0026024330103374543, "y0": 150.79999999999998, "y1": 150.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323703221868958, "x1": 0.002416596503380309, "y0": 152.75, "y1": 152.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416596503380309, "x1": 0.002416596503380309, "y0": 153.4, "y1": 152.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416596503380309, "x1": 0.003439525048005952, "y0": 152.1, "y1": 152.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416596503380309, "x1": 0.003253192858823364, "y0": 153.4, "y1": 153.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307966774478796, "x1": 0.0023236893249748, "y0": 156.975, "y1": 156.975 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236893249748, "x1": 0.0023236893249748, "y0": 159.25, "y1": 154.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236893249748, "x1": 0.0031604116518673337, "y0": 154.7, "y1": 154.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236893249748, "x1": 0.0024165812549912426, "y0": 156.64999999999998, "y1": 156.64999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0024165812549912426, "x1": 0.0024165812549912426, "y0": 157.29999999999998, "y1": 156 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0024165812549912426, "x1": 0.0032531672153855557, "y0": 156, "y1": 156 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0024165812549912426, "x1": 0.0033462142288071626, "y0": 157.29999999999998, "y1": 157.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236893249748, "x1": 0.002323695880170309, "y0": 159.25, "y1": 159.25 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323695880170309, "x1": 0.002323695880170309, "y0": 159.9, "y1": 158.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323695880170309, "x1": 0.0027883210737257936, "y0": 158.6, "y1": 158.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323695880170309, "x1": 0.0024165878101867514, "y0": 159.9, "y1": 159.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002230790122252371, "x1": 0.0023236932154538192, "y0": 167.46767578125002, "y1": 167.46767578125002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236932154538192, "x1": 0.0023236932154538192, "y0": 173.08535156250002, "y1": 161.85 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236932154538192, "x1": 0.002416592955147974, "y0": 161.85, "y1": 161.85 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416592955147974, "x1": 0.002416592955147974, "y0": 162.5, "y1": 161.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416592955147974, "x1": 0.004370857109265431, "y0": 161.2, "y1": 161.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416592955147974, "x1": 0.003253288940883175, "y0": 162.5, "y1": 162.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236932154538192, "x1": 0.002323699770649328, "y0": 164.45, "y1": 164.45 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323699770649328, "x1": 0.002323699770649328, "y0": 165.1, "y1": 163.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323699770649328, "x1": 0.0032535687028405398, "y0": 163.79999999999998, "y1": 163.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323699770649328, "x1": 0.0028813920360637223, "y0": 165.1, "y1": 165.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236932154538192, "x1": 0.002416592085025682, "y0": 173.08535156250002, "y1": 173.08535156250002 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416592085025682, "x1": 0.002416592085025682, "y0": 179.770703125, "y1": 166.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416592085025682, "x1": 0.0031602697135071803, "y0": 166.4, "y1": 166.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002416592085025682, "x1": 0.0029742179871900883, "y0": 179.770703125, "y1": 179.770703125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029742179871900883, "x1": 0.0029742179871900883, "y0": 189.72890625, "y1": 169.8125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029742179871900883, "x1": 0.003067108024764024, "y0": 169.8125, "y1": 169.8125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067108024764024, "x1": 0.003067108024764024, "y0": 171.925, "y1": 167.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067108024764024, "x1": 0.004276048326479938, "y0": 167.7, "y1": 167.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067108024764024, "x1": 0.003252918515339203, "y0": 171.925, "y1": 171.925 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252918515339203, "x1": 0.003252918515339203, "y0": 174.85, "y1": 169 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252918515339203, "x1": 0.003996507327764377, "y0": 169, "y1": 169 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252918515339203, "x1": 0.00436885217044, "y0": 170.95, "y1": 170.95 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00436885217044, "x1": 0.00436885217044, "y0": 171.6, "y1": 170.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00436885217044, "x1": 0.004926458340427509, "y0": 170.29999999999998, "y1": 170.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00436885217044, "x1": 0.004647584725532606, "y0": 171.6, "y1": 171.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252918515339203, "x1": 0.003438727346502075, "y0": 174.85, "y1": 174.85 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003438727346502075, "x1": 0.003438727346502075, "y0": 176.14999999999998, "y1": 173.55 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003438727346502075, "x1": 0.003717495374643477, "y0": 173.55, "y1": 173.55 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717495374643477, "x1": 0.003717495374643477, "y0": 174.2, "y1": 172.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717495374643477, "x1": 0.005019695511320917, "y0": 172.9, "y1": 172.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717495374643477, "x1": 0.003903313655589944, "y0": 174.2, "y1": 174.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003438727346502075, "x1": 0.0037174670411008574, "y0": 176.14999999999998, "y1": 176.14999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037174670411008574, "x1": 0.0037174670411008574, "y0": 176.79999999999998, "y1": 175.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037174670411008574, "x1": 0.004089230608750916, "y0": 175.5, "y1": 175.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037174670411008574, "x1": 0.0037174735962963662, "y0": 176.79999999999998, "y1": 176.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029742179871900883, "x1": 0.0031600126140843413, "y0": 189.72890625, "y1": 189.72890625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600126140843413, "x1": 0.0031600126140843413, "y0": 198.49375, "y1": 180.96406249999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600126140843413, "x1": 0.00316001916927985, "y0": 180.96406249999998, "y1": 180.96406249999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00316001916927985, "x1": 0.00316001916927985, "y0": 183.17812499999997, "y1": 178.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00316001916927985, "x1": 0.0032529097573643032, "y0": 178.75, "y1": 178.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032529097573643032, "x1": 0.0032529097573643032, "y0": 179.4, "y1": 178.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032529097573643032, "x1": 0.003996718994042555, "y0": 178.1, "y1": 178.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032529097573643032, "x1": 0.0034387120650642027, "y0": 179.4, "y1": 179.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00316001916927985, "x1": 0.003160025724475359, "y0": 183.17812499999997, "y1": 183.17812499999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003160025724475359, "x1": 0.003160025724475359, "y0": 185.00624999999997, "y1": 181.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003160025724475359, "x1": 0.0035316776817752517, "y0": 181.35, "y1": 181.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035316776817752517, "x1": 0.0035316776817752517, "y0": 182, "y1": 180.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035316776817752517, "x1": 0.0039034229242872693, "y0": 180.7, "y1": 180.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035316776817752517, "x1": 0.0036245776034592903, "y0": 182, "y1": 182 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003160025724475359, "x1": 0.0031600322796708677, "y0": 185.00624999999997, "y1": 185.00624999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600322796708677, "x1": 0.0031600322796708677, "y0": 186.71249999999998, "y1": 183.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600322796708677, "x1": 0.0037176088898913198, "y0": 183.29999999999998, "y1": 183.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600322796708677, "x1": 0.0031600388348663765, "y0": 186.71249999999998, "y1": 186.71249999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600388348663765, "x1": 0.0031600388348663765, "y0": 188.17499999999998, "y1": 185.25 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600388348663765, "x1": 0.0031600453900618854, "y0": 185.25, "y1": 185.25 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600453900618854, "x1": 0.0031600453900618854, "y0": 185.9, "y1": 184.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600453900618854, "x1": 0.003438762592068138, "y0": 184.6, "y1": 184.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600453900618854, "x1": 0.003717674603091527, "y0": 185.9, "y1": 185.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600388348663765, "x1": 0.0032529286364494543, "y0": 188.17499999999998, "y1": 188.17499999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032529286364494543, "x1": 0.0032529286364494543, "y0": 189.14999999999998, "y1": 187.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032529286364494543, "x1": 0.003624581213002589, "y0": 187.2, "y1": 187.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032529286364494543, "x1": 0.0039036856803083752, "y0": 189.14999999999998, "y1": 189.14999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039036856803083752, "x1": 0.0039036856803083752, "y0": 189.79999999999998, "y1": 188.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039036856803083752, "x1": 0.003903692235503884, "y0": 188.5, "y1": 188.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039036856803083752, "x1": 0.003903692235503884, "y0": 189.79999999999998, "y1": 189.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031600126140843413, "x1": 0.003345808676987597, "y0": 198.49375, "y1": 198.49375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345808676987597, "x1": 0.003345808676987597, "y0": 204.34375, "y1": 192.64375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345808676987597, "x1": 0.0034387002185317346, "y0": 192.64375, "y1": 192.64375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034387002185317346, "x1": 0.0034387002185317346, "y0": 194.1875, "y1": 191.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034387002185317346, "x1": 0.003903311519000474, "y0": 191.1, "y1": 191.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034387002185317346, "x1": 0.003903309118921107, "y0": 194.1875, "y1": 194.1875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903309118921107, "x1": 0.003903309118921107, "y0": 195.975, "y1": 192.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903309118921107, "x1": 0.004182030356351372, "y0": 192.4, "y1": 192.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903309118921107, "x1": 0.0039962001789398335, "y0": 193.7, "y1": 193.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903309118921107, "x1": 0.004089104691344298, "y0": 195.975, "y1": 195.975 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089104691344298, "x1": 0.004089104691344298, "y0": 196.95, "y1": 195 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089104691344298, "x1": 0.004181999423709933, "y0": 195, "y1": 195 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089104691344298, "x1": 0.004089111246539807, "y0": 196.95, "y1": 196.95 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089111246539807, "x1": 0.004089111246539807, "y0": 197.6, "y1": 196.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089111246539807, "x1": 0.004089117801735316, "y0": 196.29999999999998, "y1": 196.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089111246539807, "x1": 0.004274908561701826, "y0": 197.6, "y1": 197.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345808676987597, "x1": 0.0039965157159272315, "y0": 204.34375, "y1": 204.34375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039965157159272315, "x1": 0.0039965157159272315, "y0": 209.1375, "y1": 199.55 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039965157159272315, "x1": 0.004089414265941798, "y0": 199.55, "y1": 199.55 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414265941798, "x1": 0.004089414265941798, "y0": 200.2, "y1": 198.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414265941798, "x1": 0.004647068635272161, "y0": 198.9, "y1": 198.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414265941798, "x1": 0.0040894208211373064, "y0": 200.2, "y1": 200.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0039965157159272315, "x1": 0.004089414983588227, "y0": 209.1375, "y1": 209.1375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414983588227, "x1": 0.004089414983588227, "y0": 216.77499999999998, "y1": 201.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414983588227, "x1": 0.004740050147917602, "y0": 201.5, "y1": 201.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414983588227, "x1": 0.004368163262422113, "y0": 202.79999999999998, "y1": 202.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414983588227, "x1": 0.004182315037840678, "y0": 204.75, "y1": 204.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182315037840678, "x1": 0.004182315037840678, "y0": 205.4, "y1": 204.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182315037840678, "x1": 0.004554014586383282, "y0": 204.1, "y1": 204.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182315037840678, "x1": 0.004647000084023346, "y0": 205.4, "y1": 205.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414983588227, "x1": 0.004182314403741881, "y0": 207.35, "y1": 207.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182314403741881, "x1": 0.004182314403741881, "y0": 208, "y1": 206.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182314403741881, "x1": 0.004368124977796261, "y0": 206.7, "y1": 206.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182314403741881, "x1": 0.004461089057940464, "y0": 208, "y1": 208 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414983588227, "x1": 0.004554088127433043, "y0": 209.95, "y1": 209.95 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004554088127433043, "x1": 0.004554088127433043, "y0": 210.6, "y1": 209.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004554088127433043, "x1": 0.004646982441050317, "y0": 209.29999999999998, "y1": 209.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004554088127433043, "x1": 0.004554094682628552, "y0": 210.6, "y1": 210.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414983588227, "x1": 0.004275279237630125, "y0": 212.875, "y1": 212.875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004275279237630125, "x1": 0.004275279237630125, "y0": 213.85, "y1": 211.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004275279237630125, "x1": 0.0042752857928256335, "y0": 211.9, "y1": 211.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004275279237630125, "x1": 0.0043681853624338764, "y0": 213.85, "y1": 213.85 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043681853624338764, "x1": 0.0043681853624338764, "y0": 214.5, "y1": 213.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043681853624338764, "x1": 0.004461090616956182, "y0": 213.2, "y1": 213.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0043681853624338764, "x1": 0.004368191917629385, "y0": 214.5, "y1": 214.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089414983588227, "x1": 0.004089421538783736, "y0": 216.77499999999998, "y1": 216.77499999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089421538783736, "x1": 0.004089421538783736, "y0": 217.75, "y1": 215.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089421538783736, "x1": 0.0040894280939792445, "y0": 215.79999999999998, "y1": 215.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089421538783736, "x1": 0.0040894280939792445, "y0": 217.75, "y1": 217.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0040894280939792445, "x1": 0.0040894280939792445, "y0": 218.4, "y1": 217.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0040894280939792445, "x1": 0.004089434649174753, "y0": 217.1, "y1": 217.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0040894280939792445, "x1": 0.004089434649174753, "y0": 218.4, "y1": 218.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0020449851616409047, "x1": 0.002137878595670965, "y0": 257.57173385620115, "y1": 257.57173385620115 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002137878595670965, "x1": 0.002137878595670965, "y0": 290.3528060913086, "y1": 224.79066162109376 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002137878595670965, "x1": 0.0023236798868053517, "y0": 224.79066162109376, "y1": 224.79066162109376 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236798868053517, "x1": 0.0023236798868053517, "y0": 229.2313232421875, "y1": 220.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236798868053517, "x1": 0.0030673284455677717, "y0": 220.35, "y1": 220.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030673284455677717, "x1": 0.0030673284455677717, "y0": 221, "y1": 219.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030673284455677717, "x1": 0.00492808173971192, "y0": 219.7, "y1": 219.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030673284455677717, "x1": 0.004462229467940498, "y0": 221, "y1": 221 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236798868053517, "x1": 0.0026024080159380634, "y0": 229.2313232421875, "y1": 229.2313232421875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024080159380634, "x1": 0.0026024080159380634, "y0": 234.700146484375, "y1": 223.7625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024080159380634, "x1": 0.002788208343822231, "y0": 223.7625, "y1": 223.7625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002788208343822231, "x1": 0.002788208343822231, "y0": 225.225, "y1": 222.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002788208343822231, "x1": 0.0036248157432943007, "y0": 222.29999999999998, "y1": 222.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002788208343822231, "x1": 0.0034387790228256948, "y0": 225.225, "y1": 225.225 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034387790228256948, "x1": 0.0034387790228256948, "y0": 226.85, "y1": 223.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034387790228256948, "x1": 0.0034387855780212036, "y0": 223.6, "y1": 223.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034387790228256948, "x1": 0.0034387855780212036, "y0": 224.9, "y1": 224.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034387790228256948, "x1": 0.003810441117822705, "y0": 226.85, "y1": 226.85 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810441117822705, "x1": 0.003810441117822705, "y0": 227.5, "y1": 226.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810441117822705, "x1": 0.003810447673018214, "y0": 226.2, "y1": 226.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810441117822705, "x1": 0.0039962405001785495, "y0": 227.5, "y1": 227.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0026024080159380634, "x1": 0.0027882080370632773, "y0": 234.700146484375, "y1": 234.700146484375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0027882080370632773, "x1": 0.0027882080370632773, "y0": 240.60029296875, "y1": 228.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0027882080370632773, "x1": 0.003997186313967943, "y0": 228.79999999999998, "y1": 228.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0027882080370632773, "x1": 0.0037179378350833004, "y0": 230.75, "y1": 230.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037179378350833004, "x1": 0.0037179378350833004, "y0": 231.4, "y1": 230.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037179378350833004, "x1": 0.003717944390278809, "y0": 230.1, "y1": 230.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037179378350833004, "x1": 0.003717944390278809, "y0": 231.4, "y1": 231.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0027882080370632773, "x1": 0.0028811015546129216, "y0": 240.60029296875, "y1": 240.60029296875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0028811015546129216, "x1": 0.0028811015546129216, "y0": 246.6318359375, "y1": 234.56875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0028811015546129216, "x1": 0.0038108211078679757, "y0": 234.56875, "y1": 234.56875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038108211078679757, "x1": 0.0038108211078679757, "y0": 236.4375, "y1": 232.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038108211078679757, "x1": 0.004554517220143827, "y0": 232.7, "y1": 232.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038108211078679757, "x1": 0.004368442470071378, "y0": 234, "y1": 234 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038108211078679757, "x1": 0.003996630411804066, "y0": 236.4375, "y1": 236.4375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996630411804066, "x1": 0.003996630411804066, "y0": 237.575, "y1": 235.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996630411804066, "x1": 0.00474024842216039, "y0": 235.29999999999998, "y1": 235.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996630411804066, "x1": 0.004647312235480463, "y0": 237.575, "y1": 237.575 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004647312235480463, "x1": 0.004647312235480463, "y0": 238.55, "y1": 236.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004647312235480463, "x1": 0.004647318790675972, "y0": 236.6, "y1": 236.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004647312235480463, "x1": 0.004833118053666641, "y0": 238.55, "y1": 238.55 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004833118053666641, "x1": 0.004833118053666641, "y0": 239.2, "y1": 237.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004833118053666641, "x1": 0.00483312460886215, "y0": 237.9, "y1": 237.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004833118053666641, "x1": 0.004926014313001228, "y0": 239.2, "y1": 239.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0028811015546129216, "x1": 0.0030669242428945204, "y0": 246.6318359375, "y1": 246.6318359375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030669242428945204, "x1": 0.0030669242428945204, "y0": 252.763671875, "y1": 240.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030669242428945204, "x1": 0.004182752307707176, "y0": 240.5, "y1": 240.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030669242428945204, "x1": 0.003252741623029702, "y0": 242.9375, "y1": 242.9375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252741623029702, "x1": 0.003252741623029702, "y0": 244.075, "y1": 241.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252741623029702, "x1": 0.004648089263204479, "y0": 241.79999999999998, "y1": 241.79999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252741623029702, "x1": 0.003252748178225211, "y0": 244.075, "y1": 244.075 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252748178225211, "x1": 0.003252748178225211, "y0": 245.05, "y1": 243.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252748178225211, "x1": 0.0038103942960107146, "y0": 243.1, "y1": 243.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003252748178225211, "x1": 0.003438566687963313, "y0": 245.05, "y1": 245.05 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003438566687963313, "x1": 0.003438566687963313, "y0": 245.7, "y1": 244.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003438566687963313, "x1": 0.004833799589870986, "y0": 244.4, "y1": 244.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003438566687963313, "x1": 0.004182248412927998, "y0": 245.7, "y1": 245.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030669242428945204, "x1": 0.0034386226862043213, "y0": 252.763671875, "y1": 252.763671875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034386226862043213, "x1": 0.0034386226862043213, "y0": 258.52734375, "y1": 247 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034386226862043213, "x1": 0.004740642843689, "y0": 247, "y1": 247 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034386226862043213, "x1": 0.003996284297062078, "y0": 258.52734375, "y1": 258.52734375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996284297062078, "x1": 0.003996284297062078, "y0": 266.5203125, "y1": 250.53437499999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996284297062078, "x1": 0.003996290852257587, "y0": 250.53437499999998, "y1": 250.53437499999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996290852257587, "x1": 0.003996290852257587, "y0": 252.76874999999998, "y1": 248.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996290852257587, "x1": 0.004553915748389146, "y0": 248.29999999999998, "y1": 248.29999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996290852257587, "x1": 0.0040891887201144885, "y0": 252.76874999999998, "y1": 252.76874999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0040891887201144885, "x1": 0.0040891887201144885, "y0": 254.6375, "y1": 250.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0040891887201144885, "x1": 0.004182085717843738, "y0": 250.89999999999998, "y1": 250.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182085717843738, "x1": 0.004182085717843738, "y0": 252.2, "y1": 249.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182085717843738, "x1": 0.004182092273039247, "y0": 249.6, "y1": 249.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182085717843738, "x1": 0.00529794205908464, "y0": 250.89999999999998, "y1": 250.89999999999998 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182085717843738, "x1": 0.005298521728720361, "y0": 252.2, "y1": 252.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0040891887201144885, "x1": 0.004089195275309997, "y0": 254.6375, "y1": 254.6375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089195275309997, "x1": 0.004089195275309997, "y0": 255.775, "y1": 253.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089195275309997, "x1": 0.004275005976868876, "y0": 253.5, "y1": 253.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004089195275309997, "x1": 0.004275024936701248, "y0": 255.775, "y1": 255.775 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004275024936701248, "x1": 0.004275024936701248, "y0": 256.75, "y1": 254.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004275024936701248, "x1": 0.00483268248961058, "y0": 254.8, "y1": 254.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004275024936701248, "x1": 0.004275031491896757, "y0": 256.75, "y1": 256.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004275031491896757, "x1": 0.004275031491896757, "y0": 257.4, "y1": 256.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004275031491896757, "x1": 0.004739759219369315, "y0": 256.1, "y1": 256.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004275031491896757, "x1": 0.004553789503241086, "y0": 257.4, "y1": 257.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996284297062078, "x1": 0.0041820933392259915, "y0": 266.5203125, "y1": 266.5203125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0041820933392259915, "x1": 0.0041820933392259915, "y0": 272.1875, "y1": 260.853125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0041820933392259915, "x1": 0.004460828120636631, "y0": 260.853125, "y1": 260.853125 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004460828120636631, "x1": 0.004460828120636631, "y0": 263.00625, "y1": 258.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004460828120636631, "x1": 0.005111418761148781, "y0": 258.7, "y1": 258.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004460828120636631, "x1": 0.0045537229802152706, "y0": 263.00625, "y1": 263.00625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0045537229802152706, "x1": 0.0045537229802152706, "y0": 265.03749999999997, "y1": 260.975 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0045537229802152706, "x1": 0.004553729535410779, "y0": 260.975, "y1": 260.975 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004553729535410779, "x1": 0.004553729535410779, "y0": 261.95000000000005, "y1": 260 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004553729535410779, "x1": 0.004925401445864038, "y0": 260, "y1": 260 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004553729535410779, "x1": 0.004646624547453028, "y0": 261.95000000000005, "y1": 261.95000000000005 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646624547453028, "x1": 0.004646624547453028, "y0": 262.6, "y1": 261.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646624547453028, "x1": 0.0047395196430975155, "y0": 261.3, "y1": 261.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004646624547453028, "x1": 0.004646631102648536, "y0": 262.6, "y1": 262.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0045537229802152706, "x1": 0.004739527266433161, "y0": 265.03749999999997, "y1": 265.03749999999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739527266433161, "x1": 0.004739527266433161, "y0": 266.17499999999995, "y1": 263.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739527266433161, "x1": 0.005111201391819235, "y0": 263.9, "y1": 263.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004739527266433161, "x1": 0.004832422676573567, "y0": 266.17499999999995, "y1": 266.17499999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832422676573567, "x1": 0.004832422676573567, "y0": 267.15, "y1": 265.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832422676573567, "x1": 0.005111158407611595, "y0": 265.2, "y1": 265.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832422676573567, "x1": 0.005297109318546666, "y0": 267.15, "y1": 267.15 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005297109318546666, "x1": 0.005297109318546666, "y0": 267.8, "y1": 266.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005297109318546666, "x1": 0.005297115873742175, "y0": 266.5, "y1": 266.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005297109318546666, "x1": 0.005482930044283912, "y0": 267.8, "y1": 267.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0041820933392259915, "x1": 0.004460832643722061, "y0": 272.1875, "y1": 272.1875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004460832643722061, "x1": 0.004460832643722061, "y0": 275.275, "y1": 269.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004460832643722061, "x1": 0.005297484661971308, "y0": 269.1, "y1": 269.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004460832643722061, "x1": 0.004832513126891237, "y0": 275.275, "y1": 275.275 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832513126891237, "x1": 0.004832513126891237, "y0": 280.15000000000003, "y1": 270.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832513126891237, "x1": 0.005390126375975085, "y0": 270.4, "y1": 270.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832513126891237, "x1": 0.00529715972018921, "y0": 271.7, "y1": 271.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832513126891237, "x1": 0.004925409888620018, "y0": 274.625, "y1": 274.625 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925409888620018, "x1": 0.004925409888620018, "y0": 276.25, "y1": 273 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925409888620018, "x1": 0.005297086229378273, "y0": 273, "y1": 273 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925409888620018, "x1": 0.005297083394678274, "y0": 274.3, "y1": 274.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004925409888620018, "x1": 0.00520414586687548, "y0": 276.25, "y1": 276.25 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00520414586687548, "x1": 0.00520414586687548, "y0": 276.9, "y1": 275.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00520414586687548, "x1": 0.0058548065670848805, "y0": 275.6, "y1": 275.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00520414586687548, "x1": 0.0053899509504121415, "y0": 276.9, "y1": 276.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832513126891237, "x1": 0.004832519682086746, "y0": 280.15000000000003, "y1": 280.15000000000003 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832519682086746, "x1": 0.004832519682086746, "y0": 281.45000000000005, "y1": 278.85 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832519682086746, "x1": 0.005204202380510527, "y0": 278.85, "y1": 278.85 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005204202380510527, "x1": 0.005204202380510527, "y0": 279.5, "y1": 278.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005204202380510527, "x1": 0.005390013183445901, "y0": 278.2, "y1": 278.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.005204202380510527, "x1": 0.005297101280519317, "y0": 279.5, "y1": 279.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004832519682086746, "x1": 0.0052041957303483495, "y0": 281.45000000000005, "y1": 281.45000000000005 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0052041957303483495, "x1": 0.0052041957303483495, "y0": 282.1, "y1": 280.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0052041957303483495, "x1": 0.00576195934807211, "y0": 280.8, "y1": 280.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0052041957303483495, "x1": 0.00529709130247875, "y0": 282.1, "y1": 282.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002137878595670965, "x1": 0.002137885150866474, "y0": 290.3528060913086, "y1": 290.3528060913086 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002137885150866474, "x1": 0.002137885150866474, "y0": 296.6556121826172, "y1": 284.04999999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002137885150866474, "x1": 0.0022307784323778246, "y0": 284.04999999999995, "y1": 284.04999999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307784323778246, "x1": 0.0022307784323778246, "y0": 284.7, "y1": 283.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307784323778246, "x1": 0.0022307849875733334, "y0": 283.4, "y1": 283.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307784323778246, "x1": 0.0038126078668415013, "y0": 284.7, "y1": 284.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002137885150866474, "x1": 0.0022307785848690075, "y0": 296.6556121826172, "y1": 296.6556121826172 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307785848690075, "x1": 0.0022307785848690075, "y0": 304.7924743652344, "y1": 288.51874999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307785848690075, "x1": 0.0022307851400645163, "y0": 288.51874999999995, "y1": 288.51874999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307851400645163, "x1": 0.0022307851400645163, "y0": 290.3875, "y1": 286.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307851400645163, "x1": 0.0023236786576141606, "y0": 286.65, "y1": 286.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236786576141606, "x1": 0.0023236786576141606, "y0": 287.3, "y1": 286 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236786576141606, "x1": 0.003625614949418504, "y0": 286, "y1": 286 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236786576141606, "x1": 0.003346503561327871, "y0": 287.3, "y1": 287.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307851400645163, "x1": 0.0023236785740945766, "y0": 290.3875, "y1": 290.3875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236785740945766, "x1": 0.0023236785740945766, "y0": 292.17499999999995, "y1": 288.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236785740945766, "x1": 0.0034397099726208953, "y0": 288.6, "y1": 288.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236785740945766, "x1": 0.003718740717623436, "y0": 289.9, "y1": 289.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236785740945766, "x1": 0.0023236851292900854, "y0": 292.17499999999995, "y1": 292.17499999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236851292900854, "x1": 0.0023236851292900854, "y0": 293.15, "y1": 291.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236851292900854, "x1": 0.0030672659564578843, "y0": 291.2, "y1": 291.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0023236851292900854, "x1": 0.002323691684485594, "y0": 293.15, "y1": 293.15 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323691684485594, "x1": 0.002323691684485594, "y0": 293.8, "y1": 292.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323691684485594, "x1": 0.002881313961361606, "y0": 292.5, "y1": 292.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002323691684485594, "x1": 0.0027884688394063393, "y0": 293.8, "y1": 293.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0022307785848690075, "x1": 0.00288150867331411, "y0": 304.7924743652344, "y1": 304.7924743652344 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00288150867331411, "x1": 0.00288150867331411, "y0": 314.4849487304688, "y1": 295.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00288150867331411, "x1": 0.0035320447437110773, "y0": 295.1, "y1": 295.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00288150867331411, "x1": 0.0029743879999990295, "y0": 314.4849487304688, "y1": 314.4849487304688 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029743879999990295, "x1": 0.0029743879999990295, "y0": 331.5948974609375, "y1": 297.375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029743879999990295, "x1": 0.003253086664171042, "y0": 297.375, "y1": 297.375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003253086664171042, "x1": 0.003253086664171042, "y0": 298.35, "y1": 296.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003253086664171042, "x1": 0.0038106255597150224, "y0": 296.4, "y1": 296.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003253086664171042, "x1": 0.0034388511995180307, "y0": 298.35, "y1": 298.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034388511995180307, "x1": 0.0034388511995180307, "y0": 299, "y1": 297.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034388511995180307, "x1": 0.0035317278690133827, "y0": 297.7, "y1": 297.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0034388511995180307, "x1": 0.0037175408646363596, "y0": 299, "y1": 299 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029743879999990295, "x1": 0.003531902389364068, "y0": 305.31718750000005, "y1": 305.31718750000005 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531902389364068, "x1": 0.003531902389364068, "y0": 310.334375, "y1": 300.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531902389364068, "x1": 0.005113177148111897, "y0": 300.3, "y1": 300.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531902389364068, "x1": 0.003624794527211636, "y0": 303.875, "y1": 303.875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003624794527211636, "x1": 0.003624794527211636, "y0": 306.15, "y1": 301.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003624794527211636, "x1": 0.004089410511103857, "y0": 301.6, "y1": 301.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003624794527211636, "x1": 0.00418235487688903, "y0": 303.54999999999995, "y1": 303.54999999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00418235487688903, "x1": 0.00418235487688903, "y0": 304.2, "y1": 302.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00418235487688903, "x1": 0.004182361432084539, "y0": 302.9, "y1": 302.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00418235487688903, "x1": 0.004182361432084539, "y0": 304.2, "y1": 304.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003624794527211636, "x1": 0.004926688485919954, "y0": 306.15, "y1": 306.15 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004926688485919954, "x1": 0.004926688485919954, "y0": 306.8, "y1": 305.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004926688485919954, "x1": 0.004926695041115463, "y0": 305.5, "y1": 305.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004926688485919954, "x1": 0.004926695041115463, "y0": 306.8, "y1": 306.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531902389364068, "x1": 0.0035319089445595767, "y0": 310.334375, "y1": 310.334375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035319089445595767, "x1": 0.0035319089445595767, "y0": 311.91875, "y1": 308.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035319089445595767, "x1": 0.004182415644155602, "y0": 308.75, "y1": 308.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182415644155602, "x1": 0.004182415644155602, "y0": 309.4, "y1": 308.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182415644155602, "x1": 0.004368206469132957, "y0": 308.1, "y1": 308.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.004182415644155602, "x1": 0.004182422199351111, "y0": 309.4, "y1": 309.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035319089445595767, "x1": 0.0035319154997550855, "y0": 311.91875, "y1": 311.91875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035319154997550855, "x1": 0.0035319154997550855, "y0": 313.1375, "y1": 310.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035319154997550855, "x1": 0.004834044991136224, "y0": 310.7, "y1": 310.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035319154997550855, "x1": 0.0036247975192925243, "y0": 313.1375, "y1": 313.1375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0036247975192925243, "x1": 0.0036247975192925243, "y0": 314.275, "y1": 312 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0036247975192925243, "x1": 0.003996417970174272, "y0": 312, "y1": 312 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0036247975192925243, "x1": 0.003717679455369024, "y0": 314.275, "y1": 314.275 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717679455369024, "x1": 0.003717679455369024, "y0": 315.25, "y1": 313.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717679455369024, "x1": 0.004275207641972809, "y0": 313.3, "y1": 313.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717679455369024, "x1": 0.003996377294165756, "y0": 315.25, "y1": 315.25 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996377294165756, "x1": 0.003996377294165756, "y0": 315.9, "y1": 314.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996377294165756, "x1": 0.0040892620851127395, "y0": 314.6, "y1": 314.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003996377294165756, "x1": 0.004182158095931149, "y0": 315.9, "y1": 315.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029743879999990295, "x1": 0.0029743945551945383, "y0": 331.5948974609375, "y1": 331.5948974609375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029743945551945383, "x1": 0.0029743945551945383, "y0": 342.59760742187495, "y1": 320.5921875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029743945551945383, "x1": 0.003160164578687677, "y0": 320.5921875, "y1": 320.5921875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003160164578687677, "x1": 0.003160164578687677, "y0": 323.33437499999997, "y1": 317.85 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003160164578687677, "x1": 0.00381063017226796, "y0": 317.85, "y1": 317.85 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00381063017226796, "x1": 0.00381063017226796, "y0": 318.5, "y1": 317.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00381063017226796, "x1": 0.004926458285828767, "y0": 317.2, "y1": 317.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.00381063017226796, "x1": 0.0052986148403982684, "y0": 318.5, "y1": 318.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003160164578687677, "x1": 0.0035317615649279013, "y0": 323.33437499999997, "y1": 323.33437499999997 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035317615649279013, "x1": 0.0035317615649279013, "y0": 325.89374999999995, "y1": 320.775 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035317615649279013, "x1": 0.003717526834497053, "y0": 320.775, "y1": 320.775 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717526834497053, "x1": 0.003717526834497053, "y0": 321.75, "y1": 319.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717526834497053, "x1": 0.0038104021321266257, "y0": 319.8, "y1": 319.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717526834497053, "x1": 0.0038104021321266257, "y0": 321.75, "y1": 321.75 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038104021321266257, "x1": 0.0038104021321266257, "y0": 322.4, "y1": 321.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038104021321266257, "x1": 0.004367886761027342, "y0": 321.1, "y1": 321.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0038104021321266257, "x1": 0.004367872270375359, "y0": 322.4, "y1": 322.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035317615649279013, "x1": 0.0036246377322003923, "y0": 325.89374999999995, "y1": 325.89374999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0036246377322003923, "x1": 0.0036246377322003923, "y0": 328.0875, "y1": 323.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0036246377322003923, "x1": 0.004182127379423157, "y0": 323.7, "y1": 323.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0036246377322003923, "x1": 0.0037175146856807365, "y0": 328.0875, "y1": 328.0875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037175146856807365, "x1": 0.0037175146856807365, "y0": 331.17499999999995, "y1": 325 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037175146856807365, "x1": 0.004275128877307123, "y0": 325, "y1": 325 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037175146856807365, "x1": 0.003903281224801799, "y0": 327.275, "y1": 327.275 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903281224801799, "x1": 0.003903281224801799, "y0": 328.25, "y1": 326.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903281224801799, "x1": 0.004553780170688091, "y0": 326.3, "y1": 326.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003903281224801799, "x1": 0.0046467408948926295, "y0": 328.25, "y1": 328.25 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0046467408948926295, "x1": 0.0046467408948926295, "y0": 328.9, "y1": 327.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0046467408948926295, "x1": 0.004832490838225838, "y0": 327.6, "y1": 327.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0046467408948926295, "x1": 0.004739609340025108, "y0": 328.9, "y1": 328.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037175146856807365, "x1": 0.0037175212408762453, "y0": 331.17499999999995, "y1": 331.17499999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037175212408762453, "x1": 0.0037175212408762453, "y0": 332.15, "y1": 330.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037175212408762453, "x1": 0.00427507321726665, "y0": 330.2, "y1": 330.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0037175212408762453, "x1": 0.003717527796071754, "y0": 332.15, "y1": 332.15 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717527796071754, "x1": 0.003717527796071754, "y0": 332.8, "y1": 331.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717527796071754, "x1": 0.003810408818709881, "y0": 331.5, "y1": 331.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003717527796071754, "x1": 0.0040891766190458, "y0": 332.8, "y1": 332.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029743945551945383, "x1": 0.002974401110390047, "y0": 342.59760742187495, "y1": 342.59760742187495 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002974401110390047, "x1": 0.002974401110390047, "y0": 350.12021484375, "y1": 335.075 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002974401110390047, "x1": 0.003067280437193079, "y0": 335.075, "y1": 335.075 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067280437193079, "x1": 0.003067280437193079, "y0": 336.04999999999995, "y1": 334.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067280437193079, "x1": 0.003903845588398526, "y0": 334.1, "y1": 334.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067280437193079, "x1": 0.003810769371133081, "y0": 336.04999999999995, "y1": 336.04999999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810769371133081, "x1": 0.003810769371133081, "y0": 336.7, "y1": 335.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810769371133081, "x1": 0.0039036401890371456, "y0": 335.4, "y1": 335.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003810769371133081, "x1": 0.00381077592632859, "y0": 336.7, "y1": 336.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002974401110390047, "x1": 0.002974407665585556, "y0": 350.12021484375, "y1": 350.12021484375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002974407665585556, "x1": 0.002974407665585556, "y0": 359.8130859375, "y1": 340.42734375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002974407665585556, "x1": 0.0029744142207810647, "y0": 340.42734375, "y1": 340.42734375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029744142207810647, "x1": 0.0029744142207810647, "y0": 342.2046875, "y1": 338.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029744142207810647, "x1": 0.0042761518233737986, "y0": 338.65, "y1": 338.65 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0042761518233737986, "x1": 0.0042761518233737986, "y0": 339.3, "y1": 338 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0042761518233737986, "x1": 0.004276158378569307, "y0": 338, "y1": 338 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0042761518233737986, "x1": 0.004276158378569307, "y0": 339.3, "y1": 339.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029744142207810647, "x1": 0.0029744207759765736, "y0": 342.2046875, "y1": 342.2046875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029744207759765736, "x1": 0.0029744207759765736, "y0": 343.809375, "y1": 340.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029744207759765736, "x1": 0.0037178891246657545, "y0": 340.6, "y1": 340.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029744207759765736, "x1": 0.0029744273311720824, "y0": 343.809375, "y1": 343.809375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029744273311720824, "x1": 0.0029744273311720824, "y0": 345.71875, "y1": 341.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029744273311720824, "x1": 0.003996932008430045, "y0": 341.9, "y1": 341.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0029744273311720824, "x1": 0.002974433886367591, "y0": 345.71875, "y1": 345.71875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002974433886367591, "x1": 0.002974433886367591, "y0": 348.2375, "y1": 343.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002974433886367591, "x1": 0.00390400397508848, "y0": 343.2, "y1": 343.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002974433886367591, "x1": 0.003067313296538078, "y0": 348.2375, "y1": 348.2375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067313296538078, "x1": 0.003067313296538078, "y0": 351, "y1": 345.475 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067313296538078, "x1": 0.0030673198517335866, "y0": 345.475, "y1": 345.475 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030673198517335866, "x1": 0.0030673198517335866, "y0": 346.45000000000005, "y1": 344.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030673198517335866, "x1": 0.0034389307866547355, "y0": 344.5, "y1": 344.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030673198517335866, "x1": 0.0033460108001628717, "y0": 346.45000000000005, "y1": 346.45000000000005 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0033460108001628717, "x1": 0.0033460108001628717, "y0": 347.1, "y1": 345.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0033460108001628717, "x1": 0.003903601835339615, "y0": 345.8, "y1": 345.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0033460108001628717, "x1": 0.0033460173553583805, "y0": 347.1, "y1": 347.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067313296538078, "x1": 0.0031602031493898975, "y0": 351, "y1": 351 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031602031493898975, "x1": 0.0031602031493898975, "y0": 352.95, "y1": 349.04999999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031602031493898975, "x1": 0.003345989115833116, "y0": 349.04999999999995, "y1": 349.04999999999995 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345989115833116, "x1": 0.003345989115833116, "y0": 349.7, "y1": 348.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345989115833116, "x1": 0.003810604045098649, "y0": 348.4, "y1": 348.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003345989115833116, "x1": 0.003903598974870769, "y0": 349.7, "y1": 349.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031602031493898975, "x1": 0.0032530896497584235, "y0": 352.95, "y1": 352.95 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530896497584235, "x1": 0.0032530896497584235, "y0": 354.9, "y1": 351 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530896497584235, "x1": 0.0036247315428932884, "y0": 351, "y1": 351 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530896497584235, "x1": 0.0039037079940371622, "y0": 352.3, "y1": 352.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530896497584235, "x1": 0.0033459770199850123, "y0": 354.9, "y1": 354.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0033459770199850123, "x1": 0.0033459770199850123, "y0": 356.2, "y1": 353.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0033459770199850123, "x1": 0.0040895022174966735, "y0": 353.6, "y1": 353.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0033459770199850123, "x1": 0.004182515392705675, "y0": 354.9, "y1": 354.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0033459770199850123, "x1": 0.004089537314722986, "y0": 356.2, "y1": 356.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.002974407665585556, "x1": 0.0030672869923885878, "y0": 359.8130859375, "y1": 359.8130859375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030672869923885878, "x1": 0.0030672869923885878, "y0": 362.126171875, "y1": 357.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030672869923885878, "x1": 0.005865259981761898, "y0": 357.5, "y1": 357.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030672869923885878, "x1": 0.0030672935475840966, "y0": 362.126171875, "y1": 362.126171875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030672935475840966, "x1": 0.0030672935475840966, "y0": 364.80234375, "y1": 359.45000000000005 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030672935475840966, "x1": 0.0031601735915996005, "y0": 359.45000000000005, "y1": 359.45000000000005 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031601735915996005, "x1": 0.0031601735915996005, "y0": 360.1, "y1": 358.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031601735915996005, "x1": 0.0037176917948550316, "y0": 358.8, "y1": 358.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031601735915996005, "x1": 0.004275786466494979, "y0": 360.1, "y1": 360.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030672935475840966, "x1": 0.0030673001027796054, "y0": 364.80234375, "y1": 364.80234375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030673001027796054, "x1": 0.0030673001027796054, "y0": 367.2296875, "y1": 362.375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030673001027796054, "x1": 0.0035318749871874828, "y0": 362.375, "y1": 362.375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035318749871874828, "x1": 0.0035318749871874828, "y0": 363.35, "y1": 361.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035318749871874828, "x1": 0.004833723064970512, "y0": 361.4, "y1": 361.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035318749871874828, "x1": 0.0035318815423829916, "y0": 363.35, "y1": 363.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035318815423829916, "x1": 0.0035318815423829916, "y0": 364, "y1": 362.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035318815423829916, "x1": 0.0035318880975785004, "y0": 362.7, "y1": 362.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0035318815423829916, "x1": 0.0035318880975785004, "y0": 364, "y1": 364 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0030673001027796054, "x1": 0.003067306657975114, "y0": 367.2296875, "y1": 367.2296875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067306657975114, "x1": 0.003067306657975114, "y0": 369.159375, "y1": 365.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067306657975114, "x1": 0.003717789195207921, "y0": 365.3, "y1": 365.3 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003067306657975114, "x1": 0.0031601858322637504, "y0": 369.159375, "y1": 369.159375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031601858322637504, "x1": 0.0031601858322637504, "y0": 371.71875, "y1": 366.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031601858322637504, "x1": 0.004275797701152431, "y0": 366.6, "y1": 366.6 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031601858322637504, "x1": 0.00353178851990781, "y0": 367.9, "y1": 367.9 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0031601858322637504, "x1": 0.0032530641367735993, "y0": 371.71875, "y1": 371.71875 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530641367735993, "x1": 0.0032530641367735993, "y0": 374.2375, "y1": 369.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530641367735993, "x1": 0.004740986294865137, "y0": 369.2, "y1": 369.2 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530641367735993, "x1": 0.00455496357671422, "y0": 370.5, "y1": 370.5 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530641367735993, "x1": 0.004182539055843101, "y0": 371.8, "y1": 371.8 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.0032530641367735993, "x1": 0.003253070691969108, "y0": 374.2375, "y1": 374.2375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003253070691969108, "x1": 0.003253070691969108, "y0": 375.375, "y1": 373.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003253070691969108, "x1": 0.0039965187276572774, "y0": 373.1, "y1": 373.1 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003253070691969108, "x1": 0.003253077247164617, "y0": 375.375, "y1": 375.375 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003253077247164617, "x1": 0.003253077247164617, "y0": 376.35, "y1": 374.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003253077247164617, "x1": 0.003624720496066805, "y0": 374.4, "y1": 374.4 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003253077247164617, "x1": 0.003531757733558391, "y0": 376.35, "y1": 376.35 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531757733558391, "x1": 0.003531757733558391, "y0": 377, "y1": 375.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531757733558391, "x1": 0.0035317642887539, "y0": 375.7, "y1": 375.7 }, { "layer": "below", "line": { "color": "rgb(15,15,15)", "width": 1 }, "type": "line", "x0": 0.003531757733558391, "x1": 0.0039033610403130707, "y0": 377, "y1": 377 } ], "showlegend": false, "title": "Phylogeny of Zika Virus
377 genomes colored according to region and country", "width": 1000, "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "ticklen": 4, "title": "branch length", "zeroline": false }, "yaxis": { "visible": false } } }, "text/html": [ "
" ], "text/vnd.plotly.v1+html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "fig = dict(data=[nodes], layout=layout)\n", "iplot(fig)#offline plot" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", "\n" ], "text/plain": [ "" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from IPython.core.display import HTML\n", "def css_styling():\n", " styles = open(\"./custom.css\", \"r\").read()\n", " return HTML(styles)\n", "css_styling()" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.4" } }, "nbformat": 4, "nbformat_minor": 2 }