4. Plotting

At the core of SciKit-GStat is a set of classes, that can be used interactively to perform variogram analysis. One important aspect of this analysis is a rich collection of plotting functions. These are directly available as class methods of the Variogram, DirectionalVariogram and SpaceTimeVariogram method. With version 0.3.3, SciKit-GStat implements two different plotting backend: matplotlib and plotly. Generally speaking, matplotlib is great for creating publication ready figures in a variety of formats, including vector-graphic PDF files. Plotly, on the other hand, will translate the figure into their Javascript library and open a webbrowser with an interactive plot. This way you can obtain the same figure either for your publication as PDF, or as a HTML object that can be injected into a project report website.

With the newly introduced skgstat.plotting backend, you can easily read and change the backend with a single convenient function. The default backend is matplotlib. Please be aware, that plotly is only a soft dependency, meaning you need to take care of the installation yourself, to keep SciKit-GStat’s dependency list shorter.

The data used to create the Variogram and DirectionalVariogram is from Mälicke (2021). Here, pancake dataset is used. The spatio-temporal data is derived from Fersch et al. (2020). From that data publication, the wireless sensor network data is used. The originaly published 15 minutes intervals soil temperature data at 20 cm depth was taken for all 55 stations and aggregated to mean hourly values. To further decrease the data size, only every 6th data point is used here. Estimating the full data set will take approx. 120GB RAM and processing took about 30 minutes. The results for the thinned data sample are very comparable.

Both data samples can either be obtained by the orignial publications, or from the SciKit-GStat documentation. Both samples are published under Creative Commons BY 4.0 license. Please cite the original publications if you use the data, and not SciKit-GStat.

References

Fersch, Benjamin, et al. “A dense network of cosmic-ray neutron sensors for soil moisture observation in a pre-alpine headwater catchment in Germany.” Earth System Science Data Discussions 2020 (2020): 1-35.

Mälicke, M.: SciKit-GStat 1.0: A SciPy flavoured geostatistical variogram estimation toolbox written in Python, Geosci. Model Dev. Discuss. [preprint], https://doi.org/10.5194/gmd-2021-174, in review, 2021.

import skgstat as skg
from skgstat.plotting import backend
import numpy as np
import json
import warnings
import matplotlib.pyplot as plt
from plotly.subplots import make_subplots
warnings.filterwarnings('ignore')

4.1 Load data

Load a pancake sample from the data directory.

c, v = skg.data.pancake(N=300, seed=42).get('sample')

Load a artificial random field, generated from a Gaussian covariance function, with a 2x larger range in x-axis direction:

ac, av = skg.data.aniso(N=300, seed=42).get('sample')

Load the TERENO soil temperature data from Fersch et al. (2020):

with open('./data/tereno_fendt/tereno.json', 'r') as js:
    data_obj = json.load(js)

coords = np.array(data_obj['coordinates'])
vals = np.array(data_obj['values'])
print(data_obj['description'])

Out:

Data derived from Fersch et al. (2020) https://doi.org/10.5194/essd-2020-48. Published under CC BY 4.0.
 It is  From the WSN product, the T_a in 20cm depth is extracted

Estimate a variogram, with a few more lag classes, as there are enough observation points available.

V = skg.Variogram(c,v, n_lags=25)
print(V)

Out:

spherical Variogram
-------------------
Estimator:         matheron

Effective Range:   303.59

Sill:              1465.45

Nugget:            0.00

Estimate the directional variogram with a few more lag classes and an azimuth of 90°. The tolerance is set rather low to illustrate the graphs better (fewer point connections.):

DV = skg.DirectionalVariogram(ac, av, n_lags=20, azimuth=40., tolerance=15.0)
print(DV)

Out:

spherical Variogram
-------------------
Estimator:         matheron

Effective Range:   324.51

Sill:              1407.98

Nugget:            0.00

Estimate the spatio-temporal variogram with a product-sum model. Only every 6th hour is taken into account to decrease the memory footprint. If you use the full dataset, you need ^120 GiB RAM. The marginal variograms are kept as they are.

STV = skg.SpaceTimeVariogram(coords, vals[:,::6], x_lags=20, t_lags=20, model='product-sum')
print(STV)

Out:

<skgstat.SpaceTimeVariogram.SpaceTimeVariogram object at 0x7fbbaf3195d0>

4.2 Backend

You can switch to plotly as a plotting backend by calling the plotting.backend function and passing the name of the backend. Note that plotly is only a soft dependency and will not automatically be installed along with SciKit-GStat. You can install it like:

pip install plotly

Note that in a Jupyter environment you might want to use the plotly.offline environment to embed the needed Javascript into the notebook. In these cases you have to catch the Figure object and use the iplot function from the offline submodule.

4.3 Variogram

4.3.1 Variogram.plot

The Variogram.plot is the main plotting function in SciKit-GStat. Before you use the variogram for further geostatistical methods, like kriging, or further analysis, make sure, that a suitable model was found and fitted to the experimental data. Further, you have to make sure that the statistical foundation of this estimation is sound, the lag classes are well designed and backed by a suiatable amount of data. Otherwise, any other geostatistical analysis or method will have to fail, no matter how nice the results might look like.

# from skgstat.plotting import backend
backend('plotly')

Plotly

fig = V.plot(show=False)
fig


A useful argument for plot is the ax, this takes a matplotlib.AxesSubplot for the 'matplotlib' backend and a plotly.Figure for the 'plotly' backend. You need to supply the correct amount of subplots (two). For convenience, the histogram in the upper subplot can be disabled.

fig = make_subplots(rows=1, cols=1)
fig.update_layout(
    width=800,
    height=200,
    template='seaborn',
    showlegend=False,
    margin=dict(l=0, r=0, b=0, t=0)
)

V.plot(axes=fig, hist=False, show=False)
fig


The Variogram.plot functions is customizable and takes a lot of arguments. However, the same interface is used as for the matplotlib version of that function. Many matplotlib arguments are mapped to the corresponding plotly arguments. Beyond that, you can either try common plotly arguments, or update the figure afterwards:

fig = V.plot(show=False)

fig.update_layout(
    legend=dict(x=0.05, y=1.1, xanchor='left', yanchor='top', orientation='h'),
    template='plotly_dark',
    annotations=[dict(
        text="AWESOME",
        xref="paper",
        yref="paper",
        x=0.5,
        y=0.5,
        font=dict(color="white", size=100),
        textangle=-30,
        opacity=.3
    )]
)
fig


Matplotlib

backend('matplotlib')

fig = V.plot()
tutorial 04 plotting

With matplotlib, you can set any matplotlib.AxesSubplot as axes to plot on other figures. You can send two axes, for the variogram and the histogram, or only one and disable the histogram plotting.

fig, ax = plt.subplots(2,2, figsize=(8, 4))

fig = V.plot(axes=ax.flatten()[1], hist=False)
tutorial 04 plotting

4.3.2 Variogram.scattergram

You can plot a scattergram of all point pairs formed by the class. The pairs can be grouped by the lag classes, they were formed in. This way you can analyze how the two values of the point pait (head and tail) scatter and if this follows a pattern (i.e. anisotropy). It is recommended to use the 'plotly' backend, as you can click on the legend entries to hide a specific class, or double-click to show only the selected lag class. This makes it much easier to inspect the classes.

Plotly

backend('plotly')
fig = V.scattergram(show=False)
fig


It is, however possible to re-create the plot that was used up to SciKit-GStat version 0.3.0 with only one color. This is still the default for the 'matplotlib' backend.

fig = V.scattergram(single_color=True, show=False)
fig


Matplotlib

backend(‘matplotlib’)

fig = V.scattergram()

Out:

{'text/html': '<div>            <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG"></script><script type="text/javascript">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: "STIX-Web"}});}</script>                <script type="text/javascript">window.PlotlyConfig = {MathJaxConfig: \'local\'};</script>\n        <script src="https://cdn.plot.ly/plotly-2.8.3.min.js"></script>                <div id="ecd79b6b-95d6-466b-94ac-b5f193bc0761" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("ecd79b6b-95d6-466b-94ac-b5f193bc0761")) {                    Plotly.newPlot(                        "ecd79b6b-95d6-466b-94ac-b5f193bc0761",                        [{"marker":{"size":4},"mode":"markers","name":"Lag #0","x":[187,187],"y":[187,187],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #1","x":[217,217,217,217,217,217,200,200,200,229,229,154,154,154,154,154,154,154,217,217,217,217,211,211,211,211,211,212,212,212,197,197,210,210,210,210,225,225,225,196,196,196,191,191,225,225,225,225,225,240,240,240,240,211,211,211,211,211,206,144,144,144,144,144,144,217,217,217,217,217,217,217,217,142,142,142,142,142,139,139,139,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,187,187,187,187,213,213,213,213,183,183,183,148,148,148,148,203,203,215,215,215,194,194,210,210,210,235,235,203,203,203,203,203,232,232,232,175,175,212,212,212,212,212,181,181,181,137,137,137,167,167,167,167,167,167,175,225,225,225,225,234,234,234,229,229,229,229,173,173,173,173,173,173,211,211,144,144,144,144,215,215,215,215,215,215,149,149,211,211,211,211,109,109,109,109,109,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,228,228,180,180,180,142,105,105,105,105,188,188,188,222,222,222,222,222,193,193,193,193,228,228,95,95,95,138,138,138,138,138,206,189,189,201,201,232,232,240,240,240,240,186,186,234,234,234,222,222,222,200,200,200,200,211,211,211,211,211,211,187,187,181,181,212,212,212,212,226,226,226,226,226,226,213,213,213,202,202,202,202,161,161,161,161,176,176,176,226,226,226,226,161,161,161,241,241,168,168,105,225,225,106,106,106,216,216,216,216,213,213,213,114,114,114,187,187,215,215,215,215,215,215,215,214,214,154,154,154,154,154,186,129,129,129,129,196,196,196,196,196,176,176,176,176,176,176,176,176,229,229,229,229,229,178,193,193,193,193,233,229,215,215,215,160,160,190,190,190,176,176,176,176,176,176,137,137,242,242,242,242,218,218,218,221,221,221,221,221,221,182,182,182,182,182,146,146,146,146,158,158,158,158,158,158,178,178,178,178,178,178,153,153,153,153,127,127,127,127,127,127,224,224,155,155,155,200,200,200,200,200,200,211,211,89,89,89,161,161,161,161,202,202,202,182,182,182,182,182,182,188,188,188,188,174,174,174,174,174,174,135,135,135,135,135,176,176,176,176,182,182,182,182,197,197,197,197,197,236,236,236,236,216,216,216,216,216,216,235,120,120,120,120,226,226,217,217,217,217,190,190,190,190,190,179,179,179,179,179,132,132,211,211,190,190,190,190,190,119,119,119,119,119,214,214,215,215,215,187,187,193,193,85,85,224,224,136,136,136,136,179,179,179,179,179,179,142,142,142,142,142,223,223,223,223,223,223,223,195,195,190,190,190,190,105,105,191,191,199,199,199,199,199,201,201,201,201,201,201,201,210,210,210,210,161,161,161,228,228,228,228,123,123,123,123,218,152,152,152,152,152,152,204,204,204,204,204,204,204,204,214,214,214,214,214,214,222,222,222,222,222,198,198,198,198,198,193,158,229,229,229,199,199,199,199,211,211,198,198,198,198,124,124,124,124,193,193,193,119,119,119,119,147,147,162,162,162,162,162,199,199,199,199,199,127,127,127,188,188,188,188,188,188,215,215,127,127,127,127,127,158,158,178,178,178,178,178,178,201,201,201,201,201,201,201,201,135,135,135,135,111,235,235,141,141,141,141,141,141,141,208,195,195,195,195,212,212,128,128,128,128,132,132,132,199,199,185,185,185,217,217,217,217,219,219,219,219,219,145,145,145,145,185,185,195,195,195,195,183,183,183,183,191,191,191,191,217,217,217,217,212,212,212,244,244,244,182,182,182,182,182,182,129,129,129,129,192,192,192,200,200,200,180,180,188,188,188,181,181,167,167,167,167,167,167,167,167,180,180,180,180,222,185,128,128,128,178,178,178,178,178,159,159,159,159,159,220,224,189,189,189,189,189,189,93,93,93,93,227,227,215,215,215,155,155,155,155,155,155,162,162,186,186,186,186,186,186,186,171,171,171,196,196,196,196,196,185,185,185,130,130,176,176,176,239,239,239,239,239,142,142,113,113,180,180,179,179,179,179,153,153,153,153,153,153,153,185,185,185,234,234,234,234,234,201,201,201,201,172,172,172,172,130,130,130,130,130,122,122,122,122,218,218,218,196,196,197,197,197,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,100,100,100,100,100,200,200,200,200,200,155,155,198,198,198,215,215,215,215,169,169,169,169,169,169,169,169,88,88,88,88,88,215,215,170,170,231,231,221,221,221,221,198,198,157,157,157,128,128,128,183,183,183,181,181,202,202,202,202,202,207,207,207,207,216,216,216,216,137,137,137,137,137,98,98,98,98,188,188,188,152,152,152,220,220,220,220,173,191,191,191,176,176,176,176,176,176,176,134,134,166,166,166,166,173,197,180,180,180,187,187,187,159,159,159,159,155,155,155,155,140,140,140,140,152,152,152,147,147,147,147,147,147,99,99,99,99,99,196,196,205,205,205,205,205,205,205],"y":[217,217,219,221,223,219,200,196,193,229,234,154,173,205,176,204,162,176,217,217,217,216,211,197,214,185,202,212,213,215,197,212,210,190,198,197,225,218,202,196,219,180,191,200,225,217,215,223,219,240,215,226,244,211,205,204,201,213,206,144,144,142,188,159,130,217,225,217,219,223,201,219,219,142,167,154,145,155,139,149,176,209,215,215,201,213,217,217,219,229,221,223,219,196,219,205,180,225,218,202,192,187,188,190,189,213,212,207,220,183,181,187,148,135,176,172,203,175,209,215,214,194,187,210,201,219,235,239,203,212,200,195,207,232,225,228,203,175,213,203,212,221,220,181,180,183,137,135,130,167,157,142,167,154,155,175,232,225,213,212,234,200,180,229,229,235,215,154,173,182,162,176,147,211,189,144,144,159,130,215,200,218,240,215,211,139,149,211,212,211,179,109,114,93,100,98,203,200,195,219,205,202,200,180,154,211,205,176,204,201,213,232,228,181,180,166,142,105,124,153,99,187,188,190,222,211,216,182,216,193,186,215,205,228,231,95,155,123,138,129,123,135,140,206,189,176,201,199,232,234,240,242,236,239,186,166,229,232,234,222,224,198,191,234,200,180,222,211,216,182,216,191,194,187,181,187,197,211,212,211,226,201,199,219,234,202,225,213,212,205,202,200,199,161,161,190,171,176,180,157,240,226,241,244,161,161,171,226,241,168,155,105,225,215,106,127,132,222,211,216,216,212,213,215,109,114,100,187,193,212,209,213,215,176,201,213,215,214,142,167,154,145,155,186,138,129,85,140,200,196,200,199,199,154,205,215,176,204,201,213,176,219,229,221,228,222,178,193,152,141,180,233,229,225,215,179,160,142,190,198,191,176,146,178,127,195,178,137,89,240,242,236,239,218,217,215,217,219,229,221,223,219,222,211,182,216,191,176,146,195,178,158,182,179,178,159,147,176,178,188,190,127,178,153,161,179,215,127,152,141,155,153,88,222,224,95,155,123,205,202,196,200,199,199,211,211,137,89,105,153,161,179,215,225,218,202,158,182,179,178,185,147,178,188,190,188,174,188,167,196,200,169,148,137,135,176,172,148,135,176,172,173,182,162,176,211,197,210,214,201,240,242,236,239,222,211,216,182,216,191,235,120,119,122,137,226,221,218,217,215,224,210,161,190,198,197,215,158,182,179,178,132,128,215,211,178,188,190,127,188,120,119,119,129,137,214,215,218,217,215,181,187,193,189,129,85,217,224,136,142,135,159,179,182,167,186,169,205,144,136,142,159,130,217,225,217,219,221,223,219,195,196,187,188,190,189,89,105,191,185,202,196,200,199,199,217,210,226,201,199,234,219,197,210,214,201,161,122,128,229,228,222,198,95,138,155,123,218,193,127,152,141,155,88,154,211,205,176,204,201,213,176,211,197,210,214,185,201,229,228,222,198,183,228,222,198,127,183,193,158,229,229,215,196,200,199,199,212,211,210,222,190,198,105,124,153,99,200,187,193,119,119,129,137,147,158,154,173,182,162,176,226,201,199,234,202,106,198,127,174,188,167,196,200,169,225,215,176,178,190,127,178,147,158,158,182,179,178,159,147,211,209,205,215,176,204,201,213,138,136,135,140,111,229,235,193,127,152,141,155,153,88,208,176,146,195,212,195,212,128,152,134,152,106,132,128,201,199,211,214,185,217,217,217,216,225,217,226,219,185,142,154,145,198,185,196,203,200,195,207,181,183,196,200,211,182,216,191,217,217,217,216,225,213,212,240,226,244,179,182,167,186,169,205,119,119,129,137,218,192,227,215,200,218,193,180,144,188,130,183,181,174,179,188,182,167,186,169,205,196,219,205,180,222,185,132,132,128,176,146,178,127,178,144,144,136,142,159,220,224,211,193,189,187,190,189,109,93,100,98,192,227,229,229,215,127,152,141,155,153,88,162,170,193,179,182,167,186,169,205,161,161,171,174,188,183,196,200,182,219,185,137,130,139,189,176,235,240,242,236,239,160,142,113,99,176,180,211,153,161,179,105,127,124,141,155,153,99,191,185,181,226,201,199,234,202,197,210,214,201,148,135,176,172,144,144,142,188,130,120,161,122,128,215,200,218,185,196,210,190,197,217,217,219,210,221,223,201,219,211,209,205,215,176,204,201,213,109,114,93,100,98,174,188,183,196,200,168,155,190,198,191,193,153,161,215,174,179,188,182,167,186,169,205,127,152,141,155,88,214,215,162,170,228,231,212,226,221,220,145,198,167,176,157,161,122,128,222,198,183,185,181,211,226,199,234,202,213,203,195,207,217,217,217,216,120,119,119,129,137,109,93,100,98,188,190,188,128,152,152,213,212,221,220,173,190,198,191,154,173,176,182,204,162,176,128,134,180,186,166,187,173,197,234,200,180,183,166,187,158,178,159,147,142,167,154,155,138,129,135,140,128,152,152,173,158,182,178,159,147,105,124,113,153,99,195,196,193,179,182,167,186,169,205],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #2","x":[217,217,217,217,217,217,217,217,200,200,200,200,200,200,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,217,217,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,210,210,210,210,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,187,187,213,213,213,213,213,213,183,183,183,183,183,183,148,148,148,203,203,203,203,203,203,203,215,215,215,215,215,215,215,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,203,203,203,232,232,232,232,232,232,175,175,175,175,175,175,175,212,212,212,212,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,225,225,225,225,225,234,234,234,234,234,234,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,109,109,109,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,206,206,206,206,189,189,189,189,189,189,189,189,189,189,201,201,232,232,232,232,232,232,232,240,240,240,240,240,240,186,186,186,186,234,234,234,234,222,222,222,222,222,222,222,222,200,211,211,211,211,211,211,211,211,187,187,187,181,181,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,176,176,176,176,176,176,226,226,226,226,226,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,105,105,105,105,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,214,214,214,214,214,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,178,178,178,178,193,193,193,193,193,193,233,233,233,233,233,233,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,190,190,190,190,176,176,176,176,176,176,137,137,137,137,137,137,137,137,242,242,242,242,242,218,218,218,218,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,178,178,178,178,178,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,224,224,224,224,224,224,155,155,155,155,155,155,155,200,200,200,200,200,211,211,211,211,211,211,89,89,89,89,89,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,188,188,188,174,174,174,174,174,174,174,174,174,135,135,135,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,236,236,236,236,236,236,216,216,216,216,216,216,235,235,235,235,120,120,120,120,120,120,226,226,226,226,226,217,217,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,190,190,190,119,119,119,214,214,214,214,214,215,215,215,215,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,190,190,190,190,105,105,105,105,105,105,191,191,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,123,123,123,123,123,123,123,218,218,218,218,218,218,218,152,152,152,152,204,204,204,204,204,204,214,214,214,214,214,214,214,214,222,222,222,222,222,222,198,198,198,198,198,198,198,193,193,193,193,193,193,193,158,158,158,158,158,229,229,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,193,193,193,193,119,119,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,158,158,158,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,141,141,141,141,141,208,208,195,195,195,195,195,195,212,212,212,212,212,212,128,128,128,132,132,132,132,132,132,132,132,132,132,132,199,199,199,185,185,185,185,185,185,185,185,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,185,185,185,185,185,195,195,195,195,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,217,217,217,217,212,212,212,212,212,212,244,244,244,244,244,244,244,244,182,182,182,182,182,182,129,129,129,129,192,192,192,192,192,200,200,200,200,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,167,167,167,167,167,167,180,180,180,180,180,180,180,222,222,222,222,222,222,222,185,185,185,185,128,128,128,128,128,128,128,178,178,178,178,178,178,178,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,215,215,215,155,155,155,155,155,155,162,162,162,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,239,239,239,239,142,142,142,142,142,142,113,113,113,113,113,113,113,113,180,180,180,180,180,179,179,179,179,179,179,179,153,153,153,153,153,153,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,130,130,130,130,130,130,122,122,122,122,122,122,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,100,100,100,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,215,215,215,215,215,215,215,169,169,169,169,169,88,88,88,88,88,88,88,215,215,215,215,215,215,170,170,231,231,231,231,231,231,231,221,221,221,221,198,198,198,198,198,198,198,157,157,157,157,157,157,128,128,128,128,128,128,183,183,183,183,183,183,183,181,181,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,137,137,137,98,98,98,98,98,188,188,188,188,188,188,152,152,152,152,220,220,220,220,220,173,173,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,166,166,166,173,173,173,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,196,196,196,196,196,196,196,205,205,205,205,205,205,205],"y":[225,210,226,229,215,201,228,219,175,202,187,200,199,199,229,228,232,229,235,231,211,209,215,182,201,220,213,159,147,216,216,226,210,199,188,234,201,144,209,215,144,176,182,210,201,159,213,176,203,175,211,168,211,211,179,222,161,161,224,229,228,235,192,227,215,231,205,193,202,153,200,161,174,199,185,167,186,196,169,205,234,190,193,222,198,180,217,219,210,226,229,221,158,182,179,201,199,178,185,234,219,191,234,228,240,241,242,236,211,239,180,154,209,215,215,214,176,218,220,176,210,193,179,211,182,186,215,205,212,213,136,210,135,185,210,226,229,215,221,182,179,199,185,234,138,129,135,181,198,140,167,189,161,161,190,171,157,154,212,211,205,213,214,176,182,204,176,225,210,215,201,228,222,219,193,202,153,200,161,174,199,185,167,196,194,187,227,181,196,203,215,200,195,221,197,181,167,180,178,183,166,137,111,130,197,211,201,212,168,211,199,212,211,205,215,176,201,213,218,192,227,217,225,206,217,219,226,221,223,199,219,185,234,202,240,229,242,236,235,213,221,220,232,213,226,241,212,224,197,211,212,168,211,199,155,200,226,195,207,183,105,174,188,196,200,166,187,148,176,111,128,93,172,98,152,134,152,139,149,189,176,132,132,128,176,183,138,136,142,135,145,188,181,130,198,140,200,187,196,193,215,228,232,241,218,191,240,215,211,222,224,229,225,202,231,205,215,176,158,182,204,178,201,220,185,201,159,206,161,225,193,215,171,212,213,136,142,210,214,185,188,213,225,213,212,197,234,206,240,226,242,236,244,180,167,189,161,176,161,190,171,176,157,197,203,175,153,161,211,215,186,85,142,213,212,129,221,207,220,196,196,153,199,199,185,196,209,215,173,215,182,218,162,220,176,240,225,232,213,226,241,218,212,244,224,183,186,183,196,200,187,186,145,198,166,173,187,186,193,137,127,152,141,180,155,113,88,191,199,185,189,196,189,191,176,216,188,196,206,219,153,161,174,179,182,167,169,229,225,202,226,235,192,227,138,129,89,85,136,105,135,140,142,167,95,154,155,85,136,142,145,155,211,215,211,180,139,167,149,222,211,216,182,216,191,188,203,208,229,232,225,228,226,241,229,240,235,215,233,211,244,180,142,173,187,241,229,235,231,210,211,182,216,190,217,191,216,222,189,222,224,198,217,217,176,216,218,192,227,187,189,203,175,153,211,161,179,215,217,211,225,217,210,182,197,223,214,185,201,219,232,215,228,218,200,224,218,200,196,219,196,153,161,199,180,179,196,210,139,149,198,215,176,197,167,149,132,193,193,189,232,215,228,232,224,210,139,211,149,190,193,215,189,197,240,232,225,228,232,234,229,244,224,197,203,175,106,146,198,127,195,181,183,181,173,211,218,217,215,224,168,176,146,198,127,195,128,178,155,183,217,189,182,217,191,217,216,144,209,144,176,182,210,201,159,213,176,186,137,89,85,93,98,200,175,196,190,199,189,154,211,215,173,205,182,204,162,176,211,209,214,213,215,138,129,136,135,181,198,140,109,105,114,137,124,111,180,162,100,142,95,154,123,135,145,142,155,175,205,202,187,190,193,180,196,212,211,209,215,173,213,182,162,220,217,225,217,215,223,198,219,183,183,179,181,196,105,127,124,155,153,88,240,242,218,236,211,215,229,235,232,234,241,235,239,217,217,219,229,190,221,158,182,223,178,219,185,219,198,191,159,198,134,173,191,215,179,193,106,188,190,212,132,188,105,114,186,105,124,113,153,99,240,235,215,233,244,225,233,224,215,225,217,210,215,201,228,222,219,189,222,216,224,198,176,216,168,106,178,190,127,127,212,132,155,225,173,215,182,162,219,185,191,176,146,195,212,132,188,196,219,211,205,193,212,202,199,211,105,193,124,147,180,99,210,211,182,198,191,216,138,89,136,142,105,135,140,200,196,219,180,196,197,203,175,212,161,179,95,114,155,185,113,196,219,211,193,212,202,211,199,211,229,228,235,192,227,215,225,217,173,226,215,162,219,198,191,159,176,127,178,196,219,181,193,179,183,182,186,205,111,93,130,137,130,154,212,209,205,213,215,176,158,197,210,204,214,201,201,213,147,226,182,199,185,185,234,202,240,235,215,233,211,244,217,189,222,217,217,216,235,229,229,239,195,161,119,129,128,196,212,228,227,231,220,225,215,139,149,222,161,171,176,225,217,190,219,185,198,191,159,147,167,176,222,198,132,180,157,183,240,234,206,240,233,236,244,180,176,146,178,161,122,128,214,195,161,197,196,225,233,224,215,211,176,161,193,171,180,157,109,95,138,114,123,93,142,100,98,140,225,218,215,215,197,144,167,144,95,138,154,155,123,188,130,155,140,206,193,178,174,188,196,200,167,144,138,155,123,135,188,155,140,210,226,229,215,201,228,222,219,185,120,214,161,215,207,197,187,196,199,196,95,137,155,123,185,113,188,181,200,196,219,205,153,161,193,180,179,217,225,219,221,223,219,185,202,211,212,144,144,213,182,185,188,159,130,120,119,214,195,158,215,137,196,217,219,221,223,127,219,183,129,85,136,142,105,135,140,211,205,228,213,212,220,224,105,124,180,153,209,173,215,182,162,220,144,226,182,199,188,185,234,202,219,221,132,223,127,128,168,106,229,132,132,128,155,191,176,190,193,189,180,198,161,185,113,128,99,235,235,200,205,188,202,187,190,193,180,196,197,206,211,153,161,179,215,211,161,182,224,191,176,197,186,193,137,127,152,141,180,155,113,88,175,196,199,199,120,122,127,141,155,122,88,128,205,215,176,158,182,204,178,201,220,201,213,159,147,211,225,217,210,197,214,219,185,201,219,168,146,228,222,132,128,155,183,181,179,183,182,186,205,211,161,161,218,217,215,224,171,197,106,146,188,195,212,132,188,122,88,128,225,173,215,162,219,185,198,191,154,212,215,173,213,182,162,220,176,144,142,167,95,154,129,155,142,123,159,130,155,148,137,186,135,93,162,100,170,98,229,225,228,234,202,229,215,231,105,124,147,180,99,201,199,168,106,178,127,178,155,176,146,178,127,178,155,137,130,172,167,176,146,178,132,198,127,127,178,155,183,203,175,208,144,144,197,210,188,201,130,202,222,211,216,216,191,217,219,210,215,221,158,182,179,223,201,199,178,234,219,202,147,167,142,138,129,181,187,155,140,196,219,205,188,180,213,212,129,220,183,180,105,174,188,167,169,222,189,222,216,224,198,217,217,176,216,211,216,216,191,232,215,228,218,224,218,215,228,240,241,242,236,211,239,206,193,174,188,196,200,200,120,195,122,225,194,228,187,202,213,215,197,196,105,186,127,152,124,141,155,162,153,170,211,167,144,136,142,210,214,185,159,142,167,154,178,145,187,155,196,219,193,183,196,200,202,196,200,199,199,185,196,191,234,200,220,224,180,159,89,105,158,113,167,106,222,198,127,157,183,106,188,190,195,212,132,188,212,213,210,135,188,130,154,211,173,205,176,218,204,162,201,222,176,159,232,234,228,213,226,241,218,212,222,176,161,193,171,180,188,181,187,137,114,135,85,111,130,142,134,225,218,194,228,187,202,226,231,225,202,235,105,193,124,147,180,99,186,111,180,196,206,174,188,196,200,215,139,211,149,190,193,215,189,197,181,180,178,179,182,167,186,169,205,225,217,210,173,226,215,158,197,179,223,201,214,199,178,234,201,202,159,147,148,135,176,128,93,172,152,134,152,167,149,222,211,161,182,190,198,191,240,229,235,244,109,129,85,93,98,134,105,137,89,105,158,124,185,153,132,193,193,189,157,197,212,202,211,199,211,215,193,137,152,180,113,88,211,225,217,210,197,214,219,185,201,219,211,173,226,182,162,199,185,185,234,202,176,147,137,128,130,152,152,167,136,210,135,185,159,119,119,147,158,129,137,225,213,212,197,196,219,187,205,188,202,196,200,190,199,180,161,161,224,198,215,171,225,226,229,215,228,199,219,234,154,212,215,213,214,182,162,176,186,85,111,181,180,179,182,167,186,169,205,175,106,146,198,127,195,212,132,191,215,182,179,193,178,159,206,211,212,211,186,179,205,196,193,183,196,200,105,193,124,147,158,153,99,214,195,161,200,197,196,111,180,229,225,229,234,226,235,227,213,203,200,207,142,167,142,154,160,187,155,139,149,132,193,128,180,120,119,158,147,158,137,106,229,132,228,127,132,128,105,191,210,197,201,214,185,219,185,201,212,200,195,221,220,197,196,222,222,211,216,182,224,216,191,161,122,128,137,114,85,111,142,222,189,176,178,127,178,137,130,172,134,203,200,226,195,207,186,105,225,215,158,182,179,178,159,147,212,211,209,205,213,215,158,201,220,201,213,159,147,137,160,93,130,142,152,173,152,183,181,142,142,160,134,213,215,214,195,200,218,215,207,196,191,240,215,206,211,222,181,180,142,186,145,181,198,154,173,215,182,179,162,222,220,185,198,191,176,138,129,136,142,135,145,181,198,140,142,167,95,154,155,85,136,142,123,145,155,137,130,172,134,154,182,179,162,219,185,201,191,176,137,127,158,141,155,88,120,214,161,200,215,207,197,196,206,174,188,196,200,215],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #3","x":[217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,203,203,203,203,203,215,215,215,215,215,215,215,215,215,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,187,187,187,187,187,181,181,181,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,218,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,216,216,216,216,216,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,215,215,187,187,187,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,141,141,141,141,141,141,208,208,208,208,208,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,217,217,217,217,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,216,216,216,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205],"y":[206,182,179,222,198,211,199,178,185,234,183,202,187,205,188,211,190,180,189,179,196,225,232,225,241,202,235,226,229,227,215,212,215,213,158,182,197,179,210,218,178,222,185,201,222,222,211,182,224,191,212,144,217,210,173,144,213,178,182,201,219,159,185,130,154,211,211,173,205,214,155,197,136,142,204,214,162,185,188,201,130,206,153,161,228,198,127,199,155,215,139,149,189,211,225,182,217,224,215,191,171,176,229,194,187,226,229,206,196,179,199,188,182,196,179,200,215,211,215,206,211,193,224,189,191,159,173,190,197,228,214,222,201,198,202,159,147,235,232,206,232,200,233,229,224,212,173,213,182,162,212,200,217,197,196,217,219,212,226,221,153,161,223,201,199,167,179,234,219,169,202,211,142,167,95,138,215,154,155,182,197,123,214,181,201,155,140,211,206,158,197,228,214,222,178,201,202,191,159,147,144,183,142,178,160,155,85,136,142,123,188,142,130,166,187,210,211,222,222,211,176,182,132,193,198,215,191,189,180,197,173,144,210,218,162,185,159,220,206,226,182,179,198,211,199,127,178,185,234,183,202,188,196,179,199,188,183,182,186,196,179,200,215,169,205,229,228,226,235,215,231,200,205,187,196,200,187,191,199,199,193,185,180,185,226,195,129,200,218,196,142,142,186,154,174,179,188,145,188,167,196,200,169,198,155,128,93,162,170,98,152,134,152,161,211,208,179,155,154,213,182,214,204,200,185,215,176,225,228,202,226,221,211,229,215,182,197,179,228,214,211,178,201,205,240,215,241,233,229,244,215,120,226,119,195,119,129,137,197,196,229,240,215,234,229,218,244,200,218,201,106,146,198,211,127,208,195,212,179,215,228,195,129,227,197,196,186,178,179,182,181,167,186,169,173,109,114,186,160,162,142,100,222,161,161,106,182,178,188,190,193,127,171,180,183,188,144,144,129,178,155,123,185,159,187,202,200,211,199,199,208,229,234,226,218,200,224,197,228,206,226,241,190,218,244,220,198,191,159,218,228,234,229,235,192,227,211,212,225,211,209,226,213,215,197,179,210,214,199,219,222,234,213,191,191,139,149,200,161,176,217,190,211,215,224,193,180,197,180,211,209,167,138,215,154,155,182,197,123,135,201,155,140,203,232,212,214,214,195,218,215,221,207,220,196,191,235,228,200,241,233,224,239,210,211,222,211,182,132,193,198,191,189,180,197,193,202,168,200,199,208,199,137,95,138,129,160,137,155,89,135,105,123,111,162,130,134,140,120,226,119,119,137,200,187,188,193,161,174,190,193,167,189,186,179,215,169,205,212,213,214,158,159,147,234,215,234,229,222,218,180,142,105,178,174,188,145,181,198,173,142,183,180,154,160,181,142,155,114,89,105,158,147,111,162,170,200,219,205,181,202,187,196,200,199,193,180,185,217,139,167,149,222,178,224,188,190,190,198,217,217,211,205,212,202,200,211,188,180,196,179,200,218,194,212,229,232,234,187,229,215,221,220,144,109,114,137,142,185,159,113,100,98,155,144,144,109,114,160,89,105,188,181,159,142,130,100,198,98,191,240,234,240,200,225,233,242,218,236,215,193,193,215,244,189,210,222,161,176,161,224,188,190,190,198,171,197,157,216,175,168,211,212,240,228,213,235,212,244,224,239,218,231,206,226,241,229,235,180,183,181,105,145,183,181,198,232,225,229,228,228,213,226,226,229,244,215,239,217,139,222,189,161,216,217,176,197,240,211,215,206,226,190,211,193,193,220,224,189,198,191,159,217,210,139,149,161,190,188,225,228,202,226,221,188,187,190,206,193,202,168,206,219,173,215,221,158,182,179,210,162,178,185,159,147,232,234,226,241,197,175,211,188,193,212,187,211,190,193,185,215,167,211,189,222,211,176,225,182,224,193,224,191,189,157,139,211,189,161,161,190,222,132,128,171,176,198,183,225,234,240,234,200,213,229,242,236,211,218,212,222,239,180,167,189,176,225,182,224,198,176,180,157,229,235,234,215,240,213,242,236,211,212,239,211,201,212,176,211,228,222,211,127,212,132,199,128,178,183,180,186,174,191,188,185,196,185,200,166,210,206,161,161,233,190,189,171,197,175,167,178,188,132,190,228,222,212,188,222,224,188,190,198,176,188,154,211,211,215,173,205,214,197,136,142,204,214,162,185,188,201,130,137,105,95,138,129,155,105,123,124,111,162,142,113,140,187,188,181,202,200,199,144,144,214,197,210,214,159,220,201,147,212,215,205,213,215,176,195,204,158,201,200,185,218,197,196,144,183,144,142,178,155,85,142,123,188,159,142,130,187,137,193,127,89,135,85,152,141,93,155,113,153,170,98,99,167,109,114,160,155,136,142,93,100,198,98,196,219,187,188,153,161,185,189,179,214,158,197,210,218,178,201,159,147,210,182,179,132,201,127,219,128,185,180,211,142,181,167,180,154,174,188,185,183,182,188,167,186,130,200,169,202,166,187,155,205,186,147,162,170,99,240,235,215,206,225,217,224,215,244,239,240,232,229,228,240,226,242,236,229,235,244,215,231,210,173,226,201,228,222,193,199,234,183,147,142,137,109,142,138,129,85,128,145,93,130,100,98,152,155,140,152,225,234,200,176,158,182,193,178,222,189,180,180,159,147,168,127,128,155,109,95,127,155,85,123,158,141,180,185,155,100,98,206,226,241,229,235,211,206,206,226,182,179,198,211,199,127,178,185,234,183,202,217,210,139,167,149,161,161,188,190,217,217,197,188,175,188,198,199,128,183,188,154,217,205,226,176,190,197,223,201,210,204,214,199,201,222,220,234,201,219,198,202,167,222,106,128,155,197,206,196,200,211,174,179,199,182,167,180,186,169,205,186,137,158,158,113,128,217,222,189,161,216,216,190,217,217,176,197,212,144,142,167,144,109,114,154,129,137,85,185,159,113,130,155,187,175,211,188,193,187,153,211,161,190,193,185,189,179,215,200,175,201,202,168,153,200,199,211,208,199,215,109,105,138,186,85,123,158,124,153,100,98,99,197,206,203,205,196,200,199,182,167,180,186,169,205,229,194,187,229,231,217,154,219,210,229,190,221,182,197,223,201,214,199,222,220,234,201,219,202,176,167,222,189,106,216,182,146,216,195,212,132,183,205,180,105,178,153,185,180,215,109,186,128,162,100,170,98,152,134,152,111,128,93,162,98,152,134,152,211,211,144,215,144,226,182,179,199,178,185,219,159,220,185,234,159,154,212,225,144,217,210,173,144,213,215,176,158,182,179,201,162,178,219,188,159,130,176,147,206,226,241,229,235,224,188,198,176,188,229,229,240,242,236,235,215,203,200,214,158,147,158,195,215,207,197,229,225,218,213,194,203,200,234,187,235,195,192,207,210,211,233,197,211,222,189,211,225,182,224,224,215,191,217,154,219,210,173,226,229,221,182,197,223,201,162,199,222,234,201,219,176,139,149,106,229,193,228,193,127,127,191,211,200,226,241,242,239,167,222,189,106,216,195,212,132,128,203,200,214,195,147,158,195,207,196,215,215,120,119,158,200,185,122,218,128,207,211,206,187,190,189,191,139,167,149,206,200,161,190,132,215,198,142,154,186,160,137,155,89,136,105,135,145,155,210,211,161,161,233,190,171,212,142,213,129,85,105,210,185,145,181,196,219,183,181,153,183,215,202,212,142,95,213,154,129,105,210,214,185,145,181,206,158,182,179,198,199,178,234,183,202,191,213,203,212,215,214,119,158,119,195,129,200,122,218,128,137,220,200,205,181,202,200,187,191,199,193,185,180,109,105,138,114,85,136,142,158,124,135,100,140,99,187,105,190,185,180,189,196,187,175,211,188,187,211,190,185,189,196,215,211,206,229,215,158,182,197,179,210,228,214,178,185,201,147,154,209,173,226,215,176,158,136,142,201,204,162,199,201,219,185,234,213,202,176,147,119,147,158,129,185,197,99,197,225,217,210,168,106,215,132,201,211,132,219,128,155,144,142,167,144,109,114,154,137,89,145,185,159,142,130,100,98,155,154,209,232,225,234,215,226,176,204,162,201,200,222,218,213,176,186,147,158,162,113,170,99,212,215,213,214,158,210,218,178,222,201,159,147,212,225,144,217,210,173,213,215,158,182,142,201,162,178,219,159,130,176,147,217,225,217,176,168,106,215,132,180,219,155,217,197,219,175,221,146,223,180,219,211,206,200,215,132,171,157,191,180,105,214,137,127,89,120,214,195,105,124,147,158,155,153,122,88,215,229,225,235,228,234,229,202,231,196,219,187,175,153,161,185,189,179,217,219,203,210,175,193,168,221,211,228,186,219,205,139,149,222,189,161,216,216,217,171,216,114,89,105,158,147,111,162,170,187,205,188,202,200,190,189,196,203,200,195,161,147,158,195,128,207,196,105,193,120,119,161,152,158,124,119,113,153,137,99,212,211,209,226,213,197,179,210,218,214,219,222,185,234,191,217,206,219,173,215,221,158,182,182,179,223,210,178,185,147,197,219,175,229,176,221,132,127,195,212,178,196,219,183,180,193,105,178,185,180,210,139,206,233,190,193,189,167,168,132,127,128,155,127,120,119,161,152,158,119,141,129,155,153,137,99,217,154,217,219,210,226,176,190,221,182,197,223,201,204,214,199,222,220,234,201,219,202,176,214,158,210,218,201,159,147,144,85,105,145,188,181,142,198,109,105,114,176,124,180,130,172,218,232,229,235,226,192,227,186,137,158,162,113,170,203,175,175,211,211,175,188,190,127,132,199,128,188,175,201,168,106,188,190,127,132,199,148,160,135,176,93,142,100,98,173,176,168,188,190,228,222,195,212,157,188,197,211,168,146,211,195,212,155,212,167,226,213,178,182,136,142,201,199,181,159,185,234,222,182,224,198,211,173,229,182,197,210,228,214,162,201,198,191,159,183,180,186,160,85,136,142,123,135,142,166,173,187,202,105,196,200,174,190,191,199,199,188,183,167,189,196,185,200,169,181,120,226,119,195,119,221,137,197,196,219,186,178,179,185,182,181,186,173,166,187,205,217,210,139,149,161,190,197,188,222,222,182,224,211,232,226,241,200,220,197,235,232,234,206,232,234,233,229,224,180,196,219,181,178,153,161,183,180,215,213,203,212,195,161,158,128,207,196,229,226,235,215,231,221,211,213,215,232,225,214,214,195,218,212,207,220,137,111,88,99,212,142,183,138,213,154,178,197,135,181,201,202,155,140,144,181,180,142,138,186,136,142,135,185,183,188,196,130,200,198,166,140,206,183,181,205,178,153,161,185,180,215,200,187,188,193,153,161,174,190,191,188,182,167,189,186,196,179,200,215,169,205,154,173,228,226,190,158,182,179,218,204,162,178,198,191,176,147,209,215,95,214,137,155,214,161,123,215,99,176,168,229,176,146,178,190,228,127,195,178,180,155,188,168,127,128,155,211,209,167,95,138,215,154,155,182,197,123,214,185,201,155,140,209,234,200,215,158,182,182,178,212,224,213,191,147,191,240,225,215,232,200,244,220,180,191,139,149,206,200,161,225,190,215,198,157,180,200,205,196,200,187,191,199,199,193,185,180,196,148,186,129,160,176,128,162,172,152,152,229,212,229,235,215,221,220,229,218,228,234,229,235,192,227,231,186,137,158,158,113,128,148,137,109,105,114,193,135,176,152,124,141,93,153,100,98,219,181,205,178,153,161,211,183,180,210,167,189,176,225,224,193,198,176,180,157,196,219,183,193,105,185,181,180,166,187,217,154,211,219,229,221,182,210,162,185,219,198,191,176,109,160,111,142,100,98,210,222,176,161,216,224,216,171,197,157,216,188,215,232,234,226,241,233,211,142,137,142,138,114,154,123,135,128,145,130,100,198,152,173,155,140,95,114,186,127,155,152,147,141,155,88,128,139,167,211,149,161,229,190,222,198,128,171,198,183,191,200,196,206,219,203,175,205,193,196,200,199,180,205,186,89,158,147,158,162,170,187,188,105,185,196,217,206,219,173,215,221,158,182,182,179,223,210,162,178,185,147,154,212,225,144,217,210,144,213,215,176,158,182,179,201,204,178,201,219,188,159,130,159,111,93,134,211,212,142,138,213,154,178,155,197,123,214,181,201,155,140,214,195,158,215,196,213,232,228,232,214,214,195,218,215,207,220,196,200,191,199,193,189,185,181,139,211,149,189,222,225,182,224,217,191,176,206,158,182,179,222,198,211,178,185,183,202,173,210,218,220,147,137,95,138,129,160,137,89,135,105,123,128,162,130,142,134,140,196,219,183,193,105,178,185,181,180,166,187,197,203,176,178,228,222,127,199,128,178,183,225,234,200,176,158,193,219,222,189,185,180,180,147,197,196,219,205,202,200,211,174,179,199,182,167,180,169,206,219,183,181,205,178,153,161,185,180,215,158,180,113,128,215,215,120,158,185,122,218,128,207,148,105,186,193,135,152,124,141,153,218,232,229,202,229,192,215,221,220,194,215,228,187,195,192,227,231,197,183,180,138,186,129,135,181,142,166,173,140,189,161,161,193,132,189,171,176,183,127,214,195,119,129,155,113,88,215,99,196,217,219,167,176,168,215,221,146,223,180,219,155,157,185,196,173,217,225,206,217,219,178,221,158,182,179,223,210,178,188,219,215,120,226,119,214,119,129,200,218,215,137,189,198,176,203,200,195,147,158,195,207,196,148,95,138,186,129,160,137,89,135,176,123,128,162,130,134,140,167,211,106,216,182,146,216,195,132,191,128,176,148,160,135,176,93,142,173,215,228,195,200,227,218,231,197,196,181,180,183,181,166,187,191,217,234,173,200,223,193,162,219,222,220,185,180,215,182,197,179,210,218,214,178,222,185,148,109,135,176,172,100,98,142,105,178,145,183,181,196,200,198,173,128,145,142,198,152,152,203,212,225,213,214,120,161,195,212,221,220,211,228,240,226,190,193,244,224,189,198,142,167,154,178,183,196,200,173,155,191,225,217,234,205,200,226,176,190,182,204,201,219,201,144,183,144,142,95,178,160,155,85,123,188,159,142,130,187,144,144,109,114,160,105,188,181,159,142,130,100,198,98,148,160,135,176,93,173,225,217,205,226,215,176,215,190,197,201,210,204,214,199,201,222,220,234,213,198,186,193,89,105,161,152,147,158,180,185,128,213,203,212,215,214,119,119,195,129,122,218,128,137,220,219,210,205,178,153,161,211,183,180,179],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #4","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,216,216,216,216,216,216,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[211,197,193,212,168,190,158,197,132,179,214,127,182,128,186,180,201,155,198,215,191,159,147,205,196,219,211,181,212,153,161,208,185,240,218,213,235,212,215,228,240,213,226,242,236,212,244,192,239,218,221,220,211,191,225,144,234,144,200,226,213,214,215,190,214,199,185,219,212,159,224,234,198,191,189,188,198,176,188,217,154,225,206,219,183,167,215,154,176,215,221,158,182,179,136,179,142,223,204,162,178,135,182,181,167,186,219,169,176,159,155,147,205,95,226,158,182,105,123,199,178,135,185,220,185,234,202,159,140,147,217,219,210,193,201,202,106,229,221,146,223,199,222,208,195,212,132,128,219,183,205,167,211,222,216,218,216,215,193,217,217,189,157,216,232,234,229,235,221,220,200,187,181,211,188,212,105,211,190,191,211,193,183,189,154,240,173,228,176,226,215,158,182,179,218,162,178,244,220,171,180,147,154,211,206,182,132,210,198,193,162,127,185,222,180,183,176,229,191,225,234,213,235,218,212,222,232,225,144,215,228,213,158,197,214,210,178,222,185,159,224,201,218,215,197,159,147,211,225,219,203,211,205,202,229,178,211,174,197,228,214,222,188,185,219,180,196,185,200,154,209,183,215,173,205,226,129,176,178,85,105,204,162,199,201,145,185,185,234,213,202,176,173,190,182,210,198,211,162,127,185,198,215,183,176,205,181,144,109,180,95,186,185,159,98,173,225,216,224,188,216,224,193,132,128,216,188,144,158,155,197,214,136,142,105,214,178,185,212,200,188,201,130,218,215,159,147,211,197,212,168,106,190,158,197,132,214,193,128,180,201,155,198,215,191,159,147,200,206,187,181,211,212,105,187,211,190,191,211,193,189,185,181,229,234,229,221,220,196,219,175,202,181,229,232,225,228,232,234,213,120,119,214,161,119,212,227,122,215,231,137,211,144,144,138,105,129,136,142,135,185,182,186,130,173,140,205,109,114,186,180,100,206,175,202,106,146,153,199,228,222,198,127,195,212,215,144,173,144,215,95,213,155,89,136,142,195,105,210,161,218,158,162,212,159,220,218,197,196,203,212,229,200,235,195,215,231,220,197,173,193,212,178,158,153,161,182,179,210,222,198,162,185,182,167,186,215,169,183,191,159,147,229,229,232,234,226,211,235,215,194,228,187,214,161,200,227,122,218,215,231,211,213,234,215,228,240,200,242,236,226,211,235,222,220,239,231,220,197,180,229,176,153,161,228,222,127,132,128,178,215,183,229,194,225,187,213,120,119,214,119,192,200,218,215,231,137,196,142,219,167,142,193,154,145,185,180,185,198,181,155,205,129,85,170,173,210,211,222,211,216,176,146,216,190,228,222,198,193,198,127,195,191,178,189,197,155,211,181,180,142,95,186,160,85,210,214,183,142,166,187,203,211,205,188,201,153,161,190,199,180,189,179,196,240,211,213,212,234,205,228,229,226,235,244,222,220,231,221,207,220,154,232,225,173,211,232,240,213,233,242,158,182,236,179,193,204,193,162,178,212,189,239,147,194,235,232,187,226,239,191,144,217,215,210,234,144,200,214,190,223,201,218,185,188,159,224,130,219,198,202,210,167,234,215,233,190,218,198,176,198,157,154,211,142,183,215,173,205,95,226,129,176,178,105,204,162,199,201,145,181,185,185,234,213,202,176,147,229,211,215,200,205,228,228,232,234,241,120,226,161,201,195,224,213,231,232,211,232,225,229,218,215,215,222,189,222,225,216,178,224,188,216,190,193,215,127,132,128,183,188,200,196,206,219,175,205,201,196,199,193,127,182,180,186,155,205,142,148,105,154,176,124,135,128,145,180,113,153,172,170,152,173,155,152,99,194,215,228,187,195,227,122,197,196,206,175,211,212,105,187,211,179,191,211,188,183,182,196,185,200,181,144,225,144,215,228,213,182,197,179,214,210,214,178,212,200,222,159,224,185,201,218,215,191,229,191,211,215,205,240,200,242,236,211,200,220,239,231,142,167,154,179,185,182,167,186,169,181,155,205,181,167,138,129,128,183,173,134,140,109,95,155,85,161,123,158,185,93,100,128,98,196,175,105,187,181,210,161,161,176,132,127,132,128,178,171,197,157,217,197,210,181,196,178,211,199,201,199,199,185,183,234,196,219,202,213,203,232,225,215,200,213,241,229,218,207,212,142,215,167,144,105,213,154,186,160,158,124,145,188,93,142,130,99,183,142,137,185,185,93,134,173,187,161,176,226,161,241,190,217,224,222,224,171,239,180,197,198,217,106,176,178,132,193,127,132,217,217,128,178,189,180,197,175,211,212,106,176,146,195,178,179,155,225,213,235,234,229,215,215,240,242,236,235,226,211,218,229,200,227,215,221,220,229,232,234,228,232,234,200,218,215,229,224,142,167,154,178,160,188,196,200,181,173,155,225,240,218,213,235,215,240,242,202,236,235,212,192,224,227,218,221,220,167,149,161,224,215,171,188,154,232,173,228,240,176,241,233,215,158,182,236,179,218,162,178,244,180,147,167,161,178,188,190,171,197,157,203,212,229,200,235,215,231,220,200,196,191,199,193,185,196,217,200,196,219,219,210,205,201,196,229,221,200,179,223,199,201,228,222,198,199,127,208,199,182,167,180,186,219,155,169,183,205,154,212,144,144,213,215,176,229,178,190,179,228,222,211,182,188,186,130,198,191,176,205,229,154,240,211,213,215,212,234,205,228,214,229,226,214,195,204,201,244,222,220,213,215,231,221,207,220,196,197,206,187,203,174,179,211,188,208,182,167,189,186,200,169,205,222,206,216,218,216,217,132,215,193,180,191,206,200,106,229,215,221,182,190,228,198,127,215,197,188,191,229,191,235,206,233,235,220,218,222,206,222,211,216,218,224,216,217,132,215,193,191,215,228,206,200,235,218,229,235,222,218,231,180,217,219,229,221,178,132,190,208,179,196,219,183,205,188,178,179,182,167,180,186,196,169,187,205,139,215,149,211,193,198,180,197,219,203,189,201,176,229,221,199,180,157,210,139,167,149,161,161,176,178,190,127,178,197,157,95,226,158,155,182,105,123,199,178,135,219,185,220,185,234,202,159,147,148,193,160,127,135,176,135,141,128,180,185,155,130,153,172,170,134,155,99,219,205,187,208,185,180,196,211,226,158,155,182,179,136,142,218,199,178,185,188,222,185,185,234,130,215,159,154,173,213,182,105,161,218,162,212,159,220,128,176,211,181,109,180,95,186,160,210,185,166,173,148,95,129,155,176,105,123,130,142,172,88,144,183,137,144,142,186,137,89,105,128,188,181,159,130,130,134,173,187,211,193,181,212,211,191,208,215,211,144,144,226,182,179,136,142,214,199,185,219,212,200,222,159,224,185,234,130,191,197,206,175,212,226,176,168,106,190,158,193,211,199,178,132,234,155,198,215,157,202,191,159,147,206,144,210,144,193,186,226,105,197,136,142,201,210,214,199,135,145,159,234,201,198,140,114,137,158,111,113,128,234,211,200,226,189,180,225,225,215,228,213,202,226,211,212,224,154,211,191,200,176,182,197,132,193,210,214,198,162,127,222,128,220,180,201,202,176,167,95,186,114,154,135,176,123,135,181,172,166,187,217,154,217,219,173,211,206,226,229,221,132,211,223,228,222,162,219,220,171,185,219,157,183,176,175,167,222,189,201,216,132,222,198,199,157,183,138,129,193,152,147,135,111,93,162,88,170,128,140,229,232,234,228,232,234,218,215,229,224,180,210,211,215,240,161,161,242,236,190,211,171,197,211,197,212,176,168,106,190,158,197,132,214,193,132,128,180,201,155,198,215,191,159,147,176,178,190,127,171,157,197,203,167,201,132,228,222,157,217,211,212,191,211,209,219,210,234,200,213,215,229,221,228,218,193,185,213,149,189,211,168,216,182,216,132,198,127,176,157,183,200,203,210,175,175,193,188,185,196,196,200,114,89,105,161,111,162,122,170,139,149,161,224,215,171,209,215,105,213,215,186,210,158,124,185,145,188,181,93,142,100,98,99,212,174,191,211,188,182,167,186,200,169,205,196,206,219,205,193,196,199,193,127,180,155,205,215,129,127,136,142,161,152,135,111,141,180,159,93,155,162,142,88,140,200,210,175,175,174,179,193,188,208,185,196,196,200,234,229,235,226,221,211,212,191,234,205,200,213,215,176,210,228,204,222,193,201,185,180,213,217,139,149,211,132,127,217,191,217,128,176,155,157,216,206,202,200,161,191,199,199,181,179,196,181,173,166,187,114,160,85,180,142,109,114,186,160,142,100,170,225,217,210,214,215,136,142,201,218,188,222,130,198,202,191,217,211,206,209,219,205,178,215,221,136,142,223,204,201,220,219,213,191,159,229,232,234,228,232,234,200,218,215,229,224,180,210,139,167,149,161,161,178,190,190,127,197,157,225,240,232,234,226,241,202,244,231,213,212,215,200,220,232,225,229,215,232,213,229,202,200,215,218,197,206,161,161,190,211,198,189,171,167,176,216,218,216,217,215,193,217,217,189,180,157,216,211,191,234,205,200,215,176,210,228,204,214,222,193,201,220,180,183,202,217,225,219,222,189,161,161,168,215,190,176,221,146,178,188,190,223,195,178,189,171,176,155,198,188,191,235,232,228,232,225,229,190,218,217,215,193,193,215,222,224,189,149,211,168,182,216,132,127,191,176,155,157,183,216,213,212,158,215,220,197,211,209,213,203,212,205,213,119,147,158,201,195,129,113,213,137,220,99,210,215,240,161,161,242,236,190,211,189,171,197,188,187,191,193,210,234,189,225,215,190,211,224,128,176,197,183,191,180,144,137,167,105,135,142,124,111,128,185,159,130,113,130,198,134,173,139,206,222,224,193,198,189,211,209,183,215,215,176,178,89,182,197,214,185,142,201,213,198,187,217,211,210,205,180,212,226,202,105,161,201,214,211,199,185,185,188,181,180,179,234,219,187,211,209,183,215,215,176,178,89,182,197,85,185,142,201,213,198,202,176,211,197,173,212,190,197,132,214,193,211,162,127,128,180,201,198,215,159,147,215,200,213,147,158,185,221,196,219,175,185,181,212,144,209,215,144,213,214,186,129,127,141,159,93,155,153,130,98,155,196,219,205,181,196,200,174,187,199,183,173,197,203,193,212,174,211,208,182,167,186,169,205,173,193,212,178,182,179,222,198,211,162,182,188,167,186,198,215,169,183,191,176,159,205,225,211,217,215,210,167,205,154,178,215,155,182,179,178,135,181,220,219,159,155,213,215,203,215,105,214,127,89,124,141,195,200,155,113,153,88,207,206,203,175,167,212,226,176,190,146,158,182,179,193,199,178,185,180,234,198,215,157,202,191,212,105,213,186,160,188,181,93,113,198,191,240,215,173,232,200,241,215,214,158,182,178,244,197,180,159,147,137,89,158,111,128,211,144,234,144,213,182,197,179,214,219,212,200,159,224,185,218,191,217,154,206,209,219,167,205,176,178,215,221,179,136,179,223,204,201,135,181,219,213,159,197,206,203,210,175,167,212,226,190,176,146,182,179,201,193,211,127,178,195,219,178,185,234,198,157,191,225,217,203,210,167,212,176,215,176,178,201,193,211,127,195,212,219,178,157,225,139,219,167,234,149,161,161,229,221,158,182,179,211,223,228,222,198,215,178,222,128,183,159,147,215,95,155,119,152,119,141,137,196,218,232,240,241,242,236,192,227,239,211,193,181,212,211,174,191,167,186,185,215,196,217,219,205,226,202,229,200,179,223,199,201,222,198,199,127,219,182,167,180,234,155,169,183,202,217,167,211,225,217,224,215,217,157,188,109,95,155,85,161,158,185,93,100,128,98,196,219,211,181,153,211,161,187,208,185,180,179,213,212,214,158,215,220,197,137,214,195,129,180,185,196,211,191,225,144,217,215,210,234,144,200,214,215,190,223,201,199,185,159,224,130,198,202,154,212,144,144,193,213,215,176,229,178,179,228,211,162,182,188,167,159,186,130,215,169,191,176,159,205,217,225,217,203,167,211,212,176,215,178,211,188,190,223,211,199,180,219,157,188,206,205,186,202,153,200,161,181,196,215,181,202,173,166,187,215,149,222,176,224,211,193,198,176,175,149,222,189,216,182,216,222,198,199,176,157,183,105,193,214,195,124,113,215,196,211,212,191,211,209,234,205,200,213,215,229,210,228,218,222,193,201,185,180,213,144,144,215,213,182,197,179,214,214,178,212,200,222,185,159,224,185,218,215,211,212,183,109,213,114,178,160,137,89,210,214,185,185,100,98,187,193,137,127,89,85,152,141,128,155,142,113,153,152,134,152,99,194,235,232,225,187,241,239,221,220,114,89,105,161,158,111,122,128,200,197,212,202,168,187,196,161,199,193,212,179,155,197,203,167,201,132,222,198,183,197,203,198,208,128,183,188,109,142,114,129,85,111,198,197,139,175,149,222,189,229,221,176,180,175,212,106,176,127,127,178,179,154,225,206,217,142,209,183,210,173,138,215,154,176,158,155,182,179,162,178,135,219,182,167,186,219,213,169,176,155,140,147,205,210,189,188,190,176,188,154,206,213,176,190,204,222,198,211,185,183,176,144,181,144,109,95,178,155,188,159,130,100,98,134,200,181,180,193,187,153,161,179,193,182,186,179,215,173,205,194,215,214,161,200,227,122,218,215,128,196,167,205,142,193,191,180,185,196,198,181,167,161,188,190,171,157,210,189,188,190,198,176,188,229,154,240,209,213,215,234,205,234,214,176,229,204,201,244,222,213,215,220,180,196,229,191,225,200,213,235,218,212,222,217,211,183,210,211,205,180,212,226,202,105,200,199,201,211,199,185,185,181,179,234,196,219,202,214,147,215,221,220,197,229,212,234,229,220,209,203,212,205,228,232,176,120,226,161,204,201,195,220,224,213,221,148,109,114,89,135,147,93,113,100,98,209,173,95,226,215,129,155,182,179,201,123,199,145,185,234,198,176,187,211,144,129,160,155,174,179,210,123,214,188,182,167,159,186,142,169,202,211,210,180,212,202,105,200,199,201,199,211,199,185,181,179,234,196,202,166,187,206,181,175,211,212,105,187,211,179,211,193,183,185,181,225,240,211,232,225,215,205,206,213,241,215,176,215,182,211,193,201,212,244,189,185,213,212,211,144,144,105,138,213,114,215,85,136,142,195,124,147,201,135,159,155,153,122,213,128,196,217,197,139,219,175,149,222,189,215,221,188,193,223,193,212,176,219,175,167,222,189,201,216,132,222,198,199,157,183,154,211,142,215,173,205,214,129,176,178,89,85,105,204,162,199,201,145,181,185,234,213,202,176,212,191,215,232,225,228,213,226,213,214,215,190,197,179,210,200,185,201,218,198,180,154,211,173,215,205,206,240,234,176,229,242,236,211,204,162,201,200,239,218,213,198,176,159,147,210,167,234,215,189,233,217,190,132,211,215,224,222,176,197,191,196,219,175,202,185,105,95,138,137,155,89,105,123,124,180,170,173,140,213,203,200,232,234,229,195,207,194,235,232,187,226,239,114,89,105,161,111,185,162,122,170,137,127,89,155,130,113,172,88,99,217,211,183,210,211,180,212,226,202,105,200,199,201,199,199,185,185,181,179,234,196,219,202,191,222,206,222,211,190,218,182,224,217,132,215,191,206,205,186,153,161,196,215,181,202,173,212,206,144,144,205,213,215,176,190,228,204,222,201,188,222,220,213,114,186,129,85,162,170,173,217,211,178,188,132,190,193,215,127,132,217,217,128,189,180,229,232,234,229,228,206,229,235,224,215,180,167,95,186,155,89,135,176,136,142,111,181,172,187,152,109,193,214,85,161,123,158,111,180,162,122,100,215,98,217,191,225,219,206,189,200,161,106,215,221,182,190,179,223,228,127,178,132,176,175,201,168,174,179,193,208,199,185,182,167,186,196,155,169,109,114,105,161,111,185,122,100,128,219,181,205,181,190,199,183,180,189,173,154,212,144,144,193,213,215,176,229,178,179,228,222,211,182,188,167,159,186,130,215,169,191,176,159,205,217,211,209,219,205,178,215,221,136,142,223,220,219,213,191,109,114,186,160,162,142,100,170,98,209,183,173,95,226,215,129,176,182,85,105,162,199,145,234,213,198,202,176,187,213,203,200,127,141,195,185,155,113,153,88,207,197,99,229,211,209,215,203,212,205,228,234,226,241,226,204,201,195,220,224,213,231,221,175,193,181,105,187,153,161,174,188,183,182,167,186,196,179,200,215,169,205,167,222,206,211,176,216,218,216,215,193,189,157,211,197,173,193,212,190,197,179,210,214,127,185,182,128,186,201,198,215,191,159,147,205,144,144,215,213,158,182,197,214,136,142,214,178,185,212,200,222,185,159,224,185,201,130,218,215,159,148,105,155,176,124,135,145,180,113,153,172,170,152,155,152,99,206,205,186,202,153,200,161,196,215,181,202,173,217,219,167,211,201,212,229,221,211,188,132,190,211,208,179,188,217,154,217,219,173,211,206,226,229,221,182,132,223,201,228,222,162,220,224,219,157,183,176,217,217,219,203,210,175,196,229,221,223,201,228,199,199,188,185,196,234,196,219,200,202,211,210,180,212,202,105,200,199,201,211,199,185,181,179,234,196,202,166,187,186,137,89,161,162,122,170,137,211,209,213,203,212,205,213,215,119,119,158,201,195,212,129,113,213,137,220,137,109,114,137,127,176,93,155,130,172,100,88,98,99,213,194,203,232,212,225,215,228,187,213,241,235,218,207,229,225,218,225,232,234,213,202,195,235,129,200,218,196,181,178,85,136,142,123,128,183,188,130,98,173,134,210,211,222,211,106,216,229,190,176,182,146,178,188,216,190,190,228,222,198,198,127,127,191,178,197,198,188,105,214,193,137,152,124,141,195,185,153,207,197,197,225,217,210,175,149,212,190,176,178,179,190,193,201,193,211,127,195,212,219,178,198,191,219,187,181,205,180,188,186,174,190,188,183,180,196,200,166,212,144,173,144,193,213,229,215,182,179,142,228,211,162,188,182,181,167,159,186,196,130,200,215,169,176,159,147,205,225,228,213,161,227,122,231,128,210,139,188,190,190,188,213,212,214,158,88,215,197,142,105,155,105,124,135,145,180,113,172,170,198,152,173,155,152,217,139,149,222,176,132,198,127,212,217,217,155,157,216,109,111,100,98,229,225,218,194,232,225,232,234,187,213,120,119,214,119,235,212,129,192,215,183,142,174,191,188,185,196,185,200,198,217,154,219,210,205,226,176,176,229,221,182,197,132,193,201,228,204,222,199,189,234,201,219,183,176,180,211,225,144,217,144,226,214,215,190,142,201,199,185,219,188,159,224,234,130,198,202,191,142,138,114,129,85,111,145,198,140,167,154,160,174,188,167,169,181,173,155,142,137,109,138,186,154,129,85,93,130,98,166,187,155,140,211,215,232,200,226,119,218,119,129,122,128,137,232,241,225,233,242,236,193,218,212,220,239,191,159,138,105,129,160,174,136,179,188,135,188,167,142,130,169,173,140,217,211,212,211,209,219,210,213,215,229,221,197,223,201,210,218,214,193,199,224,234,219,213,202,180,211,181,109,180,186,114,105,210,185,100,98,166,173,212,183,142,178,137,89,185,93,134,173,187,109,111,142,100,98,217,211,212,191,211,209,219,210,234,144,200,213,229,221,223,218,193,185,224,219,202,109,95,114,155,214,111,162,122,100,170,215,200,213,158,147,158,212,185,221,217,211,197,217,183,181,211,180,212,226,202,105,200,211,199,201,199,185,185,234,196,219,202],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #5","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[154,203,175,173,211,176,106,178,153,211,161,182,210,193,162,132,185,167,179,169,157,176,197,203,175,193,201,187,191,211,199,186,215,205,194,203,215,187,218,200,224,207,197,217,217,210,232,225,215,228,226,214,136,142,223,201,193,200,188,185,130,218,219,215,202,180,210,139,149,161,178,190,190,197,211,142,209,215,181,205,180,193,138,229,155,174,228,123,211,188,201,145,183,220,196,213,200,215,191,187,140,225,217,142,210,167,138,154,129,178,215,89,179,214,85,201,218,158,219,200,181,222,113,215,191,155,200,196,225,217,219,175,205,196,176,178,200,132,179,201,199,127,219,182,167,180,178,186,234,169,217,206,176,132,193,180,188,213,203,212,225,200,241,197,183,203,210,175,175,180,187,178,201,185,181,202,225,211,217,139,219,232,225,149,205,240,213,161,161,241,225,176,229,233,242,221,182,236,132,215,223,204,222,215,201,219,212,185,239,157,176,212,197,191,234,144,205,193,200,212,176,168,106,213,215,176,193,179,204,211,201,132,182,188,128,220,189,186,213,155,215,157,205,211,215,225,190,218,215,193,193,229,215,235,220,189,218,198,231,191,159,211,191,144,234,200,226,226,241,155,182,179,136,142,195,105,161,214,158,185,219,188,185,130,198,191,196,183,175,181,168,196,215,158,200,182,179,199,210,198,199,127,178,185,183,188,181,201,196,155,183,211,217,210,180,214,158,89,182,179,179,201,178,219,220,142,198,187,159,147,154,212,197,191,144,175,144,211,193,212,176,168,106,213,215,176,178,153,161,132,179,204,193,132,182,188,167,222,128,220,186,180,179,130,155,169,211,212,213,114,89,174,197,179,105,210,214,188,128,183,93,196,201,100,200,169,202,173,134,217,191,206,106,190,176,218,146,178,217,190,215,222,198,127,127,217,217,178,198,183,211,225,215,228,95,226,213,89,182,179,195,161,123,158,199,135,219,222,224,185,113,234,202,191,197,196,191,203,175,167,173,211,193,176,146,153,211,161,182,193,179,210,162,132,185,182,167,186,179,169,157,176,205,197,183,203,210,175,180,178,173,213,203,212,200,232,229,235,105,153,161,174,179,225,218,194,228,187,241,214,218,235,192,128,196,206,219,193,226,160,155,197,85,210,123,214,199,185,159,142,234,201,181,202,173,105,129,193,160,137,85,124,142,153,173,217,200,196,219,219,210,205,193,196,229,176,221,178,200,223,199,193,127,132,180,128,178,186,219,183,205,211,232,225,228,137,158,197,120,123,214,178,135,185,188,222,224,113,201,130,122,128,159,147,99,229,213,234,229,207,154,212,196,144,219,203,175,144,211,168,213,190,211,174,132,127,188,188,128,196,180,179,130,200,155,198,176,232,225,234,228,228,206,218,215,224,231,180,229,225,218,225,232,234,213,158,235,212,192,128,154,191,215,235,212,229,205,206,214,176,235,195,204,229,201,227,215,213,215,221,207,196,217,200,196,206,217,219,210,175,193,202,196,221,178,200,132,190,223,199,219,225,218,232,229,232,234,202,161,235,212,122,128,211,206,205,188,202,153,200,161,191,185,188,130,196,215,202,105,95,138,137,89,123,124,145,180,198,140,219,168,229,215,190,221,224,215,212,217,217,198,216,212,109,213,114,215,89,174,197,179,105,199,188,182,167,93,186,196,234,201,100,200,169,202,98,134,173,197,196,219,175,193,181,212,187,211,185,215,154,225,191,209,215,235,203,229,215,240,200,214,176,242,236,235,211,214,195,204,229,201,195,227,215,239,213,215,176,180,196,225,211,235,205,234,176,225,176,229,215,182,215,201,171,185,180,218,213,176,232,212,225,228,240,226,241,242,236,244,221,220,217,219,228,213,229,221,136,142,193,212,180,240,189,240,222,226,242,182,224,236,132,244,222,128,191,225,217,210,214,158,89,182,179,85,179,201,178,219,220,142,198,187,159,154,240,209,226,215,176,229,119,204,158,119,235,244,129,222,185,220,227,122,128,137,229,225,234,213,161,190,235,217,193,224,218,193,212,220,171,198,191,159,217,191,206,106,229,190,176,146,217,215,224,228,222,198,127,217,217,178,198,216,217,217,219,210,106,187,229,221,146,174,179,223,201,228,222,198,188,195,212,185,167,196,219,169,183,167,142,193,127,136,142,152,158,141,185,159,155,88,198,225,218,214,161,158,192,200,218,215,231,128,197,203,181,180,181,208,211,191,225,232,234,200,226,226,241,215,190,155,136,142,195,199,185,219,188,185,234,130,198,202,197,180,196,154,209,213,215,235,229,173,228,206,214,176,233,235,226,204,229,162,201,235,213,198,221,220,176,197,159,147,211,196,144,219,205,193,138,129,160,136,142,191,135,185,188,180,142,185,130,196,173,140,109,105,178,85,136,142,123,188,135,188,93,196,130,130,100,200,98,152,152,148,137,138,129,135,176,120,214,130,122,215,140,181,193,153,161,174,188,183,182,167,186,196,179,200,215,169,205,176,106,146,193,195,212,180,200,211,225,217,219,183,203,175,175,180,188,226,105,229,221,197,223,190,228,214,193,185,219,181,185,235,228,226,235,195,212,244,200,239,197,209,137,215,214,176,127,210,214,111,141,185,181,155,162,130,153,213,198,134,211,212,137,180,105,186,213,215,186,178,197,210,214,124,111,128,130,113,152,166,99,210,139,235,232,149,228,229,190,220,157,191,159,211,225,146,224,222,198,193,127,215,195,183,200,202,196,178,153,161,190,199,198,211,193,127,127,132,215,218,203,212,200,202,192,222,220,207,197,180,191,225,229,211,213,225,217,224,218,215,235,212,222,189,215,231,138,129,174,179,135,188,167,142,185,169,134,140,194,203,212,234,215,187,211,218,200,207,197,180,211,176,225,188,217,190,193,157,225,211,225,205,232,213,161,225,176,242,218,182,215,204,215,201,219,212,171,185,239,157,176,176,176,132,193,215,127,132,128,178,229,213,234,229,195,207,175,205,202,200,199,185,180,181,225,217,175,226,106,146,174,193,199,188,195,212,132,219,185,128,196,234,196,200,202,211,209,183,205,193,212,153,174,136,142,204,198,193,188,201,181,167,222,159,220,196,213,200,215,169,183,191,209,203,173,215,240,200,215,176,242,236,211,162,235,195,227,239,176,180,159,175,181,201,181,105,191,199,183,196,185,181,217,191,233,190,188,211,132,217,217,128,216,188,217,210,225,217,219,234,222,222,211,168,225,216,176,146,158,178,182,188,216,179,211,190,224,223,198,127,178,219,191,222,178,219,155,180,159,154,211,229,211,215,205,228,190,226,204,229,201,235,200,198,231,159,191,215,200,233,190,211,132,217,128,198,183,216,188,180,225,191,211,213,229,205,233,226,200,220,215,221,220,197,225,206,217,210,167,176,153,161,188,223,201,180,219,215,157,188,187,142,193,202,196,153,200,190,199,199,145,181,189,198,191,240,234,189,240,222,200,176,242,182,224,236,193,244,176,239,180,157,217,225,217,139,149,211,222,212,216,215,182,211,193,223,193,211,208,176,179,219,176,106,146,132,195,132,128,171,225,217,142,210,167,138,154,129,178,215,89,179,214,201,218,158,200,181,222,215,191,155,140,142,167,154,136,142,152,158,145,159,88,198,152,173,152,196,211,153,211,161,191,179,185,225,217,167,215,95,138,213,215,89,214,105,201,123,158,135,219,212,200,224,218,198,202,191,197,140,144,213,232,225,144,228,95,137,155,89,197,120,119,136,142,210,123,224,113,201,130,122,207,137,220,147,99,212,213,114,89,174,197,179,105,214,188,128,183,182,167,93,196,201,100,200,169,202,98,134,138,160,158,147,158,135,128,185,152,134,140,152,212,148,180,105,186,213,178,135,176,124,111,185,185,162,113,172,152,166,152,197,206,203,175,201,105,174,187,179,211,188,182,167,186,196,185,200,169,181,205,191,225,217,232,225,234,215,228,95,200,213,215,190,155,214,105,201,135,188,185,218,198,215,202,197,211,191,203,167,173,149,211,193,176,146,153,211,161,197,193,214,162,127,195,212,178,189,179,201,205,217,212,196,217,219,142,138,213,129,153,155,182,123,219,185,180,185,219,215,173,148,109,89,135,105,161,158,93,122,100,98,191,228,161,161,241,229,235,190,193,193,224,171,197,218,234,215,206,233,218,192,227,218,221,220,180,212,206,167,234,205,106,213,215,176,204,211,201,132,185,189,213,155,157,180,183,148,180,186,137,155,89,136,142,105,111,130,240,139,210,167,215,149,205,161,226,161,176,182,197,201,218,204,214,198,199,127,215,201,132,128,224,234,201,202,197,139,203,149,211,176,229,182,216,228,191,176,180,148,215,137,214,160,135,176,214,136,142,161,158,159,130,142,122,215,134,155,191,225,229,211,200,213,225,217,224,215,235,212,222,215,231,240,139,235,200,193,198,244,189,239,180,191,203,175,167,173,211,193,146,153,211,161,182,193,179,210,162,185,182,167,186,179,169,157,176,205,211,225,106,176,146,132,193,224,215,132,128,178,189,180,139,219,149,211,222,189,212,176,216,229,221,182,211,216,211,208,176,180,206,144,215,144,176,193,222,198,188,159,224,189,180,130,183,180,217,197,139,203,175,201,176,228,222,199,217,191,217,180,216,217,217,219,187,181,188,201,226,168,105,187,229,178,221,223,190,201,228,199,208,199,183,189,234,219,155,202,109,95,120,119,214,119,185,100,137,98,167,211,225,188,217,157,188,211,211,183,205,214,176,178,160,182,197,214,204,214,201,111,153,201,213,215,198,176,187,197,206,203,175,181,181,105,187,179,208,183,196,185,181,217,219,210,106,187,229,221,146,174,179,223,190,228,222,198,195,212,185,182,167,186,196,219,169,183,212,144,142,209,137,167,144,213,215,214,154,193,160,214,147,158,145,188,130,122,213,215,170,128,155,217,217,219,187,181,188,201,168,187,229,221,223,190,201,228,222,198,199,127,199,183,189,234,219,155,202,212,232,220,211,206,144,209,144,176,132,193,218,198,188,128,159,224,189,130,183,180,222,161,176,168,224,190,222,198,198,180,183,211,142,187,210,167,211,188,186,212,226,154,196,211,190,201,214,211,199,185,145,188,185,234,198,202,105,129,193,137,124,153,173,105,129,137,85,124,180,173,217,191,219,234,200,178,190,221,155,223,135,212,185,224,219,142,183,215,167,193,138,214,154,229,190,155,179,228,123,188,135,182,181,167,222,186,196,200,198,169,155,140,205,191,225,229,211,213,225,217,224,215,235,212,222,215,231,176,176,146,132,132,128,178,171,218,232,225,215,228,228,233,211,192,227,215,105,214,127,226,152,124,141,185,155,113,153,218,88,221,99,228,226,241,120,195,229,212,129,196,139,215,149,240,222,242,224,236,193,176,180,217,206,233,188,132,193,128,188,212,211,206,144,209,144,176,213,132,193,218,198,127,185,128,224,189,213,157,180,197,210,191,217,210,175,211,211,216,182,182,216,190,179,201,198,178,212,219,191,197,219,225,234,213,161,176,161,235,224,218,212,220,171,180,198,191,159,217,139,175,201,222,176,228,222,198,198,199,217,217,180,215,214,127,152,141,200,185,155,113,153,218,88,221,99,154,212,225,200,105,213,215,176,137,127,155,89,105,218,204,124,212,220,155,153,88,221,191,240,139,235,149,200,193,198,244,239,180,200,175,196,200,199,199,185,185,196,225,240,219,215,222,222,211,106,229,233,218,221,182,158,182,217,179,215,223,228,222,198,198,127,178,132,191,222,188,159,212,183,148,144,142,176,158,180,188,181,162,153,172,170,152,187,152,99,215,149,189,240,176,242,182,236,211,191,176,180,154,211,173,109,205,180,142,226,114,214,160,137,204,158,162,199,201,93,185,113,234,100,202,98,176,166,197,225,144,217,142,219,167,144,211,186,154,196,221,200,211,197,223,199,210,199,219,145,185,201,130,196,181,173,166,155,154,211,173,109,205,180,142,226,114,214,160,137,204,158,162,199,201,185,113,234,100,98,166,187,147,154,191,203,175,211,193,176,168,106,153,211,161,182,193,179,210,132,185,182,167,222,186,179,155,169,157,176,205,211,209,232,225,205,226,218,201,212,113,213,99,193,105,153,211,161,174,179,211,142,167,215,154,176,193,160,214,210,161,152,147,158,201,111,145,180,188,162,142,122,213,88,215,128,200,181,180,202,187,199,193,188,167,186,196,200,169,166,206,175,201,181,105,187,179,191,188,199,183,196,185,200,154,212,197,196,144,144,211,168,213,215,176,190,153,161,174,132,204,193,127,188,128,159,196,180,179,130,200,155,217,206,142,219,183,95,138,214,221,179,223,105,123,218,145,182,167,222,185,186,198,169,191,140,205,211,209,212,200,193,137,105,152,218,220,211,149,211,193,176,178,153,211,161,197,190,193,214,127,195,212,199,178,189,179,201,159,147,205,211,209,183,215,137,142,215,214,178,197,210,214,158,124,111,128,185,162,130,153,213,134,173,187,99,229,212,213,215,240,234,213,229,190,182,179,211,214,195,210,185,201,198,215,191,196,109,114,120,119,105,161,185,122,100,137,98,191,225,217,232,225,215,228,200,226,226,215,190,155,214,136,142,201,199,185,188,185,234,130,198,215,202,197,180,211,142,183,215,193,95,138,154,229,190,155,174,228,123,188,182,167,220,186,196,200,198,169,191,155,140,205,191,139,149,211,189,158,178,211,161,188,190,193,199,212,189,179,215,202,188,159,147,206,139,149,211,189,201,226,190,158,211,161,182,188,179,190,193,199,178,199,189,185,176,179,234,198,215,202,188,191,217,154,210,240,217,173,215,189,226,225,106,233,190,201,162,127,132,219,220,224,185,176,197,219,212,211,209,215,109,213,114,215,186,193,85,136,142,123,201,135,129,200,180,159,213,100,207,197,240,194,232,225,228,187,226,226,244,221,197,206,203,105,187,179,211,188,208,183,182,196,200,169,181,205,200,211,225,175,201,106,196,215,146,174,199,188,208,195,212,132,199,185,128,196,185,196,200,176,218,188,132,190,215,193,189,180,148,137,138,129,135,176,120,214,123,130,122,203,193,201,212,191,215,215,127,141,200,155,218,88,221,99,186,89,105,195,162,215,170,217,219,228,213,229,221,136,142,193,212,200,188,219,180,209,183,167,205,212,190,153,161,174,136,142,204,222,198,188,201,181,220,196,213,200,198,183,206,139,210,149,189,201,190,161,179,193,201,193,219,176,179,198,215,191,211,142,210,167,211,142,188,212,226,154,196,197,191,199,201,214,199,211,199,185,145,188,179,185,234,130,198,155,191,240,167,234,189,240,200,211,190,242,182,236,191,180,157,180,197,139,203,201,211,176,229,228,191,180,216,203,200,186,137,89,105,195,180,185,207,197,206,144,215,144,176,132,193,198,188,159,224,189,130,183,180,211,191,225,232,225,234,228,200,226,226,215,190,155,136,142,195,105,158,199,185,219,188,234,130,198,202,191,197,196,209,215,180,142,186,215,186,176,182,197,158,93,113,201,213,202,134,166,173,95,138,129,160,155,105,123,88,140,240,213,203,212,215,228,240,213,226,242,236,212,244,218,109,95,120,119,119,185,93,100,137,98,205,106,146,153,200,199,211,195,215,211,222,189,212,216,229,211,228,211,208,157,167,211,222,212,229,211,132,228,222,211,157,142,138,154,186,123,145,162,170,155,140,217,225,217,219,203,201,211,212,161,161,216,215,190,182,216,193,223,193,211,199,191,189,171,219,200,202,178,153,161,190,199,228,198,211,132,128,215,183,217,211,219,215,181,205,180,193,95,129,215,221,174,179,223,123,204,188,201,145,183,220,196,200,198,166,187,159,139,167,149,161,161,178,190,197,212,197,191,211,144,209,144,205,193,200,212,176,215,178,132,179,193,127,201,182,188,167,222,128,159,220,186,180,130,213,215,169,205,211,137,105,114,89,174,179,105,210,188,128,185,183,93,196,130,200,152,173,152,206,183,175,211,181,212,178,211,187,211,166,187,225,228,187,213,147,158,192,231,211,206,142,188,202,154,153,200,161,199,199,185,145,188,130,215,202,155,176,176,178,132,193,224,215,127,132,178,139,167,149,161,178,190,197,191,203,212,173,215,228,240,200,215,242,182,236,226,211,214,195,162,235,239,231,221,207,176,159,147,229,211,215,228,225,218,215,229,235,220,189,215,218,231,197,225,217,219,167,188,154,196,221,211,197,223,210,214,199,219,188,185,201,130,181,166,187,215,226,158,200,218,88,213,203,200,232,229,235,195,207,229,154,212,200,228,234,226,241,213,215,119,158,119,162,129,222,185,122,231,128,137,176,137,176,85,105,158,158,130,172,128,154,225,211,206,217,215,210,181,205,180,142,186,176,158,89,182,174,85,105,204,162,188,178,201,219,183,182,167,185,186,196,142,219,213,200,169,166,147,205,212,206,193,95,226,105,213,197,85,199,234,201,173,173,205,217,197,217,219,167,211,188,186,226,154,196,221,211,197,223,191,210,214,219,188,185,130,219,181,173,197,203,180,181,178,173,212,217,209,215,211,215,232,240,226,176,213,242,197,236,193,223,210,219,200,239,180,201,218,154,215,109,205,186,129,176,127,182,120,119,210,152,204,158,141,200,188,130,100,88,137,98,176,197,155,140,225,217,203,210,211,211,212,161,161,216,190,182,182,216,190,179,201,211,199,219,189,171,198,191,197,139,203,149,211,176,229,182,216,228,191,176,180,183,109,226,114,137,158,182,201,158,178,219,220,185,142,113,100,198,187,159,147,211,225,240,144,217,144,215,215,206,232,226,241,211,214,214,193,199,185,219,244,159,234,215,202,197,229,209,215,235,215,214,233,190,158,182,182,179,193,178,231,191,197,225,240,240,229,215,218,182,158,182,179,228,222,198,198,178,132,244,128,183,159,147,105,153,161,179,181,142,167,142,154,193,136,135,141,145,155,113,153,198,155,99,232,225,215,213,229,235,218,197,232,225,240,241,242,236,244,221,220,109,95,120,119,214,119,93,100,215,137,98,95,129,85,105,123,147,128,142,152,134,152,200,197,225,217,219,203,167,188,196,221,211,197,223,191,210,214,219,188,185,201,130,181,166,187,234,215,200,216,233,216,211,132,128,198,183,216,188,191,180,211,142,210,167,142,188,212,226,202,154,196,200,197,191,199,201,214,199,211,199,185,145,188,179,185,234,130,198,155,191,211,209,234,193,200,178,136,179,142,218,198,193,211,182,159,186,180,130,215,183,205,142,105,95,138,137,123,124,145,180,198,140,225,106,176,146,217,224,198,193,127,178,183,191,225,228,200,213,225,218,215,212,222,231,144,183,148,144,180,186,137,105,188,159,162,130,166,212,209,215,138,214,129,120,119,136,142,195,135,159,93,170,137,140,196,210,217,210,234,222,168,225,176,182,146,158,178,188,211,190,201,198,215,127,219,222,178,185,197,219,155,188,180,159,147,217,217,219,187,210,188,106,187,229,221,223,190,201,228,222,198,127,188,189,196,219,200,148,95,155,135,120,119,214,85,123,93,215,137,98,196,180,186,202,187,196,200,174,187,199,188,167,196,200,169,166,197,209,183,167,205,212,190,153,161,174,136,142,204,198,188,201,181,220,196,213,200,198,183,206,142,183,215,167,214,154,229,190,155,179,228,218,135,182,181,222,186,198,169,155,205,129,85,180,173,154,211,217,215,210,181,205,180,142,214,160,158,89,182,179,201,204,188,178,201,219,183,182,167,185,186,196,185,142,200,169,166,147,205,215,212,215,105,214,193,137,89,105,152,124,200,218,220,154,240,234,200,215,176,229,120,119,161,119,235,244,129,222,227,122,137,176,206,181,211,180,212,211,187,179,211,173,217,233,132,193,217,217,180,216,188,154,203,175,211,176,168,106,178,153,211,161,182,132,193,162,132,188,167,180,179,155,169,176,211,225,232,225,234,228,95,226,215,155,89,179,195,105,123,158,199,135,219,188,234,202,191,197,196,142,167,142,154,193,127,136,142,152,158,141,185,159,155,88,198,173,211,142,210,167,142,188,212,226,154,196,197,191,199,201,214,199,211,199,185,145,188,179,185,234,130,198,155,225,206,217,210,176,215,153,161,223,201,180,219,215,157,240,211,139,210,167,215,149,205,228,226,161,215,176,197,211,210,218,204,214,198,199,127,201,128,171,234,201,202,200,211,225,181,175,188,201,226,168,178,222,198,193,127,208,199,219,183,185,155,183,217,197,217,142,219,167,211,188,186,226,154,196,221,211,197,223,191,210,214,199,219,188,185,201,130,219,181,173,109,114,120,119,214,105,119,111,129,185,100,215,154,212,232,225,200,105,213,176,137,155,89,105,218,204,147,220,155,153,88,221,176,99,89,85,147,128,113,240,235,200,240,226,242,236,195,212,244,200,224,239,197,232,229,228,241,229,120,119,214,229,119,212,215,215,137,144,137,144,109,95,105,114,155,174,188,185,159,93,196,130,100,200,152,152,217,191,225,219,206,222,200,168,225,215,221,224,179,223,215,195,212,155,216,191,213,215,203,212,215,200,89,105,200,180,206,139,203,211,189,226,161,158,211,182,188,199,178,199,189,171,185,176,234,215,188,159,147,196,183,181,202,196,200,179,199,182,167,189,186,169,187,154,196,142,209,183,181,167,205,212,215,154,176,190,153,161,174,136,204,222,198,201,135,183,220,213,198,191,155,229,194,232,232,234,187,214,158,158,212,192,167,149,161,161,178,127,171,197,157,215,214,127,152,141,200,185,155,113,153,218,221,220,99,167,142,154,193,127,136,142,152,141,185,155,153,99,210,161,161,168,224,190,193,222,198,171,180,197,183,142,138,114,186,129,85,145,162,198,229,228,241,214,229,202,161,215,122,137,142,219,178,179,145,181,167,180,196,169,173,211,212,240,211,209,211,215,206,213,215,211,210,218,214,198,127,201,128,224,171,213,157,202,217,191,219,210,225,234,228,200,213,221,155,136,223,212,200,185,218,219,215,180,142,167,95,186,154,186,137,123,135,162,155,138,129,136,179,142,191,135,185,185,182,188,186,142,185,130,140,205,183,148,167,180,114,135,176,123,135,181,172,100,173,229,209,205,228,228,232,234,241,215,176,204,158,158,201,185,220,224,227,213,231,154,235,225,173,205,232,234,213,176,161,229,215,218,158,182,217,179,215,224,204,162,215,178,171,180,176,147,211,144,144,155,85,142,123,185,185,182,159,186,181,205,240,144,215,144,215,228,206,213,176,226,211,193,228,222,185,212,159,189,180,183,212,213,137,89,197,179,214,188,128,183,185,93,196,201,200,202,134,211,137,180,105,186,213,215,186,197,210,214,111,128,185,130,113,166,142,114,186,129,85,145,162,198,144,215,228,214,142,228,222,212,188,159,189,180,130,183,180,215,138,214,120,119,85,195,123,119,93,215,137,98,196,211,209,232,225,205,226,218,201,113,213,99,200,225,219,203,188,196,229,221,197,223,210,228,214,199,219,188,181,185,201,130,166,187],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #6","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[212,196,191,144,219,167,144,205,205,200,202,213,215,176,176,146,174,193,204,188,127,201,195,212,199,188,222,178,159,220,189,196,130,200,206,168,105,174,179,188,182,167,196,185,200,169,181,234,200,233,211,195,195,180,196,240,219,215,95,206,232,241,229,221,155,211,195,105,228,123,158,135,244,189,180,197,196,167,161,176,127,178,171,157,197,196,219,95,212,214,129,190,153,161,105,218,222,198,222,185,179,198,198,183,166,217,219,183,225,234,215,109,213,114,190,137,179,223,195,161,145,212,224,218,219,198,198,197,187,99,196,211,167,226,176,187,215,182,188,174,179,190,193,199,188,185,196,185,180,196,200,157,202,188,191,233,178,188,211,190,127,132,128,235,232,215,228,240,213,226,242,236,195,212,244,239,218,207,197,217,211,217,219,201,186,181,226,168,229,221,223,228,199,208,199,185,181,234,219,173,166,187,217,210,209,210,235,167,232,234,226,215,229,218,197,217,190,224,201,210,228,214,198,199,128,176,234,201,218,197,219,213,183,211,144,209,203,175,167,211,149,211,206,178,146,153,211,161,142,218,167,159,224,179,130,169,180,154,211,229,173,205,228,161,176,158,182,226,217,179,224,204,162,178,201,200,215,171,213,176,147,225,240,217,213,212,215,95,232,234,215,190,89,120,201,123,199,135,244,113,234,122,128,202,207,220,180,200,144,167,175,173,144,180,188,201,105,106,213,190,182,132,193,162,208,132,199,128,159,130,198,191,176,166,187,159,147,217,225,206,219,181,109,142,193,186,114,215,160,137,221,174,214,223,218,158,188,183,182,167,93,186,196,113,219,100,200,169,215,98,191,166,205,196,211,209,219,183,203,167,234,205,200,146,211,174,193,136,142,188,201,181,159,189,196,213,200,157,180,209,137,226,105,215,186,137,182,199,111,182,167,185,186,130,113,234,152,152,205,234,215,200,168,229,233,215,221,211,228,195,212,155,191,180,191,225,217,142,213,210,232,167,234,138,200,226,241,154,129,178,215,190,137,120,85,201,181,122,198,128,207,180,155,140,99,154,212,196,144,219,234,144,149,205,200,202,213,215,176,178,176,178,174,204,188,127,201,195,212,199,188,222,178,220,189,196,130,200,217,211,217,219,175,186,181,226,221,187,223,201,199,208,185,181,234,219,202,166,187,235,232,225,215,241,195,218,207,197,181,211,193,212,211,179,188,208,183,182,167,186,196,200,215,169,173,205,211,209,215,229,205,226,229,202,204,158,229,147,158,201,185,220,224,215,213,212,217,210,109,205,95,213,153,161,182,191,201,219,180,185,185,196,219,215,98,134,95,138,127,89,105,123,152,141,155,113,88,140,99,225,217,167,187,188,174,132,190,179,201,219,182,167,196,169,188,213,203,212,167,234,105,138,226,226,241,114,154,129,182,179,119,85,124,119,147,199,158,219,195,129,185,153,234,202,207,137,220,191,155,140,225,215,232,229,119,129,218,197,191,209,183,181,167,205,205,180,202,176,106,215,154,176,200,136,142,199,204,193,201,132,183,181,180,222,159,220,213,157,225,191,218,211,200,213,225,202,226,217,224,218,215,212,192,222,227,215,232,229,228,241,214,202,218,158,147,215,225,209,218,203,173,200,215,233,190,158,202,182,214,162,178,195,192,198,191,176,159,147,225,219,167,205,226,176,187,215,188,179,201,199,193,199,219,182,167,180,186,180,234,169,157,188,205,211,215,228,226,241,214,229,218,158,229,158,224,215,144,187,210,144,138,226,129,196,160,197,136,142,190,199,201,210,214,199,211,199,135,159,142,179,234,201,173,140,142,167,142,154,193,127,155,105,152,135,141,155,113,153,155,99,217,217,197,191,225,217,203,175,206,200,225,182,217,179,224,223,219,191,206,209,215,210,137,173,193,226,105,186,176,137,182,201,162,201,128,219,185,185,130,113,213,152,173,176,205,206,168,174,191,212,182,167,186,155,169,205,212,218,194,173,200,206,187,215,158,202,182,120,161,162,129,192,159,147,229,212,217,139,209,219,215,215,149,226,161,161,213,215,214,229,218,221,197,235,217,132,215,224,223,219,200,201,157,240,213,203,215,215,200,213,212,224,218,207,240,206,232,167,225,215,215,95,226,241,154,178,155,211,214,193,179,105,228,123,222,135,200,181,185,189,180,218,215,183,155,225,235,228,222,211,241,216,229,215,158,182,216,179,228,222,198,178,132,191,220,224,239,183,188,159,147,217,206,219,181,109,180,142,193,186,114,215,160,137,221,174,214,223,218,158,188,183,182,167,186,196,113,219,100,200,169,215,98,191,166,205,212,225,218,194,234,229,173,215,200,187,213,202,182,162,158,192,239,176,180,159,154,211,139,229,173,215,149,205,161,176,215,158,182,190,179,204,229,162,178,201,235,180,218,197,231,176,147,225,219,234,215,200,168,233,215,218,221,179,211,223,195,212,155,191,180,225,187,188,226,176,132,190,199,127,132,219,183,128,178,189,196,234,200,202,212,144,183,144,147,188,181,130,187,229,232,225,229,232,234,213,214,202,158,147,235,212,217,183,210,175,201,178,187,201,199,219,202,173,166,187,217,240,217,219,213,210,215,95,232,89,211,223,105,201,161,123,193,158,135,244,113,219,207,225,203,212,211,215,190,158,202,182,182,179,214,195,193,178,189,227,215,215,207,191,196,206,210,144,188,226,202,153,200,161,197,85,210,123,214,199,199,159,234,215,202,144,137,144,95,114,155,174,179,185,182,167,159,172,169,181,215,214,160,119,136,142,195,119,135,128,129,159,142,172,137,134,196,206,211,180,212,211,179,211,173,211,168,225,217,224,222,198,193,127,215,189,155,183,144,187,167,144,201,168,187,215,182,179,191,210,222,198,127,208,199,188,189,185,201,130,155,183,181,173,166,187,240,240,242,236,195,218,129,224,196,154,211,211,183,148,173,205,142,178,193,135,176,182,197,214,161,152,204,147,162,201,128,180,201,172,122,88,215,170,128,152,176,166,173,187,152,209,148,215,181,214,176,135,176,182,158,199,201,183,180,162,196,153,201,172,213,200,202,176,152,154,225,167,225,189,232,234,213,215,158,182,235,179,132,218,198,178,212,176,147,206,168,229,190,218,217,215,228,212,155,198,196,206,205,193,187,229,200,188,228,222,199,128,183,188,154,191,211,194,200,205,206,187,214,233,214,195,204,201,195,213,215,196,225,228,161,190,193,193,220,171,218,198,196,144,219,144,85,136,142,191,123,128,185,185,182,180,93,186,130,130,196,98,152,152,205,191,211,200,206,200,233,195,195,222,220,196,176,218,178,132,215,127,132,128,178,189,180,217,217,139,209,219,235,167,215,149,234,226,161,213,215,229,229,221,197,217,190,132,224,223,201,228,222,199,200,128,234,201,218,197,219,213,183,211,225,106,146,217,224,193,127,195,212,189,180,183,225,215,232,229,129,218,197,196,219,105,211,187,188,187,178,215,176,178,182,179,132,190,214,127,183,178,189,185,197,196,191,142,219,215,175,181,167,234,211,180,200,176,168,154,211,161,132,218,127,135,183,128,180,179,155,187,155,212,225,235,229,200,206,213,158,202,182,235,120,119,161,229,178,129,192,185,215,122,198,191,147,217,219,210,180,168,178,187,201,219,155,234,215,200,106,176,146,178,190,222,198,127,127,178,198,183,191,180,197,210,175,215,226,233,218,224,217,215,201,195,212,217,185,234,216,147,225,209,213,215,212,173,225,215,214,176,218,158,202,182,182,179,215,193,193,162,215,178,189,227,215,213,221,220,191,176,197,147,217,240,234,240,106,229,215,176,242,178,188,236,190,228,222,198,127,127,217,222,178,191,154,209,218,215,203,212,173,211,225,214,176,190,218,202,215,204,193,162,201,192,189,227,213,198,207,191,176,159,147,196,200,196,139,175,149,222,193,189,226,202,215,190,200,179,199,193,199,219,182,186,185,176,234,205,200,206,142,167,181,154,161,188,179,215,173,155,235,167,222,211,226,241,216,190,216,132,191,222,198,191,206,210,211,161,161,190,153,161,182,216,190,179,201,219,191,189,171,198,215,191,211,225,193,224,198,127,215,212,189,180,155,183,217,206,219,183,234,215,200,213,114,190,137,221,85,179,223,195,161,145,212,224,113,218,219,198,198,197,187,99,196,212,144,215,144,142,213,161,147,158,188,181,130,128,197,203,175,193,201,212,174,211,199,167,186,215,181,205,217,191,142,219,210,232,225,234,228,200,226,154,129,178,190,137,221,85,223,195,161,181,113,219,180,155,196,211,203,212,234,200,105,138,232,226,241,158,127,182,226,179,85,214,124,119,147,158,178,135,185,195,129,188,222,155,185,153,88,221,159,140,209,215,210,137,173,226,105,215,186,176,137,182,201,199,185,186,130,113,234,213,152,173,176,152,205,142,167,154,136,142,161,145,159,122,198,128,173,155,211,209,215,181,215,197,210,214,158,183,180,155,153,201,170,99,181,199,183,217,240,219,210,167,138,226,241,154,178,221,89,223,195,161,123,193,158,244,113,219,180,155,140,196,154,196,139,234,211,189,201,200,161,178,188,182,190,179,210,199,185,182,167,222,220,186,171,176,169,188,176,225,209,219,173,205,95,212,202,215,176,215,160,221,158,200,161,182,179,85,223,211,162,178,142,179,196,181,176,173,147,137,95,155,176,120,119,85,123,119,185,130,172,137,229,210,139,232,149,232,234,176,190,229,198,222,180,198,191,213,194,212,200,187,218,215,200,222,220,207,197,197,211,144,139,209,175,211,144,215,149,193,206,212,161,168,178,146,161,211,179,218,182,188,159,224,186,171,130,215,169,205,144,181,144,105,178,124,183,188,159,162,113,173,211,212,211,206,209,232,228,189,240,241,168,225,106,213,215,233,242,236,190,215,210,185,212,244,176,197,213,155,217,217,219,211,222,212,161,161,221,211,190,193,223,211,198,208,217,217,171,216,212,144,142,209,167,144,213,215,154,120,119,195,128,145,188,172,130,213,198,137,152,152,196,225,228,161,190,193,218,193,220,189,171,218,191,234,149,189,222,176,226,241,229,182,224,235,193,176,180,157,154,196,144,139,219,234,144,149,200,213,215,176,178,176,178,174,204,188,127,195,212,199,188,222,178,220,189,196,130,200,218,217,215,222,198,193,127,195,212,183,217,225,217,211,161,215,161,193,223,193,191,171,179,219,215,216,240,232,225,211,215,228,206,213,226,214,178,132,211,136,179,142,211,127,212,244,182,128,157,205,210,219,222,212,161,161,229,221,224,211,190,193,193,198,208,171,211,225,183,180,106,191,214,222,198,127,185,219,185,185,183,181,148,137,214,155,135,176,85,195,123,129,93,215,196,176,218,178,132,190,215,193,127,132,189,180,154,137,173,142,193,127,135,161,152,147,162,199,141,128,180,155,162,130,234,122,88,128,202,134,166,173,210,180,201,168,178,199,225,217,187,188,226,176,178,132,201,199,188,127,132,219,128,178,189,196,234,200,202,211,148,205,176,135,176,182,120,119,195,210,204,201,128,185,181,130,172,198,137,134,196,211,225,183,180,226,105,106,178,215,146,191,195,212,185,219,185,185,183,181,213,235,203,232,225,215,200,228,213,226,241,195,244,239,218,207,197,240,215,167,211,215,228,193,206,212,226,106,214,178,211,136,179,142,211,127,132,212,182,186,155,215,169,157,205,197,210,203,175,201,161,229,193,228,199,171,197,217,200,197,144,217,219,203,175,144,142,187,221,197,136,142,223,210,193,219,189,185,201,130,219,155,95,138,127,155,89,105,123,152,135,141,145,155,113,88,198,140,99,95,138,193,127,89,105,123,152,141,155,113,153,198,140,99,206,142,183,232,167,225,215,228,95,138,213,226,154,229,89,214,179,105,228,123,222,193,200,181,218,215,180,155,140,191,181,234,180,95,200,129,174,105,218,222,198,193,211,145,183,185,224,215,198,183,187,225,228,161,190,193,218,193,220,189,171,218,198,211,225,106,217,193,224,127,215,195,212,189,180,183,234,206,213,218,226,215,212,224,180,211,209,225,213,193,137,89,105,212,213,240,235,214,235,119,214,161,218,119,244,224,239,122,215,137,191,240,235,167,234,222,189,200,211,176,182,216,193,191,244,239,180,157,191,215,200,106,190,176,178,211,190,127,132,178,198,183,180,197,240,215,167,211,215,149,228,193,206,212,226,168,106,214,178,211,136,179,142,211,132,212,182,188,159,186,171,130,155,215,205,206,203,234,211,206,222,200,212,226,225,158,224,211,211,199,215,199,222,185,234,216,180,159,147,229,154,210,139,173,149,205,215,158,182,190,179,204,229,162,178,218,197,157,147,197,210,203,161,161,229,224,190,193,193,171,197,215,105,213,193,137,89,226,105,124,144,232,173,144,228,95,232,182,226,136,142,123,152,162,141,159,224,176,234,189,222,176,226,241,229,190,182,224,235,193,191,176,180,157,219,205,202,180,181,217,217,173,240,226,216,176,242,146,178,224,188,236,216,190,162,127,219,244,178,220,224,185,219,155,147,209,215,180,186,213,215,214,178,193,127,210,152,141,185,155,88,166,191,240,235,167,234,222,200,211,216,216,193,217,244,239,180,157,216,217,210,181,105,186,186,158,182,174,179,214,179,201,124,188,178,219,183,182,167,220,186,196,200,169,215,134,173,159,147,99,205,200,212,187,203,175,173,142,188,213,229,215,158,182,182,179,136,142,190,191,228,222,198,178,135,159,185,198,140,147,225,217,210,181,105,186,186,158,182,174,179,214,179,201,124,188,178,219,183,182,167,220,93,186,196,200,169,215,134,173,159,99,205,212,196,144,219,167,234,144,149,205,200,213,215,176,178,176,146,174,204,188,127,201,195,212,188,178,159,220,189,196,130,213,200,180,229,154,212,228,105,228,232,234,213,215,176,137,127,89,105,152,204,124,141,220,224,227,155,153,88,231,176,181,211,212,179,188,208,183,182,167,186,196,200,215,169,173,205,154,211,148,137,173,205,135,176,182,197,120,119,195,204,214,162,128,185,200,181,130,201,170,198,137,176,134,197,196,183,175,193,186,153,161,179,182,179,215,187,205,210,181,168,155,181,191,211,209,219,183,203,175,181,167,205,205,200,202,176,106,154,211,136,142,201,132,183,181,180,222,220,213,157,191,181,180,193,129,229,190,89,174,85,228,222,211,188,183,224,196,200,215,198,187,212,225,205,95,213,213,114,215,186,176,155,226,123,218,204,201,212,180,213,221,154,196,191,139,173,211,189,201,200,161,188,182,179,210,162,208,185,182,167,222,186,171,176,169,188,176,154,211,148,173,205,180,186,176,193,127,135,176,182,214,161,152,204,162,201,141,180,155,201,172,88,215,170,128,202,152,176,166,152,211,225,144,235,203,212,144,228,206,226,215,242,197,236,226,161,214,193,158,199,235,219,185,159,189,239,234,231,221,207,220,148,137,95,155,135,176,214,85,195,123,119,129,93,172,215,217,240,219,213,210,215,95,232,241,221,89,211,223,195,105,161,123,193,158,135,244,219,196,191,181,180,212,214,129,153,105,218,222,198,211,145,183,222,185,215,198,183,166,187,211,173,211,222,193,201,200,161,161,182,153,182,197,179,210,214,162,199,182,222,186,171,176,201,176,205,211,191,211,222,193,161,161,216,182,153,197,179,214,208,182,186,171,201,159,147,205,210,205,228,222,240,211,226,241,168,176,242,218,182,146,178,182,197,236,217,190,215,224,218,204,198,199,127,201,191,244,178,234,201,155,202,188,176,154,144,213,203,212,144,200,205,138,129,176,218,204,111,195,93,162,130,218,170,98,220,176,140,213,212,215,213,233,211,212,224,218,220,175,181,180,201,199,181,188,187,178,176,158,182,197,179,132,210,214,193,127,178,185,183,178,180,201,191,147,206,233,176,178,193,127,132,128,178,215,214,160,119,136,142,195,119,135,128,159,142,172,215,137,134,140,196,197,206,175,174,211,188,199,182,167,186,185,169,181,205,215,194,105,214,193,226,152,124,185,113,153,213,215,203,109,200,95,114,214,155,111,200,100,207,197,240,206,232,167,225,215,215,95,226,241,178,155,211,214,193,105,228,123,222,135,244,181,185,189,180,218,215,183,197,155,197,196,191,211,142,219,215,175,181,211,180,138,200,168,154,155,211,132,218,193,127,135,145,183,222,128,180,179,155,187,155,140,222,193,211,226,161,161,216,182,158,153,182,216,199,178,208,189,171,185,234,202,159,147,205,217,200,197,144,217,219,187,144,221,211,136,142,223,190,210,193,135,219,159,189,185,201,219,140,235,222,226,216,216,132,217,244,222,239,198,216,191,217,217,210,219,211,222,212,161,161,221,224,211,190,193,223,193,211,198,208,217,217,189,171,219,213,215,212,215,114,214,200,162,170,220,240,232,211,215,228,206,213,226,214,178,211,136,179,142,211,127,212,182,128,186,215,157,205,217,240,217,219,213,210,167,215,95,138,232,241,89,223,201,161,123,193,135,244,113,219,207,180,140,154,211,181,137,173,205,105,226,214,135,179,204,124,162,199,188,201,111,128,183,182,196,185,130,153,234,200,169,152,176,152,147,99,142,158,147,135,145,185,198,173,155,215,200,218,195,200,224,207,197,148,137,155,135,176,214,85,195,123,129,130,215,196,196,206,219,187,193,176,178,190,228,198,127,127,132,180,178,189,196,217,139,219,149,211,176,221,182,161,216,223,191,176,180,179,219,215,217,139,219,175,149,189,211,176,216,221,182,161,216,223,176,180,179,215,167,105,95,186,137,155,89,105,124,135,180,181,166,187,210,206,210,211,211,222,224,211,182,190,179,201,198,208,217,219,217,179,197,198,215,216,191,217,196,206,219,205,193,187,196,229,221,200,188,132,222,199,193,188,196,219,142,186,214,229,190,153,89,161,85,105,228,211,222,185,142,198,215,191,176,176,224,215,127,132,178,171,157,183,203,215,175,167,234,211,168,106,153,211,161,174,193,136,142,218,188,132,181,224,189,196,179,200,155,157,180,212,213,186,137,135,197,214,199,111,182,167,185,186,201,172,169,202,205,197,186,181,229,225,218,215,232,232,234,214,202,158,235,212,144,187,210,144,211,138,212,226,129,196,160,197,136,142,190,201,210,214,211,199,135,159,189,179,234,201,219,173,140,211,225,106,146,217,215,193,195,128,189,180,161,176,127,132,178,171,157,212,225,235,229,200,206,213,190,158,182,235,120,179,161,229,178,195,185,227,215,201,198,191,154,225,211,205,176,190,158,202,226,217,193,224,204,193,162,215,201,200,227,198,221,220,191,176,197,159,147,200,144,142,187,203,175,175,144,142,186,168,229,215,158,182,179,136,142,190,191,228,222,198,193,178,135,145,159,189,185,198,173,155,215,194,225,105,228,187,213,214,127,152,141,185,227,155,113,153,231,99,235,232,225,215,213,241,239,218,197,240,234,173,200,229,182,105,147,158,235,244,227,113,180,159,147,95,138,129,155,161,123,128,185,142,122,152,134,152,217,219,109,193,105,114,214,215,160,137,221,179,223,220,100,215,98,173,159,196,217,209,219,210,173,109,114,215,89,182,105,201,162,128,219,185,180,93,185,100,215,181,98,176,134,200,225,144,142,187,203,175,175,144,142,187,229,136,142,190,228,193,145,159,189,185,201,198,155,183,210,175,186,187,201,208,181,202,166,187,217,211,219,210,235,234,161,225,214,229,233,229,221,132,201,228,214,222,199,215,185,171,234,219,157,183,202,197,211,142,213,167,173,213,154,193,197,218,214,119,162,111,185,145,212,129,180,220,93,162,142,201,218,207,210,191,206,211,201,222,200,226,158,211,198,199,178,191,185,179,234,197,215,216,159,147,217,217,219,211,222,212,161,161,221,211,190,193,223,193,211,198,208,217,217,171,216,217,225,206,217,210,181,180,142,105,186,215,160,179,214,179,223,218,124,188,183,182,167,93,186,196,219,200,169,215,98,191,166,99,205,217,219,213,210,211,240,234,229,229,242,221,236,193,136,142,223,195,201,188,185,189,239,180,130,219,196,212,225,213,212,229,211,228,213,215,197,235,226,214,193,195,210,229,235,219,189,185,201,215,221,207,220,196,217,154,217,219,173,228,222,222,211,226,241,106,216,242,221,224,236,216,223,218,162,127,127,219,191,220,224,185,239,219,188,211,193,212,211,174,188,208,183,182,167,186,196,200,215,169,205,144,186,127,142,152,158,181,185,159,130,88,187,235,228,226,241,195,212,244,129,200,239,196,240,213,203,212,228,213,226,212,218,148,137,214,129,155,135,176,85,195,123,129,196,138,160,155,158,158,185,128,140,144,142,187,175,175,144,186,168,187,154,229,215,182,179,136,142,190,228,222,198,193,178,145,159,189,185,198,173,155,217,240,240,106,229,215,176,242,146,178,188,236,179,190,228,222,198,127,127,217,217,222,178,159,217,200,197,144,217,219,187,144,211,138,221,211,136,142,223,190,210,135,219,159,189,185,201,219,140,197,183,215,167,212,176,168,214,153,161,174,132,193,127,188,135,181,167,128,224,189,196,200,155,169,157,180,142,167,186,154,193,155,89,105,135,141,113,153,155,99,191,206,168,229,190,218,215,228,222,195,212,155,198,225,211,215,202,226,217,224,218,215,192,220,189,227,218,181,105,178,124,185,180,185,113,153,170,173,99,211,144,142,148,137,167,144,205,213,215,154,176,160,135,176,119,201,129,200,130,142,130,213,134,197,155,154,197,175,173,215,222,211,226,216,233,218,224,216,217,215,224,211,162,199,195,212,191,220,234,201,202,176,211,225,181,226,105,178,146,191,199,195,212,132,219,183,128,234,183,202,215,137,138,214,129,176,195,119,135,129,130,142,172,140,196,200,183,193,153,161,179,193,182,186,187,205,196,191,211,142,219,215,175,181,211,180,200,176,168,154,155,211,132,218,193,127,135,183,222,128,180,179,155,187,155,140,191,181,234,193,95,138,200,129,174,105,123,222,198,193,211,188,145,183,212,167,185,224,196,180,200,215,183,187,140,142,105,95,138,193,137,89,123,152,124,145,153,198,140,217,225,206,219,109,193,186,114,215,137,221,174,179,223,158,220,93,113,219,100,98,173,159,211,209,95,213,186,155,226,180,213,221,212,225,191,218,194,229,173,215,240,200,187,213,242,202,182,236,211,158,229,162,192,185,215,239,128,180,159,147,197,183,203,186,178,208,166,187,191,215,200,190,188,211,190,132,128,198,180,212,196,191,144,219,183,167,144,205,205,200,202,213,215,176,146,174,193,204,188,127,201,195,183,222,159,220,189,196,130,213,200,157,191,240,217,213,210,167,138,232,200,226,241,154,190,137,120,223,201,161,113,122,219,198,128,207,180,155,140,144,144,147,188,181,130,187,217,200,197,144,217,219,187,144,211,138,221,211,136,142,223,190,210,135,219,159,189,185,201,219,140,139,175,149,222,193,189,226,202,216,190,182,179,193,199,193,199,219,185,176,234,198,191,205,211,212,206,209,232,189,240,213,161,241,225,106,213,233,236,190,215,132,185,212,244,176,197,213,155,187,183,180,105,106,187,215,146,182,197,179,190,191,210,214,178,195,212,132,185,188,181,128,189,201,200,225,144,187,203,175,175,144,142,229,215,182,136,142,190,228,193,135,145,159,189,185,198,155,148,95,214,155,135,85,195,123,93,98,196,144,173,144,228,95,232,127,182,226,136,142,123,152,124,162,141,159,224,95,129,105,123,158,158,142,128,152,134,152,215,195,218,129,196,226,214,161,218,244,224,122,128,211,212,213,186,137,89,135,176,197,179,105,210,214,111,182,167,186,172,169,181,202,205,217,197,217,210,175,234,218,158,182,217,211,215,224,201,178,217,219,217,222,185,219,180,159,147,211,209,95,114,186,155,123,162,218,213,170,221,220,211,191,173,211,222,193,201,200,211,161,216,182,153,161,197,216,190,214,162,222,179,201,202,205,200,142,193,187,178,153,161,187,199,193,181,198,205,197,211,219,215,211,205,180,138,155,211,123,193,127,145,180,222,180,179,198,183,166,187,140,225,211,209,218,215,229,205,228,241,229,202,218,147,201,235,185,224,213,176,176,146,132,224,215,132,128,178,215,105,193,137,89,226,105,124,144,183,144,186,158,188,181,159,130,88,187,197,203,175,211,201,229,228,193,199,189,142,167,95,186,154,137,123,135,180,170,155,140,211,215,226,218,158,229,158,244,224,128,196,187,167,205,188,193,154,160,190,182,186,142,155,205,206,144,139,215,232,167,144,149,228,213,161,226,161,241,225,106,211,215,132,185,212,244,159,155,240,206,232,167,215,215,95,138,226,241,154,229,178,214,195,105,228,123,222,193,158,135,244,181,180,197,155,140,196,183,105,155,89,136,142,105,124,180,181,113,170,166,187,211,196,206,144,219,144,205,193,95,155,85,123,214,128,180,159,196,202,134,181,95,105,186,178,155,136,142,111,183,188,130,154,212,225,218,194,187,226,213,229,105,147,162,235,244,192,222,113,176,99,229,225,211,217,139,209,215,149,161,215,176,182,235,190,132,223,201,219,200,185,218,197,213,157,212,196,206,219,109,205,193,95,226,213,197,191,210,214,199,128,180,93,185,234,201,196,100,202,98,134,206,232,225,211,215,241,214,132,136,142,198,127,244,200,188,128,171,130,218,157,209,215,137,173,226,105,215,186,176,174,182,162,199,111,182,167,186,130,113,234,213,169,152,173,176,152,205,209,148,215,181,214,176,135,176,182,179,158,124,199,188,201,183,162,196,153,234,201,172,213,200,202,152,176,152,99,142,95,138,186,154,137,123,135,180,170,155,140,240,206,232,225,211,215,206,213,176,226,241,178,132,211,193,136,179,198,211,127,135,244,200,128,218,157,212,209,148,137,213,129,135,176,136,142,135,129,159,130,142,197,140,229,154,212,228,105,228,232,234,241,213,215,176,137,127,89,105,204,124,141,220,224,227,155,153,88,231,176,144,142,187,175,167,175,144,186,168,187,154,215,158,182,179,136,142,190,191,222,198,193,127,178,145,159,189,185,155,198,183,181,173,155],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #7","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,217,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[211,139,209,183,181,167,234,211,149,180,189,201,161,196,178,200,188,190,136,142,199,218,199,208,185,183,181,180,171,176,213,188,180,181,127,195,212,183,155,191,211,205,206,200,214,214,204,201,129,222,220,215,206,142,213,167,211,138,240,234,176,154,178,229,242,89,236,132,193,179,161,222,198,181,113,183,207,220,155,140,176,225,106,146,217,132,193,224,215,195,212,132,128,191,234,211,205,142,186,200,202,168,105,160,200,211,89,132,85,193,127,185,180,224,142,180,191,206,213,232,181,228,180,105,200,226,186,229,160,221,174,120,124,188,183,182,167,93,186,196,142,153,122,100,200,169,128,98,166,180,205,187,181,149,188,178,190,158,197,190,214,193,178,185,183,189,201,198,191,159,147,234,215,240,200,106,190,176,242,146,236,222,198,127,178,198,183,180,240,215,195,129,200,224,196,225,142,167,142,154,215,197,187,210,214,222,198,127,219,145,188,185,201,130,155,198,183,155,229,211,212,215,215,189,106,213,214,182,235,198,127,132,185,200,202,196,240,139,219,183,215,167,215,228,189,161,226,161,214,154,176,178,174,211,136,188,127,135,195,212,183,212,181,178,171,196,176,200,225,225,139,209,218,213,215,212,149,161,176,215,214,215,202,182,190,192,227,185,180,197,221,157,207,220,197,217,229,142,219,210,203,167,200,105,228,138,206,240,154,129,229,178,229,137,221,236,226,211,119,85,223,193,119,147,195,129,181,239,219,231,221,137,155,140,99,154,212,142,187,186,176,187,215,154,176,176,146,136,142,190,191,204,193,127,201,135,195,212,145,178,189,180,185,198,157,181,173,155,105,105,186,229,190,161,211,124,212,200,222,153,198,215,134,173,99,196,142,139,215,181,167,211,149,205,180,206,202,161,154,176,178,200,199,218,127,135,195,212,199,183,180,178,224,171,187,155,154,196,211,206,217,219,148,215,210,173,205,105,193,214,176,158,135,176,201,204,158,124,162,201,219,185,162,185,153,172,213,181,176,147,99,217,225,240,217,219,240,158,182,179,223,178,219,222,219,159,217,240,219,183,203,212,215,109,105,232,234,114,221,127,119,223,193,124,119,147,158,145,195,244,129,155,153,219,100,221,137,98,220,211,139,209,183,181,211,205,206,189,201,161,161,200,188,190,136,142,199,218,199,208,183,181,180,159,224,171,176,213,188,180,225,142,167,142,201,168,154,229,197,210,228,214,222,198,127,199,219,145,188,185,201,130,155,198,155,240,228,240,213,226,242,236,195,212,244,129,200,239,196,197,206,203,180,201,211,154,212,240,234,215,176,235,244,222,239,113,176,99,217,225,209,219,173,188,212,202,114,215,176,221,158,200,89,182,223,105,199,199,211,162,178,128,93,130,179,213,100,152,176,152,147,142,142,154,155,135,145,198,155,187,188,226,176,215,182,179,190,199,188,185,189,196,185,180,234,200,157,202,191,225,240,217,142,210,109,200,232,234,200,186,178,215,190,127,226,223,201,152,141,145,244,181,155,142,100,198,88,221,98,180,232,228,213,241,235,120,119,195,212,200,137,196,211,142,215,167,234,201,200,105,196,176,146,193,218,199,127,135,208,195,212,199,145,185,178,189,196,166,180,187,155,140,215,193,200,220,189,171,218,221,220,211,209,205,226,229,127,204,229,201,185,224,113,213,88,99,212,194,211,187,225,213,215,218,182,120,179,119,215,193,161,193,129,185,189,185,201,149,222,189,190,182,174,179,190,193,188,178,185,189,196,185,196,200,198,202,191,240,209,205,235,204,147,201,244,185,220,239,213,217,200,212,197,217,219,211,95,212,213,155,211,85,223,123,193,219,189,185,219,134,186,136,142,158,181,185,159,88,166,187,210,234,215,211,201,212,226,233,218,158,211,215,201,211,178,199,219,222,185,180,159,147,217,154,196,225,211,217,219,205,105,214,158,182,135,176,179,223,204,158,124,178,111,185,180,172,219,215,181,159,152,147,99,105,106,146,179,127,188,195,196,185,200,181,213,233,190,182,179,119,193,158,119,178,185,185,201,122,198,128,137,191,217,211,210,213,210,167,229,228,226,190,214,201,210,228,214,222,198,229,199,235,128,176,234,197,219,215,231,183,202,220,197,234,233,211,218,195,200,197,180,142,183,211,193,138,206,232,176,129,89,132,195,198,158,211,127,188,145,244,182,167,128,186,200,215,169,157,197,140,196,205,217,154,217,219,232,173,232,106,229,176,221,146,178,188,235,190,223,218,162,127,127,217,219,217,212,178,185,219,216,176,215,105,213,186,229,190,195,161,228,211,124,212,200,222,224,93,153,218,198,215,134,173,99,196,191,235,144,240,242,158,155,89,182,236,235,211,105,210,229,147,178,159,215,113,201,191,147,99,210,225,225,209,167,228,215,176,182,226,132,198,219,200,215,185,176,213,157,197,217,197,240,217,175,158,182,178,219,222,185,219,159,147,211,181,167,181,105,178,215,178,182,188,197,179,190,191,214,185,185,180,185,209,215,180,186,213,215,214,178,214,210,161,158,185,122,215,128,166,211,215,228,241,229,218,229,185,215,88,99,211,217,219,186,226,168,229,221,223,228,198,199,127,185,219,181,234,155,229,142,203,212,167,138,206,240,234,154,129,229,178,229,137,221,236,120,226,119,193,85,228,195,181,189,180,122,221,128,220,155,140,99,212,225,218,194,200,187,225,213,215,218,197,120,215,193,210,161,215,219,195,192,185,180,201,217,212,217,187,109,95,212,213,196,155,190,199,201,211,128,219,189,93,185,179,201,219,100,98,152,134,211,196,219,148,193,186,137,89,135,176,197,105,191,210,214,111,185,180,186,185,202,205,212,211,144,142,209,167,144,213,215,154,145,200,130,213,198,152,197,155,152,197,183,203,186,178,208,166,187,175,206,229,190,218,215,228,198,142,173,142,186,181,106,213,154,146,158,182,132,136,142,162,178,195,212,132,145,128,159,198,191,159,155,147,211,234,215,214,120,211,119,214,119,215,137,180,181,180,186,226,158,120,119,195,218,199,158,183,200,220,185,234,202,197,147,196,154,211,173,205,226,105,193,127,174,214,179,201,161,152,204,147,162,188,141,182,167,155,186,185,234,169,88,215,170,128,173,147,205,229,211,217,219,173,205,222,222,211,176,229,221,182,224,182,223,228,204,222,198,229,162,201,132,219,191,128,185,218,183,176,217,191,225,219,175,200,233,215,221,179,211,223,191,180,217,219,219,187,210,167,221,132,223,190,182,180,189,186,196,219,205,209,215,173,211,215,176,190,218,158,182,120,215,162,129,189,198,191,176,159,147,154,210,211,139,218,215,205,161,176,158,202,226,190,204,178,192,200,227,180,197,221,220,191,159,147,211,206,137,109,205,188,193,95,114,153,155,197,210,214,159,100,202,154,209,215,205,214,176,120,214,215,204,201,129,213,215,206,106,233,146,193,195,183,229,211,212,210,215,210,189,214,235,210,214,198,198,127,132,176,231,202,197,206,168,218,215,228,222,198,155,232,228,213,241,235,120,119,195,119,212,200,137,196,211,193,153,211,161,174,188,208,183,179,173,183,181,167,180,176,105,190,158,188,197,190,191,210,193,178,185,188,180,201,198,157,188,191,159,147,203,167,205,95,138,202,106,214,129,155,200,193,199,123,132,145,185,180,185,224,189,198,157,166,180,140,218,194,144,187,233,215,190,182,197,179,210,214,193,158,119,159,185,201,128,137,211,217,183,226,106,229,221,146,223,228,222,198,199,127,195,212,219,181,234,183,202,173,166,187,225,240,219,240,168,229,215,242,221,182,236,179,223,228,178,195,212,244,222,155,159,154,217,240,206,203,173,240,212,226,242,182,197,236,211,162,199,217,244,220,224,201,202,176,212,225,218,203,176,161,213,215,217,214,224,195,195,192,171,185,180,215,207,196,217,225,217,219,226,168,221,146,158,182,179,223,178,195,244,224,239,155,159,147,194,200,187,215,215,158,182,182,217,179,214,193,224,195,215,178,195,215,211,219,205,211,161,161,216,187,196,182,158,182,216,193,179,199,193,178,191,167,180,189,171,198,169,202,191,159,147,211,144,210,175,211,138,212,187,129,160,211,187,136,142,201,214,211,193,199,135,185,142,234,130,202,140,217,232,228,229,215,235,179,132,217,217,128,224,183,216,188,159,217,210,191,175,211,193,222,226,202,158,224,199,198,199,178,217,217,186,185,234,197,202,216,159,147,205,168,218,217,215,228,222,193,191,232,181,225,109,228,180,105,193,226,186,229,160,174,120,228,193,124,188,183,182,167,93,186,196,142,153,122,100,200,169,128,98,166,180,205,209,183,186,215,214,178,120,214,210,185,122,213,215,166,187,206,168,105,179,188,183,182,196,200,169,240,206,213,183,215,109,105,232,241,114,229,120,211,179,228,193,124,145,244,182,142,153,122,100,198,128,207,220,187,99,205,229,191,225,240,142,167,109,228,234,200,226,114,154,186,129,193,215,190,152,199,141,219,244,234,100,198,231,202,98,191,180,155,154,196,225,211,206,217,219,148,205,105,193,214,158,182,135,176,204,158,124,162,178,201,111,219,185,162,185,153,172,219,215,181,147,99,212,144,215,144,142,213,214,120,119,214,195,188,130,215,137,211,173,205,226,105,214,176,193,127,174,182,179,152,204,162,199,188,201,141,182,167,196,234,213,200,169,88,202,173,176,217,210,180,168,178,219,155,173,206,142,213,183,215,206,232,234,129,229,137,120,211,193,85,179,228,222,145,181,189,180,122,128,207,220,99,212,211,144,219,144,205,205,222,206,202,161,213,215,176,178,182,200,174,190,199,204,188,201,208,188,180,196,130,213,200,180,154,197,211,215,211,109,205,188,114,196,229,211,89,105,191,199,228,204,222,199,201,185,185,213,100,98,191,134,159,138,214,129,214,195,135,128,129,142,215,152,134,140,152,196,167,225,229,189,222,213,224,218,235,212,220,215,176,231,157,191,159,154,211,203,211,200,205,225,217,195,204,215,201,195,189,196,196,240,203,215,232,211,228,189,213,161,226,241,225,214,176,178,153,211,174,190,190,136,142,188,215,127,195,212,212,244,181,167,178,196,176,179,200,188,211,212,105,213,174,210,188,185,180,185,196,153,200,170,99,197,210,144,215,175,225,144,222,232,212,213,214,176,218,182,146,178,188,217,190,224,211,198,127,195,188,178,159,239,130,218,215,188,210,225,206,217,210,211,215,190,153,224,161,193,189,179,197,219,198,215,211,205,142,176,182,210,204,214,119,201,185,129,200,181,176,173,197,154,210,218,215,161,176,202,226,190,192,200,227,180,197,198,221,191,159,232,167,228,222,232,211,216,190,216,229,191,222,224,198,191,212,211,209,183,211,205,205,206,189,201,202,161,161,200,188,190,136,142,199,218,201,208,183,181,180,159,224,171,176,213,188,180,191,206,168,229,190,228,155,198,217,210,206,210,175,211,193,222,202,161,190,153,224,182,190,179,199,201,198,217,219,217,189,197,198,191,197,142,139,183,167,167,215,149,193,95,232,240,212,161,241,168,106,154,153,155,161,214,123,188,135,132,200,181,167,185,186,171,196,218,200,155,215,169,215,155,217,225,217,211,211,215,190,223,211,189,179,197,219,198,186,181,215,176,146,158,182,197,179,132,187,210,178,195,212,132,188,181,128,201,130,173,166,187,209,215,203,138,129,136,142,135,195,200,130,142,172,207,134,197,140,206,106,233,176,146,193,128,178,148,181,215,180,186,226,158,182,176,120,179,195,201,218,188,158,178,219,183,200,220,196,185,172,200,170,152,197,159,152,147,196,217,211,217,219,183,226,229,221,223,201,228,198,199,127,181,234,219,155,202,173,166,187,211,181,181,105,178,215,188,190,191,183,185,185,154,211,183,173,215,142,178,197,214,119,162,129,200,220,201,218,152,176,173,197,187,152,181,176,158,182,197,179,132,187,210,214,127,178,132,188,181,128,178,201,173,166,187,240,240,242,236,212,200,224,197,139,183,203,232,175,167,225,215,149,211,213,161,161,241,168,154,146,153,155,161,174,188,135,244,200,181,167,171,196,179,218,200,155,217,219,211,211,212,190,221,211,223,193,211,215,208,189,212,225,175,138,181,213,129,229,215,160,182,182,179,228,222,135,208,159,173,140,142,167,142,154,136,158,147,185,155,142,167,142,154,155,135,145,88,155,240,215,193,206,232,176,241,129,137,174,132,211,193,85,195,161,198,158,211,188,145,244,182,167,189,186,196,113,180,200,215,169,198,183,197,187,196,205,197,196,219,211,228,142,186,212,213,176,153,89,161,132,214,85,158,127,212,200,128,142,180,179,218,215,166,180,154,210,211,218,215,205,161,176,202,226,190,204,192,200,227,180,197,221,220,191,159,168,218,215,228,222,198,193,155,191,213,194,212,211,215,200,187,225,217,224,218,215,222,218,221,220,212,194,232,205,228,228,95,232,234,187,213,114,215,186,176,155,218,204,201,180,227,231,211,215,234,215,205,240,242,236,201,220,128,217,226,241,216,229,190,235,132,217,217,222,198,216,240,234,240,229,215,242,146,236,228,222,198,127,195,191,139,203,232,175,167,225,211,189,213,161,161,241,225,146,153,161,174,188,215,127,135,244,200,181,167,196,176,179,218,200,169,154,217,211,173,215,193,201,153,161,182,197,217,211,215,224,214,162,208,217,217,220,179,201,215,202,176,225,211,167,229,215,228,189,215,176,182,132,198,201,235,219,200,215,185,176,213,231,176,217,219,211,211,212,215,190,221,211,223,211,215,208,189,219,211,209,194,232,225,205,228,95,187,186,218,201,212,180,227,213,231,229,234,109,228,138,234,226,241,114,186,193,158,197,85,210,214,135,180,188,222,227,201,130,100,231,159,140,147,232,167,228,222,232,234,211,216,216,132,229,222,224,198,191,196,105,153,161,208,179,154,217,210,235,232,205,228,226,241,168,176,182,201,218,204,199,195,212,217,217,239,234,201,216,176,211,211,181,205,176,182,197,214,161,204,214,147,158,201,183,201,213,215,128,202,176,217,226,241,190,235,132,217,222,198,188,191,217,225,206,219,137,193,105,215,221,127,135,223,195,161,218,111,141,128,200,155,162,130,153,219,128,152,173,191,152,196,154,175,138,168,187,215,129,176,155,123,193,162,127,208,189,155,183,191,176,159,217,206,219,137,193,105,215,221,127,223,195,161,218,111,141,128,200,222,155,162,130,153,219,128,152,191,196,211,139,209,183,215,181,167,211,205,206,189,201,202,161,161,178,200,188,190,136,142,199,218,208,199,183,181,180,224,171,176,188,225,218,194,173,144,95,187,226,241,186,193,229,155,182,136,142,123,162,235,192,180,222,159,197,206,203,175,180,201,211,199,183,215,142,178,218,119,199,129,220,172,218,202,207,152,173,187,152,147,206,211,142,212,178,211,211,181,217,217,219,183,180,226,106,229,178,221,146,223,201,228,222,198,199,127,195,212,234,219,202,173,166,142,215,167,234,180,138,105,146,155,200,193,199,218,199,127,135,195,212,199,145,185,224,189,196,166,180,187,155,140,196,219,234,215,109,228,142,186,200,212,213,114,160,137,153,161,214,198,193,158,212,200,142,113,180,218,100,215,183,98,166,180,154,144,232,144,109,228,138,182,85,136,142,162,135,111,159,220,224,162,100,170,98,176,140,219,234,144,205,205,222,206,211,202,161,216,213,215,176,178,182,200,174,216,190,199,204,188,201,188,180,220,196,200,180,181,226,158,179,195,147,199,188,158,183,220,196,185,234,122,200,147,196,217,217,219,210,229,211,200,95,233,221,155,235,120,119,193,136,142,223,105,201,229,185,195,129,188,227,180,130,122,219,128,202,215,138,214,129,135,128,130,142,134,140,196,229,206,142,203,212,167,138,206,240,234,154,129,229,178,229,137,236,120,193,85,228,222,181,189,113,180,122,128,207,220,155,140,99,197,196,219,234,211,142,186,200,213,105,137,89,161,132,214,85,193,158,127,212,200,180,224,142,180,179,215,180,154,210,196,219,234,206,211,202,216,176,178,174,216,190,199,204,198,188,215,208,185,191,167,220,197,169,180,154,210,196,219,234,173,205,206,200,211,202,200,182,216,190,199,210,198,162,215,185,191,167,222,197,169,176,180,211,197,211,206,209,232,175,225,222,212,213,216,213,215,176,224,188,216,210,214,211,195,212,212,239,213,142,137,167,225,173,213,154,135,182,197,210,214,162,185,145,212,188,220,142,201,221,155,203,234,215,200,206,218,215,218,200,207,197,180,217,219,183,210,168,178,201,219,155,202,173,166,144,187,183,167,173,144,180,176,105,190,178,188,182,190,190,191,193,162,188,181,189,130,198,157,188,159,191,215,200,106,190,146,211,222,198,127,195,198,183,180,212,144,142,209,167,144,213,215,154,145,129,130,213,198,152,197,155,152,181,168,105,179,183,196,200,155,211,209,225,228,187,213,137,89,105,212,192,180,227,213,231,211,209,212,215,138,135,85,123,93,218,213,221,98,220,142,183,211,193,138,206,232,176,154,129,89,132,179,195,161,198,158,211,127,145,182,167,128,186,215,169,157,140,196,205,203,234,205,95,202,176,105,106,214,129,200,193,105,199,123,132,185,180,185,224,189,198,157,166,180,200,211,210,196,191,219,175,173,211,205,200,202,200,197,190,179,199,214,198,162,191,182,167,186,201,197,169,216,212,225,203,175,175,173,138,181,213,187,129,229,215,160,158,155,182,182,179,228,123,222,178,142,173,147,217,228,241,229,215,188,235,179,190,222,198,132,217,128,224,183,188,159,225,206,217,210,211,215,190,161,179,201,219,179,197,198,215,191,209,109,95,155,85,123,111,218,100,221,98,197,139,183,175,167,167,225,215,149,193,240,212,161,161,241,168,106,154,153,155,161,188,135,132,244,200,181,167,185,171,196,179,218,200,155,169,155,229,206,142,203,212,206,234,154,129,229,178,229,137,221,120,226,211,119,85,228,195,181,189,180,122,221,128,220,155,99,225,206,217,148,210,105,193,158,127,182,174,176,179,214,201,161,152,178,141,219,180,167,220,155,162,186,172,88,215,170,128,173,159,205,167,142,154,136,142,161,158,159,122,128,234,233,211,195,129,180,196,215,138,214,129,136,142,135,128,195,142,172,207,134,197,140,217,219,210,188,181,229,221,188,174,132,190,187,179,223,222,185,182,167,128,186,219,169,183,205,200,217,225,206,217,210,175,193,222,202,161,161,215,190,153,190,193,199,201,193,198,217,219,217,189,171,216,200,217,225,206,217,210,193,202,161,215,153,193,199,201,193,217,191,217,219,216,183,180,193,136,142,152,141,155,113,153,130,173,99,217,191,193,206,200,226,225,158,153,161,199,215,178,185,234,202,159,147,217,219,210,167,223,190,201,182,180,189,186,196,219,157,205,197,191,211,109,205,212,105,114,160,137,218,222,198,158,185,180,113,179,100,215,183,98,173,173,211,225,106,146,217,132,193,195,212,128,189,180,196,142,139,219,181,167,211,215,149,205,228,180,206,202,214,154,146,155,211,127,135,195,183,212,180,171,187,155,140,196,206,209,219,148,215,210,173,105,193,226,215,176,176,182,201,158,124,162,185,162,185,113,234,213,181,176,99,217,211,142,203,210,175,167,142,226,154,201,199,208,185,145,188,234,219,198,202,211,209,229,205,228,226,241,229,127,218,201,141,185,224,215,155,113,153,213,88,99,217,200,212,197,225,217,219,95,181,213,187,221,155,211,85,223,123,193,219,185,142,206,168,218,222,198,127,212,155,183,211,176,225,106,146,217,132,193,224,215,195,212,128,189,180,225,144,218,194,211,144,187,233,215,202,197,119,210,214,193,158,119,219,129,192,159,189,185,122,128,137,209,218,213,215,212,173,161,176,161,215,214,215,182,182,179,178,192,171,180,197,213,207,212,173,138,201,213,187,215,129,182,162,127,208,199,155,183,191,176,159,140,147,229,225,211,209,218,232,232,234,193,137,89,105,218,124,235,212,192,180,213,240,228,240,226,242,236,195,119,212,244,129,200,196,225,191,144,218,194,235,229,144,215,105,95,240,187,137,242,158,127,155,89,202,182,197,236,179,211,136,142,210,214,229,178,192,159,215,155,185,239,153,201,198,88,191,99,160,120,119,214,195,119,135,129,215,137,140,196,219,212,186,229,190,153,161,214,228,218,158,211,185,180,222,93,113,198,215,173,191,134,99,217,154,225,211,219,215,137,205,205,202,176,215,137,221,158,153,200,161,182,179,223,191,204,211,178,201,185,130,113,179,185,196,219,213,152,152,147,212,173,138,168,213,129,215,158,182,182,179,222,198,162,127,178,135,208,155,183,176,140,147,217,211,217,219,167,142,201,226,168,229,221,223,228,214,199,199,185,219,188,234,219,155,229,144,139,213,167,144,149,161,218,235,217,214,215,224,142,195,198,188,128,159,130,197,215,231,196,203,232,212,137,225,200,226,178,160,158,135,199,178,195,181,224,185,130,234,170,198,202,220,134,159,147,217,234,173,193,206,225,153,224,161,197,162,215,208,217,217,222,201,202,180,205,210,225,206,217,210,211,215,190,224,161,189,179,197,219,198,215,219,137,215,193,186,213,190,221,174,195,161,111,212,200,222,224,155,153,122,218,198,128,134,173,197,196,229,235,212,95,176,233,155,89,226,132,105,161,228,123,222,158,135,231,221,157,183,207,220,211,225,217,219,203,144,226,176,161,225,218,221,202,215,223,201,161,214,199,215,195,185,159,227,215,171,180,234,202,210,235,232,205,232,226,168,176,229,176,146,178,188,182,190,201,204,199,201,195,217,217,212,178,234,201,155,216,176,197,206,203,175,181,180,201,179,211,199,173,212,183,144,180,213,147,188,128,166,240,240,242,236,120,119,214,218,119,224,215,137,215,215,200,233,211,195,200,224,207,197,209,215,138,136,142,135,128,195,200,159,130,142,172,207,134,197,140,142,154,136,142,161,135,145,122,198,173,155,212,173,142,138,201,106,213,158,182,162,127,135,208,199,155,183,191,176,159,140,147,217,225,217,219,235,226,168,221,158,182,223,178,195,219,244,224,185,239,219,155,147,212,225,203,175,175,213,187,129,229,215,160,158,155,182,182,179,228,123,193,178,142,173,196,240,142,219,203,232,175,181,167,225,211,215,149,211,228,180,95,138,206,213,226,106,154,155,211,211,123,132,145,183,212,200,185,171,179,187,155,140,183,127,136,142,152,181,185,155,88,166,187,217,225,219,234,215,200,233,215,221,179,211,223,191,180,211,218,213,212,161,190,193,193,200,171,197,198,221,220,191,197,159,211,212,215,105,213,215,193,127,197,210,152,214,158,188,141,183,155,196,200,88,154,213,203,215,182,210,204,128,185,145,195,188,181,172,218,198,207,152,176,152,211,240,206,203,211,205,228,240,212,226,176,242,182,197,236,210,218,204,214,201,217,217,244,224,215,216,183,180,181,215,176,178,182,197,179,132,187,214,127,178,185,181,178,185,185,201,181,212,144,142,209,144,213,215,154,160,136,142,128,195,200,159,213,207,152,134,197,155,152,206,175,211,142,178,211,181,179,215,198,203,234,205,95,138,202,105,106,214,129,200,193,199,123,132,145,185,180,185,224,189,198,157,166,180,197,196,219,232,225,215,228,180,212,213,176,153,89,161,132,214,193,85,158,127,200,128,189,179,218,215,198,166,180,142,167,154,127,155,105,135,141,155,113,88,155,99,196,219,105,105,186,229,190,153,214,218,211,124,128,222,198,215,215,173,191,134,99,212,225,109,205,213,114,215,176,123,218,204,201,111,212,159,162,100,170,235,144,206,190,158,89,182,197,235,179,105,210,147,158,178,159,113,201,198,191,99,210,175,201,201,199,181,202,240,234,240,106,176,242,146,178,236,222,198,127,127,244,222,178,239,183,191,211,139,209,181,167,234,211,149,180,201,154,196,176,178,200,190,136,142,199,218,199,208,212,199,185,181,180,178,171,188,180,187,155,217,142,219,183,203,212,215,105,234,114,129,229,178,221,211,119,85,193,124,119,147,145,195,244,129,181,153,221,137,220,99,212,209,183,215,180,186,213,215,214,178,214,210,161,158,185,122,215,128,166,212,225,203,175,175,173,213,187,129,229,215,160,158,155,182,182,179,228,123,193,178,142,173,147,200,196,219,205,211,161,161,196,182,158,200,216,179,199,193,178,191,182,167,180,189,186,171,169,202,159,147,197,210,144,215,175,225,144,222,232,212,168,214,176,242,218,182,146,178,217,215,224,211,198,127,200,188,178,159,239,130,218,215,188,144,167,173,144,154,190,176,158,182,132,162,127,178,180,185,130,198,181,173,191,166,187,159,147,212,173,138,168,213,187,129,158,182,179,222,198,162,127,178,208,155,183,176,159,140,147,215,203,137,200,138,129,176,135,195,200,130,142,172,207,197,140,229,234,109,228,138,234,226,241,114,186,193,158,197,85,210,214,135,185,180,188,222,227,201,130,100,231,159,140,147,138,160,155,161,135,185,122,173,140,211,234,200,214,233,120,211,119,214,119,222,220,215,137,180,240,211,209,215,235,205,240,242,236,235,158,147,158,201,220,239,213,196,206,219,148,105,193,226,215,182,124,199,185,185,162,113,185,234,201,240,206,203,173,215,212,226,233,211,162,199,199,220,234,212,225,109,205,138,213,213,215,176,226,85,136,142,218,204,201,135,111,212,159,93,100,98,154,210,196,234,206,222,202,225,182,179,210,198,215,208,185,191,182,167,220,186,197,169,216,176,180,206,142,167,175,154,145,179,215,173,155,191,203,175,234,142,95,186,200,202,176,168,105,106,214,129,200,132,85,105,199,218,199,132,185,185,128,224,196,155,154,240,226,215,176,127,105,204,229,141,244,220,215,155,113,153,88,99,211,225,106,217,193,127,195,212,189,180,183,211,209,194,225,228,187,213,186,212,180,227,213,231,212,209,215,180,213,214,178,210,161,147,158,185,128,166,217,219,212,225,215,190,221,224,223,211,215,219,198,183,180,105,193,155,89,136,142,105,124,181,113,153,166,187,99,154,240,209,235,234,205,240,215,176,236,235,204,147,201,185,220,239,213,206,138,181,202,129,196,153,200,161,136,199,199,135,128,185,188,189,130,215,134,140,197,175,225,215,193,189,232,240,212,168,214,178,233,242,218,146,236,190,215,224,136,179,142,127,182,200,188,186,176,239,130,218,197,215,205,142,213,183,211,206,232,176,129,137,89,132,211,193,85,179,161,198,145,182,167,189,186,113,169,183,205,144,181,144,180,178,193,127,152,141,188,185,159,155,153,130,173,99,212,210,137,109,188,226,202,213,114,153,200,161,197,199,201,210,199,199,93,130,234,201,100,215,98,152,152,144,144,137,89,174,105,188,185,159,162,196,200,170,181,240,234,229,173,215,105,95,200,137,127,155,89,202,182,229,124,141,159,215,155,239,153,88,180,159,147,217,212,210,219,215,210,167,229,228,189,226,213,214,229,221,197,201,210,228,214,222,198,229,198,199,235,128,176,234,201,219,231,183,197,217,210,137,188,202,114,215,153,200,89,161,182,105,201,219,185,130,219,215,152,152,197,139,167,167,149,193,232,240,212,161,161,168,225,106,178,233,242,155,236,214,179,211,215,135,132,182,185,186,239,155,215,169,215,197,205,154,196,211,206,217,219,148,210,205,105,193,214,158,182,135,176,201,204,158,124,178,201,219,162,185,153,172,219,181,147,99,154,211,210,173,205,226,105,193,127,174,214,201,161,152,204,162,141,219,182,180,167,155,186,185,169,88,215,170,173,147,205,183,167,105,193,155,89,136,105,124,181,113,153,166,187,99,197,142,183,167,167,215,149,193,95,138,232,240,212,161,168,106,154,155,214,105,123,188,132,182,181,167,185,186,171,200,155,215,169,215,197,155,140,205,211,144,142,213,203,167,144,215,200,205,215,154,176,160,204,201,128,145,195,200,188,172,130,218,213,207,152,134,155,152,225,144,218,194,173,144,95,187,226,193,229,155,182,136,142,123,152,162,235,192,222,159,212,173,142,138,201,106,213,215,182,162,135,208,199,128,191,176,159,140,147],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #8","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[200,142,215,175,215,222,206,161,105,214,154,182,190,211,193,135,145,224,196,166,187,155,140,217,217,219,183,210,180,106,229,178,176,221,146,223,201,228,222,198,199,178,234,219,183,202,173,154,209,215,173,211,225,215,176,218,120,119,215,161,119,162,122,213,137,176,159,229,183,235,203,212,149,193,228,161,114,129,233,137,120,226,119,85,211,127,188,145,195,182,167,128,186,171,196,239,122,200,215,169,231,221,198,157,128,187,99,205,211,168,218,215,198,193,127,189,180,155,183,203,175,109,228,213,176,106,114,196,137,214,193,199,158,199,132,212,200,128,189,93,113,218,196,100,155,215,157,181,98,173,173,180,240,203,212,215,142,193,232,186,241,127,211,119,228,152,222,198,193,211,119,147,158,111,141,195,244,129,180,155,180,215,88,183,207,137,220,134,173,139,183,173,180,222,189,105,216,182,193,191,210,162,188,181,189,176,176,240,235,168,229,215,221,179,228,195,212,244,222,239,155,191,234,233,120,211,119,214,218,119,215,137,180,144,144,106,146,158,182,182,179,136,142,178,135,195,212,132,128,159,147,206,144,144,222,228,222,211,168,216,176,146,178,224,188,216,190,214,229,211,127,235,191,188,178,159,130,155,215,231,188,197,142,232,181,225,205,180,222,95,138,201,213,202,241,225,182,155,200,188,190,190,199,123,215,208,199,145,185,244,200,180,185,218,197,188,187,155,140,212,210,217,219,194,203,167,187,226,213,229,221,197,132,214,223,195,210,198,219,195,176,201,215,196,206,183,235,211,109,176,114,186,233,242,127,193,179,228,222,124,158,235,141,145,189,227,155,180,153,100,88,98,191,211,209,167,205,142,138,200,129,178,155,190,193,123,222,220,189,213,140,196,191,219,137,225,234,215,228,200,212,213,153,127,161,135,120,195,228,222,193,147,111,141,128,185,180,180,224,155,162,130,179,122,218,88,128,152,173,197,152,200,240,232,215,228,95,138,189,201,213,161,226,105,214,196,155,188,211,190,123,199,215,208,145,185,212,176,196,198,188,166,140,217,225,219,205,215,221,153,127,161,182,179,214,223,191,211,178,141,180,180,220,155,185,196,219,215,215,170,159,197,203,210,175,173,226,226,242,236,201,211,162,199,244,220,224,185,239,234,147,229,206,200,180,228,206,240,186,229,193,229,160,226,211,193,179,228,152,222,188,141,182,167,189,93,186,196,142,180,200,169,88,231,198,187,205,200,240,142,215,167,175,215,180,222,105,225,216,154,196,182,190,211,193,215,135,185,196,197,187,155,144,144,106,215,146,158,182,179,136,142,178,135,195,212,128,159,183,215,120,119,214,218,119,224,215,137,183,175,186,178,199,166,187,235,173,215,105,240,200,213,137,242,127,89,182,236,211,105,152,124,162,141,155,153,88,180,159,147,200,154,197,211,187,215,137,211,205,214,186,196,229,215,137,211,179,190,228,204,201,111,185,189,113,159,167,186,136,142,158,147,158,181,185,159,187,211,139,181,149,222,189,181,105,216,178,190,158,197,193,191,214,193,178,185,183,176,201,198,191,159,147,217,229,219,183,215,228,229,193,229,160,221,211,179,193,111,180,93,162,219,231,198,187,240,235,226,236,214,161,218,244,224,239,122,215,128,200,139,175,211,149,142,188,95,138,206,189,186,161,214,129,178,155,188,190,123,193,224,171,198,181,188,154,210,211,213,194,203,212,205,187,161,161,190,190,204,193,197,198,207,191,197,159,154,212,240,235,234,105,213,215,176,137,89,235,105,152,124,141,244,222,220,155,239,153,176,225,217,144,226,176,161,197,217,224,210,214,158,119,215,219,159,171,180,122,128,137,211,139,187,188,211,216,178,182,158,197,216,193,214,185,183,189,171,176,201,159,147,154,212,235,234,215,240,215,176,242,127,236,105,141,222,155,113,153,88,176,99,225,203,175,173,109,181,114,187,215,229,215,221,158,182,182,179,187,105,228,162,178,128,93,130,100,98,152,176,152,147,144,183,144,180,178,147,158,188,130,128,240,206,173,211,161,162,199,208,220,179,234,201,215,202,219,148,205,212,202,229,215,221,153,127,161,214,191,211,141,180,220,155,162,179,153,185,196,215,170,191,217,219,210,181,229,176,221,178,223,201,228,222,198,127,132,183,128,178,219,183,225,144,211,144,226,225,215,218,197,215,193,105,210,214,215,158,219,159,189,113,225,144,203,212,144,189,106,195,198,127,132,185,188,185,159,227,215,130,221,207,196,206,200,218,215,195,129,222,220,215,196,229,197,139,213,181,167,149,180,240,234,212,161,168,106,114,233,229,137,242,153,161,174,236,120,85,161,132,183,171,196,239,113,179,155,198,128,207,220,187,99,229,217,211,210,225,205,234,226,213,168,176,182,197,201,204,199,201,195,234,201,213,155,196,191,219,232,137,225,234,228,200,212,105,153,127,161,120,222,198,193,147,111,141,128,185,180,155,162,130,179,122,88,128,183,152,173,197,180,144,105,95,206,233,215,190,137,127,197,179,136,142,123,214,124,135,141,185,155,185,153,130,198,88,217,212,217,219,218,213,215,212,189,222,226,213,214,229,221,182,224,202,197,223,201,210,228,222,198,199,192,128,227,234,201,219,215,221,183,207,220,154,203,210,173,240,212,226,226,242,236,201,211,162,199,199,244,220,224,239,234,183,180,176,190,158,187,210,193,178,188,181,201,198,157,181,188,191,187,159,147,211,211,181,205,176,182,197,120,119,195,204,214,201,183,201,213,137,173,176,196,209,205,105,226,215,176,127,152,204,124,201,141,244,220,224,155,113,153,213,225,142,167,142,106,154,215,146,197,210,214,222,195,212,145,188,185,201,130,198,183,155,206,183,235,211,109,200,105,228,176,114,233,242,132,179,222,198,124,119,147,158,235,145,182,129,155,186,239,153,100,169,231,198,183,137,187,205,211,144,217,144,226,161,176,161,217,119,224,223,201,214,158,119,199,185,129,185,159,171,234,122,128,202,137,200,197,225,209,219,137,173,211,181,114,187,215,221,158,211,89,182,182,223,105,193,162,178,130,176,152,147,212,206,210,205,105,188,226,213,153,201,124,199,185,162,113,234,201,196,215,213,203,215,200,205,142,176,182,210,204,201,185,195,188,181,218,207,176,173,210,175,142,201,199,181,202,217,197,191,225,219,203,201,200,233,215,221,179,211,223,199,219,191,180,154,212,138,176,215,129,176,190,176,187,204,193,127,135,178,180,198,176,140,154,191,209,215,205,206,200,176,233,161,204,201,222,220,122,213,128,225,217,210,215,213,182,174,179,179,201,119,188,178,219,212,182,129,167,186,196,218,200,169,207,137,173,159,205,225,206,217,210,193,158,182,179,195,218,158,178,219,200,220,122,219,159,196,217,209,210,229,215,228,226,106,216,215,188,197,216,201,199,127,127,235,217,200,215,234,201,219,213,231,216,188,197,217,203,210,234,215,201,212,158,182,201,211,178,199,219,222,185,219,159,225,217,188,222,189,176,216,215,174,179,201,188,219,185,167,180,169,157,212,225,213,182,217,179,119,193,224,161,193,119,215,178,185,122,128,137,209,213,212,173,149,187,215,214,176,215,182,182,179,198,162,201,176,213,157,207,176,197,212,187,148,210,226,202,213,196,137,200,89,161,135,176,190,105,199,201,199,199,111,189,179,234,201,172,215,173,211,225,215,190,218,158,182,217,119,161,193,119,162,215,178,189,122,198,137,191,176,159,147,191,215,200,168,229,190,211,228,222,198,127,212,155,198,180,206,144,213,229,144,222,228,222,211,106,182,224,226,214,195,229,127,235,185,191,188,159,215,130,155,215,188,220,196,191,175,200,229,233,215,190,221,211,199,198,191,180,240,235,240,226,242,236,214,161,218,244,224,239,122,215,128,203,181,180,212,179,182,167,186,196,200,215,169,205,144,167,173,144,149,189,181,182,187,193,162,181,185,130,181,176,166,187,240,139,232,225,211,215,149,228,142,206,186,213,226,161,105,196,176,146,89,211,85,105,199,127,195,212,199,212,200,178,171,218,196,215,211,225,144,217,211,95,226,225,218,155,89,215,193,136,142,105,147,199,158,185,219,189,113,234,130,202,99,225,167,186,215,176,197,210,214,127,132,185,188,128,178,185,201,217,217,235,228,226,241,158,219,220,224,185,239,219,147,211,211,232,211,205,228,193,201,241,215,176,211,161,210,218,204,214,201,199,185,212,239,179,213,215,217,139,194,149,200,187,226,161,197,120,190,223,210,161,214,199,219,234,201,197,157,154,210,235,232,173,228,226,241,201,218,162,212,219,220,185,219,212,225,161,176,161,213,197,120,210,161,219,129,171,185,180,201,197,217,210,191,173,211,222,178,174,197,190,190,210,214,198,162,188,185,217,185,217,196,201,196,197,200,216,217,197,217,219,203,144,226,197,85,223,210,123,219,159,201,219,134,229,225,219,225,232,234,213,106,229,221,158,178,182,188,190,223,228,218,222,198,229,127,127,178,212,220,147,200,211,196,219,234,173,205,206,200,225,196,200,197,179,214,199,193,162,215,182,167,180,222,201,169,180,197,191,219,203,175,206,201,229,190,221,199,198,240,213,203,215,142,232,186,241,127,211,119,222,198,211,119,147,158,111,141,195,244,129,189,155,180,215,88,183,207,137,220,134,173,154,211,211,181,173,205,180,176,182,197,119,195,204,214,119,162,201,201,137,176,196,181,180,212,155,173,229,203,212,181,200,180,193,206,240,234,176,186,229,160,127,174,226,119,193,222,198,211,119,147,188,158,141,195,183,129,167,189,93,155,186,196,180,200,215,169,88,221,183,137,98,166,217,217,183,210,215,240,178,229,211,223,201,111,235,145,180,181,93,227,162,239,142,219,198,217,219,205,215,221,153,127,161,179,214,223,191,211,141,180,180,220,155,185,196,215,170,159,211,209,183,215,210,119,201,185,129,181,213,187,196,154,206,210,193,158,214,201,161,147,158,219,186,185,122,215,128,147,205,211,217,219,183,186,226,106,229,221,146,223,201,228,222,198,199,127,195,212,181,234,183,202,166,187,229,203,212,211,109,200,105,193,228,240,176,114,229,242,174,236,226,132,119,198,211,124,119,147,188,158,195,182,129,167,155,186,196,239,142,153,100,200,215,169,231,221,198,183,137,98,187,205,200,210,240,209,183,215,181,167,175,215,222,211,225,216,196,216,211,136,142,218,199,198,215,185,183,191,181,159,224,196,197,200,187,203,175,137,168,214,190,137,190,198,193,127,128,220,189,93,130,113,198,183,152,209,215,160,136,142,195,159,207,197,155,154,225,211,173,215,205,222,228,211,215,182,158,202,182,216,179,132,204,162,178,191,218,176,147,209,215,173,215,214,176,190,158,214,193,224,193,162,178,213,198,215,191,176,159,147,210,142,219,183,181,167,225,215,205,222,201,240,211,202,154,233,242,218,182,155,188,236,215,224,199,198,135,199,183,200,180,218,197,155,209,215,215,193,127,197,179,152,214,158,141,182,167,155,186,201,169,88,181,202,205,203,235,215,211,193,234,222,211,216,178,229,153,224,211,161,216,136,179,142,212,191,182,200,167,186,179,169,205,200,191,175,193,226,202,182,179,199,201,199,215,178,219,185,234,191,154,211,213,183,203,173,215,186,178,197,218,162,195,220,201,218,207,166,187,211,139,213,212,173,149,205,187,176,215,158,182,179,204,198,162,178,201,176,213,157,207,220,176,197,147,229,217,225,229,234,213,215,179,132,218,235,217,217,212,128,220,215,216,188,159,200,210,240,142,215,181,167,175,215,180,222,211,225,216,154,196,182,216,190,211,199,198,193,215,135,185,196,197,187,155,217,225,219,175,215,200,233,215,221,211,223,199,191,180,200,196,191,219,205,226,196,158,200,179,199,193,199,215,178,182,186,185,234,202,159,147,205,196,219,203,175,181,211,180,138,189,234,161,225,129,233,229,242,146,211,89,174,236,190,195,105,158,215,127,195,145,183,176,239,179,197,197,187,140,196,191,206,210,175,225,153,161,182,179,224,201,215,178,219,185,215,191,144,142,167,173,144,142,154,190,178,182,136,142,162,127,145,178,159,180,198,198,191,159,155,147,212,211,144,142,213,212,167,144,215,200,213,215,154,160,201,128,159,130,218,213,152,220,155,152,191,215,200,190,211,222,198,127,195,212,155,198,183,180,225,206,217,210,213,215,174,179,119,223,119,212,182,129,167,222,224,186,218,219,169,207,137,173,191,205,225,186,106,146,197,214,222,195,212,185,219,188,185,183,183,167,180,176,190,158,182,197,179,187,210,214,193,178,185,180,201,198,157,181,188,191,147,213,203,180,186,226,213,158,218,199,195,212,185,234,202,207,166,159,147,144,142,167,167,173,144,186,176,154,190,178,182,190,162,180,130,198,157,191,159,155,147,215,233,120,211,119,195,218,119,129,196,196,142,219,181,180,95,138,189,232,240,225,233,176,242,178,211,236,190,190,214,105,123,215,127,195,212,145,183,185,178,176,239,197,215,188,197,187,140,191,225,217,210,206,225,215,217,179,224,219,179,219,198,191,173,95,201,168,215,176,158,155,187,85,123,198,162,127,178,199,142,155,183,191,176,159,147,144,186,142,158,181,159,130,128,166,187,186,136,142,158,147,181,185,166,187,197,196,213,181,211,109,180,105,240,234,212,114,153,161,236,120,124,127,183,128,142,179,122,100,157,128,207,98,220,166,99,240,203,232,175,225,211,215,215,109,205,206,202,226,241,168,105,106,114,160,137,200,211,211,193,195,199,161,132,185,180,189,113,100,155,157,98,173,197,99,196,139,213,194,212,173,149,187,176,215,158,182,182,179,198,162,178,201,176,213,157,207,176,197,147,191,175,206,229,233,190,221,199,198,203,200,220,189,207,197,229,154,225,144,218,173,144,109,226,241,202,182,85,136,142,123,162,135,111,235,192,159,220,224,162,100,170,98,176,154,209,200,215,176,211,204,158,147,158,222,185,213,176,180,232,228,232,234,188,229,132,128,224,183,188,191,159,217,225,219,235,226,168,221,158,182,179,223,178,212,244,222,239,155,159,210,196,142,219,183,181,215,222,95,138,232,240,154,233,176,242,218,178,155,211,188,236,190,190,214,215,224,105,123,195,212,183,185,178,239,197,215,188,197,187,155,140,240,205,176,233,218,179,210,218,204,201,185,244,182,167,224,186,169,205,217,212,225,217,209,219,213,215,222,222,211,226,213,214,229,221,182,224,202,197,226,223,201,228,222,198,199,132,191,128,227,234,201,219,221,183,220,197,191,225,206,217,210,225,161,182,179,224,201,219,179,198,215,191,229,154,212,225,218,109,228,232,234,213,114,215,176,155,202,123,204,235,192,159,220,224,162,100,170,211,225,191,240,142,218,194,167,200,187,154,129,229,182,179,178,111,235,185,244,192,93,162,185,170,98,191,180,155,229,217,225,229,213,215,179,218,178,235,217,217,212,128,220,215,216,188,159,181,211,193,212,211,174,188,183,182,167,186,196,200,215,169,173,205,211,197,211,206,209,203,175,225,232,212,213,215,229,197,210,214,211,201,212,213,202,154,173,226,105,174,120,179,195,162,199,188,182,167,196,185,234,122,200,169,173,147,196,232,228,232,229,215,178,188,179,190,222,127,132,128,224,183,159,196,219,148,215,213,229,193,190,153,176,120,152,211,147,158,212,180,222,224,172,122,218,198,215,88,170,197,211,209,215,205,95,201,181,106,160,190,146,132,85,204,201,132,199,128,220,142,180,213,198,173,196,219,148,215,213,229,193,190,153,135,176,120,228,152,211,147,158,212,180,224,172,122,218,198,215,88,170,173,197,152,200,240,142,175,215,228,180,222,226,105,225,214,154,196,182,155,190,211,199,215,135,185,212,196,197,187,155,140,240,144,234,229,109,138,200,114,158,202,197,85,210,214,229,135,244,215,162,201,130,100,159,140,147,183,186,168,178,166,187,213,203,212,181,225,180,186,226,213,158,182,179,201,178,219,195,212,224,185,234,220,166,159,197,142,203,167,154,208,145,198,211,225,186,215,176,197,214,127,132,185,219,188,181,128,178,185,183,187,200,139,175,211,215,149,228,142,95,206,189,201,186,161,214,129,196,176,178,211,190,105,123,208,212,185,178,171,198,188,197,240,232,225,215,211,205,105,202,176,226,241,168,105,186,211,132,193,195,161,124,127,185,180,128,189,93,179,155,128,173,173,197,99,196,229,194,173,228,232,234,187,226,241,129,197,210,214,188,222,93,227,142,201,130,231,155,147,200,212,210,211,144,209,183,181,175,215,222,225,196,211,142,218,199,198,193,215,185,183,191,181,159,224,130,196,197,213,225,206,217,210,215,105,182,174,120,179,119,201,218,119,178,219,182,200,167,186,218,169,137,173,197,159,205,225,218,194,138,187,176,161,225,229,137,218,89,202,132,215,228,123,222,119,215,135,192,215,171,113,157,183,137,140,99,212,209,213,203,200,160,136,142,195,200,159,207,152,197,155,152,183,235,211,109,200,105,193,228,176,114,233,242,226,132,119,179,198,211,124,119,147,158,145,195,182,129,167,186,239,153,100,169,231,221,198,157,183,137,187,205,203,232,175,225,215,109,205,228,202,176,226,168,106,114,160,200,211,193,195,199,161,132,185,128,189,93,113,218,196,100,155,157,98,173,173,197,99,196,200,212,211,144,209,175,144,215,205,205,222,225,213,215,196,224,200,211,224,218,199,201,217,183,217,188,180,159,224,196,130,213,200,216,200,217,212,175,144,215,205,222,225,213,215,196,176,178,224,174,211,204,199,193,188,201,217,217,188,180,220,196,130,200,216,217,212,144,203,215,235,144,211,193,232,234,229,211,185,217,217,218,215,216,205,211,148,232,228,160,158,176,226,128,181,222,224,130,172,198,134,159,147,191,200,225,217,195,195,222,220,196,211,217,186,226,106,229,221,146,223,228,222,198,199,127,195,212,185,219,181,234,183,187,154,212,191,142,139,167,149,189,213,215,154,176,193,136,142,204,222,159,189,185,181,173,176,166,187,155,240,234,240,168,229,215,242,221,236,228,212,222,155,191,211,213,203,215,200,205,142,176,182,210,204,201,185,195,200,188,181,218,207,173,217,219,210,180,106,178,221,146,228,198,127,195,212,219,173,229,212,225,218,232,205,228,95,232,234,213,114,215,186,176,155,202,123,218,204,201,235,224,162,170,212,144,148,137,144,205,213,213,215,129,176,176,226,136,142,204,201,135,212,159,130,142,172,140,229,197,139,213,181,167,149,180,240,234,212,161,168,106,114,233,229,137,242,153,161,174,236,120,85,188,132,183,171,196,239,113,122,200,155,198,128,207,220,187,99,200,167,211,215,149,228,142,206,186,213,226,196,176,146,89,211,85,199,127,195,212,199,212,200,178,142,196,215,173,154,217,234,206,222,225,196,178,224,174,182,210,199,193,188,215,185,217,217,180,222,220,196,200,176,180,154,209,95,201,168,215,176,187,85,198,162,127,208,199,155,183,191,176,159,225,217,219,232,225,232,234,106,229,176,221,146,158,178,182,223,228,218,127,127,178,219,212,178,220,185,147,191,175,193,206,200,226,202,225,158,153,182,224,199,199,215,178,185,234,159,212,211,148,137,225,205,138,213,213,215,129,176,135,226,136,142,204,201,135,212,159,93,213,140,196,142,219,203,181,211,180,95,138,189,232,234,225,233,229,176,242,146,178,211,174,236,190,214,215,105,123,215,127,195,145,183,178,176,239,197,215,188,197,187,140,196,183,211,109,200,105,228,240,176,114,186,242,127,236,132,193,179,222,198,124,119,147,158,235,145,182,129,167,155,186,239,142,153,100,169,88,231,198,183,137,98,187,205,217,196,219,219,215,193,215,221,120,223,195,218,147,158,200,122,218,219,215,191,197,196,212,144,183,215,144,186,213,214,120,214,188,181,130,215,137,166,187,191,211,205,206,200,214,218,120,119,214,215,119,201,222,220,215,137,212,211,144,142,209,213,203,212,167,144,215,200,213,215,154,160,145,200,159,130,218,213,152,155,152,225,217,167,191,201,188,196,200,188,210,196,219,211,205,226,196,158,224,200,182,179,199,193,199,178,182,186,185,234,197,198,202,191,205,210,196,219,205,222,226,161,187,196,190,224,200,182,190,179,199,198,193,199,219,182,189,186,171,185,234,197,198,191,205,144,181,144,178,127,158,183,188,185,159,88,211,196,175,234,173,202,197,217,211,224,179,199,214,162,182,222,186,201,180,205,225,139,187,149,188,222,189,211,226,176,216,215,182,174,216,179,199,188,219,185,167,176,180,234,169,202,203,175,234,215,228,105,200,213,202,176,168,186,200,211,132,214,199,193,199,124,127,212,200,128,224,93,180,218,196,155,181,134,180,99,206,168,218,215,222,198,193,127,155,183,240,232,225,95,138,189,201,213,161,226,161,241,105,129,176,178,200,188,190,105,199,123,199,215,212,199,145,185,244,200,185,178,176,218,196,198,188,166,217,154,225,211,217,205,205,214,158,153,182,191,204,178,201,141,219,180,180,155,153,185,196,219,215,170,147,225,144,217,219,144,201,168,229,221,197,223,210,228,214,199,219,185,201,130,155,155,154,212,240,105,213,215,176,193,137,89,105,152,204,229,124,244,220,176,203,175,175,173,109,215,229,215,158,182,182,179,187,228,222,162,178,128,100,98,176,134,147,191,200,229,233,190,211,228,198,191,180,168,218,215,222,198,193,127,155,183,211,217,95,226,176,225,218,155,89,215,193,136,142,223,105,201,147,199,215,158,185,188,113,180,234,130,202,99,212,210,225,139,194,203,149,200,187,213,190,132,214,195,219,195,185,201,215,157,196,154,209,205,95,181,106,176,160,190,146,155,132,187,85,123,204,201,195,212,132,128,220,142,180,213,198,173,212,229,205,228,95,241,213,215,186,176,155,202,204,201,220,224,215,120,119,214,218,224,122,215,137,211,225,138,206,226,215,190,235,123,152,124,199,135,141,185,219,188,234,130,140,212,144,142,215,167,214,154,136,142,145,159,198,173,155,196,197,191,137,234,211,205,105,200,202,200,199,161,222,198,124,111,128,212,200,224,130,179,153,218,196,183,181,152,152,196,197,148,211,105,188,212,214,186,196,229,135,176,199,228,158,199,124,111,220,172,191,159,99,154,209,95,201,181,106,215,176,160,190,155,132,187,85,123,204,201,199,128,142,213,198,191,173,159,225,144,142,144,106,154,215,197,210,222,198,127,145,185,201,130,198,183,155,210,206,203,212,229,228,189,106,155,226,190,136,161,158,229,211,198,127,235,132,185,215,176,221,207,220,225,183,148,234,228,142,232,182,176,226,179,201,128,219,222,172,221,152,191,173,187,152,154,211,196,219,175,215,202,218,182,217,211,215,224,179,199,210,214,185,182,167,220,186,169,176,200,191,175,193,226,202,153,182,179,199,201,199,215,178,219,185,234,191,196,191,219,148,232,225,234,228,200,105,229,193,153,127,135,120,119,228,152,222,211,147,158,141,128,180,162,130,215,88,152,173,152,206,142,139,203,167,167,229,149,200,228,138,161,161,225,154,178,137,218,235,120,119,215,179,198,229,127,215,235,195,182,129,181,128,227,171,113,122,128,137,155,140,205,217,144,139,218,194,210,149,200,187,161,229,155,120,217,132,119,224,136,142,105,228,222,158,119,185,129,192,188,130,122,197,219,157,128,183,137,217,211,197,211,206,209,175,225,234,213,213,215,197,235,210,214,211,212,213,202,183,186,178,166,187,211,209,215,181,215,214,178,214,210,161,214,158,185,122,213,215,173,211,234,215,214,211,161,220,122,128,234,206,200,218,215,195,218,222,180,196,212,211,144,142,213,203,212,167,144,215,200,205,213,215,154,176,160,201,145,130,218,213,152,220,155,152,144,215,167,144,142,214,120,119,214,195,119,159,130,215,137,196,154,209,205,95,181,215,129,176,160,190,146,155,132,187,123,204,201,195,212,132,128,142,180,213,198,173,154,210,232,175,173,228,226,241,201,218,162,212,220,234,176,154,209,173,95,181,168,215,176,187,85,222,198,162,127,208,155,183,191,176,134,159,147,139,215,205,189,202,161,161,241,129,176,146,178,200,89,214,85,105,199,215,127,195,212,185,244,180,178,176,218,215,198,166,197,144,181,144,180,178,158,147,188,159,130,173,197,240,217,203,175,240,242,158,182,236,178,199,219,222,185,219,159,147,154,210,139,194,203,173,149,205,187,161,176,214,176,158,182,190,179,204,162,178,201,180,213,207,176,147,209,214,176,174,182,179,161,147,199,201,182,167,186,234,201,213,169,128,181,202,176,205,211,183,212,225,173,200,142,213,178,197,218,214,162,212,220,201,220,173,187,217,212,211,209,232,193,201,241,213,215,153,211,161,179,199,185,212,182,186,239,179,213,205,144,167,167,173,144,186,176,190,158,188,182,190,210,188,180,130,198,157,188,173,191,166,187,159,147,211,213,203,212,167,215,200,205,176,204,201,145,188,130,218,198,173,142,167,212,154,211,145,173,155,200,139,167,211,215,149,228,142,206,186,213,226,196,176,146,89,211,85,105,199,127,195,212,199,212,200,178,171,142,196,215,173,240,203,175,167,211,215,211,109,205,142,206,186,202,226,241,168,105,106,114,160,137,211,211,195,161,132,185,244,180,142,113,100,155,157,98,197,99,196,186,136,142,158,147,181,185,166,187,191,137,234,215,205,200,212,213,127,161,135,195,161,228,222,198,111,141,185,212,200,180,224,155,162,130,179,153,218,128,181,152,197,152,196,229,154,144,194,232,144,228,228,138,232,234,187,129,182,85,136,142,162,135,192,220,224,93,227,231,98,176,140,211,225,144,105,95,226,233,215,137,127,155,136,142,123,214,193,124,135,141,185,219,188,155,185,153,130,88,217,211,217,142,219,167,142,226,168,154,229,221,223,228,214,199,185,219,145,188,234,219,155,198,225,219,235,226,241,168,229,215,221,158,182,179,223,228,178,195,212,224,155,159,200,142,215,175,215,222,138,206,189,161,161,105,214,155,188,211,193,135,145,224,176,196,166,140,229,206,211,109,200,228,206,240,176,186,229,242,127,236,226,193,179,228,222,158,141,182,167,189,93,155,186,239,142,180,100,169,88,231,198,183,98,187,205,211,211,181,205,176,182,197,120,119,195,204,214,201,183,201,213,137,196,154,209,95,181,168,215,176,187,85,222,198,162,127,208,155,183,191,176,134,159,217,211,210,191,173,211,222,200,187,224,174,197,190,210,214,198,162,188,185,217,185,217,196,201,196,197,200,216,203,235,215,211,193,234,222,211,216,178,229,153,224,211,161,188,216,190,136,179,142,195,212,191,182,167,186,179,169,205,154,212,142,167,142,186,181,176,213,215,176,178,190,187,136,142,193,135,145,159,198,157,176,155,154,209,205,95,201,181,106,215,176,160,190,155,132,187,85,123,204,201,199,128,142,213,198,191,173,212,211,144,209,213,212,144,215,213,215,160,136,142,201,128,159,218,213,152,220,134,155,152,211,225,191,240,142,218,194,167,229,215,200,187,226,154,129,229,182,179,199,178,111,235,244,192,93,162,185,234,170,98,191,180,155,142,167,154,120,119,214,136,142,119,145,215,198,137,155,154,191,209,215,205,206,176,161,204,201,122,213,128,154,234,215,215,176,211,204,222,185,176,180,154,217,209,215,210,173,205,205,214,176,153,191,201,204,158,162,201,219,180,180,185,153,196,213,215,170,176,99,154,211,211,201,240,226,242,211,161,182,197,236,218,204,214,244,224,179,201,215,202,176,154,144,194,232,137,173,144,228,228,232,187,129,135,182,210,162,220,224,227,142,130,231,176,140,200,217,212,219,175,144,215,205,205,213,215,196,176,178,224,200,174,217,211,224,199,218,204,199,188,201,217,217,188,180,224,196,213,200,211,210,211,212,160,211,211,185,188,142,130,202,140,200,167,228,188,213,196,160,146,89,193,195,199,212,189,142,157,181,173,180,212,235,234,173,215,105,95,240,213,193,137,242,155,89,182,236,235,152,124,162,222,239,176,206,168,218,215,222,198,193,155,229,212,225,218,232,109,205,228,95,232,234,213,114,215,176,155,123,218,204,201,111,235,192,220,224,162,100,170,211,211,181,215,176,182,197,120,214,214,201,183,201,122,213,215,173,191,225,217,210,211,206,200,218,211,182,217,179,215,201,178,208,219,179,191,144,181,144,178,127,152,141,188,185,159,155,130,88,173,212,173,215,200,213,242,127,182,211,105,162,222,155,113,88,176,180,99,200,211,144,144,109,95,187,155,197,187,85,142,210,123,214,211,193,199,159,93,130,179,234,202,98,152,152,210,203,235,167,211,222,234,211,229,176,182,178,153,155,211,161,188,174,217,190,214,198,188,135,195,212,191,181,167,185,178,196,179,200,169,215,188,197,229,197,203,212,181,109,180,105,193,240,234,212,114,233,229,242,174,236,120,226,211,127,188,195,183,128,171,196,239,142,122,200,215,221,198,157,128,207,220,187,99,212,105,213,158,185,183,196,200,88,217,217,187,212,215,196,137,89,135,176,182,190,105,211,111,219,189,185,179,172,219,211,212,105,213,179,210,214,124,182,180,167,185,186,113,153,185,169,99,191,144,235,144,240,193,242,158,182,197,236,235,179,211,136,142,210,123,152,214,178,135,185,201,130,191,211,225,213,144,222,222,211,106,182,224,226,214,127,132,185,191,215,215,221,202,220,196,217,154,225,209,219,187,148,215,173,211,205,212,186,196,176,137,221,158,182,135,176,179,223,190,199,204,199,211,162,178,201,111,185,189,113,179,172,213,176,147,229,142,213,183,203,235,175,211,95,138,189,234,154,229,218,146,153,89,161,174,217,190,215,224,195,105,123,158,188,127,181,167,196,176,179,197,200,155,140,196,217,225,219,205,193,215,221,153,127,161,179,214,223,161,152,211,141,185,180,180,220,155,185,215,88,215,170,159,217,225,206,217,193,158,182,179,223,195,218,147,158,178,200,220,122,219,128,181,159,196,144,181,180,127,142,152,141,188,185,159,155,130,88,173,196,139,213,203,175,181,211,180,234,161,225,129,233,229,242,146,153,211,89,161,174,236,85,195,161,158,215,145,183,196,176,239,179,187,196,154,212,173,213,182,197,210,218,214,162,185,212,181,201,198,220,176,173,240,234,229,109,138,200,114,186,158,202,197,85,210,214,229,178,135,244,180,188,215,162,201,130,100,180,159,140,147,154,209,205,95,181,129,176,160,190,146,155,132,187,123,204,193,201,195,212,132,220,142,180,213,198],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #9","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[210,240,187,232,225,228,188,95,138,186,211,213,226,241,225,216,187,129,155,216,190,191,123,198,215,191,212,244,185,189,197,198,181,173,211,225,186,226,215,178,132,214,127,132,185,219,181,128,185,166,187,212,213,190,158,182,182,217,179,193,224,193,158,215,178,185,189,198,128,191,147,197,196,139,181,167,229,109,200,180,105,212,161,168,225,106,186,218,153,127,161,174,235,215,229,124,119,147,215,158,235,132,183,129,227,155,142,179,153,100,155,88,137,98,166,175,206,229,228,222,199,200,240,232,167,175,225,211,215,215,149,105,188,206,226,241,186,146,211,195,190,191,161,124,193,127,208,195,128,199,244,185,134,197,99,196,229,197,196,219,137,211,200,206,240,234,212,176,105,193,229,153,161,135,226,132,193,127,128,128,189,162,130,179,170,231,221,152,173,154,212,191,144,167,211,144,200,211,181,161,161,213,215,154,176,182,216,190,187,142,204,191,222,159,220,171,185,130,181,166,187,217,225,217,219,226,241,158,182,223,178,219,224,219,159,147,211,205,206,200,214,161,222,220,122,128,154,212,173,138,213,215,129,160,190,176,178,132,123,162,127,178,180,198,191,176,173,159,140,197,213,203,175,212,229,193,212,178,226,136,179,142,195,195,212,217,182,185,215,186,215,221,207,216,220,196,205,200,210,175,215,232,240,222,211,105,216,129,196,233,242,218,89,236,216,217,214,215,85,224,105,199,198,191,239,196,215,198,166,197,217,211,210,144,200,189,222,182,224,120,201,161,228,214,222,198,199,185,185,128,159,234,219,183,202,225,218,194,229,180,193,187,161,225,193,160,202,235,132,152,198,229,211,188,215,182,192,180,167,128,93,215,186,171,196,142,200,215,169,198,157,183,187,205,139,215,234,211,149,95,189,181,214,160,188,187,85,105,218,224,171,176,142,188,180,197,213,148,232,211,205,202,226,241,193,200,211,176,132,119,199,152,198,119,127,158,180,172,196,170,183,181,207,137,180,210,175,225,215,142,188,222,240,186,211,241,225,216,187,129,233,182,89,236,216,190,214,85,190,105,198,193,191,244,200,185,218,197,215,173,188,212,202,229,193,200,195,199,161,228,218,152,199,147,200,179,122,88,128,191,196,154,206,235,232,211,228,201,212,241,211,182,197,218,204,199,201,202,176,235,181,137,211,142,193,186,176,242,174,236,132,198,211,111,235,183,180,227,162,130,239,215,183,134,166,173,210,187,232,225,228,188,95,138,222,211,213,226,241,187,214,233,155,216,224,190,123,198,145,191,212,244,189,198,166,140,212,173,138,213,129,160,176,182,132,162,127,132,178,191,176,173,159,140,147,211,234,214,233,211,161,122,128,180,217,219,210,142,168,221,201,199,181,234,219,155,202,191,144,144,95,206,193,233,158,155,182,197,136,142,210,123,178,159,201,198,191,148,203,175,175,105,181,168,187,190,135,176,222,198,158,124,193,127,220,162,172,198,183,191,99,144,183,144,180,161,188,130,122,128,166,191,183,173,180,211,161,161,182,182,216,187,210,162,191,188,181,189,171,185,181,206,194,235,181,137,229,211,180,142,206,240,242,174,135,236,193,228,222,188,235,183,182,167,189,227,186,196,130,239,180,200,169,170,134,166,205,211,215,215,240,214,242,158,147,158,240,187,232,225,215,228,222,213,161,226,187,160,89,190,211,85,190,105,191,215,212,244,200,185,189,176,142,185,218,173,139,209,215,173,149,200,176,214,176,215,158,182,182,179,195,198,162,178,201,195,180,213,215,157,176,147,196,173,215,95,240,200,193,242,155,182,236,211,162,180,159,180,159,147,217,211,144,139,219,210,149,95,161,229,221,155,89,136,142,223,105,201,147,199,158,185,188,113,234,130,197,219,157,202,217,191,183,181,173,211,180,200,181,161,161,105,182,190,187,191,210,198,162,217,191,217,188,185,181,216,176,191,173,105,200,213,193,137,155,89,182,211,152,124,162,159,180,159,147,154,209,215,175,137,205,168,176,137,89,204,222,198,127,201,208,185,213,155,183,191,159,212,209,215,181,213,215,214,214,210,161,185,183,122,215,173,154,211,205,228,193,240,226,176,242,153,182,197,236,210,218,204,214,244,182,224,186,176,205,197,211,188,196,193,190,200,211,195,199,161,228,218,152,222,199,147,200,222,122,198,88,128,196,211,225,217,183,180,226,178,188,132,190,199,219,234,202,173,217,211,217,219,210,95,176,161,137,221,155,89,217,224,136,142,223,201,123,147,199,135,185,188,171,180,234,130,219,202,99,206,218,200,222,222,211,168,216,182,146,224,155,202,216,120,136,142,161,158,211,127,195,191,192,155,188,154,191,211,215,211,205,225,214,120,217,119,214,204,119,201,213,137,196,219,203,235,203,175,212,211,109,142,105,228,189,186,161,225,160,218,146,211,226,119,215,124,119,147,215,127,195,129,176,142,153,122,100,231,221,137,98,166,211,212,197,206,209,215,175,229,215,213,215,210,214,229,211,235,212,200,218,231,202,197,240,213,148,215,211,205,202,176,226,241,193,200,211,135,176,132,119,193,199,152,119,127,158,180,128,189,180,172,196,170,181,207,137,152,211,225,217,211,138,226,114,186,193,193,85,201,152,193,199,219,188,189,234,202,140,211,194,210,203,144,200,222,211,187,106,216,216,214,195,214,127,132,195,191,202,196,211,206,235,232,211,205,228,201,241,176,211,182,197,218,204,214,201,179,201,215,202,176,144,139,167,173,144,149,222,189,186,154,182,193,162,189,176,130,173,176,166,154,173,226,105,174,179,119,162,199,188,182,129,200,167,196,234,200,169,202,197,147,154,212,240,235,234,215,240,213,193,137,242,89,236,235,105,162,180,222,239,176,144,144,176,158,182,182,179,132,136,142,127,178,135,132,128,178,159,140,147,225,181,167,229,149,180,193,212,161,225,186,160,127,174,235,152,229,211,127,188,215,141,183,167,128,93,227,215,171,196,142,200,215,88,157,98,166,217,139,219,210,167,149,95,229,221,155,89,190,132,136,142,105,228,222,158,188,113,130,197,219,157,183,154,211,148,203,215,175,175,205,186,176,229,215,137,135,176,179,187,228,204,222,201,111,185,113,172,213,159,217,209,187,215,173,202,215,196,176,200,161,182,190,199,158,199,211,162,201,219,180,189,185,179,153,219,213,170,176,99,154,211,183,212,173,213,178,197,218,214,162,212,220,201,221,220,166,187,217,211,217,142,219,167,226,168,154,229,221,223,201,228,214,199,127,185,145,188,234,219,155,198,155,217,210,234,215,211,212,158,211,182,201,211,178,208,219,222,185,159,191,211,209,167,205,95,160,178,155,190,193,85,123,201,222,220,142,213,157,173,173,215,218,182,215,158,147,162,158,185,176,159,217,206,219,213,203,232,225,228,193,105,215,221,223,195,222,224,219,220,191,217,196,219,219,215,215,221,153,120,119,223,211,119,185,212,180,222,218,215,181,137,191,197,217,211,212,225,213,215,168,213,214,176,146,178,202,226,190,210,214,195,217,178,227,155,221,202,220,197,240,206,173,211,240,226,226,242,211,236,199,208,244,220,224,179,234,147,139,149,211,181,226,190,182,182,216,179,187,193,191,193,199,183,191,196,185,176,234,200,198,202,216,191,225,161,176,161,215,197,210,214,158,219,159,171,185,180,201,212,225,217,215,194,203,167,200,189,222,213,229,182,224,132,214,223,195,222,219,195,185,201,215,183,196,217,200,217,209,173,211,181,212,187,215,186,182,223,211,193,162,219,185,162,185,113,219,176,212,161,213,215,182,179,193,224,158,185,171,185,201,128,225,240,219,234,240,215,242,221,236,179,223,222,191,197,225,203,175,212,212,168,216,176,146,178,202,188,216,190,136,142,211,195,185,178,227,215,221,207,217,197,225,217,219,203,234,215,201,182,179,223,178,222,219,211,215,214,147,158,197,206,183,175,201,186,211,199,166,187,154,212,191,142,139,205,222,186,200,161,216,213,215,154,176,182,136,142,204,201,135,145,222,159,220,189,171,176,198,173,155,200,175,215,109,188,189,201,161,241,225,114,160,137,178,188,190,214,195,190,191,158,193,215,208,244,176,142,113,185,100,181,98,188,173,197,196,217,219,210,105,176,161,229,137,221,127,217,224,223,201,123,124,215,135,188,155,171,180,153,219,88,144,142,144,142,154,158,178,182,179,132,190,142,178,145,130,198,191,155,147,154,197,203,210,232,175,173,232,226,229,182,235,201,218,211,162,199,199,234,176,212,209,235,225,144,232,213,213,229,153,179,208,182,188,167,186,169,205,217,211,210,144,219,210,167,144,189,229,221,132,119,201,228,222,198,158,198,119,185,129,185,128,159,176,130,122,219,128,183,202,137,197,211,203,175,225,205,232,234,212,213,176,229,182,197,235,204,211,199,201,199,212,234,201,202,176,217,211,210,144,217,139,219,144,149,226,229,221,190,132,119,223,201,214,222,158,119,199,185,185,159,234,122,219,157,128,202,137,154,187,183,181,234,188,206,200,225,224,182,215,183,188,222,220,189,176,180,212,225,175,109,95,213,229,221,155,182,228,208,128,93,185,130,100,98,152,152,217,154,211,217,229,173,205,226,168,176,176,146,182,201,204,162,201,235,195,219,178,215,185,219,155,231,176,154,215,187,178,174,182,217,211,215,224,210,188,185,185,220,196,196,200,176,217,225,217,234,215,200,212,233,215,182,179,211,223,211,219,191,180,229,197,196,219,212,137,211,200,206,240,234,212,176,105,193,229,153,161,135,236,226,132,193,152,127,128,180,128,162,130,179,221,157,173,215,226,179,218,199,188,183,129,200,220,196,185,234,218,200,202,207,173,197,147,217,217,219,183,210,186,106,229,178,176,221,146,223,201,228,222,198,127,195,219,183,202,166,187,197,196,137,211,142,228,186,212,193,233,242,153,161,236,132,152,127,111,235,180,128,162,239,231,157,134,173,225,206,219,218,194,235,137,229,206,187,229,160,242,221,202,236,179,193,229,192,189,215,170,134,187,197,211,188,212,202,229,193,200,195,199,161,228,218,152,199,147,200,222,179,122,198,88,128,191,196,154,211,215,205,180,186,176,178,182,197,204,214,162,195,200,201,207,176,166,197,217,196,225,217,219,215,182,120,179,119,223,195,218,178,185,200,220,219,215,181,137,197,159,196,225,167,142,215,176,178,197,214,127,132,185,219,188,128,178,185,201,197,235,181,167,149,180,142,212,161,225,186,233,160,153,127,161,152,127,215,235,141,183,128,93,227,171,88,157,166,217,142,232,228,180,188,240,213,226,241,105,187,214,154,233,218,224,217,215,224,193,135,217,217,212,244,216,187,155,191,175,105,106,187,186,135,132,214,218,193,158,124,111,208,222,128,180,172,155,215,152,99,212,211,144,142,213,203,212,167,144,215,200,213,215,154,201,145,200,188,130,218,213,198,173,225,217,219,218,213,216,215,176,229,221,182,226,223,228,222,198,201,132,217,219,217,192,200,128,227,185,213,221,183,216,188,220,197,212,161,176,161,213,215,182,182,120,179,119,161,119,129,171,180,122,197,137,200,235,180,95,138,232,234,222,216,129,196,229,224,200,216,217,214,105,123,199,208,145,185,191,185,239,196,215,198,166,197,187,140,196,211,206,219,210,173,205,193,226,214,176,182,214,191,201,161,204,147,162,199,201,185,185,234,213,215,128,176,229,196,183,167,201,155,174,235,214,188,135,199,217,217,181,185,196,200,215,231,216,197,196,196,219,205,206,200,225,187,196,158,200,217,224,179,199,193,182,167,180,186,169,202,180,159,147,205,212,181,225,200,180,226,213,158,199,178,212,185,234,202,220,159,147,225,209,215,194,203,167,200,189,222,215,214,182,224,182,132,214,195,219,195,185,215,196,154,225,173,228,229,158,178,182,188,190,228,222,198,162,127,178,132,231,183,147,187,232,225,228,188,95,138,222,213,226,241,105,187,214,233,224,155,217,215,224,190,123,145,191,212,244,198,216,166,140,197,240,217,203,234,201,240,212,242,158,182,236,179,211,178,219,222,185,219,159,211,234,173,206,200,225,187,174,197,224,214,162,188,167,180,222,201,196,169,180,229,210,213,235,205,222,202,176,137,218,182,178,200,188,217,190,215,85,224,199,161,198,212,199,180,178,113,198,207,188,220,166,200,196,193,206,200,226,202,196,218,158,200,217,215,199,199,222,186,234,202,180,159,147,205,154,212,167,138,176,213,215,176,188,190,204,193,135,157,188,176,140,154,205,213,176,182,210,218,204,145,212,188,221,198,176,173,240,234,240,168,229,215,242,221,236,228,191,217,219,213,203,232,212,225,234,228,193,105,190,221,195,198,215,220,144,142,167,144,142,154,215,176,158,178,182,179,132,210,127,178,132,145,128,178,201,130,198,155,144,139,167,173,144,149,222,189,182,193,162,188,181,176,130,173,166,187,159,225,217,210,232,212,181,225,200,228,182,179,179,201,188,178,219,183,182,222,224,196,200,169,221,220,154,212,142,213,215,176,188,193,136,142,193,135,145,159,198,188,176,140,211,234,206,200,214,214,161,222,220,122,215,137,180,229,210,213,235,205,222,201,234,211,202,216,129,229,218,182,200,89,188,217,215,85,224,195,199,161,158,198,199,185,191,180,113,198,166,196,206,175,200,226,218,158,153,161,182,215,201,199,178,185,234,215,180,159,154,209,215,109,205,106,190,146,132,105,204,201,195,212,128,132,128,220,213,100,198,98,134,212,183,215,144,180,213,178,161,188,122,173,144,183,144,180,161,158,188,159,130,122,128,173,229,139,219,203,235,203,175,212,167,149,211,205,142,228,186,161,161,168,105,225,106,186,233,229,160,242,127,211,226,119,119,147,215,158,141,132,195,129,180,93,155,171,239,153,155,88,231,221,137,139,213,167,149,105,232,161,186,196,146,120,199,124,127,195,244,93,171,153,122,196,128,181,134,173,225,217,209,215,203,167,200,189,222,213,215,214,182,224,132,214,223,195,219,195,185,201,215,196,217,197,225,217,219,203,234,215,201,200,215,179,211,223,219,191,180,154,211,200,205,161,161,190,193,195,204,193,201,195,171,197,198,191,159,196,240,234,229,138,129,229,197,210,244,188,222,93,215,201,130,159,140,147,212,191,173,206,213,233,182,162,113,159,147,99,229,225,225,229,213,106,229,215,176,221,158,178,182,179,190,228,218,222,198,127,127,178,235,212,178,220,215,147,197,217,210,175,228,241,201,219,220,224,185,219,147,229,235,205,180,201,234,222,211,202,216,129,229,182,200,89,216,217,85,195,199,158,198,208,199,145,185,191,180,198,166,196,200,212,196,211,144,209,219,175,144,205,228,240,202,226,241,213,215,178,242,200,174,236,199,188,212,188,180,213,200,211,218,210,203,212,106,216,216,214,195,210,214,127,192,215,202,207,216,188,196,175,193,206,200,226,202,218,158,153,217,215,199,199,178,185,234,202,180,159,147,144,229,173,144,138,226,241,129,229,182,85,136,142,162,135,111,93,215,130,98,176,140,225,217,137,229,215,240,226,178,215,160,190,242,202,236,211,201,229,199,219,145,181,215,239,142,234,198,198,202,154,225,173,228,106,229,221,158,178,182,188,190,223,228,204,222,198,162,127,127,132,185,231,183,147,197,206,203,175,180,201,179,211,199,166,229,212,215,144,215,211,193,201,234,213,211,161,235,199,185,200,179,218,215,225,206,217,210,215,193,158,182,179,119,201,218,119,178,219,129,200,220,186,218,137,197,159,205,229,225,219,225,234,213,106,229,176,221,146,158,182,223,228,218,198,229,127,178,212,178,220,147,191,213,232,225,234,205,228,200,212,161,119,228,222,193,119,185,129,180,179,196,181,207,137,180,191,109,176,114,214,176,89,187,105,193,127,195,212,222,185,178,93,100,157,98,134,197,191,213,232,225,234,205,228,200,212,202,161,119,222,198,193,119,185,129,180,179,196,183,181,207,137,180,210,232,225,188,95,138,240,186,222,211,213,241,216,187,129,233,236,216,215,224,190,105,123,198,193,145,191,244,200,185,218,198,166,211,191,142,235,167,215,240,226,154,129,242,182,236,235,179,211,178,111,185,188,93,185,239,198,170,98,191,180,155,217,211,217,219,210,142,226,221,223,201,228,199,127,212,181,234,219,155,202,225,206,217,210,232,200,228,215,174,179,223,188,183,182,167,222,186,196,219,200,169,221,191,205,217,211,210,175,201,226,160,201,214,199,199,185,188,234,130,219,202,173,155,144,142,167,144,142,154,158,178,182,179,132,190,210,178,145,201,130,198,155,240,187,232,225,215,188,222,213,161,226,241,225,187,160,89,188,190,214,85,190,191,193,215,244,200,189,176,142,185,218,215,181,173,213,203,175,137,167,211,206,232,106,127,200,120,211,199,199,147,111,141,128,132,244,155,130,153,122,196,88,157,181,207,134,211,225,240,142,218,148,137,167,234,154,229,160,158,202,182,135,176,178,235,185,145,244,192,185,130,159,217,240,142,215,167,228,180,188,226,105,187,154,233,218,224,217,215,224,136,190,135,217,217,212,244,216,187,155,217,196,219,213,225,193,213,215,221,223,195,212,129,222,224,219,215,207,191,206,142,139,167,167,149,105,161,114,154,129,178,127,217,85,224,198,124,147,158,181,128,155,153,197,88,155,211,144,142,212,167,144,215,205,213,215,154,176,204,201,145,188,130,218,213,198,220,173,197,139,181,167,229,149,180,212,161,225,186,160,153,127,174,235,215,152,229,127,188,215,235,141,132,183,128,93,227,155,171,196,142,200,215,88,98,166,200,240,167,211,215,149,105,188,206,232,241,186,196,146,211,191,199,124,195,128,244,171,153,185,122,128,181,134,217,240,183,215,181,167,228,180,240,226,241,187,233,218,217,215,136,142,193,185,212,244,181,196,240,211,144,209,183,181,226,187,233,218,217,215,224,142,218,185,183,181,159,224,196,213,229,215,201,214,178,153,161,235,136,179,142,199,182,200,188,167,159,186,179,130,169,229,183,194,234,142,228,232,234,226,226,241,178,182,179,199,178,219,227,185,234,231,202,152,173,187,152,154,211,211,205,214,214,224,204,215,201,129,189,215,225,142,167,142,154,215,176,197,210,214,127,132,145,188,128,178,185,201,130,198,155,211,209,234,211,205,142,222,138,186,200,181,161,161,216,182,187,201,135,145,220,171,176,213,198,180,140,217,225,217,219,235,175,226,158,182,179,223,178,219,244,239,219,159,154,211,183,212,173,213,178,197,218,214,162,212,220,201,220,176,187,211,217,183,186,226,229,176,223,201,222,199,127,132,128,178,234,183,202,166,187,154,144,229,173,144,109,138,226,241,229,182,85,136,142,162,135,111,159,220,215,100,98,176,154,142,194,232,167,225,173,228,187,154,160,182,210,218,162,128,145,188,220,227,130,152,176,134,155,152,196,219,203,235,203,175,212,211,109,200,142,105,228,186,161,225,186,160,218,146,211,226,119,215,124,119,147,215,235,195,129,176,142,179,153,100,231,221,137,98,166,240,139,187,232,175,225,215,109,188,189,201,161,161,241,114,160,137,178,188,190,214,190,191,158,193,208,244,171,176,113,185,218,100,181,98,188,173,197,196,212,144,183,181,144,215,205,188,213,187,215,176,217,211,215,224,190,204,201,185,183,188,224,130,196,213,211,215,109,205,106,114,190,146,89,132,105,204,201,128,132,185,128,220,93,213,100,198,98,134,217,229,154,211,210,173,205,226,213,168,176,182,201,204,229,162,201,195,212,219,155,176,200,211,196,219,234,173,205,196,218,200,197,217,215,179,199,193,182,167,222,186,201,169,202,180,147,205,154,144,194,232,144,228,228,187,176,182,218,220,227,130,142,172,130,231,176,134,155,229,210,213,235,205,222,211,202,129,137,218,182,200,89,188,217,190,85,224,195,199,161,158,198,212,199,180,113,198,207,220,166,235,181,229,149,180,142,193,212,161,225,193,233,160,174,235,152,229,211,127,188,215,141,183,128,93,227,171,196,200,215,157,166,225,205,212,213,229,190,153,161,119,228,211,119,185,212,180,222,224,198,181,137,209,180,215,178,119,195,210,119,185,129,213,196,154,209,215,211,225,215,176,217,161,204,162,122,213,128,176,159,205,176,182,210,204,201,188,181,221,198,220,176,173,211,181,222,189,226,176,105,178,215,179,199,219,183,185,180,185,234,157,181,202,211,191,206,200,225,187,174,197,179,214,215,167,180,201,196,169,159,147,191,211,158,174,179,190,215,178,167,180,196,169,202,159,147,211,212,105,213,174,210,214,147,188,185,196,200,181,200,154,219,215,205,196,233,218,200,174,182,215,210,204,199,193,188,185,167,180,220,169,176,217,211,181,161,161,190,158,182,179,187,193,191,193,178,217,183,191,217,189,171,196,185,200,198,216,191,200,240,232,137,225,188,226,241,106,196,193,195,191,161,111,128,132,189,155,130,153,185,122,157,128,152,197,152,196,191,175,229,233,190,228,199,198,200,210,175,215,142,222,232,240,186,225,196,233,242,182,89,236,190,214,85,158,198,208,142,197,215,197,196,219,188,212,202,193,215,221,127,200,161,179,214,223,199,161,152,199,211,147,220,179,88,215,128,159,138,106,129,215,160,182,179,136,142,222,198,127,135,159,142,183,173,140,235,234,173,215,95,240,186,242,155,182,236,235,123,162,180,222,159,239,180,154,209,215,137,205,201,168,114,176,89,105,204,198,127,201,208,199,185,93,130,213,155,183,152,191,159,152,217,197,225,217,219,203,175,234,215,201,215,221,182,179,223,199,222,219,175,206,229,233,190,228,199,217,219,210,105,138,161,229,137,221,127,217,132,224,228,123,222,124,135,155,171,153,219,88,157,140,217,211,217,219,210,167,189,226,229,221,197,120,223,201,210,161,228,214,222,198,199,129,185,128,176,234,219,183,202,191,211,215,167,109,176,176,89,105,193,127,222,185,178,157,98,154,173,109,226,114,229,182,85,136,142,123,229,162,111,244,159,215,162,100,170,176,211,234,214,233,211,161,222,220,128,180,217,142,210,167,211,109,114,154,186,129,193,233,193,85,223,201,193,180,189,100,202,155,211,209,203,144,200,142,213,215,195,200,188,181,130,213,207,197,148,203,232,175,225,215,228,188,213,176,168,196,193,127,211,135,176,120,132,195,191,152,193,199,147,127,141,180,128,155,162,180,185,172,122,155,88,128,197,180,200,187,203,190,211,214,190,218,222,198,141,180,222,189,155,162,153,198,215,170,183,211,215,109,205,176,176,146,105,193,127,195,212,132,222,178,220,180,98,134,138,176,146,158,182,182,179,132,136,142,178,135,195,212,132,128,159,173,140,147,197,225,167,200,222,193,95,138,222,211,212,168,154,178,182,146,178,89,202,120,179,105,123,127,135,195,191,182,192,181,167,227,186,113,122,155,215,169,128,188,155,140,205,217,229,191,240,217,210,181,180,228,186,234,200,226,241,215,190,179,223,188,183,244,182,196,219,200,198,169,231,166,180,200,212,240,211,144,205,205,226,213,215,196,176,178,233,200,174,218,204,199,193,188,201,244,188,180,224,196,213,200,196,219,205,206,200,225,196,158,200,217,224,179,199,193,182,167,186,169,202,180,159,147,205,197,240,213,203,212,205,232,212,226,241,161,176,198,193,119,185,195,129,180,180,179,172,170,183,181,207,137,220,180,197,225,183,105,193,189,212,168,106,114,129,202,174,217,190,85,224,211,124,119,147,188,158,132,145,192,167,215,186,196,176,153,197,200,155,215,169,187,99,210,206,167,95,189,89,190,123,198,127,135,128,176,113,229,212,203,215,144,215,211,212,214,229,199,185,200,218,215,217,219,210,142,168,201,181,219,155,202,211,205,105,176,182,197,120,119,179,195,204,188,201,183,196,201,200,202,137,176,196,154,209,215,205,206,200,176,233,204,158,147,158,201,222,213,180,191,211,205,225,214,120,217,119,214,119,129,220,215,137,154,213,182,210,218,204,185,212,188,181,221,198,176,173,212,209,183,186,213,215,129,188,181,213,166,187,191,211,215,167,176,176,178,85,105,193,127,222,178,220,157,197,211,206,203,225,205,232,234,212,213,176,229,182,197,235,204,214,211,199,201,199,212,201,202,211,215,109,205,201,106,114,190,89,105,204,201,128,199,185,128,220,93,130,213,100,198,98,152,152,200,142,222,201,232,240,186,234,105,225,114,196,233,137,242,182,188,236,190,190,215,195,161,158,199,208,199,239,142,113,196,197,188,196,212,209,215,105,213,210,161,158,185,183,196,200,128,206,210,173,211,201,212,226,226,211,201,211,162,199,244,220,224,239,234,225,209,215,200,215,215,182,214,195,198,195,185,176,215,157,196,154,211,206,210,173,205,193,226,214,201,204,162,158,219,185,185,185,122,215,147,232,228,180,186,226,158,182,226,199,178,222,224,185,234,221,202,166,159,147,196,144,215,235,225,144,232,213,178,229,208,188,167,159,130,169,154,212,142,149,142,189,213,154,193,136,142,193,162,145,159,198,176,155,154,173,142,213,182,197,210,218,214,162,185,212,181,220,201,221,220,176,187,211,197,203,210,175,226,160,201,214,199,208,185,188,142,234,130,219,202,140,240,187,232,175,225,215,109,188,189,201,161,161,241,114,160,137,178,188,190,214,190,191,158,193,208,244,176,113,185,218,100,181,98,188,173,197,139,213,149,105,232,240,234,161,186,196,146,200,236,120,199,199,124,127,195,93,171,153,122,196,128,181,207,173,134,173,144,183,144,180,178,158,188,159,130,128,173,197,148,232,225,211,228,202,226,193,200,211,176,120,119,191,199,152,193,199,147,127,158,180,180,185,172,122,196,88,170,183,180,225,142,218,148,137,167,173,226,241,154,229,202,135,176,197,210,214,235,185,188,222,142,201,130,155,147,217,210,211,138,114,193,193,85,223,201,152,199,189,234,202,140,225,144,144,106,215,146,197,136,142,210,222,198,127,195,212,185,201,130,183,173,155,217,217,232,228,229,235,218,219,220,185,219,147,210,240,187,232,225,228,142,188,95,186,211,213,226,241,225,216,187,129,182,216,190,190,105,191,123,198,215,191,212,244,185,189,185,197,198,181,173,235,181,229,180,142,193,193,233,160,174,132,152,198,211,127,188,111,235,183,180,128,227,162,196,200,215,157,166,154,173,226,105,174,179,119,162,199,188,129,200,196,234,200,169,202,173,176,197,211,215,109,205,201,106,114,190,89,132,105,204,201,128,199,185,128,220,93,130,213,100,198,98,152,152,154,187,181,234,188,206,225,178,182,190,215,183,188,222,220,189,176,180,229,196,213,183,167,201,154,155,174,235,214,195,188,135,199,217,181,185,196,200,215,231,216,197,155,196,191,211,209,149,205,138,200,129,155,188,193,123,204,201,222,220,189,213,188,140,211,215,109,176,176,146,89,105,193,127,195,212,132,222,185,178,220,180,100,98,134,154,142,167,205,213,154,176,182,210,218,204,145,212,188,130,221,198,176,173,225,217,235,137,240,178,215,160,190,242,202,236,211,201,229,219,145,181,215,239,142,198,198,202,212,144,215,144,142,214,195,129,181,159,130,196,212,173,211,225,215,190,218,182,215,158,162,158,185,198,191,176,159,147,212,191,173,105,206,200,213,233,127,89,182,105,162,141,155,113,153,88,159,147,99,217,225,211,219,188,212,202,193,215,221,158,127,200,161,182,179,214,223,199,152,199,211,178,141,155,179,219,88,215,159,147,211,235,232,205,228,193,241,213,215,176,153,179,210,201,208,185,212,182,186,239,213,205,229,225,142,218,148,167,234,226,241,154,160,176,197,214,235,185,145,192,188,222,130,201,172,134,155,147,240,211,144,209,183,181,228,240,226,187,233,218,215,142,193,185,183,244,181,159,130,196,217,197,144,203,175,144,138,226,129,197,136,142,201,210,214,199,135,208,128,159,234,201,219,134,240,139,187,232,175,225,211,215,215,149,109,206,201,226,161,241,114,187,176,137,178,211,190,214,190,191,158,193,127,208,212,244,200,178,189,93,171,113,185,218,100,215,98,173,191,144,144,200,114,186,158,211,136,142,210,123,178,180,159,201,180,159,147,191,175,201,229,233,190,221,211,228,199,198,154,144,229,173,144,138,226,241,129,229,202,182,85,136,142,162,135,159,93,215,98,176,140,154,173,205,226,105,174,119,179,195,204,119,162,199,188,182,167,196,234,200,169,202,137,176,196,206,234,226,233,158,153,161,211,199,222,185,234,215,180,159,147,212,105,158,147,185,183,196,200,191,105,95,206,233,137,158,155,89,152,124,178,141,159,153,159,147,217,212,217,210,137,175,211,212,226,213,114,211,135,176,201,201,172,219,100,229,196,142,219,213,183,181,95,138,201,222,202,216,154,224,216,235,195,105,123,199,183,231,187,155,140,196,196,139,219,235,175,167,149,211,200,142,228,186,161,161,168,225,106,186,160,153,127,161,119,124,119,147,215,158,235,141,132,129,93,155,179,153,100,155,88,231,137,98,166,211,209,215,215,214,174,197,179,210,214,147,188,158,167,201,169,128,181,200,154,197,225,209,219,148,215,173,211,205,105,181,187,186,176,215,221,158,211,182,179,187,223,204,193,162,178,201,185,162,113,213,176,147,196,209,219,193,215,193,127,197,191,152,158,199,141,185,180,155,234,201,196,88,202,205,211,225,109,138,206,226,114,186,129,233,215,190,85,199,185,219,180,188,234,100,198,140,206,144,218,203,212,168,216,176,146,178,202,188,216,190,136,142,195,211,127,195,192,188,185,178,159,227,130,155,207,188,200,197,211,105,181,187,214,229,215,211,228,158,124,193,220,162,153,191,159,99,210,196,219,203,212,181,180,222,228,129,176,137,182,178,211,188,235,120,226,190,85,161,198,235,195,212,145,183,178,113,231,221,198,207,188,220,187,188,212,202,229,200,195,191,199,228,218,199,147,158,200,222,179,122,196,198,128,191,196,196,219,219,215,205,215,221,153,161,120,119,211,185,212,180,222,185,218,215,137,191,197,144,105,178,158,147,185,183,196,200,229,210,219,235,203,212,109,205,189,202,114,176,137,218,178,120,226,217,190,190,215,224,127,195,212,180,178,142,113,122,197,231,221,198,128,207,188,220,166,99,211,183,225,142,178,226,220,221,187,147,211,191,142,235,167,215,240,226,154,129,190,242,182,236,235,179,211,199,111,185,219,93,185,239,198,170,98,191,155,191,211,215,167,176,176,178,85,105,127,222,178,157,173],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #10","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,217,217,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[215,142,232,240,222,233,242,218,224,89,236,217,214,215,85,224,105,217,200,142,185,218,215,216,142,167,167,142,154,182,188,197,179,190,210,178,188,201,130,198,188,225,176,161,215,197,210,147,158,171,185,180,201,197,210,225,219,218,203,175,211,205,142,189,186,105,193,160,146,211,202,217,190,224,152,127,111,141,195,192,180,180,178,93,215,176,197,197,191,219,203,201,200,233,215,190,221,211,198,191,180,139,187,213,137,189,201,232,161,161,187,176,178,127,135,120,190,147,111,141,212,178,189,155,162,171,130,176,153,122,88,128,207,188,152,152,148,203,235,175,167,149,211,205,228,202,168,106,233,242,200,211,176,236,235,132,185,180,227,171,239,172,155,157,152,217,210,211,142,209,234,205,206,186,222,224,136,198,215,201,135,217,145,217,197,213,198,216,173,180,155,154,197,203,210,232,175,173,228,232,226,229,235,201,218,162,199,220,185,234,154,191,209,215,225,215,176,218,215,204,158,158,201,213,176,209,167,205,95,176,176,155,188,190,85,204,193,201,220,142,213,157,188,217,225,218,203,167,211,95,154,153,155,211,161,202,120,105,161,123,158,188,135,199,195,217,192,181,167,227,179,169,155,229,187,235,142,188,186,234,187,229,160,137,224,195,190,191,161,158,193,217,142,113,181,216,173,196,144,222,211,106,216,216,119,136,142,158,119,127,132,191,129,188,130,122,128,137,188,197,139,181,137,167,149,142,186,212,161,106,218,153,161,174,217,215,224,127,111,132,183,162,170,134,166,215,109,222,206,161,161,216,182,89,211,212,185,173,240,203,203,175,212,211,215,188,206,232,234,176,168,106,196,211,193,191,199,132,195,244,129,128,189,185,155,157,220,187,109,232,234,222,114,160,137,242,218,224,217,215,224,195,191,158,189,239,142,113,185,181,216,197,196,200,197,187,215,211,213,196,190,211,120,190,222,198,158,212,222,224,189,218,198,183,197,211,211,225,205,193,232,213,215,176,229,153,161,235,210,214,201,208,212,179,213,215,197,225,196,219,218,148,194,167,229,149,187,212,161,105,225,233,153,161,202,135,176,235,229,127,215,128,192,128,215,171,179,172,170,157,152,152,217,215,142,232,240,186,129,242,218,224,89,236,217,214,215,85,105,191,217,217,200,185,239,185,218,215,181,216,173,154,209,167,205,95,176,215,176,190,178,155,190,85,123,204,193,201,142,180,213,198,157,154,191,209,215,205,206,200,176,204,158,158,201,222,220,213,211,225,217,142,167,226,106,154,229,146,197,223,228,214,222,198,127,195,212,185,219,145,188,130,198,183,155,211,109,138,226,114,186,215,190,179,85,214,193,135,185,219,180,188,185,130,100,140,106,127,132,214,187,161,218,193,141,208,180,222,128,155,153,155,215,170,212,209,215,181,213,215,214,178,120,119,214,210,119,185,183,215,137,173,154,217,212,210,144,167,211,144,222,200,213,154,176,224,190,204,198,217,217,222,159,220,130,197,216,173,176,166,187,225,218,148,193,186,187,176,233,202,176,235,132,198,229,211,128,192,215,172,215,157,183,152,173,152,209,234,205,176,233,211,204,201,222,185,220,213,180,210,215,109,232,240,211,241,225,216,114,233,137,182,236,216,214,158,198,191,113,197,100,215,98,173,197,212,225,167,189,222,213,215,182,224,132,214,219,185,176,191,144,144,206,114,186,233,158,182,197,136,142,210,123,178,135,162,201,130,191,210,167,105,137,127,190,132,228,123,222,198,124,135,128,155,176,153,88,183,99,154,212,210,144,167,234,144,205,206,222,213,215,176,224,142,204,215,201,181,222,159,220,130,197,166,180,187,144,144,95,206,114,186,233,190,158,182,197,179,136,142,210,123,178,180,201,198,191,211,148,105,201,106,214,186,190,135,176,111,199,128,220,113,172,198,211,211,205,105,176,174,182,197,120,119,179,195,214,188,201,196,201,213,200,137,196,200,212,196,211,209,219,235,232,175,205,202,241,213,215,200,179,199,201,185,212,167,239,213,169,200,191,187,203,175,225,234,215,200,213,120,119,190,198,193,127,158,212,224,189,218,183,197,167,186,215,182,197,179,214,185,188,181,185,180,201,157,188,166,187,139,167,149,105,138,161,229,127,190,132,228,152,222,124,141,155,153,197,88,157,183,155,140,197,194,175,167,193,95,138,187,212,154,178,176,178,89,188,190,119,179,105,123,119,135,195,217,182,129,181,178,186,113,122,215,169,128,216,137,155,140,205,209,173,215,176,190,193,224,161,193,162,215,189,122,198,128,191,176,159,147,210,229,200,205,202,105,186,176,182,178,127,200,188,235,217,190,190,224,199,229,198,158,235,141,195,212,185,180,178,93,227,155,197,88,188,173,134,173,144,203,144,211,228,212,214,211,226,199,185,159,215,215,197,203,203,175,212,211,200,188,206,232,234,168,106,196,211,191,199,132,195,244,129,185,155,221,157,220,217,142,219,210,167,109,176,225,154,129,229,218,221,215,223,215,180,181,162,180,219,100,98,155,206,144,168,176,146,178,188,120,190,142,161,127,185,217,217,129,188,185,178,159,130,155,216,188,212,211,209,225,193,232,213,213,215,229,153,161,235,179,210,208,185,212,182,186,213,205,154,212,191,142,211,205,142,200,211,161,161,216,213,215,176,182,216,136,142,204,201,135,145,191,222,159,220,171,198,155,206,217,213,210,215,158,182,179,201,218,178,219,195,212,220,186,185,218,181,207,159,205,173,144,95,200,114,186,155,182,211,142,123,159,180,159,147,154,212,167,173,138,176,213,215,129,160,190,178,190,123,162,142,180,198,191,176,173,159,197,196,139,219,218,194,175,137,211,142,186,187,161,168,106,193,218,153,161,202,217,190,215,224,111,132,192,180,162,176,179,197,155,134,173,210,138,189,137,123,198,198,147,127,135,128,176,140,99,105,168,214,190,198,158,124,127,208,220,162,155,198,183,191,99,217,200,154,225,211,219,211,205,181,212,214,193,215,221,158,127,211,182,179,223,152,204,178,141,155,88,159,147,232,181,225,180,186,226,158,226,199,178,224,185,234,202,159,147,225,144,144,106,160,146,197,136,142,210,222,198,135,195,212,219,185,201,130,183,173,140,240,206,240,226,242,161,236,199,244,179,234,215,147,139,215,234,149,189,200,214,89,188,105,218,185,189,188,212,211,225,213,190,158,182,217,179,193,215,178,189,113,198,191,147,99,196,191,219,212,234,200,200,226,241,229,190,153,228,211,185,180,198,215,221,181,213,225,234,205,228,212,213,202,229,190,200,161,191,228,195,129,224,179,185,196,198,207,197,206,144,218,203,175,212,144,212,214,195,211,212,185,192,188,159,130,215,207,196,154,211,235,228,193,241,153,161,182,197,218,204,214,162,239,201,215,202,176,217,211,181,222,161,161,105,178,158,197,190,214,198,178,185,217,217,189,171,185,201,181,159,147,217,211,210,144,217,139,219,210,144,149,226,229,221,155,89,190,132,136,142,223,105,201,147,199,158,185,113,234,130,197,219,157,202,99,217,219,210,222,211,226,216,221,197,216,120,201,210,161,228,214,198,199,132,191,129,128,234,219,202,154,197,225,211,219,215,175,205,105,214,176,229,215,221,158,211,182,179,187,228,204,158,124,178,201,180,153,213,170,159,147,99,225,144,217,144,226,161,176,197,105,210,214,147,158,219,159,113,180,197,217,197,217,203,235,175,201,226,158,182,178,199,219,244,224,185,239,219,159,147,217,218,203,167,211,200,193,95,154,178,153,155,211,89,161,120,179,105,161,123,158,135,212,217,195,217,182,192,181,167,186,179,122,169,216,155,205,240,210,211,240,212,226,242,158,211,236,201,211,208,219,244,185,159,147,209,215,234,205,176,233,211,204,158,201,222,185,220,213,180,142,168,178,181,211,209,234,211,142,138,206,211,161,216,190,198,191,213,180,140,210,187,213,105,222,232,240,234,211,216,187,186,233,242,182,236,190,215,224,161,198,124,189,93,239,197,128,134,173,99,142,139,167,149,138,161,114,154,186,129,178,193,132,85,228,152,222,198,141,181,197,157,183,155,140,212,167,173,138,176,213,190,188,182,136,193,162,135,159,180,198,157,188,176,159,140,211,211,206,225,211,205,201,234,212,213,215,176,211,197,210,204,214,201,212,201,213,215,202,229,196,144,219,215,215,205,234,202,214,178,200,174,235,142,199,188,200,159,196,130,218,200,95,222,182,224,155,89,136,142,105,127,158,132,191,188,113,229,211,206,209,211,201,213,215,211,210,214,229,179,218,213,215,210,167,95,189,155,89,136,142,105,228,198,198,147,158,188,128,176,113,130,183,212,144,144,215,205,180,181,105,213,215,176,217,211,224,191,204,201,181,159,185,130,213,181,187,154,209,137,173,201,168,114,215,176,215,158,89,182,179,105,222,198,162,127,178,199,172,155,183,176,159,147,225,209,210,215,228,215,197,214,199,212,200,234,201,218,213,202,212,240,211,144,187,183,181,144,205,188,213,215,176,233,218,190,218,204,201,183,188,224,189,130,213,240,206,210,211,240,226,242,158,211,236,201,178,208,219,222,185,179,159,147,148,203,235,175,167,149,211,205,228,202,161,168,106,233,242,200,211,176,199,235,132,185,180,171,239,172,196,155,170,231,181,152,152,217,213,210,203,212,200,213,105,158,182,174,179,201,178,219,195,212,182,167,186,169,159,205,211,225,226,178,199,127,132,185,219,181,128,178,234,225,139,219,148,235,175,167,229,149,211,205,161,161,168,105,225,106,211,135,176,235,229,215,128,132,185,180,227,171,130,179,155,170,152,173,152,148,181,211,180,142,193,186,176,233,174,135,176,235,193,228,222,198,188,128,183,182,167,186,196,130,180,172,200,169,183,152,166,173,205,200,191,187,203,234,215,200,213,196,190,211,120,119,190,222,198,158,212,224,189,218,183,197,213,203,212,181,173,200,226,213,218,199,183,212,220,196,234,218,200,202,220,173,147,219,215,205,213,229,221,153,161,191,211,119,212,129,180,222,224,185,218,196,207,191,144,142,144,154,158,182,188,179,132,190,142,210,178,145,130,198,155,147,225,196,139,219,218,203,194,175,137,229,211,186,187,161,168,105,106,193,218,211,202,235,217,215,224,229,111,128,132,192,180,180,215,162,130,176,179,197,155,134,173,187,225,215,95,138,232,186,129,242,155,236,190,191,123,145,200,185,189,239,185,218,198,181,166,140,148,234,201,200,181,213,176,146,176,187,193,161,195,212,132,199,212,200,224,189,155,162,153,218,157,180,154,205,142,213,176,182,210,204,185,181,221,220,176,187,217,217,212,209,215,194,210,203,212,187,226,106,213,214,176,178,188,197,190,201,210,214,199,127,127,178,234,201,219,207,210,225,139,149,197,190,210,158,198,219,185,185,201,157,128,229,217,213,175,142,186,105,89,85,195,161,158,193,217,217,113,216,196,154,225,217,205,188,158,153,182,195,158,178,219,180,185,122,196,219,215,147,196,217,142,219,213,212,181,229,205,180,228,95,138,202,154,200,89,226,195,105,199,123,158,229,235,208,145,183,180,215,221,207,220,187,155,140,211,234,173,215,233,218,174,182,197,211,215,210,214,162,188,185,185,222,201,196,200,176,225,217,210,232,228,182,174,226,179,179,201,188,219,183,182,167,222,224,186,196,200,169,221,173,191,205,217,212,217,219,222,211,226,216,213,229,221,197,216,223,201,210,228,214,222,198,199,132,191,128,234,201,219,183,217,225,211,217,219,215,205,106,176,176,221,146,202,182,226,223,204,127,201,219,200,178,227,185,218,219,213,176,217,215,142,232,240,186,129,242,218,236,214,85,105,191,217,217,200,185,189,239,185,218,215,181,173,206,210,235,173,211,226,226,211,201,199,208,244,220,224,239,179,234,147,154,187,215,188,178,218,182,217,211,215,190,210,185,185,183,220,189,196,200,176,203,212,109,142,105,228,201,186,222,211,105,216,114,196,160,224,216,235,120,226,119,229,199,124,235,208,185,195,191,142,122,196,100,231,221,128,98,99,211,219,234,173,215,205,187,233,182,197,211,179,214,199,193,162,182,167,180,201,169,191,211,139,209,149,205,95,189,200,129,160,155,193,123,201,222,220,189,176,142,213,173,211,183,232,225,173,142,197,226,214,162,185,181,220,201,187,217,197,225,217,219,203,235,175,226,158,182,179,223,178,199,219,244,222,239,219,159,196,191,219,200,232,200,226,241,229,153,161,226,228,222,193,211,185,180,221,181,180,212,167,173,138,176,213,190,188,182,190,136,142,162,135,159,180,198,157,191,176,173,159,140,147,154,212,191,142,211,142,186,200,211,161,161,216,213,215,154,176,182,216,136,142,204,145,191,222,159,189,171,198,176,155,217,206,219,234,193,232,200,226,241,105,215,190,174,226,223,167,186,219,198,173,191,205,191,211,139,209,149,205,222,138,189,200,129,155,123,204,201,222,220,189,176,213,154,191,209,215,205,176,218,215,204,201,213,128,200,203,212,175,109,142,228,186,222,105,114,196,160,137,224,216,235,120,226,199,235,208,142,122,196,100,231,221,128,207,98,220,99,200,196,234,173,215,193,202,196,233,200,211,199,193,182,222,186,201,202,147,205,211,137,176,114,214,176,137,89,193,127,222,185,178,93,130,180,157,152,152,211,209,181,215,214,120,119,214,195,210,214,119,185,183,213,215,137,196,212,209,215,181,213,215,214,178,120,214,210,185,183,215,137,137,200,189,202,193,176,218,146,178,200,235,217,190,215,224,199,152,199,127,111,235,195,128,185,180,178,227,162,130,176,196,197,173,134,173,200,229,187,203,212,137,175,188,189,201,240,234,161,225,233,229,176,242,178,127,236,190,119,190,191,193,119,147,215,158,111,141,208,212,128,199,195,180,178,155,162,130,176,239,185,88,207,137,188,152,220,152,217,212,219,210,222,211,226,216,229,221,197,216,120,201,210,228,214,222,198,199,132,191,128,234,219,183,240,210,211,240,212,242,158,211,182,236,201,211,178,208,219,222,185,159,147,210,139,209,215,173,149,176,215,214,176,158,182,182,120,190,179,214,198,162,178,129,180,213,215,176,147,211,191,142,148,137,167,215,240,200,154,158,182,135,176,236,235,179,214,229,178,185,145,185,130,239,142,180,155,211,105,190,137,218,158,127,155,89,182,179,215,105,210,152,124,178,141,159,155,153,201,198,88,191,217,154,211,217,219,173,205,228,168,176,146,182,223,204,162,201,195,219,185,218,219,155,231,176,154,203,232,225,173,205,201,232,212,226,229,182,235,218,204,211,162,199,199,212,234,201,202,176,200,213,212,175,109,142,228,186,105,114,196,137,224,235,120,226,161,199,235,142,113,196,231,221,128,207,216,220,183,215,235,232,225,232,213,196,136,142,199,193,185,183,159,196,239,130,196,217,206,144,194,144,200,187,168,176,146,178,188,190,161,127,195,185,217,195,217,188,185,178,159,130,155,200,211,196,219,234,173,215,205,196,233,200,197,211,179,214,199,193,162,182,167,222,186,201,169,205,240,148,137,167,234,154,158,135,197,210,214,229,185,244,188,222,239,142,201,159,155,147,217,219,183,148,210,235,206,221,135,176,235,223,193,128,130,172,219,134,187,217,225,211,217,219,215,205,226,176,176,146,202,182,226,201,201,195,219,200,178,227,218,219,213,155,176,183,186,178,187,144,229,214,178,153,179,142,229,235,208,182,188,167,159,186,130,169,231,197,205,217,196,219,219,213,213,215,221,223,185,195,212,180,222,224,185,219,215,181,207,191,217,154,211,217,229,173,205,226,168,176,182,201,204,162,201,235,195,212,219,215,185,218,219,155,231,176,197,240,203,212,211,188,232,202,226,241,200,211,132,191,199,198,199,127,195,244,180,185,183,220,137,167,234,149,200,137,178,190,193,218,128,224,189,130,113,152,180,152,240,203,175,212,215,211,200,188,232,176,226,241,196,200,211,132,193,191,199,199,127,195,244,128,189,180,185,220,187,215,142,232,242,218,224,89,217,214,85,191,217,217,189,239,142,185,215,181,216,173,197,225,217,137,206,215,160,190,135,201,199,219,145,181,142,234,202,225,142,167,106,154,229,146,197,214,222,198,195,185,219,145,188,185,130,198,183,155,217,191,219,234,193,232,234,200,226,241,105,190,221,226,198,173,180,225,144,217,219,144,138,168,129,229,221,197,136,142,223,210,228,135,219,159,185,142,201,155,134,140,167,173,176,213,190,188,182,136,142,193,162,135,159,180,198,157,188,191,176,159,140,147,210,109,232,240,211,216,114,233,137,242,182,236,216,215,224,195,158,198,191,113,197,100,98,173,197,196,200,229,139,148,203,212,149,188,240,234,161,161,196,193,233,229,176,242,146,135,176,236,226,119,191,152,119,127,158,195,212,199,195,129,180,178,162,171,239,185,172,170,221,137,152,220,152,191,225,183,229,215,240,200,226,178,215,179,211,229,199,128,219,181,215,239,234,172,198,198,202,152,191,134,180,152,187,232,225,95,138,240,186,213,241,214,242,155,236,191,123,145,189,185,198,181,166,140,191,219,203,232,212,234,200,205,228,200,229,190,153,161,228,211,185,180,185,198,181,220,210,183,109,193,189,106,186,190,179,152,211,127,141,132,145,182,167,186,176,142,100,215,169,198,98,187,205,154,225,142,213,182,226,210,218,162,185,212,181,221,176,225,196,219,218,203,194,175,211,142,189,186,187,161,168,106,193,218,211,161,202,217,190,224,111,192,180,215,162,176,179,197,155,134,173,139,187,213,137,175,189,201,240,234,161,161,225,233,176,242,178,127,135,236,120,190,119,190,193,147,215,127,158,111,141,208,212,199,180,178,189,155,162,130,176,239,88,207,137,188,152,220,152,142,187,232,225,188,213,105,214,154,242,155,236,190,135,145,189,239,166,187,155,140,142,187,215,232,167,228,180,188,240,213,241,105,214,154,242,236,136,190,135,212,244,189,166,187,155,196,219,213,183,167,229,228,202,155,174,214,199,229,188,135,235,208,181,185,196,200,215,231,197,196,225,191,225,240,217,218,210,180,186,200,187,229,215,190,201,235,244,192,198,191,166,180,209,215,173,161,215,176,190,158,120,119,193,161,193,119,162,171,122,197,213,198,137,191,176,159,147,144,144,158,178,182,182,179,132,190,136,142,178,135,159,191,147,215,95,206,211,129,155,216,190,123,218,198,191,224,197,197,203,210,173,228,201,212,226,241,229,235,201,211,162,199,220,224,185,147,232,225,180,186,226,158,226,199,224,185,234,221,202,166,159,147,225,215,178,188,197,132,190,214,185,219,188,181,185,240,148,234,129,135,197,210,229,244,188,222,93,239,201,130,159,140,147,229,211,228,232,234,241,197,214,185,192,181,224,201,231,198,173,147,210,229,205,189,202,105,176,178,127,200,235,217,190,190,224,199,152,229,198,127,158,111,141,195,212,185,180,178,93,227,215,155,197,88,188,134,173,105,222,232,240,225,187,186,233,242,182,236,190,195,161,124,215,189,93,197,128,134,99,240,211,209,187,167,228,180,226,105,233,218,136,142,218,244,181,159,189,187,191,137,176,214,176,137,193,127,195,212,222,178,130,113,180,157,152,152,197,209,175,229,215,228,215,197,214,199,235,200,215,234,201,218,213,231,202,154,215,187,233,174,182,211,210,214,162,188,185,180,220,196,200,176,229,225,142,218,167,173,232,234,226,241,154,160,197,210,214,162,235,128,185,145,192,188,224,201,198,152,152,200,203,212,109,142,105,228,201,186,222,105,216,114,196,160,224,216,235,120,226,199,235,208,185,195,191,142,122,196,100,231,221,128,98,99,197,225,196,139,219,218,194,175,137,167,211,186,187,161,168,106,218,153,161,202,217,215,224,111,132,192,180,215,162,130,179,155,170,134,173,197,191,213,203,232,234,211,228,188,200,202,200,191,199,222,198,193,199,195,129,179,185,196,183,207,220,180,154,211,211,181,205,176,182,197,204,214,162,201,183,200,201,173,176,197,212,173,213,190,158,182,182,179,193,224,193,158,215,158,178,185,189,198,191,147,154,211,183,225,173,142,213,197,226,218,214,162,185,212,220,201,187,139,183,149,180,211,216,190,182,158,182,197,216,193,214,193,178,185,191,176,201,198,191,147,154,187,234,173,188,178,182,217,211,215,224,190,210,162,188,185,185,222,189,196,200,176,180,211,187,173,188,206,200,225,178,197,224,210,214,162,188,185,185,222,189,196,201,200,180,209,215,215,214,176,182,197,214,179,161,158,182,167,186,185,201,122,213,169,215,128,202,205,212,240,211,144,144,205,240,226,213,187,215,176,178,242,236,218,201,185,183,244,188,224,196,130,196,213,200,210,191,181,211,222,105,178,224,197,190,210,214,198,185,185,201,197,181,159,147,187,213,148,167,175,211,215,149,206,201,232,187,193,176,146,127,135,176,120,211,119,190,152,193,147,127,158,141,208,195,212,199,244,180,178,189,162,171,172,88,170,207,137,217,197,225,219,203,234,215,201,200,215,221,211,223,191,180,187,213,235,109,188,234,222,211,216,114,187,229,160,137,218,224,216,217,215,224,195,190,191,161,193,191,189,239,113,185,100,181,98,173,173,99,197,187,211,196,229,190,211,120,195,190,228,218,222,158,200,222,189,122,198,191,196,212,173,95,213,215,176,146,158,155,182,132,85,123,162,178,195,212,132,128,191,176,134,159,147,191,144,144,109,138,200,114,158,197,211,85,136,142,210,178,135,162,201,130,100,170,159,147,211,148,106,214,186,190,137,146,135,176,132,111,132,128,220,113,172,198,240,210,211,240,212,226,242,158,211,236,201,211,178,208,219,244,185,239,159,147,197,191,219,203,215,201,200,215,221,211,223,198,191,180,206,142,139,167,167,149,109,161,114,154,186,129,178,190,85,152,198,141,181,128,197,183,155,144,144,222,222,211,182,224,119,136,142,198,158,119,127,132,185,191,188,159,130,122,128,137,234,149,200,114,214,137,178,188,190,193,218,128,189,93,100,188,134,180,240,144,234,144,215,138,240,129,235,210,135,222,93,239,201,130,98,159,140,147,154,191,209,215,205,206,200,176,204,158,147,158,201,213,217,219,176,225,229,178,218,221,215,215,111,145,181,93,162,142,180,219,170,98,154,213,183,212,215,205,186,176,182,197,210,204,214,201,185,218,220,176,166,187,200,240,187,213,175,215,206,226,241,106,211,119,193,190,193,119,158,132,244,189,189,170,157,207,137,191,175,175,234,215,200,181,213,168,187,193,127,195,161,152,193,193,147,127,212,200,128,224,180,122,218,155,88,128,197,196,191,167,200,114,214,137,178,89,190,193,218,128,185,189,93,130,100,157,152,152,154,212,173,95,213,215,129,176,160,190,178,155,85,123,162,127,178,142,180,198,191,176,159,142,218,183,203,194,175,211,187,216,129,176,137,153,224,211,161,188,174,216,190,119,85,119,188,195,212,145,129,178,196,179,200,137,99,206,219,194,215,193,187,229,229,221,174,211,193,235,167,227,186,205,144,209,183,232,181,228,240,241,187,242,236,142,185,183,212,181,159,239,130,196,154,211,234,173,215,187,233,218,174,182,197,211,215,210,214,162,188,185,180,222,201,196,176,203,175,211,215,211,200,206,234,202,176,168,200,211,226,132,211,193,191,199,199,127,244,128,189,185,196,155,221,157,210,196,218,203,194,175,181,211,109,180,187,186,182,146,153,127,161,198,127,141,183,93,155,142,179,100,88,198,98,188,166,142,167,105,138,222,106,154,129,178,137,182,85,179,211,198,124,147,158,132,181,153,155,155,140,99,205,144,229,193,228,201,178,153,211,161,179,142,235,182,188,167,159,215,186,179,130,169,215,231,197,205,211,217,142,167,226,106,154,229,221,146,223,228,214,222,198,199,127,195,212,185,219,145,188,234,198,183,154,173,226,174,119,162,199,182,129,200,167,220,186,185,234,169,181,197,147,205,212,191,173,215,218,182,215,162,185,176,159,154,209,215,211,176,190,224,161,204,162,215,201,189,122,213,198,176,159,211,183,232,225,173,142,178,197,226,214,162,220,201,187,211,211,203,215,205,180,176,178,182,197,210,204,214,201,185,195,200,201,207,176,197,234,149,109,200,114,214,137,89,188,190,193,218,128,185,189,93,100,98,188,134,229,211,212,209,211,201,213,215,211,210,229,185,179,218,213,215,137,176,214,186,137,146,132,193,195,212,132,222,113,180,229,210,213,235,175,109,105,188,222,211,216,229,160,218,216,120,217,224,190,191,198,124,193,191,93,185,122,100,128,181,207,98,220,173,173,99,211,215,214,176,174,182,197,120,214,179,214,188,201,167,201,122,213,169,215,181,202,154,211,235,232,205,228,241,176,153,161,182,197,218,204,214,208,179,201,215,202,176,212,217,219,167,189,222,226,213,229,221,182,224,197,120,132,119,223,210,161,214,222,119,219,191,129,128,201,183,217,196,225,217,219,205,158,153,182,120,179,119,223,195,191,218,178,200,180,220,196,219,215,137,197,159,196,225,217,210,181,234,228,232,234,226,241,215,179,179,201,188,219,183,196,200,231,191,229,219,175,215,205,234,202,214,200,174,235,136,142,199,188,200,181,180,196,218,200,191,139,209,205,222,138,200,161,216,215,176,182,204,201,135,222,220,189,171,176,213,140,211,183,232,225,186,178,226,224,202,166,147,217,144,217,219,144,138,201,168,129,229,221,197,85,136,142,223,210,228,123,135,128,199,219,159,185,201,134,210,105,222,232,240,225,187,186,233,242,182,236,190,195,161,124,215,189,93,197,134,99,196,200,229,203,212,137,175,188,189,201,161,225,233,229,176,242,178,127,188,226,190,190,119,191,119,147,215,158,111,141,208,212,128,199,195,129,178,155,162,130,176,239,185,197,88,221,137,188,220,212,209,215,181,105,213,214,214,210,161,185,183,122,215,200,240,187,213,203,203,175,215,188,206,232,176,241,168,106,196,132,211,193,190,119,132,195,244,129,128,189,155,157,207,137,220,211,240,234,229,200,160,158,182,229,178,128,145,244,181,215,185,130,172,198,134,159,217,142,219,167,109,176,161,225,154,186,129,229,178,218,221,217,215,224,215,180,181,171,180,219,100,98,155,138,213,129,160,176,158,182,182,179,132,127,178,135,132,128,178,159,142,140,147,229,154,197,203,210,175,225,173,205,232,234,226,213,176,182,201,204,229,211,162,199,199,212,234,201,176,215,232,240,222,233,160,242,218,224,89,236,217,214,215,85,224,200,142,218,215,216,197,225,196,139,219,218,194,137,167,149,186,187,212,161,161,168,225,106,218,153,161,202,135,235,215,229,215,128,132,192,215,171,130,179,155,170,134,173,213,210,215,158,182,201,218,178,219,195,182,167,220,186,185,218,181,207,159,147,205,137,176,214,186,176,137,146,193,127,195,212,132,222,113,180,212,144,183,144,215,205,180,105,213,215,176,217,211,215,224,191,204,201,181,159,224,130,213,217,142,219,212,181,229,205,180,228,95,138,202,200,89,226,105,199,161,123,158,229,235,208,145,183,217,180,215,221,207,220,187,140,139,215,234,211,222,95,189,161,161,160,85,218,171,176,142,173,180,191,167,234,200,114,214,137,178,190,193,218,128,189,93,130,157,152,152,211,232,225,173,142,197,226,214,162,185,181,220,201,217,219,183,148,210,206,221,135,176,235,223,193,128,189,130,172,219,134,187,211,209,183,186,213,215,210,201,185,195,200,188,213,207,166,197,187,213,158,182,217,179,193,224,193,147,215,178,189,113,144,95,193,190,137,158,155,182,179,210,152,124,178,159,201,198,191,200,197,187,211,196,229,211,190,161,228,218,147,158,220,189,122,128,191,212,196,144,209,219,215,175,225,144,232,213,202,178,229,200,174,199,188,188,167,159,130,169,211,240,234,229,226,229,158,202,182,179,199,178,128,244,181,185,198,202,152,159,152,142,187,215,232,167,225,180,188,213,241,105,214,154,242,236,136,190,135,212,189,239,187,155,225,217,219,109,95,201,168,213,229,221,155,85,223,228,123,199,219,93,185,130,100,98,152,152,105,189,232,240,161,225,186,188,190,195,161,124,215,128,130,176,153,128,188,134,197,99,196,211,109,138,206,129,233,190,182,197,179,85,214,135,185,188,162,185,130,100,198,170,98,191,140,217,197,225,217,219,203,234,215,200,215,179,223,219,191,180,240,148,137,234,135,176,197,210,214,229,185,244,188,222,142,201,130,159,155,147,210,215,158,182,201,218,178,219,129,200,220,186,185,218,181,207,197,159,147,205,200,211,196,240,175,173,215,193,202,197,199,214,162,182,220,186,201,202,205,211,209,215,213,215,214,174,197,179,210,161,214,188,158,167,169,128,181,144,144,186,193,190,182,197,179,136,142,210,123,214,135,180,185,201,130,198,191,197,225,219,148,203,173,215,186,137,221,89,182,223,105,111,219,185,217,203,212,229,205,180,228,129,137,200,89,226,85,199,161,158,229,199,235,208,217,145,185,217,180,113,221,198,207,216,220,166,225,203,229,205,189,202,105,193,176,218,146,200,211,235,217,190,215,224,199,152,229,127,111,195,185,180,180,178,227,215,162,176,197,134,173,211,173,205,226,176,182,214,191,161,204,162,199,201,185,182,186,185,234,122,213,215,202,176,205,211,203,175,175,214,229,228,222,198,158,124,180,220,153,170,191,159,99,206,215,210,173,205,205,188,226,214,176,153,200,182,201,204,147,162,201,219,185,213,215,176,217,142,210,167,211,154,193,223,201,193,111,181,189,93,162,142,170,202,98,155,217,197,194,175,200,187,212,178,155,120,179,105,161,158,135,195,212,217,217,182,215,216,205,203,175,175,168,193,190,127,214,187,218,222,198,127,141,180,155,198,215,170,183,229,109,200,205,142,105,201,186,222,211,202,105,216,114,224,200,216,119,199,229,124,119,199,185,195,191,129,180,227,215,142,122,100,128,137,98,166,99,197,191,187,225,234,215,211,200,213,196,190,211,120,119,190,222,198,212,224,218,183,137,197,213,225,234,228,188,212,213,202,229,190,200,191,199,228,222,119,129,224,179,196,198,207,211,212,209,215,213,215,174,197,179,210,161,214,188,158,167,169,128,181,229,200,142,105,222,228,201,186,222,211,105,216,186,196,160,182,200,188,216,235,119,199,229,199,198,124,119,147,235,208,199,185,195,191,129,93,153,196,100,137,98,232,228,180,228,232,186,226,158,182,199,178,219,222,224,185,234,202,166,159,225,217,137,206,215,160,135,201,193,145,181,142,234,202,234,149,109,200,114,214,137,89,188,190,193,218,128,185,224,189,93,100,98,188,134,180],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #11","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,217,217,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[217,235,109,234,181,114,229,160,137,187,195,158,217,239,113,100,98,173,197,196,144,173,144,176,190,158,182,136,142,193,162,145,159,180,198,157,191,159,155,147,211,210,144,217,139,144,149,226,161,155,89,190,142,223,105,214,199,219,159,113,234,88,157,99,194,137,222,222,211,187,202,176,182,178,200,188,135,190,199,199,198,212,128,199,185,191,162,130,196,170,188,173,134,173,217,225,217,234,215,211,212,211,182,179,223,211,208,219,229,148,203,212,222,240,234,181,225,193,233,229,242,188,176,236,190,119,152,119,215,158,195,129,180,239,172,197,170,137,220,225,139,194,229,187,161,161,225,196,146,235,215,191,199,229,199,215,192,215,185,196,181,215,215,142,138,225,129,155,211,224,123,218,224,140,229,211,206,225,211,205,201,234,212,213,176,211,182,197,204,214,229,211,199,201,212,201,202,176,212,173,211,213,190,158,182,217,224,193,147,162,215,178,185,189,198,191,159,147,191,211,215,149,109,189,200,114,89,193,105,128,222,185,189,93,100,98,134,196,142,219,183,194,181,200,138,201,187,202,129,137,89,174,119,119,145,183,129,196,113,122,200,128,137,187,140,217,213,212,109,105,114,235,120,226,217,189,93,185,122,100,231,221,128,207,98,220,173,99,206,95,168,176,146,178,155,89,188,190,105,123,211,127,158,135,217,217,178,113,155,216,210,196,219,148,203,175,211,189,168,105,146,211,135,176,190,128,130,176,179,172,197,155,152,173,210,240,232,225,215,228,211,213,226,241,225,114,137,216,190,214,158,198,215,128,191,244,200,93,113,218,197,100,215,98,134,200,229,187,167,175,149,200,240,161,229,242,146,236,226,190,193,195,199,189,171,239,231,221,229,217,213,235,181,229,161,217,217,93,100,207,98,173,99,191,213,203,232,175,175,225,234,228,200,181,168,187,119,193,193,119,127,129,180,155,207,137,180,229,212,209,215,144,234,202,213,179,229,185,182,167,186,218,169,205,139,203,175,211,205,202,161,168,106,218,211,217,215,224,132,185,180,197,155,173,235,109,234,181,114,229,160,137,195,158,142,113,173,197,196,191,211,215,149,109,200,114,89,188,193,105,128,222,220,189,93,100,98,188,134,173,225,215,218,215,147,162,185,176,159,144,144,215,160,176,182,179,136,142,210,127,135,132,128,178,185,201,173,140,225,217,142,167,211,225,154,129,218,215,193,201,199,111,189,93,162,234,170,202,98,155,191,234,215,201,200,213,176,193,146,195,152,147,195,132,199,212,200,224,180,122,218,88,128,197,180,196,211,211,205,105,176,182,197,195,204,214,188,201,129,196,201,213,200,196,211,142,209,234,205,142,206,186,225,215,136,142,215,201,135,145,213,198,180,155,197,196,139,219,167,149,212,161,105,225,106,218,153,161,215,127,215,132,128,171,179,155,173,154,212,191,173,206,200,215,127,152,162,141,155,113,153,88,176,99,105,234,222,181,186,229,242,218,224,217,215,187,224,195,161,124,128,217,93,239,216,134,99,196,217,217,219,222,211,226,216,229,221,197,216,120,119,223,201,210,161,228,214,222,198,119,199,191,129,128,234,201,122,219,183,137,211,109,138,226,129,215,190,179,85,214,111,185,219,188,93,185,100,198,170,98,140,206,142,167,138,189,222,114,154,129,178,182,85,152,198,127,141,132,181,155,140,211,142,209,215,186,225,154,211,224,136,218,135,145,224,213,198,173,155,211,225,211,109,138,226,129,215,215,85,214,193,135,185,219,188,189,162,185,130,100,170,140,191,176,146,132,214,218,193,158,124,195,212,132,222,162,180,153,215,99,154,173,226,204,119,162,199,182,129,200,167,186,234,169,181,202,176,197,205,144,215,225,144,232,234,213,196,178,229,174,235,199,193,188,188,180,159,196,130,200,213,232,175,228,181,176,226,168,106,187,132,193,119,129,128,180,155,207,137,180,144,142,167,144,149,142,222,189,176,154,190,158,210,193,178,145,130,198,198,191,159,147,210,206,142,167,109,189,114,154,186,129,178,193,85,198,198,127,180,181,128,176,100,217,142,183,203,211,129,137,153,211,161,174,85,147,188,158,212,145,217,167,196,179,200,99,212,161,161,213,158,182,182,179,158,158,178,185,171,197,200,225,218,194,137,222,201,222,211,187,216,196,193,202,135,216,152,199,111,208,128,199,191,192,180,215,162,130,196,181,225,213,212,193,201,178,153,161,202,214,136,179,142,195,182,192,188,167,227,186,179,130,169,215,221,207,220,196,205,200,229,139,187,167,175,149,228,240,161,229,242,146,236,226,190,193,127,195,199,189,171,239,231,206,183,149,161,161,178,217,132,224,228,222,111,145,93,171,142,170,198,157,183,217,197,175,95,212,155,119,136,105,158,211,119,135,195,212,122,128,137,229,196,144,219,215,175,144,215,234,202,178,199,229,200,188,167,159,130,218,169,217,210,211,209,234,138,206,222,129,155,190,123,198,217,217,197,213,216,180,140,217,196,225,219,219,203,212,225,200,193,213,215,223,185,222,224,185,219,215,220,191,191,144,109,138,206,233,158,182,197,179,85,136,210,214,178,135,111,162,201,130,100,198,170,98,191,140,209,205,95,176,155,188,85,204,193,201,220,213,157,188,134,210,148,203,205,189,202,105,176,146,211,135,176,198,127,195,128,185,180,178,130,170,152,173,206,142,167,105,222,222,211,106,114,154,129,178,182,127,224,85,179,152,211,124,141,132,191,181,155,153,155,88,155,205,201,106,127,132,214,218,193,141,132,199,180,222,128,155,180,153,215,170,197,203,175,187,229,214,187,161,228,193,147,220,215,128,191,225,210,228,228,232,241,182,179,179,201,188,219,183,222,196,200,169,231,173,138,213,129,215,176,158,182,182,179,132,127,178,132,128,178,159,142,147,154,211,235,175,173,228,193,226,241,153,182,197,218,214,162,220,224,239,201,202,176,205,211,109,222,206,161,161,216,114,137,182,128,224,93,171,176,100,98,134,180,144,105,215,137,127,155,89,197,193,224,105,210,214,124,141,159,155,171,185,153,201,88,240,215,205,232,234,212,202,200,161,226,191,222,198,193,244,179,185,196,231,183,180,197,191,203,232,212,211,200,188,200,226,241,196,211,190,199,222,198,193,199,183,220,180,203,194,211,200,193,187,178,211,136,179,142,161,199,195,182,185,186,179,215,205,196,211,232,175,225,205,232,213,202,215,176,229,235,179,199,210,201,185,212,182,167,186,213,169,205,210,191,183,173,211,180,200,224,182,210,162,188,181,197,176,187,167,105,95,189,137,127,228,123,222,198,198,124,135,141,188,128,155,176,153,88,183,211,144,144,106,178,188,190,119,158,119,127,127,185,217,217,185,159,130,122,128,216,137,188,203,175,193,127,152,222,198,141,208,220,155,88,191,217,211,210,139,219,210,167,149,95,229,137,221,127,155,89,190,132,136,142,223,201,222,198,199,185,188,155,176,153,234,130,219,88,157,202,99,154,210,232,173,211,228,212,226,241,229,211,235,201,218,211,162,199,208,220,234,196,142,219,183,194,138,201,187,129,137,174,119,119,188,199,145,183,129,196,113,200,128,137,140,99,154,206,235,173,228,226,241,153,161,162,199,220,224,239,179,234,215,202,176,154,212,191,173,206,200,215,127,162,141,155,113,88,176,99,217,211,217,142,219,210,167,226,154,221,223,201,228,198,199,127,195,212,185,145,234,219,155,198,202,217,210,215,215,95,222,225,214,129,160,224,155,211,85,123,218,215,217,217,224,142,197,216,229,235,203,212,137,222,181,229,218,127,224,216,120,217,119,147,111,128,191,155,130,153,122,207,152,220,210,206,183,167,109,189,190,179,198,127,132,145,180,128,176,142,100,98,154,191,139,209,149,205,95,189,215,129,176,160,155,193,123,204,201,222,220,189,142,213,173,229,212,209,229,215,193,213,153,161,229,235,208,185,200,179,218,205,200,183,181,167,175,196,136,229,199,193,135,235,183,181,180,215,231,197,206,167,222,138,211,168,106,216,178,137,216,123,211,147,127,135,155,188,155,140,99,212,144,215,229,144,215,193,214,153,161,179,235,208,185,182,200,215,186,231,205,206,105,222,138,222,211,106,137,182,224,123,127,135,132,191,140,99,240,211,142,209,167,226,154,233,218,215,187,136,142,218,135,244,224,173,166,155,211,148,215,205,106,186,190,137,146,135,176,204,201,111,195,212,185,128,220,113,213,198,191,211,212,197,206,218,213,203,215,175,212,213,214,202,226,210,211,185,192,227,221,220,197,209,215,167,228,180,240,226,241,105,242,236,136,142,191,212,244,181,159,187,235,173,193,226,153,161,162,199,244,220,224,239,234,215,202,225,139,229,188,161,225,196,218,146,235,215,191,229,199,215,127,195,192,227,215,176,185,217,196,225,206,219,219,232,225,228,193,215,223,185,222,224,219,221,181,220,191,142,167,142,154,215,182,188,197,179,132,190,210,214,145,188,185,201,130,198,188,155,218,203,194,189,187,202,218,146,200,202,217,190,215,224,199,199,127,195,192,215,176,172,196,197,181,212,161,225,218,153,132,215,211,127,215,128,171,215,157,152,213,232,175,175,225,228,181,168,187,132,193,193,119,127,129,128,180,155,207,137,180,210,225,105,158,182,174,179,179,201,188,178,219,182,167,224,186,185,169,221,159,197,191,213,203,232,212,225,234,211,228,188,200,212,202,196,190,200,199,228,222,199,195,179,198,220,212,167,173,138,176,213,129,190,182,136,193,162,135,159,180,198,157,188,191,176,173,159,140,210,148,205,189,202,176,146,178,200,135,176,190,199,198,127,195,185,178,172,196,170,188,152,173,152,235,142,234,229,89,214,85,105,215,173,197,232,167,225,211,215,149,228,206,226,193,176,178,127,120,195,152,147,127,141,180,178,122,88,170,128,197,196,211,183,225,173,186,178,197,226,218,214,162,212,220,201,166,211,200,168,146,214,195,195,185,195,155,215,202,196,217,211,144,217,219,210,167,144,189,222,226,229,221,224,132,223,105,201,228,214,222,147,199,158,185,128,159,176,113,234,219,183,202,187,203,212,109,188,228,114,187,160,137,235,120,226,190,191,229,235,189,142,185,122,100,231,221,128,181,207,98,220,173,99,217,219,187,212,202,215,221,200,161,120,179,119,223,190,199,218,199,211,119,200,220,179,137,197,159,200,225,203,175,105,129,196,137,202,120,85,161,199,185,195,227,113,122,196,198,128,166,154,240,187,205,188,176,178,190,204,183,188,220,224,189,196,217,191,206,219,234,193,228,232,234,200,226,241,105,215,190,221,223,219,198,231,211,144,210,144,106,188,120,119,161,158,119,127,127,185,217,217,129,185,159,122,202,216,137,188,209,218,213,215,210,226,168,213,215,214,197,201,214,199,195,212,192,234,201,155,221,202,220,197,235,234,181,229,160,137,89,195,158,142,113,197,196,154,232,228,193,241,153,161,182,197,218,204,214,162,201,215,202,176,212,240,211,144,183,181,144,205,105,213,215,176,233,218,204,201,244,188,181,224,130,213,200,225,175,229,200,188,186,127,191,193,119,147,158,141,217,217,129,93,227,215,155,153,88,181,216,137,173,134,173,154,240,240,176,178,174,236,190,210,204,188,185,185,244,220,224,189,196,196,200,176,215,234,211,222,211,161,161,216,214,182,216,85,105,218,171,180,194,228,180,228,232,186,234,187,226,178,158,199,178,222,224,227,185,234,231,202,166,159,147,210,228,201,212,226,241,229,235,201,211,220,224,185,147,229,197,240,215,211,205,228,234,212,202,200,211,191,198,244,180,179,185,196,231,183,154,95,215,129,176,160,155,123,204,193,201,142,188,217,210,211,209,234,205,138,206,222,190,198,201,135,217,217,220,197,213,216,180,140,229,196,191,240,219,228,234,229,221,244,227,215,231,180,215,234,211,95,211,161,161,216,160,182,216,190,85,218,191,171,142,173,180,173,211,225,215,190,182,217,224,158,147,162,215,158,185,189,198,191,176,159,147,217,187,229,200,105,188,187,186,119,190,191,229,124,193,119,147,158,217,195,217,129,93,227,215,155,153,185,181,216,137,173,173,154,211,240,219,205,240,187,242,182,197,236,179,210,214,199,162,244,167,180,220,224,169,176,191,167,234,200,186,178,135,176,190,193,218,158,111,189,113,172,154,211,173,205,105,176,174,182,197,179,204,162,188,201,129,196,201,200,169,202,176,197,211,211,205,105,176,174,182,197,119,195,214,119,188,201,129,196,201,213,200,196,200,210,225,148,229,188,222,201,196,182,202,188,135,176,190,191,229,198,208,212,199,192,215,185,172,170,181,188,152,152,210,148,235,200,222,228,187,193,218,182,188,135,176,226,217,190,215,224,152,198,129,189,172,197,170,231,221,211,144,144,106,178,188,190,119,161,158,119,127,127,185,217,217,129,185,159,122,128,202,216,137,188,206,235,173,226,226,153,161,162,199,244,220,224,239,179,234,215,202,212,225,167,189,222,213,215,224,132,119,161,119,219,185,176,201,122,157,137,225,235,226,178,215,160,190,242,211,199,128,219,181,234,172,198,198,202,152,191,134,225,144,144,95,225,193,215,197,217,193,224,136,142,123,214,193,215,219,189,185,130,225,209,210,215,226,215,202,197,226,201,199,212,200,227,234,201,213,229,211,211,206,211,234,213,215,176,211,161,197,210,214,229,201,208,179,213,215,217,187,203,229,200,105,188,187,186,160,119,190,191,229,124,193,119,217,195,217,129,93,227,215,153,185,122,100,181,137,98,173,173,99,181,167,215,180,188,234,187,214,154,229,235,190,135,200,181,218,187,155,197,175,212,155,120,119,136,142,105,158,211,119,212,129,122,215,128,137,154,240,240,187,174,182,236,210,204,188,185,244,180,220,224,196,200,176,211,191,142,235,215,240,200,226,160,242,182,176,236,235,179,211,199,178,128,145,181,185,130,172,191,134,180,206,181,211,180,142,229,233,193,179,228,182,189,186,196,180,200,169,152,166,173,152,205,212,209,218,213,215,210,212,168,213,215,214,197,210,214,199,212,192,234,201,221,202,220,197,217,210,142,168,201,212,181,219,155,202,196,219,213,228,202,174,226,214,136,195,199,188,181,185,215,196,200,215,221,220,196,203,232,212,225,234,200,205,228,212,229,190,153,161,191,228,211,196,198,220,197,225,209,210,175,215,228,215,202,197,226,214,199,200,234,201,213,202,200,187,203,175,211,215,200,206,234,176,168,106,196,226,211,193,190,132,128,189,155,221,157,139,211,228,105,206,189,213,161,186,188,135,214,158,124,111,212,200,171,176,172,218,215,188,99,200,229,187,203,211,206,234,168,106,226,211,190,132,189,155,231,221,157,229,217,235,109,234,181,114,229,160,137,195,161,158,113,100,98,173,196,217,219,183,148,210,211,178,233,221,176,193,223,193,128,189,130,172,219,198,134,187,144,144,138,215,160,176,178,182,179,132,136,142,210,127,178,135,132,128,178,159,201,173,140,229,196,240,219,215,228,229,229,153,211,228,222,193,211,185,244,227,215,231,181,212,95,106,213,215,158,155,182,182,179,85,123,222,198,127,178,195,212,128,183,98,152,152,154,212,149,138,189,215,129,176,160,193,123,204,142,173,213,235,105,234,222,181,186,229,218,224,217,187,161,124,128,217,93,239,128,207,216,134,99,187,235,175,200,228,189,201,225,187,178,188,190,190,215,190,193,215,235,208,189,176,197,231,188,217,210,235,142,206,190,242,236,235,223,201,219,173,187,235,215,142,232,181,129,229,214,85,105,200,185,239,218,215,173,197,240,211,232,212,202,226,241,200,226,191,199,222,198,193,244,179,196,221,183,180,197,175,181,180,222,222,212,168,193,160,182,146,153,161,174,198,188,127,111,183,180,93,162,196,179,200,155,188,166,211,183,194,232,173,228,186,178,197,214,220,224,201,166,187,147,210,148,137,205,202,105,176,182,146,178,200,135,190,199,198,127,195,128,185,180,178,130,170,188,152,173,229,210,148,235,203,212,200,222,228,187,193,229,218,182,188,176,226,190,215,224,152,119,195,129,172,197,170,231,221,235,215,95,138,232,186,234,129,229,105,191,123,200,185,185,218,215,198,181,173,235,225,95,138,232,186,181,155,191,123,145,200,239,185,218,198,181,173,140,200,225,142,212,181,175,205,180,95,138,154,196,200,226,195,105,123,158,199,183,180,227,215,221,207,220,187,155,140,217,206,219,181,229,215,240,242,221,202,174,236,211,179,223,193,229,188,183,182,167,215,186,196,239,219,200,169,205,212,210,139,149,161,176,213,215,182,182,190,179,158,178,185,180,128,154,212,167,173,138,176,213,215,129,160,190,188,193,162,142,180,198,157,188,176,173,159,140,217,210,240,215,228,222,226,225,214,160,224,211,85,105,215,217,217,212,185,142,216,173,154,206,232,225,211,205,232,234,213,176,211,182,197,218,204,199,208,212,179,234,201,215,202,176,210,181,228,228,232,182,179,179,201,188,178,219,183,222,196,200,173,144,142,167,167,144,142,176,154,158,182,179,210,178,145,180,201,130,198,157,188,191,155,147,211,191,142,235,137,167,215,240,200,154,160,242,158,182,176,236,235,179,211,214,178,185,145,185,130,142,172,134,180,155,225,218,183,234,142,226,226,178,229,158,202,182,199,178,235,222,185,234,202,187,159,200,225,218,194,137,222,201,222,211,187,216,196,193,182,202,188,135,216,199,208,128,199,191,192,180,162,130,196,181,173,229,210,213,235,137,234,222,211,181,216,229,218,127,216,120,217,119,215,224,198,147,111,141,128,191,155,130,239,153,122,88,207,152,220,152,142,215,232,225,240,181,213,241,214,154,242,236,191,135,145,212,239,185,181,166,155,148,167,234,105,200,186,178,135,176,190,193,218,158,124,111,224,189,172,215,99,211,212,225,206,203,215,212,213,214,202,226,210,211,199,185,227,197,240,187,144,205,188,240,226,213,215,176,178,242,236,190,218,204,201,185,183,244,188,224,189,196,211,240,234,229,229,158,202,182,178,244,181,222,215,185,173,159,147,225,175,229,200,188,186,127,119,190,191,229,124,193,119,147,158,217,217,129,93,227,215,155,153,181,216,137,173,173,210,148,203,205,189,202,105,146,200,211,135,176,190,127,195,128,185,180,178,176,172,197,152,173,152,240,187,203,175,212,215,200,232,176,226,241,168,196,211,132,190,127,244,128,189,180,155,221,213,203,173,215,200,226,105,174,179,218,199,188,195,182,167,220,196,185,234,218,200,169,202,207,147,161,176,161,215,210,147,171,185,113,180,201,197,194,232,228,180,228,232,186,187,178,158,199,224,227,185,234,231,202,166,159,147,217,173,186,222,161,161,182,190,210,198,162,217,217,188,181,189,171,130,216,173,166,187,159,144,183,181,144,215,205,181,105,213,215,176,233,218,191,204,201,183,188,220,224,130,154,181,234,215,181,105,218,182,217,211,215,187,191,183,188,220,176,154,196,211,206,219,210,173,205,193,226,120,119,195,191,201,204,162,199,201,185,180,185,234,137,176,196,209,187,183,215,232,181,228,180,188,213,241,136,142,190,212,181,159,189,239,154,144,183,173,144,180,206,200,182,162,215,188,181,222,130,176,166,187,139,203,212,189,240,234,181,161,161,225,233,229,242,178,236,190,119,215,195,129,176,239,221,188,220,240,217,210,211,240,212,242,158,211,182,236,179,201,211,178,208,219,244,222,185,219,159,229,203,212,105,186,235,120,226,124,217,217,93,153,122,231,221,128,207,216,220,134,200,191,203,175,175,234,215,200,181,213,187,119,198,193,119,127,212,224,218,183,137,197,154,209,109,205,114,176,190,178,105,204,127,201,128,178,93,130,180,213,100,198,98,152,152,211,206,129,233,190,182,179,214,111,185,188,93,185,198,98,191,155,140,191,105,200,176,176,218,193,158,124,127,195,212,222,178,162,180,153,157,99,154,206,235,173,228,226,241,161,162,199,220,224,179,234,215,202,217,225,240,217,234,211,240,212,242,158,211,182,236,179,211,178,208,219,222,219,159,210,183,189,106,193,179,211,198,127,132,145,182,180,93,186,176,142,100,169,198,98,205,206,95,168,106,216,146,178,155,89,188,216,190,105,123,127,158,135,217,113,155,216,188,139,137,211,206,189,161,186,214,158,111,212,200,224,171,130,176,113,215,152,152,211,191,142,148,235,137,167,200,154,242,158,182,135,176,197,236,179,211,214,178,185,188,185,130,142,191,180,155,212,173,211,225,213,215,218,182,215,162,185,113,176,159,147,99,206,183,137,149,161,161,160,217,132,224,179,228,222,198,182,171,198,157,183,187,211,225,173,180,213,178,218,162,212,220,201,221,203,212,167,211,149,201,232,234,187,176,146,127,208,195,212,199,195,129,178,171,221,220,232,225,228,201,176,106,146,120,132,119,187,193,158,208,132,199,180,139,137,234,211,149,189,186,188,158,111,224,113,215,188,180,209,167,205,176,188,190,204,193,201,128,220,213,157,98,188,134,196,219,181,109,180,105,202,114,127,124,147,158,199,217,183,217,155,142,153,100,88,198,216,166,187,225,196,218,229,206,240,105,242,202,236,193,228,222,229,211,192,189,215,239,180,215,183,173,187,215,235,167,225,180,188,232,213,105,214,154,229,136,190,135,189,218,187,155,240,187,205,188,176,178,190,204,201,185,183,188,220,224,189,196,200,200,229,167,149,188,228,240,106,196,229,242,236,190,132,171,239,231,219,205,142,222,186,222,211,202,105,216,193,160,176,178,224,211,188,216,190,152,111,195,212,191,180,180,178,162,197,183,175,109,222,193,211,212,168,216,114,186,176,146,178,127,224,188,216,190,152,188,127,141,195,145,191,182,167,178,155,186,196,100,200,215,169,88,188,225,196,219,213,212,202,202,174,226,214,136,195,188,135,208,185,227,196,200,221,207,220,196,225,144,144,215,176,178,197,142,210,127,132,128,178,185,201,130,173,155,196,225,206,217,219,213,210,203,215,193,158,182,179,201,218,178,219,185,195,212,185,218,207,159,211,225,213,190,158,127,89,182,217,179,105,193,215,178,141,189,155,113,153,198,88,191,147,99,212,173,161,213,215,158,182,182,179,193,193,158,158,178,185,171,197,128,191,147,194,228,180,228,232,186,234,187,226,158,182,199,178,222,224,227,185,234,231,202,166,159,147,154,213,212,181,173,200,218,162,183,220,196,218,202,220,173,139,137,211,206,189,161,186,214,158,212,224,171,130,176,113,215,152,180,152,144,215,229,144,215,193,228,214,153,161,179,235,208,182,200,188,159,215,186,130,169,231,205,191,148,167,234,105,200,176,178,135,176,214,193,218,158,124,127,111,178,224,189,162,172,215,157,99,187,203,212,228,187,186,127,224,235,226,119,119,147,158,111,235,141,128,217,195,129,189,155,153,88,231,221,216,137,134,154,211,173,205,226,119,195,204,119,162,199,185,182,129,186,185,234,137,176,196,205,211,225,193,232,234,213,213,215,229,235,179,210,201,185,212,182,186,213,205,217,211,144,210,144,222,211,216,216,201,228,198,158,199,127,132,185,185,159,234,122,219,128,202,137,219,215,188,212,213,202,215,221,200,161,199,199,211,119,212,129,222,179,218,207,191,217,229,191,240,206,219,194,200,187,105,229,190,221,174,223,235,244,182,192,167,227,186,219,198,169,173,180,205,200,142,183,181,167,180,154,196,155,214,229,199,193,135,235,185,183,185,196,215,231,197,187,155,211,215,234,211,95,206,211,161,129,160,155,216,190,123,218,198,191,142,173,180,194,181,228,180,228,232,234,226,158,182,179,199,178,219,183,222,227,185,234,231,159,212,225,109,95,213,215,155,182,182,179,222,198,127,93,130,100,155,183,98,152,152,229,213,235,137,234,222,211,181,216,229,218,127,216,120,217,215,224,198,147,111,141,128,191,155,130,239,153,122,128,207,152,220,152,210,187,148,235,200,222,228,187,193,218,182,135,176,235,217,215,224,190,152,198,193,235,180,189,172,170,231,152,152,211,211,215,176,174,182,197,120,119,179,195,214,119,188,201,196,201,213,200,169,181,137,196,212,167,175,211,149,200,240,234,187,146,226,193,208,195,199,189,171,221,191,225,183,235,215,240,226,178,215,190,242,236,235,179,211,199,219,239,234,198,202,152,191,173,180,187,152,206,139,183,149,161,132,179,228,222,198,111,145,128,93,162,142,197,170,198,157,183,154,212,173,95,215,176,190,178,155,190,85,123,162,180,198,191,176,134,159,211,211,206,209,229,211,201,212,215,211,197,210,214,201,235,215,218,213,202,217,235,109,234,181,114,229,137,187,195,161,158,217,217,239,113,100,98,173,197,196,148,203,175,211,205,189,202,105,146,211,176,217,190,224,185,180,176,172,197,152,173,152,217,196,225,206,217,219,203,212,225,200,193,213,215,179,223,185,212,222,224,185,219,220,191,191,148,167,234,105,200,178,135,176,190,214,193,218,158,124,111,178,224,189,172,215,157,99,240,211,142,209,215,167,228,181,226,154,233,218,187,136,142,218,135,244,185,181,166,187,155,200,225,203,175,200,105,129,196,137,202,120,85,199,185,195,227,113,122,196,198,128,166,109,206,211,216,214,182,89,216,190,211,105,198,191,185,224,98,139,137,211,149,105,189,186,188,135,214,158,111,212,224,171,113,172,215,188,180,99,229,183,194,228,228,232,186,234,187,178,158,199,222,224,227,185,231,202,166,187,159,147,206,181,211,180,142,176,229,233,193,179,228,222,188,182,167,186,196,180,200,169,152,166,173,152,205,154,211,213,203,212,215,200,205,180,176,178,182,197,204,214,201,218,176,225,144,144,105,95,176,161,215,137,127,155,89,197,142,105,210,214,141,219,159,155,171,185,180,153,201,88,99,225,144,211,225,114,186,215,218,197,215,193,136,142,123,214,193,135,185,219,180,188,189,185,130,203,175,175,215,181,187,190,120,195,222,198,193,212,200,222,218,198,183,197,196,200,229,215,205,234,214,196,235,136,142,199,193,183,200,180,196,218,200,191,225,183,215,142,240,200,178,215,190,236,211,201,229,219,215,239,234,198,191,173,180,187,235,215,95,138,232,229,155,191,123,145,200,185,185,218,198,181,166,140,212,137,173,114,215,215,158,182,182,179,105,222,198,162,127,178,172,155,183,176,147,210,213,137,222,234,211,181,216,233,229,242,218,182,127,135,236,216,120,215,187,224,198,147,111,141,191,155,162,239,122,197,88,207,152,220,152,225,217,142,167,211,226,154,215,201,193,199,111,219,189,93,142,234,202,155,240,210,211,240,212,242,158,211,182,236,201,211,178,208,219,244,222,185,159,147,211,191,142,235,167,215,240,200,154,160,242,158,182,236,235,179,211,178,128,145,185,130,239,172,191,134,180,217,196,225,206,217,219,213,203,200,193,213,215,179,223,191,185,195,212,180,185,219,215,154,219,205,240,226,187,196,176,242,200,182,236,179,210,218,204,199,193,185,244,167,180,224,169,176,211,205,226,176,182,120,214,191,204,199,201,185,182,186,185,234,201,122,213,215,202,176,205,211,225,211,109,138,226,225,114,129,215,218,215,193,85,193,199,185,219,188,189,162,234,100,202,140,154,209,215,175,205,105,168,176,229,215,158,182,179,228,204,222,198,124,162,178,201,208,185,162,113,213,176,159,147,200,225,175,109,200,142,186,105,114,196,202,120,119,193,195,129,227,215,142,122,196,100,128,137,99,210,218,194,137,222,201,211,187,196,182,178,202,188,135,190,199,198,212,128,199,192,130,196,170,181,188,152,173,152,154,196,206,219,210,205,193,158,120,119,195,201,119,219,180,185,196,137,147,196,168,193,190,127,214,218,152,127,141,208,199,222,155,155,198,88,215,183,217,154,225,211,217,219,187,202,196,158,161,182,179,214,223,190,199,161,199,211,158,178,189,179,122,219,215,128,147,217,219,183,137,176,225,229,178,160,218,221,135,215,215,145,180,219,198,142,183,203,167,211,193,95,138,154,153,211,89,161,119,123,119,129,181,167,186,113,179,122,169,128,137,155,140,191,201,106,132,195,161,152,193,147,208,199,200,222,128,180,122,155,88,128,196,200,225,218,175,186,196,160,127,202,199,147,158,141,208,217,217,192,93,155,153,196,88,216,173,200,213,203,232,175,228,226,168,187,132,193,193,119,127,195,129,128,189,180,155,207,180,197,191,187,203,232,212,211,200,200,226,241,196,211,190,198,193,199,195,183,220,180,214,176,182,214,191,199,201,185,182,186,185,234,201,122,213,215,202,176,205,200,225,175,188,127,224,202,152,193,158,111,141,192,227,215,155,88,181,216,173,134,173,229,225,217,194,210,181,234,234,200,187,226,241,215,179,179,201,188,183,192,227,196,200,169,231,191,217,219,183,148,210,211,178,233,221,176,193,223,128,189,130,172,219,198,134,187,139,137,211,228,222,206,189,161,161,214,158,212,171,130,176,113,215,152,152],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #12","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[229,213,105,186,235,120,161,124,93,128,207,220,134,99,154,212,139,149,222,138,189,216,213,215,129,176,160,193,135,189,176,176,173,140,217,219,210,167,105,95,229,137,221,127,132,136,201,228,123,152,222,198,124,135,141,185,188,155,176,153,130,219,183,202,200,148,188,201,216,196,224,176,216,191,208,172,181,152,152,240,206,210,235,240,226,242,158,236,201,178,219,244,222,185,239,179,215,159,147,210,235,200,228,211,216,218,182,216,226,217,215,187,224,198,235,191,231,221,200,210,218,187,175,188,189,201,176,218,178,202,217,190,190,224,190,193,127,208,195,212,199,178,176,197,188,240,232,228,95,213,226,241,214,233,160,218,217,215,85,105,212,244,185,142,173,211,212,209,229,215,193,213,215,153,161,210,235,208,185,215,179,218,213,215,231,161,215,127,89,182,179,193,105,155,171,185,113,201,88,99,139,137,234,211,222,161,161,216,214,137,218,224,171,130,176,152,180,152,205,180,105,114,200,85,199,199,124,147,158,208,185,180,198,166,99,203,229,200,228,181,186,127,119,229,124,119,147,158,235,128,195,129,215,155,153,137,134,217,197,142,175,167,105,193,138,212,154,178,137,179,124,147,195,212,182,181,167,186,153,215,169,155,140,99,205,205,222,202,176,182,178,200,188,190,199,198,127,195,212,185,180,178,196,188,173,152,217,137,105,232,240,222,186,233,242,218,224,236,217,215,224,195,161,124,111,217,217,130,216,152,197,152,99,196,139,235,228,189,201,161,225,187,233,176,178,215,127,235,208,212,178,227,176,203,212,137,105,228,186,235,120,226,119,187,124,147,235,128,195,155,130,153,122,231,221,128,220,134,240,203,212,232,176,226,241,106,132,187,193,208,132,199,195,128,189,157,220,200,196,144,219,175,229,215,205,214,196,178,200,174,142,199,199,188,235,200,188,180,159,215,196,130,200,231,210,189,196,176,146,178,200,190,199,199,198,127,195,212,178,176,196,181,188,229,213,105,235,187,161,93,100,231,128,207,98,220,134,99,139,137,234,211,222,189,161,214,137,218,185,171,130,176,152,180,152,212,211,213,190,158,127,182,182,217,179,193,224,105,193,215,178,141,189,155,113,153,198,88,191,147,99,212,173,138,213,129,158,178,182,132,190,123,162,178,159,142,191,159,147,217,219,210,137,176,161,229,178,221,217,224,223,215,145,181,171,142,180,219,232,167,225,228,226,176,178,120,119,193,127,158,212,178,189,157,137,154,173,215,226,174,179,162,199,195,182,200,167,186,234,169,181,202,207,176,197,205,215,215,138,129,155,217,211,215,224,123,218,224,140,203,175,211,205,189,202,161,168,200,211,217,190,224,185,180,176,197,181,105,213,193,190,137,218,158,89,182,215,105,124,178,198,191,159,147,229,217,213,235,137,120,111,217,155,130,153,122,128,207,152,220,152,217,211,144,210,144,106,158,127,132,185,217,217,185,159,128,202,216,188,225,217,142,167,211,225,154,218,215,193,201,193,199,145,189,142,234,202,155,197,183,109,222,193,211,212,168,106,216,186,193,146,224,216,179,211,127,145,191,182,180,167,186,142,100,155,215,169,98,188,205,240,215,228,142,138,226,129,233,218,155,217,215,123,244,140,217,142,167,225,154,218,217,193,223,201,199,215,111,93,142,180,234,202,98,155,167,234,200,193,176,178,127,193,161,152,127,141,212,200,180,178,224,189,155,88,170,157,128,180,196,206,217,219,213,210,215,193,158,182,191,201,218,178,219,185,195,180,220,185,185,218,207,159,147,229,183,181,167,215,187,214,136,142,190,185,183,200,181,218,196,240,203,212,167,211,215,200,206,201,232,241,146,211,187,193,208,195,132,199,195,244,189,221,157,220,212,139,173,211,216,213,182,182,216,193,136,142,162,135,159,189,176,176,155,183,193,222,106,182,224,179,211,111,132,145,182,167,93,162,186,142,155,215,169,198,98,187,205,196,219,181,109,180,105,201,202,114,127,124,141,199,183,155,142,153,100,88,198,187,210,225,139,149,176,215,197,190,105,210,147,219,159,185,113,180,201,157,99,187,148,175,188,187,224,176,190,191,193,217,189,185,172,170,216,152,152,196,219,218,203,167,187,202,155,174,188,135,208,195,181,185,196,200,235,189,201,161,225,187,233,176,178,190,215,235,208,212,178,227,176,188,210,139,148,137,167,160,135,190,179,198,211,127,188,182,167,128,186,196,130,197,200,169,134,187,205,203,167,211,193,138,154,178,137,153,211,89,161,179,123,147,158,182,181,167,186,113,179,215,169,155,140,99,205,200,229,205,214,196,200,174,136,142,199,193,188,235,180,215,196,200,231,197,215,215,95,225,214,160,224,211,85,218,215,224,142,173,232,234,205,228,200,229,190,221,153,161,226,191,211,180,196,198,221,211,225,167,226,154,129,215,190,193,199,185,219,188,93,185,234,155,191,211,139,215,149,109,222,189,200,114,89,193,105,128,222,185,189,93,176,100,98,152,152,222,222,211,216,196,182,178,224,200,188,216,190,199,199,212,199,191,172,196,181,188,152,197,183,175,109,193,212,168,216,186,193,176,146,178,188,216,190,188,127,195,145,182,180,167,178,186,196,142,100,200,215,169,198,98,188,187,191,234,200,176,193,176,146,195,161,152,147,127,195,212,212,200,178,224,218,88,157,128,196,175,168,190,120,195,218,222,198,127,158,200,222,122,155,198,183,197,196,217,229,191,240,206,217,219,194,234,234,200,187,226,105,215,190,174,223,235,244,182,192,167,227,186,219,198,191,180,205,154,212,173,95,215,176,190,178,155,190,85,123,162,128,180,198,191,176,134,159,200,196,211,219,232,205,205,232,202,215,196,176,229,200,235,179,199,210,204,199,193,201,185,212,182,167,186,213,169,210,240,232,137,225,215,228,211,213,226,225,186,216,190,211,214,158,198,215,191,212,200,130,113,218,197,215,152,152,99,211,225,144,217,95,226,161,176,161,193,136,142,223,123,152,199,135,185,219,188,180,234,130,197,202,229,197,211,188,228,206,240,176,196,229,211,132,211,193,199,199,127,235,128,189,227,180,200,240,187,203,175,215,232,234,176,168,226,132,211,193,193,127,244,128,189,189,180,155,221,167,95,201,154,153,155,89,161,120,119,105,123,158,119,188,135,129,181,167,122,169,128,137,155,200,212,144,209,219,215,144,205,234,213,196,178,200,174,199,193,188,188,180,130,200,154,212,144,167,234,144,206,186,225,213,215,154,176,142,204,215,222,159,220,130,173,166,180,206,142,167,222,138,222,211,106,114,154,129,178,193,182,224,85,152,127,132,191,155,140,217,206,95,168,176,146,155,89,136,142,105,211,195,188,178,113,155,201,168,190,214,161,218,147,127,199,222,155,198,215,128,183,105,138,189,222,182,224,228,123,152,198,124,135,141,128,183,140,206,225,205,232,234,213,176,161,182,197,204,214,201,212,179,201,215,202,176,181,109,205,180,105,202,114,200,85,199,124,147,158,208,180,153,198,166,187,211,232,175,205,193,232,202,176,229,182,197,235,199,210,218,204,214,201,212,186,201,205,211,105,225,213,193,190,137,218,158,89,182,215,105,152,124,178,153,198,191,159,147,225,106,229,176,146,197,210,214,222,219,188,178,185,201,130,183,173,155,240,232,228,213,226,233,89,217,215,224,105,212,244,185,173,217,148,200,228,193,135,176,235,226,187,152,119,158,235,141,217,195,217,129,180,162,172,88,231,221,216,137,152,197,193,222,212,168,106,160,182,174,211,188,111,182,167,93,162,186,196,200,155,215,169,170,198,187,205,211,215,234,211,222,200,211,161,161,216,182,216,85,105,171,176,134,196,144,215,144,228,202,214,179,182,188,167,159,215,186,130,169,231,197,142,213,229,180,228,95,138,187,154,155,226,214,195,105,123,145,185,185,215,196,220,187,155,140,196,197,142,183,175,105,193,212,114,154,129,176,146,178,127,188,190,85,179,124,141,195,217,145,217,182,181,167,178,155,186,153,215,169,88,216,205,225,196,219,213,228,202,178,202,226,136,142,199,188,167,159,130,169,215,220,197,197,142,167,168,216,114,154,129,178,176,146,178,127,188,216,190,85,179,152,211,124,127,141,217,182,181,178,155,153,155,88,216,188,155,205,215,232,228,142,138,240,186,213,241,214,242,155,236,123,145,212,198,140,105,214,176,132,193,158,124,127,132,222,178,162,180,99,144,203,212,144,211,193,201,187,211,214,195,199,188,159,179,130,215,215,207,196,142,235,232,225,232,181,213,214,154,187,135,145,239,185,181,166,155,200,154,211,196,232,175,205,228,202,241,176,182,197,179,199,210,218,204,214,182,186,201,176,205,200,210,218,187,194,175,189,201,187,176,178,202,188,217,190,190,224,190,193,208,212,199,178,189,197,188,191,234,205,232,200,226,241,229,190,221,153,161,226,191,211,180,185,196,198,215,144,167,173,144,176,190,158,182,136,142,178,135,159,180,198,157,191,173,159,140,147,200,210,188,222,201,196,176,182,178,188,190,191,198,212,199,178,185,188,197,196,139,219,167,149,211,161,168,105,106,161,217,224,132,180,179,197,155,173,240,203,212,215,200,206,201,232,176,226,241,106,146,211,187,193,208,132,199,195,244,189,157,220,217,225,206,217,232,228,193,215,226,223,222,219,181,191,205,200,187,203,175,200,232,226,241,211,190,198,193,127,189,180,221,183,180,154,139,209,149,205,222,95,189,215,176,160,155,193,85,123,204,201,189,176,142,213,200,188,222,201,222,211,216,196,182,188,216,190,191,199,208,212,199,191,185,181,229,213,109,181,114,160,137,235,187,195,161,158,142,113,100,98,173,196,240,139,213,215,189,232,161,241,188,211,190,119,119,158,244,171,176,207,137,188,194,232,181,228,180,228,232,187,226,158,182,199,178,222,224,227,185,234,231,202,159,147,197,206,144,175,144,212,120,142,161,211,212,129,188,185,159,130,222,95,211,137,182,155,89,136,142,123,198,127,135,132,191,188,130,99,225,229,200,105,186,119,124,119,147,195,129,93,227,215,153,137,134,173,200,197,215,211,213,196,229,190,211,228,212,129,222,224,189,218,198,207,191,218,194,109,200,142,105,188,186,187,114,187,160,119,193,119,129,192,142,100,137,98,99,212,211,144,209,183,181,144,228,180,240,181,226,241,105,213,215,242,236,191,218,201,244,181,159,130,213,229,196,240,219,194,215,187,229,229,228,211,235,185,244,192,227,215,181,180,217,206,168,176,146,178,155,190,136,142,105,195,188,178,130,155,128,211,212,197,206,194,203,175,212,187,214,195,210,211,185,215,207,196,229,213,109,114,235,187,161,93,100,231,207,98,220,173,99,211,211,175,225,205,232,234,213,202,215,176,229,235,179,199,210,201,185,212,182,186,213,205,209,232,167,228,180,240,181,226,241,154,242,236,187,136,142,191,212,159,185,181,166,187,217,218,187,194,137,187,187,193,202,190,152,111,128,192,180,189,162,130,185,212,211,144,209,187,183,181,144,205,228,188,226,241,213,215,242,218,201,183,188,239,130,213,210,215,109,206,114,89,190,211,198,215,128,191,212,185,224,93,197,100,216,98,134,229,225,225,218,181,234,226,241,182,179,201,235,219,183,192,196,191,154,206,232,225,173,211,205,232,234,211,182,218,204,162,199,208,212,179,234,201,215,202,176,203,175,211,188,206,240,176,168,196,229,242,211,236,132,193,199,199,127,235,128,189,227,239,155,157,191,211,139,209,215,149,205,222,189,200,193,85,222,220,189,176,213,134,215,215,95,225,129,160,224,155,211,85,123,218,215,224,142,173,225,194,215,205,206,240,187,212,229,153,161,211,228,222,193,211,235,185,192,180,180,185,183,181,210,215,109,206,222,114,214,89,211,105,198,215,217,217,185,224,197,100,216,98,134,212,161,213,158,182,179,193,193,178,171,113,88,99,225,218,137,193,127,202,152,111,141,128,192,180,189,162,130,88,134,211,205,228,226,241,213,215,176,178,174,190,218,204,188,201,185,185,189,196,239,196,213,200,139,148,211,149,105,189,213,188,214,124,212,200,224,162,171,176,153,215,188,180,99,215,226,199,195,182,200,167,220,186,185,234,218,181,207,147,205,154,173,226,179,204,162,199,182,200,167,186,234,169,181,202,176,197,205,218,187,194,175,222,211,187,216,187,224,216,190,193,191,189,229,222,211,181,216,216,235,229,235,191,227,217,206,168,176,146,155,136,142,105,195,188,178,130,155,154,211,232,175,205,228,193,202,241,176,182,197,199,218,204,214,182,186,201,176,205,217,217,219,222,211,226,229,221,182,197,223,201,210,228,214,222,158,199,191,185,128,234,219,128,183,217,217,183,210,142,206,233,223,201,193,219,173,187,152,211,217,109,138,226,176,161,114,186,85,223,201,199,135,185,180,188,171,180,234,100,202,140,211,212,197,206,218,213,203,215,175,212,212,213,214,210,214,211,199,192,221,202,220,197,212,209,215,229,215,193,213,153,179,235,185,182,200,215,186,218,231,205,225,218,127,202,147,158,111,141,128,192,189,155,88,134,229,142,187,95,138,105,155,214,191,123,145,185,189,215,166,197,140,203,167,211,193,95,138,154,178,153,211,89,161,179,123,135,199,182,181,167,186,113,179,169,155,140,205,212,211,187,144,205,228,188,226,241,213,215,176,178,242,190,218,201,185,183,188,189,196,239,213,225,217,183,206,178,215,190,201,219,234,198,198,202,152,173,152,193,186,176,225,218,174,132,215,222,198,211,188,215,183,167,171,215,157,183,211,197,206,203,194,203,175,187,212,214,195,211,185,215,207,196,211,217,142,219,167,226,106,154,229,221,146,223,228,222,198,199,127,195,185,219,145,188,234,198,183,173,155,200,225,142,218,183,203,212,181,167,175,205,95,138,154,196,155,200,202,105,123,158,199,135,183,192,180,227,207,155,140,197,191,211,188,232,200,202,226,241,196,200,211,226,199,222,198,193,199,179,221,183,180,211,212,206,218,213,203,215,212,213,214,210,211,199,185,192,227,221,220,197,229,167,175,149,228,240,161,187,229,242,146,236,193,235,208,195,199,189,227,171,239,231,240,148,232,225,215,215,222,161,226,241,216,182,176,190,211,195,161,141,244,155,162,153,128,197,196,139,167,175,149,228,201,240,161,187,233,229,242,146,236,193,127,235,208,195,199,227,171,239,213,212,105,228,186,235,120,226,187,124,235,93,122,231,221,128,207,220,134,99,206,180,142,176,225,229,218,215,179,228,222,215,182,180,169,152,166,173,152,212,167,173,213,129,158,188,182,190,123,162,142,180,188,191,176,159,147,197,225,218,194,229,205,206,240,187,212,202,176,242,161,236,193,191,198,235,192,180,189,239,180,179,185,196,183,154,137,173,109,114,215,176,176,146,132,105,162,132,128,178,93,130,100,191,176,159,147,191,211,139,209,205,222,95,200,211,161,216,182,155,216,85,201,222,220,189,171,176,213,229,217,203,212,137,127,235,120,226,119,147,111,141,195,217,155,162,130,153,122,88,231,221,137,152,220,152,210,229,222,211,181,216,218,182,235,217,224,229,198,191,227,217,206,219,181,180,186,229,233,221,179,193,188,183,182,167,189,186,196,200,169,166,205,229,234,160,137,89,235,187,195,158,142,113,197,196,229,187,203,175,215,188,228,206,234,176,168,196,229,211,132,211,193,190,199,127,128,189,180,231,196,219,203,137,211,142,186,211,216,176,178,224,211,188,216,190,195,212,191,178,130,170,134,173,229,181,180,228,232,234,187,226,241,158,182,199,178,192,222,227,185,234,231,202,159,222,201,222,211,216,196,224,188,176,216,199,212,199,191,172,196,181,152,222,211,181,216,216,235,217,198,235,191,227,229,142,181,89,235,214,187,85,195,158,142,197,196,215,142,234,129,229,214,187,85,105,185,215,197,218,203,200,105,129,89,202,120,85,161,193,145,185,195,192,113,122,196,198,128,166,235,193,206,105,229,235,193,228,222,189,180,215,173,225,197,210,198,147,158,219,185,176,201,157,191,139,209,149,205,222,95,189,176,155,193,85,123,204,201,222,220,189,213,232,225,215,109,240,213,241,114,233,137,218,89,217,214,215,224,244,200,218,100,215,98,134,229,211,211,209,193,215,153,161,210,214,229,201,213,217,229,191,225,240,206,217,194,234,234,200,187,226,241,105,215,174,223,182,192,167,227,186,219,198,169,231,191,205,212,173,149,222,138,189,213,190,182,136,142,193,162,135,159,198,176,173,159,140,225,206,226,178,215,190,199,128,219,181,234,198,198,202,152,191,152,191,225,240,217,229,215,180,186,200,215,179,201,229,219,244,215,198,191,166,180,187,148,175,188,224,176,190,191,193,185,172,170,216,152,152,148,203,212,200,228,193,224,135,176,235,226,187,152,119,158,235,217,195,217,129,180,162,172,170,231,221,216,137,235,215,142,95,138,232,186,129,229,155,187,123,200,185,218,198,173,140,139,211,215,149,228,206,189,213,188,214,161,212,200,180,155,162,171,153,218,188,180,144,218,213,212,144,211,193,201,153,211,161,214,195,192,188,159,179,130,215,215,221,207,220,196,205,212,211,144,209,183,232,181,228,180,241,105,142,212,181,159,239,130,213,191,225,183,215,142,200,226,178,179,229,199,219,239,234,198,202,191,166,180,187,217,218,187,194,137,187,187,193,202,152,111,141,128,192,180,189,162,130,185,88,134,222,222,211,196,176,182,178,188,190,199,199,198,212,199,191,196,181,188,200,229,175,211,228,206,234,106,187,229,226,211,193,193,132,189,231,157,206,210,212,225,213,158,182,179,201,178,219,212,186,221,181,220,159,205,211,210,225,144,217,139,144,149,105,95,226,137,127,155,89,197,190,136,142,223,105,214,199,141,219,159,155,153,234,88,157,99,229,218,181,234,234,226,226,241,182,179,179,201,178,235,219,183,192,222,196,200,154,212,210,191,144,142,167,211,144,200,213,154,176,224,136,142,145,222,159,197,198,176,155,212,240,211,209,167,228,180,240,226,242,236,187,136,142,218,244,181,159,185,213,181,187,212,240,211,144,209,183,144,205,180,213,215,176,233,218,204,201,181,159,224,185,130,213,181,187,225,217,205,188,158,153,182,179,119,178,219,129,200,220,196,219,215,197,159,147,142,235,167,225,232,105,214,154,229,191,135,185,218,181,166,187,155,212,142,167,234,205,186,225,213,215,154,176,217,211,224,136,142,204,201,159,220,173,180,155,229,210,235,200,222,228,218,182,188,226,190,215,187,224,197,231,206,235,173,226,226,241,161,199,220,224,239,179,234,215,147,217,137,229,200,228,181,127,119,187,229,119,147,158,111,235,141,128,195,129,155,162,130,88,137,152,152,213,203,232,225,228,176,226,168,106,132,187,193,208,195,129,128,180,155,207,180,191,211,215,137,167,176,137,89,188,190,193,222,185,220,157,188,225,217,142,148,137,167,211,226,154,215,135,201,193,199,219,145,181,189,142,234,202,167,234,178,127,190,214,193,161,141,212,200,180,224,189,155,215,170,180,211,232,205,193,232,176,229,153,182,197,235,210,218,204,214,201,212,201,176,205,206,210,235,226,226,161,201,199,244,224,185,239,179,234,215,147,197,181,180,222,193,222,211,212,168,160,182,146,153,224,174,188,127,111,183,191,167,162,196,200,155,215,170,188,187,217,197,175,167,105,138,212,154,178,176,137,179,211,147,195,217,182,181,178,186,153,215,155,140,99,205,240,148,232,225,215,215,228,105,222,213,161,226,241,216,182,135,176,216,190,211,195,161,124,244,162,153,172,218,197,99,196,225,206,226,233,215,160,190,199,128,219,145,181,234,172,198,198,202,134,105,190,137,158,127,89,182,217,179,193,224,105,152,193,124,215,178,141,189,155,153,198,88,191,139,148,181,167,180,142,193,174,135,176,190,211,127,188,128,183,167,128,186,196,130,172,197,200,215,169,134,166,173,205,232,181,228,226,158,182,226,199,188,178,183,224,196,185,234,200,202,173,159,147,229,139,200,228,189,240,181,161,161,225,233,229,242,178,236,226,190,187,215,176,239,231,188,240,213,167,211,215,206,226,241,176,211,119,127,195,212,195,244,129,178,189,157,207,137,240,148,232,225,215,215,228,105,222,206,213,161,226,161,135,176,211,214,161,124,212,200,162,171,176,153,172,218,99,191,211,139,215,137,149,109,189,200,114,214,89,193,105,222,185,189,93,130,100,152,152,217,205,142,201,186,105,186,193,160,200,199,152,199,141,208,185,180,93,98,197,219,235,211,205,212,176,233,153,161,235,132,198,127,185,180,128,179,181,142,215,95,138,234,155,235,191,123,145,200,185,185,198,181,166,140,212,211,144,209,183,181,144,228,180,240,181,226,241,105,213,215,242,236,191,218,244,181,159,130,213,139,187,235,175,229,201,161,161,225,187,233,176,146,193,215,127,235,208,195,212,199,178,189,227,137,201,200,135,199,199,128,199,217,185,130,196,170,216,173,134,173,196,203,181,211,180,193,160,153,211,161,174,212,217,183,217,180,93,142,179,198,216,98,166,187,200,142,218,183,203,181,167,175,205,95,138,154,196,155,200,105,199,161,123,158,199,195,183,192,181,180,155,140,173,138,213,129,160,158,182,188,182,179,132,190,136,178,135,159,142,191,140,147,217,219,212,225,200,205,213,215,221,153,223,191,180,222,224,196,219,215,220,191,144,144,105,95,193,215,137,155,197,193,224,136,142,210,152,214,124,159,171,185,201,210,225,139,149,161,176,215,190,147,185,180,201,229,225,225,217,218,210,181,234,226,241,179,179,201,188,235,219,183,192,196,200,191,225,226,213,105,158,182,174,179,201,199,188,178,219,212,182,167,185,234,200,169,221,159,147,240,148,232,225,215,215,228,105,222,211,213,161,226,216,182,135,176,216,190,211,161,124,111,244,200,153,172,218,99,196,225,196,219,213,202,178,202,174,226,214,136,142,199,188,167,227,200,215,221,220,197,139,211,215,149,228,213,127,188,190,161,141,212,200,180,155,153,218,170,188,180,196,217,225,137,229,200,181,193,135,152,229,217,180,227,215,162,130,152,152,196,206,217,219,210,215,193,158,182,191,201,218,178,219,200,180,220,185,218,196,207,197,159,147,200,229,212,196,144,209,219,215,175,144,205,202,196,178,200,174,199,229,188,167,130,218,169,217,106,178,155,188,190,136,142,105,127,158,217,217,188,113,130,155,216,188,197,187,213,203,232,212,225,234,211,228,196,229,190,211,190,228,222,195,224,189,198,225,218,229,215,193,240,229,202,211,228,193,239,215,213,212,229,188,228,95,138,105,187,129,89,226,195,190,105,123,158,145,215,221,198,207,220,166,140,196,217,210,215,222,225,214,224,211,85,105,215,217,217,185,224,197,216,229,225,240,217,218,210,234,200,187,226,241,215,174,179,201,188,235,244,182,192,167,186,196,219,200,198,169,173,191,205,137,173,106,114,215,176,146,158,89,105,162,178,195,212,132,128,172,191,176,159,147,148,203,212,200,228,193,224,135,176,235,226,119,187,152,119,158,235,217,195,217,129,180,162,172,88,231,221,216,137,225,229,222,211,181,216,224,216,229,191,227,215,154,173,205,226,204,162,199,182,129,200,167,186,185,234,202,176,197,205,229,139,228,189,201,181,161,161,225,233,229,176,242,178,236,215,127,212,178,176,239,231,217,210,142,206,223,201,193,219,166,210,137,167,180,193,160,135,190,211,127,188,132,182,167,186,196,130,176,200,215,169,134,187,205,211,209,167,109,205,176,114,188,105,204,193,201,128,220,93,130,213,100,157,98,188,152,152,212,215,215,193,228,213,214,153,161,208,185,200,179,215,231,205,229,213,105,186,235,120,124,128,93,153,122,231,128,207,220,134,99,210,222,196,176,182,178,200,188,190,199,199,198,127,195,212,178,196,181,188,219,232,234,205,228,229,190,221,153,161,226,191,211,180,196,198,215,221,139,211,215,149,228,189,213,188,161,141,212,200,180,155,162,171,153,218,170,188,180,196,232,225,142,138,240,186,213,241,214,242,155,236,145,212,239,198,173,140,218,194,109,142,105,188,186,187,114,187,160,119,124,193,119,147,158,129,192,142,153,100,137,98,99,217,210,240,232,225,215,228,222,213,226,225,114,137,224,214,158,215,128,217,217,212,244,200,93,113,218,197,100,215,216,134,240,148,232,225,215,215,228,222,206,213,161,226,161,176,211,195,161,124,200,162,176,153,218,197,196,225,218,181,234,180,226,226,241,202,182,179,201,178,235,219,192,234,191,193,186,161,225,218,174,132,215,198,211,215,183,171,215,157,183,181,173,213,218,162,199,183,212,220,196,200,221,202,220,173,211,210,217,139,219,149,226,161,193,221,190,136,223,201,123,152,124,199,135,185,188,234,130,197,219,157,202,211,217,167,109,138,226,129,217,85,224,223,201,199,215,111,162,171,180,234,100,170,202,98,155,140,191,225,234,228,200,213,168,119,187,193,119,127,208,129,128,224,180,155,207,137,142,183,181,167,229,180,187,154,155,214,229,135,235,185,181,196,215,231,197,155,217,217,219,210,235,181,180,206,186,242,235,179,223,193,219,166,229,142,186,234,181,129,89,235,214,187,85,105,215,173,197,154,209,148,215,205,106,186,176,137,146,89,135,176,204,201,111,195,212,132,185,128,213,191,159,229,148,235,203,212,228,222,193,224,176,226,217,119,152,119,158,195,129,180,172,170,231,221,216,137,217,219,148,210,137,225,178,160,218,221,135,215,193,223,215,145,181,130,180,219,198,206,235,173,226,226,241,153,161,162,199,220,224,239,179,234,215,202,225,183,206,226,178,215,190,201,199,219,181,234,198,198,202,152,173,152,219,232,212,225,205,228,229,190,221,153,161,211,222,224,196,198,221,220,191,212,211,209,235,232,144,205,228,241,213,215,178,174,190,188,201,185,212,188,196,239,196,213,200,154,196,206,219,210,173,205,193,119,195,201,119,162,219,180,185,196,137,147,196,217,217,142,219,210,167,176,161,154,221,217,224,223,201,215,111,93,171,180,219,170,98,155,211,201,214,158,127,199,180,220,153,155,170,183,191,99,218,187,194,105,188,187,187,186,160,127,190,191,124,119,147,158,192,189,93,155,153,185,88,181,98,173,173,200,148,175,188,222,216,224,176,216,190,191,193,208,191,185,172,217,225,217,219,215,188,202,215,153,200,161,182,179,223,218,211,178,129,200,220,218,219,215,197,159,191,201,200,106,146,132,195,161,193,147,158,132,200,128,224,180,122,128,196,200,197,211,181,212,187,229,215,221,211,120,119,187,195,218,193,200,220,137,191,159,196,206,148,149,142,161,161,176,217,132,224,179,228,222,198,128,182,171,130,172,169,157,183,134,187,205,196,219,181,105,201,129,137,174,85,147,188,158,199,145,183,196,200,187,99,225,234,215,228,200,213,176,146,120,158,195,212,132,212,224,218,197,180,217,187,194,137,188,187,187,193,190,191,152,193,111,128,180,162,130,185,181,134,173,240,203,212,175,215,200,206,232,181,176,241,106,211,187,193,208,132,199,244,189,221,157,220,200,240,203,175,215,232,234,176,168,187,226,132,211,193,193,127,244,128,189,189,180,155,221,154,196,211,206,219,210,173,205,205,193,226,120,119,195,201,204,119,162,219,180,185,196,137,147,196,217,218,187,194,137,187,187,193,135,190,191,128,217,217,180,189,162,130,185,152,152,217,225,191,240,206,219,218,229,215,193,105,229,190,221,202,174,223,235,244,182,167,186,219,198,173,180,205,206,180,142,176,225,229,218,215,179,228,222,215,182,186,196,180,200,169,152,166,173,152,205,240,148,232,225,215,215,105,211,213,226,241,216,186,182,135,176,216,190,211,161,124,215,111,191,244,200,153,172,218,197,197,99,196],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #13","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,154,154,154,154,154,154,154,154,154,154,154,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,173,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,213,213,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,215,215,215,215,215,215,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,176,176,176,176,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,182,182,182,182,182,182,182,182,182,182,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,182,182,182,197,197,197,197,197,197,197,197,197,197,197,197,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,179,179,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,210,210,210,210,210,210,210,210,210,210,210,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,204,204,204,204,204,204,204,214,214,214,214,214,214,214,214,214,214,214,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,162,162,162,162,162,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,178,178,178,178,178,178,178,201,201,201,201,201,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,219,219,219,219,219,219,219,219,219,219,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,220,220,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,185,185,185,185,185,185,185,185,185,185,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,201,201,201,201,201,201,201,201,201,201,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,202,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,191,191,191,191,176,176,176,176,176,176,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,159,159,159,159,159,159,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,147,147,147,147,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[203,212,137,229,228,127,226,119,229,147,111,235,141,128,195,129,155,130,153,122,231,221,137,152,152,191,211,209,211,205,95,200,211,161,161,182,155,216,85,123,204,201,191,222,220,171,142,213,167,138,189,222,114,154,186,129,193,182,224,85,198,127,132,191,180,128,155,140,217,187,175,187,190,193,217,217,189,185,216,154,175,173,228,193,226,241,153,161,162,199,220,224,234,201,202,229,222,224,235,229,217,227,216,222,211,216,187,182,188,198,191,189,225,215,109,240,242,89,236,214,200,239,218,215,98,225,144,215,144,228,214,202,226,179,182,200,188,167,186,169,205,210,225,144,139,144,149,105,95,226,161,176,193,137,155,197,190,136,142,210,152,214,124,141,219,159,180,153,197,148,215,228,105,206,211,213,186,182,135,176,216,190,211,214,158,198,124,111,191,212,200,113,172,215,99,200,175,109,142,186,105,186,196,160,127,193,141,93,155,142,153,196,100,88,98,225,137,193,202,135,187,152,111,141,192,180,227,162,130,88,152,152,183,203,211,109,114,129,153,127,211,161,174,85,152,188,141,199,145,155,196,179,100,200,88,187,200,201,222,211,216,196,224,216,191,199,208,199,191,185,181,213,148,235,234,229,127,135,176,120,141,155,162,239,153,172,122,128,207,210,225,218,194,229,222,187,181,218,182,202,188,235,217,190,190,215,187,224,229,192,215,197,188,229,200,193,127,135,152,229,119,158,111,141,129,180,227,215,162,88,137,152,152,167,211,215,200,206,201,234,176,146,226,211,127,195,212,244,178,221,225,213,183,181,167,228,187,226,214,136,193,135,185,183,181,196,215,220,197,200,175,188,222,201,222,211,216,182,188,216,190,190,191,208,199,191,185,203,212,137,229,228,186,120,226,119,229,124,147,111,235,128,195,155,130,153,122,221,137,148,105,206,211,161,216,186,182,135,176,216,190,214,158,111,191,212,224,113,172,215,144,144,105,95,161,193,215,137,155,89,197,210,152,214,124,159,171,185,201,197,154,167,95,176,215,176,190,155,188,85,204,193,128,180,198,157,98,188,152,176,134,152,206,139,183,148,149,161,160,135,176,132,179,228,222,198,128,130,172,197,198,157,183,134,187,240,139,213,203,211,215,149,206,232,161,241,188,211,190,119,195,244,129,171,207,188,220,196,206,219,213,210,203,212,200,193,213,158,182,191,201,218,178,219,185,212,220,185,185,218,220,159,147,240,232,228,95,240,213,226,241,214,233,160,218,85,105,212,244,185,142,173,210,196,176,182,146,178,190,191,199,199,198,127,195,212,178,185,196,188,144,211,144,95,225,186,155,182,197,217,179,193,224,136,142,210,123,214,193,215,180,159,189,185,201,148,203,212,200,228,193,127,135,176,235,226,119,152,229,119,147,158,235,141,195,129,180,162,172,88,231,221,137,206,95,168,176,146,178,155,89,188,190,136,142,105,147,127,158,188,178,113,130,155,217,219,183,148,210,137,176,229,178,160,221,135,176,217,224,223,215,181,171,130,180,172,219,198,134,203,175,181,211,180,160,176,178,153,161,188,174,190,188,111,195,217,183,178,93,162,196,179,200,170,198,216,187,232,225,95,240,213,241,214,160,242,236,85,105,212,185,142,217,219,148,210,137,176,161,229,178,160,221,135,224,145,181,171,130,219,198,139,232,225,211,215,149,228,206,213,226,188,120,190,195,147,158,122,218,188,197,196,217,225,219,203,212,225,200,205,188,213,215,221,153,161,179,223,212,222,196,219,215,220,191,142,187,229,180,188,105,154,155,214,229,135,235,185,189,215,215,231,197,187,155,140,229,139,149,240,234,161,229,176,178,236,226,127,212,178,171,231,154,217,191,209,211,205,138,200,161,161,215,129,176,160,190,123,204,198,201,217,191,217,222,220,171,213,216,173,140,197,175,181,137,180,142,222,211,212,168,216,160,176,146,178,153,161,188,174,216,190,188,127,183,191,178,196,200,170,188,166,205,142,186,105,186,193,160,200,199,152,199,208,185,180,93,98,166,217,211,144,217,219,167,144,105,95,189,222,226,229,137,221,127,224,155,89,132,136,142,223,201,214,198,124,199,141,185,155,176,153,234,130,219,88,202,217,217,200,142,183,194,181,175,200,205,95,138,154,196,200,89,120,119,105,199,161,123,158,199,183,129,180,122,128,155,140,210,225,218,194,229,222,187,181,218,182,202,188,235,217,190,215,187,224,229,198,192,215,197,197,181,180,142,193,189,186,212,168,106,174,176,198,128,132,183,176,172,155,215,152,166,173,152,196,142,183,105,201,114,129,127,174,85,124,188,199,145,155,196,153,200,88,225,213,183,181,167,180,228,187,154,155,226,214,195,135,185,183,181,185,196,215,220,155,196,240,232,109,228,213,226,233,218,89,217,215,224,105,212,244,185,98,134,197,191,240,211,188,228,232,234,212,202,226,241,200,199,228,222,193,199,244,179,231,180,217,142,148,210,137,211,225,160,218,135,176,215,193,223,201,215,145,181,189,130,142,202,137,234,211,211,161,161,216,214,137,182,216,218,224,171,130,180,200,175,188,201,191,208,185,216,217,196,203,181,211,180,160,153,211,161,174,111,212,217,183,217,93,162,179,170,216,166,232,167,225,215,149,228,213,178,120,190,193,158,189,122,197,180,191,225,234,215,201,200,213,106,132,119,193,119,208,199,212,129,128,224,180,218,137,225,196,219,218,229,215,193,229,229,221,202,211,215,181,209,137,167,109,205,176,114,188,105,204,193,201,220,93,130,213,100,157,98,188,152,152,212,144,209,225,144,234,213,213,187,178,174,188,188,180,196,130,200,217,148,215,105,240,222,241,233,224,135,176,224,195,161,124,111,217,217,244,162,153,172,216,197,196,217,210,139,219,210,149,109,138,114,186,229,221,190,132,85,201,228,222,198,180,219,157,183,140,200,225,218,187,203,194,235,175,229,211,187,168,106,242,236,190,132,192,189,239,155,157,229,175,211,228,206,240,181,106,187,229,208,132,227,231,157,196,142,219,183,181,138,202,129,137,174,199,208,145,183,196,113,200,140,99,229,229,215,187,214,136,142,229,235,185,183,200,159,196,218,196,231,211,142,209,215,205,142,217,211,215,224,136,218,201,135,145,224,213,198,155,183,109,168,216,186,146,178,188,216,190,179,211,127,145,182,180,181,186,100,155,215,169,216,98,188,205,197,203,175,167,193,138,212,178,137,179,123,147,158,135,212,182,186,215,155,140,99,205,191,234,215,200,213,106,146,120,132,195,193,158,195,212,132,212,200,128,224,180,122,218,197,196,206,142,167,109,222,211,106,216,114,154,186,129,178,193,216,85,127,132,191,180,181,100,155,229,211,211,209,229,193,213,215,153,210,229,235,185,182,215,186,218,213,205,200,175,142,186,105,186,196,160,127,152,199,141,185,93,155,142,196,100,88,98,200,212,196,211,209,219,225,205,234,213,213,215,196,200,179,199,193,185,182,167,213,169,144,144,95,186,155,182,197,217,179,193,224,136,142,210,123,214,193,215,180,159,189,185,201,144,144,138,129,215,160,178,182,179,132,190,136,142,127,178,135,132,128,159,142,140,225,215,109,240,241,114,137,242,218,236,214,158,128,200,93,113,218,100,215,98,134,225,229,229,227,215,170,196,148,203,175,181,137,211,180,142,222,186,211,216,176,146,178,153,224,161,188,135,216,190,127,195,128,183,191,178,130,179,188,134,166,173,109,206,114,214,89,190,218,198,128,191,185,224,93,130,100,216,98,152,180,152,200,225,219,213,175,205,196,178,200,202,174,226,214,136,142,199,199,188,180,227,196,200,215,221,220,196,225,187,203,212,188,105,129,89,202,85,190,161,158,195,189,227,221,198,207,166,217,203,181,211,109,186,193,153,211,161,174,152,188,212,183,180,196,142,179,100,200,198,98,187,200,218,183,212,167,175,205,196,200,174,214,195,199,188,135,192,181,180,185,227,196,200,221,207,196,217,183,203,175,109,193,212,186,193,153,161,174,188,195,212,145,217,180,167,186,196,142,100,200,215,169,198,98,187,235,225,215,95,232,129,85,105,200,185,239,218,191,167,234,200,176,178,127,190,214,193,218,141,180,155,153,215,170,157,194,200,178,153,161,136,179,142,208,195,182,167,185,186,169,205,215,142,95,138,186,234,129,229,155,123,200,185,218,198,173,140,212,211,209,219,225,205,232,234,213,213,187,215,196,229,200,174,235,199,193,201,185,212,167,180,213,169,222,222,211,216,187,182,216,198,191,229,240,215,188,228,234,212,202,200,199,228,222,193,199,244,227,179,231,180,154,212,139,149,222,138,189,216,213,215,129,176,160,193,123,193,162,176,142,176,187,175,222,211,216,187,224,216,190,193,208,191,189,210,203,175,205,189,202,146,200,211,190,199,198,127,185,176,196,181,229,167,211,149,234,176,226,127,195,212,178,171,221,229,196,191,219,219,194,234,228,232,234,200,187,226,241,190,221,185,180,227,185,198,215,231,180,229,240,175,215,206,234,181,176,168,106,187,226,132,211,193,193,244,128,189,155,231,191,211,215,211,200,211,161,161,216,182,216,105,128,191,222,220,171,98,134,187,175,187,224,190,193,189,216,203,212,229,105,228,120,226,229,124,235,93,122,231,221,128,207,220,134,99,203,212,222,240,234,161,225,233,242,182,236,190,215,195,129,221,220,229,225,225,217,218,210,234,234,226,241,174,179,179,201,188,235,219,183,182,192,167,196,200,169,173,191,203,211,193,178,155,211,119,136,179,105,158,119,199,182,186,179,122,215,128,137,205,206,167,105,138,106,216,127,188,216,152,124,127,141,217,155,153,155,88,216,188,155,140,218,137,181,127,202,187,152,158,111,141,128,192,180,155,162,130,88,191,213,203,203,232,175,212,175,225,234,200,228,200,181,187,187,222,198,193,195,183,220,187,186,127,190,191,124,147,158,141,189,93,155,153,185,88,181,173,173,142,215,235,232,167,225,213,154,187,136,142,212,239,185,181,166,187,155,225,218,229,205,206,240,212,242,153,161,202,236,211,191,222,198,193,180,189,239,180,179,185,196,183,197,175,95,212,178,137,89,123,211,147,158,135,212,113,215,99,144,203,144,211,200,212,211,199,195,188,159,130,215,203,212,137,229,105,228,186,120,226,119,229,124,235,128,195,130,153,122,221,128,134,200,229,212,196,144,209,219,215,144,205,213,196,178,200,174,229,199,193,188,188,167,180,218,169,142,215,235,225,232,186,213,214,135,145,239,198,173,155,140,148,135,176,172,170,152,152,215,235,232,167,225,180,232,181,213,105,187,136,142,191,212,181,159,185,187,217,240,232,137,225,228,222,213,226,241,225,137,224,214,158,217,217,244,200,130,113,218,215,152,152,217,191,240,206,217,210,229,215,200,105,229,215,190,202,174,179,223,188,244,182,167,215,186,219,200,198,169,173,180,205,229,211,211,229,193,213,215,176,153,161,197,210,214,229,201,213,205,200,225,218,187,194,235,167,229,149,187,106,233,202,190,229,193,132,192,189,215,171,234,211,109,211,161,161,216,114,214,182,89,216,105,218,128,191,185,93,171,130,100,98,152,180,152,240,228,226,214,233,218,89,217,215,224,105,212,244,185,197,218,235,229,211,211,202,176,242,200,211,202,236,132,193,191,199,198,229,199,127,189,215,239,179,196,217,240,232,137,225,228,213,226,241,225,137,224,214,224,158,128,212,244,200,93,130,113,218,215,152,152,210,225,144,144,105,161,176,215,137,127,155,89,197,190,105,210,152,214,124,141,219,159,155,185,180,153,201,197,148,194,187,181,135,176,172,170,152,152,212,144,209,187,183,235,232,181,225,144,188,232,213,229,183,212,188,159,130,240,232,225,215,215,228,222,206,161,226,161,241,216,193,182,127,211,195,161,152,141,180,155,218,88,170,128,197,196,196,225,206,217,219,213,210,203,212,200,193,213,158,182,179,191,201,218,178,219,185,212,180,185,219,220,159,196,206,219,213,210,203,215,200,193,158,182,191,201,218,178,219,185,195,220,185,185,218,207,159,147,217,217,216,225,218,194,187,224,202,187,217,217,192,215,216,197,175,167,95,212,178,137,89,179,123,211,147,158,135,212,113,215,140,99,205,200,196,211,209,219,225,205,232,234,213,213,215,196,229,200,235,179,210,199,193,201,185,212,167,180,213,169,211,144,210,144,216,216,136,142,105,198,147,127,158,132,185,217,217,159,113,130,202,216,188,206,219,181,211,180,186,229,221,193,179,182,189,196,180,200,169,166,217,210,142,139,219,210,167,149,161,154,129,229,221,190,132,228,222,111,93,162,197,219,170,157,98,155,144,194,203,144,211,201,187,211,214,195,185,159,179,215,215,207,196,225,196,144,219,175,144,228,202,214,178,202,226,199,188,167,159,130,169,197,194,137,187,181,193,135,152,180,162,130,152,152,213,229,142,228,186,181,129,89,226,85,195,105,158,229,235,215,185,231,198,181,220,173,196,196,142,183,105,201,129,137,174,85,147,188,158,145,196,200,99,144,209,183,215,235,232,181,225,180,232,181,213,105,142,191,212,181,159,130,217,219,210,211,142,233,221,223,193,189,219,166,187,197,196,139,219,167,149,212,161,161,105,153,161,217,224,127,128,173,144,144,211,200,201,211,142,199,195,188,185,159,130,215,225,144,144,215,160,176,178,197,136,142,210,214,127,135,132,128,178,185,201,130,140,194,200,180,187,105,187,129,89,120,161,193,145,185,195,113,122,196,198,128,166,187,200,229,240,187,203,175,215,228,234,176,168,132,211,190,127,244,189,189,180,231,144,194,203,212,144,211,193,201,187,211,161,214,195,188,159,179,130,215,215,207,196,205,225,139,194,235,229,189,201,187,181,161,225,233,176,178,235,187,229,215,127,212,192,178,176,210,213,232,240,211,225,193,233,127,236,216,120,152,198,147,215,158,191,180,122,197,88,170,207,225,194,235,229,189,187,181,161,225,176,178,235,190,215,187,229,215,212,192,178,176,188,203,137,229,200,127,119,229,119,147,158,111,141,128,195,129,227,215,155,130,153,88,137,152,152,181,149,193,186,161,174,217,132,224,198,211,188,183,167,186,171,196,200,215,157,183,205,154,209,95,176,215,176,190,155,85,204,193,201,128,213,198,157,98,152,134,203,235,175,211,211,188,168,196,233,200,211,202,235,132,199,229,199,127,128,215,155,157,211,209,148,215,205,190,137,178,89,135,176,190,204,127,201,111,185,220,180,172,213,198,215,234,211,109,206,161,114,214,89,190,105,218,198,128,217,191,185,93,100,216,98,134,180,148,229,200,228,193,135,176,152,229,119,158,235,129,180,227,172,170,225,218,194,222,187,224,202,216,187,192,215,211,193,176,174,193,228,222,180,183,213,109,228,114,226,161,229,235,93,100,231,207,98,220,173,99,200,194,175,211,240,187,106,187,242,236,193,235,132,189,227,239,155,157,148,205,201,202,105,200,135,176,199,128,199,217,185,217,180,172,216,152,173,152,225,225,240,217,218,210,234,200,226,229,215,202,174,179,179,201,188,235,219,183,244,182,167,196,200,169,173,191,200,187,175,188,190,191,193,208,217,185,216,225,218,194,229,187,224,202,187,229,217,192,215,216,213,109,228,114,160,137,226,161,229,235,113,100,231,207,98,220,173,229,213,160,137,89,235,195,158,142,113,231,196,187,194,109,142,188,186,187,114,187,137,119,190,119,129,189,142,137,99,196,219,211,212,176,233,153,161,132,198,211,185,183,217,211,144,217,219,210,167,144,189,222,226,229,221,182,224,155,89,132,136,142,223,105,201,228,214,222,199,185,191,128,159,113,234,130,219,88,183,202,99,211,215,234,211,109,200,211,161,161,216,114,182,89,216,105,128,93,171,176,100,98,152,134,152,232,242,236,195,158,128,93,130,239,113,152,197,196,212,196,215,175,229,144,215,228,202,213,214,179,199,235,185,182,200,167,215,186,218,169,231,205,225,196,219,218,229,215,193,229,229,190,221,202,235,244,215,181,180,154,191,139,211,216,215,129,176,160,182,155,216,193,123,204,201,189,176,142,217,183,210,142,233,223,201,193,189,219,173,187,217,219,210,235,181,240,190,242,236,235,211,179,223,188,183,182,167,196,239,219,200,169,217,187,217,217,189,217,229,229,227,215,229,234,89,235,214,85,105,142,215,197,240,232,225,215,222,161,226,161,241,193,182,127,211,195,152,147,141,244,176,122,88,170,128,197,196,194,203,200,187,178,136,179,142,208,195,182,167,185,186,169,142,215,235,167,225,232,181,213,214,154,229,187,136,191,135,185,181,166,187,155,217,210,235,181,180,240,186,215,190,242,236,235,211,179,223,201,219,148,181,135,176,172,170,152,152,200,175,188,201,216,224,216,190,191,193,208,185,139,167,149,201,240,181,161,242,146,236,187,127,235,208,195,212,199,227,171,239,217,196,225,217,219,219,232,228,193,215,226,223,191,185,180,222,224,185,219,215,191,217,219,210,167,189,222,229,193,221,132,201,228,123,152,222,198,124,135,185,188,176,130,219,183,202,217,225,191,225,240,206,217,210,229,200,105,229,215,190,202,174,223,188,244,182,167,186,219,198,169,173,191,180,205,211,209,234,205,142,138,206,225,215,204,215,201,135,220,213,180,140,142,215,232,186,213,241,154,135,145,212,239,173,166,155,142,215,167,228,240,186,226,241,154,242,236,136,142,135,212,244,173,166,155,217,219,187,213,215,212,213,202,196,215,221,200,161,223,190,199,218,199,211,195,212,189,179,218,207,191,229,215,95,138,186,234,181,155,235,187,123,145,200,185,198,173,140,240,211,209,215,142,233,218,215,218,135,145,224,213,198,140,229,222,211,216,216,235,217,229,198,235,191,227,154,211,232,175,228,193,229,153,182,197,235,199,218,204,214,162,201,202,176,205,225,148,193,202,135,176,152,192,180,227,215,172,170,240,212,215,200,206,201,232,241,146,211,193,195,132,199,244,189,221,157,220,139,148,234,149,189,200,214,186,135,176,193,218,158,111,189,113,172,217,219,183,210,176,225,178,160,218,221,176,215,193,223,215,128,130,180,172,219,198,134,139,232,225,211,215,149,228,206,189,213,226,193,188,195,152,147,171,122,218,88,128,188,197,196,200,229,212,196,211,209,219,175,225,234,213,202,213,215,196,200,179,199,229,185,182,167,186,213,169,154,175,173,228,193,241,153,182,197,235,218,162,220,201,202,176,196,219,148,203,175,137,211,142,186,216,176,178,211,161,188,135,216,190,195,212,128,178,130,179,134,166,173,142,183,203,211,109,193,114,129,153,127,211,161,85,152,124,188,141,212,145,167,155,196,179,200,169,88,210,232,240,222,211,225,193,233,127,120,152,198,147,215,141,191,180,155,122,197,88,170,128,217,217,183,210,211,142,178,223,201,193,189,219,152,173,187,152,225,144,144,95,161,193,215,155,197,136,142,210,214,219,159,171,185,180,201,197,197,210,196,189,186,212,168,106,153,161,198,132,176,155,152,152,229,225,217,194,210,228,232,234,187,226,241,105,215,174,179,179,201,219,182,167,222,227,186,169,231,191,205,210,235,222,218,182,188,190,215,224,235,227,197,139,203,212,149,200,232,234,161,178,190,171,221,188,220,210,211,241,225,216,193,182,127,216,190,195,152,198,147,215,141,191,244,180,155,122,197,88,170,128,197,196,234,211,222,161,161,216,186,137,182,135,216,218,111,224,171,176,113,172,180,200,137,175,196,111,180,162,196,173,134,173,203,175,167,149,211,202,161,168,225,106,200,211,215,191,199,215,132,171,185,196,155,157,229,142,186,181,129,214,187,105,229,215,231,173,197,196,142,215,235,232,167,225,213,154,187,136,142,212,239,185,181,166,187,155,225,218,194,189,187,181,218,178,202,188,235,217,190,190,215,224,229,192,215,176,197,188,200,217,148,175,188,196,176,191,208,217,172,181,152,152,217,219,205,142,201,186,202,111,199,180,162,170,134,194,200,180,187,129,137,89,120,119,85,193,119,145,185,129,113,122,196,198,128,137,166,187,154,212,167,95,176,215,176,190,155,85,123,193,162,128,180,198,157,188,176,134,159,191,232,234,228,188,200,212,202,229,190,200,161,226,199,228,199,211,179,198,221,211,225,217,138,226,161,176,161,114,186,223,201,123,199,135,185,219,180,188,180,234,130,197,202,144,217,167,144,222,226,127,155,89,197,132,223,105,210,214,198,199,219,159,155,176,113,234,88,157,99,217,191,240,206,219,229,215,200,105,229,215,190,202,174,223,244,182,167,215,186,219,198,169,173,180,205,225,206,217,210,232,228,193,215,226,179,222,224,186,219,181,191,205,210,232,240,222,241,225,233,127,195,198,215,141,191,180,155,162,122,197,88,170,128,216,197,200,218,183,203,212,167,175,205,154,196,155,200,195,199,135,183,192,181,180,185,196,207,196,240,232,225,215,222,206,189,161,226,161,241,193,120,211,195,152,147,244,171,176,122,88,128,197,218,148,194,187,202,176,187,192,172,170,217,225,219,213,203,212,200,205,188,213,202,215,221,153,200,161,179,223,211,195,212,219,215,191,229,215,187,214,136,142,199,193,188,235,200,180,159,215,196,200,231,197,206,95,168,176,137,146,89,123,211,147,135,195,178,99,200,191,203,175,200,200,181,226,241,187,198,193,193,127,221,183,220,180,196,219,235,206,212,242,153,161,236,235,193,222,198,229,211,185,180,189,215,180,183,181,225,187,203,142,186,137,202,120,85,191,161,195,192,189,227,113,185,181,173,240,232,109,228,213,226,114,233,137,89,217,224,128,212,244,93,100,98,134,217,225,191,206,219,229,215,193,105,229,190,221,202,223,180,154,211,209,148,215,205,186,190,176,137,178,135,176,132,204,127,201,111,185,178,180,213,198,217,229,229,227,215,170,217,218,194,187,202,187,217,217,192,216,196,206,219,213,210,203,215,193,158,182,191,201,218,178,219,185,195,180,220,185,218,196,207,159,147,235,229,222,218,188,235,190,190,215,187,224,229,235,227,197,188,217,206,219,181,211,180,186,229,233,221,193,179,188,183,182,167,189,186,196,200,169,205,197,148,181,142,189,186,222,212,168,106,182,153,161,174,176,198,128,183,172,155,152,166,173,152,191,139,215,137,149,189,200,214,137,89,193,222,185,189,172,225,144,218,213,144,202,226,179,182,192,188,167,159,227,186,130,169,215,221,220,197,203,212,137,229,228,127,135,226,119,229,119,147,158,111,235,141,195,129,155,162,130,88,221,137,152,152,200,175,188,201,222,211,216,224,216,190,191,208,199,191,185,191,240,188,232,234,200,212,202,226,241,200,199,228,222,199,179,180,240,232,225,215,222,206,161,226,161,241,193,127,120,211,195,152,147,244,176,122,88,128,197,235,215,95,232,129,229,105,123,200,185,218,187,186,127,190,191,141,189,93,155,185,88,181,173,173,137,215,105,232,240,241,186,233,242,218,236,217,215,224,195,124,111,130,152,197,152,99,196,210,232,211,241,225,216,193,182,127,216,120,190,152,198,147,215,141,191,244,180,155,122,197,88,170,128,191,225,240,217,210,229,215,200,229,215,190,174,179,223,229,188,183,244,182,167,215,186,196,219,200,198,169,173,180,205,197,196,139,219,167,149,212,161,105,153,161,217,224,127,128,197,173,232,225,228,226,105,158,182,174,226,179,201,188,178,219,182,167,224,186,185,234,169,159,147,217,210,167,167,109,138,189,114,186,129,229,132,85,228,222,198,198,180,128,176,183,155,140,217,142,219,210,161,176,161,154,229,178,221,145,181,93,142,197,219,157,213,203,232,212,201,176,226,241,106,146,132,193,132,199,195,189,220,180,187,213,188,228,95,138,105,226,195,190,105,123,145,185,189,215,221,207,220,166,187,140,196,206,211,229,233,221,174,193,188,183,182,167,189,186,196,200,169,205,213,228,160,137,195,161,158,229,235,142,113,231,207,220,196,211,105,214,190,176,132,124,127,178,220,162,113,180,198,217,229,200,235,229,235,217,217,227,206,183,176,161,229,176,217,224,179,228,222,128,171,172,157,183,152,134,187,154,211,232,175,205,228,193,232,202,176,229,182,197,235,199,218,204,214,186,201,176,205,217,217,219,210,142,233,223,193,189,219,187,197,191,187,234,211,188,232,200,212,202,226,241,196,200,226,190,199,228,222,199,179,180,144,187,183,215,181,225,188,232,213,229,235,142,183,181,159,189,130,217,225,217,187,215,188,202,158,153,200,161,182,179,223,190,218,199,211,178,129,200,220,218,219,215,207,197,159,139,183,148,137,149,161,229,178,160,135,132,228,222,145,181,142,197,198,157,183,106,193,190,146,127,132,214,218,152,141,195,212,132,222,128,155,180,198,88,215,137,193,152,111,141,128,180,162,130,134,187,187,217,217,189,216,187,213,203,211,212,213,196,229,221,190,199,199,195,212,222,224,189,179,207,191,225,234,215,228,213,176,176,120,119,193,127,195,212,212,178,189,218,157,197,180,203,175,215,213,190,228,222,119,212,129,222,218,198,197,139,181,167,180,193,186,174,190,211,127,188,183,167,128,186,196,197,200,215,152,166,173,152,109,205,180,202,114,186,127,200,199,124,141,208,180,155,142,153,100,88,198,98,166,240,213,232,167,226,241,176,178,119,193,119,127,129,178,189,157,207,137,148,135,176,189,172,170,152,152,229,167,211,149,201,240,234,229,176,146,226,127,195,212,178,231,229,167,175,211,228,206,240,181,106,229,146,236,187,208,132,199,231,157,217,225,217,187,215,188,202,158,153,200,161,182,179,223,218,199,178,129,200,220,218,219,215,197,159,148,176,172,170,196,206,240,229,242,236,211,228,193,229,215,239,215,181,149,193,186,161,161,174,217,132,224,198,211,188,183,167,128,171,215,157,183,210,232,240,222,225,233,127,224,236,224,195,198,141,217,180,155,162,122,88,128,216],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #14","x":[217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,211,211,211,211,211,211,211,211,211,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,225,225,225,225,225,225,225,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,211,211,211,211,211,211,211,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,144,144,144,144,144,144,217,217,217,217,217,217,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,226,226,226,226,226,213,213,213,213,213,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,215,215,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,176,176,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,215,215,215,215,215,215,215,215,215,215,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,158,158,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,182,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,182,182,182,197,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,179,179,179,179,179,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,142,142,142,142,142,142,142,142,142,142,142,142,142,223,223,223,223,223,223,223,223,223,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,201,210,210,210,210,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,204,204,204,214,214,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,162,199,199,199,199,199,199,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,178,201,201,201,201,201,201,201,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,185,185,185,185,185,185,185,185,185,185,185,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,219,219,219,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,159,159,159,159,159,159,220,220,220,220,220,220,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,234,234,234,234,234,234,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,219,219,219,219,219,219,213,213,213,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,191,191,191,176,176,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,147,147,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205],"y":[225,148,200,193,135,176,152,119,158,180,227,215,162,172,88,217,210,215,234,109,206,222,224,190,105,218,198,128,217,217,197,100,216,98,134,180,206,142,109,222,211,106,216,178,216,179,211,127,145,181,162,100,155,98,188,200,211,196,232,205,232,202,196,176,229,200,182,197,235,179,199,210,218,204,214,193,201,212,182,186,176,205,217,225,218,194,187,202,217,192,215,222,181,224,216,235,232,234,114,229,137,195,158,128,93,113,100,134,197,196,200,196,219,218,213,175,205,202,196,178,200,174,214,136,142,199,199,188,192,180,159,227,196,130,200,215,221,220,197,217,211,217,219,210,167,114,186,229,221,132,223,201,123,222,198,199,135,185,180,188,176,234,130,219,157,202,217,210,240,232,225,215,222,226,241,225,224,195,161,215,217,217,244,162,153,218,197,216,197,196,187,188,187,193,190,191,152,111,180,189,162,181,173,134,173,218,148,194,187,176,172,170,196,219,181,180,201,202,186,193,183,180,93,142,198,98,166,187,175,188,190,193,217,217,189,216,229,203,212,193,226,119,152,119,147,158,195,129,180,88,170,231,221,137,220,222,211,216,216,198,191,225,218,148,202,176,192,172,170,229,139,149,228,240,161,161,229,242,178,236,190,171,239,231,188,142,218,187,203,212,180,188,95,138,105,154,155,202,195,190,105,123,145,192,185,189,227,221,207,187,155,140,196,187,187,224,193,189,216,225,148,200,193,127,202,135,176,152,119,158,141,129,180,227,215,162,172,88,152,152,210,240,232,225,215,215,228,222,213,226,241,225,211,161,198,124,215,217,217,244,200,162,153,218,197,216,99,196,211,210,225,217,139,149,226,161,176,114,186,190,136,142,223,123,199,135,185,219,180,188,180,234,130,157,191,211,139,209,215,137,149,109,205,222,189,114,89,193,105,201,222,220,189,93,130,213,100,210,181,167,180,142,193,174,190,211,127,188,183,182,167,128,186,196,176,200,169,152,166,173,152,205,212,200,222,189,240,234,161,225,242,236,226,190,215,176,221,217,225,217,219,225,205,215,153,179,223,180,222,224,196,219,215,221,191,225,215,109,242,89,236,200,239,218,215,98,200,187,175,188,222,201,222,211,216,224,188,216,190,193,208,199,191,211,225,109,138,226,176,161,114,215,85,199,135,185,219,188,162,171,180,234,130,100,170,140,225,229,227,215,170,197,175,167,105,138,212,178,137,127,123,211,135,195,212,155,153,88,140,99,206,139,149,142,161,161,132,179,228,222,128,197,157,183,152,173,187,152,217,196,219,137,142,186,211,135,212,217,130,134,166,173,235,215,109,232,89,214,200,239,218,215,173,206,139,183,149,161,176,190,132,179,228,222,198,128,172,197,157,183,134,187,240,213,215,222,189,161,161,241,211,119,119,244,171,176,207,137,187,232,234,228,212,202,196,229,190,200,226,190,199,228,199,211,224,179,198,221,225,213,228,95,138,186,181,129,226,195,105,191,123,145,185,221,198,181,207,220,166,196,235,228,189,161,225,233,242,188,190,215,235,227,176,239,188,210,211,215,234,95,206,222,224,155,85,215,142,197,180,196,219,148,203,211,186,211,135,176,195,212,128,217,217,130,179,172,216,134,173,200,137,175,196,193,111,180,162,196,173,134,173,210,222,211,193,182,228,123,152,222,198,135,191,188,128,183,181,180,129,137,85,193,119,145,185,113,196,198,137,166,187,99,222,211,216,224,216,191,196,219,203,175,211,222,222,211,105,176,182,146,178,153,224,211,161,127,191,178,179,188,219,181,109,205,180,202,186,200,199,152,141,208,183,180,142,100,198,98,166,187,142,218,187,203,212,188,95,138,105,202,190,105,123,158,145,192,189,227,221,207,166,187,140,225,215,240,241,114,137,242,236,214,158,128,200,93,113,218,100,215,152,200,229,187,203,194,175,215,187,196,229,211,211,190,198,127,235,189,189,227,180,183,217,219,183,176,161,229,178,221,217,224,128,171,180,172,219,198,152,134,187,152,210,148,215,228,105,206,222,213,186,135,176,190,211,214,158,198,124,215,111,217,191,217,212,200,113,172,197,215,216,99,217,187,187,190,193,217,217,189,219,137,205,142,201,186,202,135,128,199,180,130,134,173,240,139,213,211,215,206,189,226,161,241,188,211,119,119,244,129,171,176,207,137,188,213,203,232,228,176,226,146,193,195,212,132,195,189,157,207,180,235,205,206,240,212,242,153,161,236,191,228,222,193,229,211,185,180,189,215,239,180,185,191,211,139,215,149,222,189,200,214,137,89,135,176,193,222,185,189,176,172,229,187,183,215,181,229,215,188,214,136,142,190,229,235,185,183,200,181,159,189,218,196,213,232,234,193,229,242,218,127,236,120,217,215,152,147,141,180,155,239,122,88,170,128,207,142,167,167,189,222,154,129,178,224,198,111,181,128,93,162,176,100,170,98,155,139,167,175,149,181,161,225,187,233,146,202,235,229,193,215,127,208,195,199,215,171,139,194,235,167,149,201,187,161,233,176,242,146,236,187,127,235,195,212,199,192,178,171,239,200,175,205,180,105,114,196,200,85,199,124,147,158,185,180,155,153,198,166,187,187,183,181,167,180,188,228,154,226,214,190,135,181,189,215,215,197,155,240,215,228,138,226,129,233,218,155,123,244,140,217,197,175,193,212,160,176,153,161,174,188,111,195,212,217,217,167,178,93,162,196,142,200,170,198,187,142,183,211,105,114,154,129,153,127,211,161,85,124,188,141,199,145,181,167,155,196,179,153,200,169,88,232,167,225,228,176,176,119,193,119,127,129,178,189,157,207,137,180,197,183,193,212,168,176,146,178,188,190,179,211,127,111,217,145,217,182,167,178,93,162,186,142,155,215,169,170,198,216,98,188,205,200,212,196,144,219,215,175,144,215,205,228,202,214,196,200,179,199,200,188,167,169,231,188,187,193,193,111,180,162,181,173,134,173,229,144,215,229,144,215,187,214,178,174,229,188,235,200,188,180,159,215,196,130,218,196,200,211,225,109,138,226,176,161,114,215,85,199,135,185,219,188,162,171,180,234,130,100,170,140,212,167,173,95,213,158,155,188,182,85,123,162,128,180,188,152,191,176,134,159,152,147,235,137,105,232,234,186,229,195,161,130,239,152,197,152,99,196,218,194,187,202,192,219,205,202,105,211,176,212,217,217,180,172,216,152,152,217,210,240,137,215,228,222,213,226,225,186,137,224,211,158,215,217,217,212,113,197,215,142,218,183,203,212,181,167,187,154,155,195,193,135,185,183,192,181,185,196,207,155,218,194,200,142,186,187,114,137,120,119,191,129,192,142,113,185,122,128,181,173,99,196,219,180,142,201,202,160,111,199,93,162,166,142,194,203,181,200,180,95,138,187,187,154,155,105,161,123,158,193,185,195,183,196,187,155,140,196,219,181,211,180,160,211,111,199,183,93,162,179,170,166,234,229,160,89,214,142,215,173,197,139,215,149,213,193,188,195,161,152,147,212,200,224,189,218,88,128,188,180,196,196,219,183,167,95,202,154,155,174,120,119,105,199,161,123,158,119,188,135,129,181,196,122,200,128,137,155,229,89,235,214,85,105,142,215,197,196,229,144,215,144,178,229,188,185,188,159,196,130,218,196,200,181,224,216,197,225,218,187,194,211,206,240,187,176,196,229,211,132,211,193,190,198,127,235,192,189,189,239,180,183,191,209,205,95,200,211,161,161,182,155,216,85,204,201,191,222,220,189,171,213,134,217,216,188,222,222,211,196,176,182,178,188,190,191,199,195,212,199,191,178,185,188,139,228,189,240,161,161,225,233,229,242,178,188,236,190,215,235,227,176,239,231,188,225,240,218,215,205,212,202,229,229,153,200,161,211,191,228,222,193,211,235,244,192,179,196,167,211,228,201,240,229,242,146,236,187,235,208,132,199,227,239,157,217,210,137,234,109,206,222,114,214,89,190,218,198,217,217,185,224,93,130,197,100,216,152,180,152,217,217,217,225,137,200,186,127,202,119,119,147,158,111,141,128,195,129,227,215,155,130,153,88,137,152,229,210,235,200,228,211,216,229,218,216,226,217,215,224,198,191,239,197,231,217,191,240,206,219,229,193,200,105,229,215,190,221,202,223,244,186,219,198,180,205,167,95,138,201,154,153,89,161,123,147,158,135,181,167,113,169,155,140,99,217,197,142,109,193,212,168,114,154,186,129,178,193,176,146,178,190,85,179,211,195,217,182,180,181,178,186,100,215,205,148,194,187,193,135,176,172,170,152,152,232,226,241,168,132,193,127,208,128,180,155,221,180,137,193,152,111,128,180,162,130,134,215,138,232,186,234,214,229,155,235,135,145,200,218,198,173,140,197,235,211,211,188,202,176,200,211,235,132,193,199,229,199,127,128,215,142,183,203,167,211,105,193,138,154,129,153,127,211,161,85,179,124,141,199,182,181,167,155,186,179,153,169,88,155,140,205,193,201,178,153,155,161,120,119,136,179,142,161,158,119,182,129,167,185,186,179,122,169,137,205,225,200,193,127,202,135,152,119,147,158,111,141,129,180,227,215,155,162,88,137,152,152,229,215,187,214,136,142,235,185,183,200,159,215,196,130,196,200,231,215,142,95,138,234,129,229,155,235,123,200,185,218,181,187,142,215,234,214,154,229,235,135,145,200,218,181,173,166,155,148,215,105,232,240,186,233,242,218,135,176,236,217,215,224,195,161,124,111,153,172,197,99,196,219,235,193,240,229,242,221,236,235,211,193,229,239,200,212,196,209,215,175,144,215,228,202,213,179,199,235,185,182,200,167,215,186,218,169,231,139,175,201,181,161,161,225,187,176,218,146,235,215,215,127,208,195,212,199,178,217,210,137,215,206,222,186,137,190,211,198,215,217,217,212,224,113,172,197,216,232,225,215,109,240,213,241,114,137,242,236,214,128,200,93,218,100,215,98,134,187,203,175,188,168,106,196,233,235,190,132,128,171,155,157,215,105,232,240,186,233,242,218,135,236,217,215,195,161,124,111,172,197,99,196,211,217,139,219,149,95,226,229,193,221,132,136,142,223,201,123,198,199,135,185,188,176,234,130,157,202,187,215,167,180,234,181,105,214,154,235,187,136,142,191,181,185,218,181,187,210,213,232,211,225,216,120,190,198,147,215,158,191,244,122,197,217,219,232,225,205,228,188,215,221,153,161,223,211,222,224,196,215,221,191,217,225,217,219,212,225,205,188,213,215,153,179,223,212,180,222,224,196,219,215,221,220,217,181,187,217,142,183,203,211,105,193,138,154,129,153,127,211,161,85,124,141,199,182,181,167,155,186,179,153,169,88,155,229,212,144,215,144,187,178,174,229,188,185,188,159,196,130,218,196,200,217,95,106,176,137,146,178,127,155,89,188,190,123,127,135,188,178,155,153,155,88,99,193,176,225,218,174,132,215,228,222,198,188,215,183,167,186,171,183,205,206,183,137,167,189,178,198,198,145,181,128,176,142,198,183,200,193,178,153,161,136,179,142,161,208,195,182,188,167,185,186,130,169,205,200,218,213,183,212,205,196,200,174,214,136,142,195,199,193,188,192,181,180,227,196,200,215,221,207,220,196,148,176,187,172,170,225,203,212,114,160,137,202,120,187,161,227,142,113,221,207,219,181,109,205,180,202,114,186,127,200,199,124,141,208,183,180,155,142,153,100,88,198,98,187,142,167,234,214,154,229,235,187,136,135,200,185,218,181,166,187,155,206,181,180,186,176,225,229,218,215,193,179,228,222,188,183,182,167,186,196,180,200,169,205,210,175,211,205,189,168,106,211,190,132,185,180,176,179,197,155,193,178,153,155,161,120,119,136,179,161,158,119,208,182,129,167,186,179,122,169,137,205,138,129,158,182,188,182,179,132,190,178,159,142,188,134,147,187,142,188,186,114,137,119,85,190,119,129,189,142,137,99,194,175,211,206,240,187,181,106,187,229,242,236,193,193,235,132,192,128,227,239,155,157,200,178,153,136,179,142,208,195,182,167,185,186,169,210,218,222,218,182,202,188,217,190,190,215,224,215,197,188,229,217,203,212,234,222,229,242,218,224,217,119,215,224,119,217,195,217,129,239,216,137,220,210,218,222,218,182,202,188,217,190,224,198,215,197,225,218,148,193,202,135,176,152,192,180,162,172,197,196,139,167,212,161,105,153,161,190,127,132,128,197,173,191,211,139,215,137,149,109,205,222,189,114,89,193,105,222,220,189,93,130,176,100,152,200,139,187,167,149,161,225,106,190,215,132,189,171,191,167,105,176,214,186,188,193,124,222,162,113,157,188,217,210,137,215,222,225,137,224,211,215,217,212,224,130,113,197,152,152,225,202,192,215,217,217,217,216,196,219,212,161,105,225,218,153,161,217,132,215,198,211,127,215,128,171,215,157,173,203,212,137,229,105,186,120,119,124,128,195,227,215,130,153,122,221,128,134,225,139,218,235,167,229,149,201,181,161,225,233,146,202,235,229,215,127,208,195,212,199,192,215,171,200,217,196,199,208,196,181,217,191,206,219,229,215,193,105,190,221,223,229,215,186,219,198,180,205,217,187,217,189,217,217,225,203,212,229,105,186,120,119,124,195,93,227,215,153,122,221,128,134,99,212,229,109,228,114,120,226,161,229,235,93,215,100,221,128,207,98,220,134,173,99,105,186,160,127,191,124,147,158,141,93,155,153,185,100,88,181,98,173,173,197,149,211,205,202,161,225,218,215,127,215,180,128,171,179,185,196,157,181,105,222,95,211,216,137,127,216,123,152,198,124,127,135,141,132,188,155,153,216,210,137,206,214,137,190,218,198,217,191,217,185,224,130,197,216,180,229,213,235,137,105,234,186,229,135,161,124,111,153,128,152,99,200,225,144,219,205,196,178,200,202,174,226,142,199,193,188,188,180,159,227,196,130,200,197,219,205,206,240,242,153,161,236,211,191,228,222,193,229,211,185,180,215,239,185,217,211,209,215,234,211,205,95,200,161,161,190,85,198,217,191,217,222,220,171,213,216,134,217,206,219,181,211,180,186,225,229,218,221,215,193,179,182,196,180,200,166,206,193,206,105,229,233,221,174,193,189,186,173,205,181,225,218,194,187,202,192,213,109,114,160,137,195,161,158,229,235,113,100,231,98,173,196,210,213,232,240,211,225,216,216,120,190,119,198,215,158,191,197,207,137,196,219,183,167,175,205,95,202,154,155,200,174,120,105,199,161,123,158,188,135,129,181,180,196,200,155,229,215,95,138,186,234,155,235,123,145,200,218,198,173,140,217,206,219,206,229,233,221,174,193,188,183,182,167,189,186,196,200,169,173,205,187,217,187,187,217,217,189,216,225,218,194,235,229,189,187,161,225,233,176,178,202,235,190,229,215,192,178,215,176,188,191,234,205,228,232,234,200,226,241,229,190,221,153,161,211,227,196,198,231,167,109,222,138,211,114,154,186,129,182,224,85,198,127,132,191,180,128,155,140,219,215,193,240,229,242,221,236,211,193,229,215,239,215,215,95,129,160,155,217,211,215,224,123,218,224,173,235,225,142,95,138,232,214,229,155,123,200,218,198,140,235,232,225,142,138,232,213,214,155,123,145,239,198,140,200,197,203,212,225,211,200,228,181,229,190,211,228,222,224,198,220,142,129,89,214,85,195,105,229,235,215,231,197,196,215,228,95,138,240,226,241,214,129,242,155,236,123,212,244,225,218,194,187,224,202,217,217,192,215,216,200,196,211,219,225,205,205,232,234,213,202,215,196,176,200,179,210,199,193,201,185,212,182,167,186,213,169,218,194,187,229,139,167,211,149,240,234,176,178,226,127,212,178,171,231,211,105,222,206,161,161,216,182,216,214,124,212,200,224,162,171,176,153,215,180,99,206,142,161,229,217,224,179,228,222,171,157,183,152,173,187,152,240,213,215,222,161,161,241,182,120,211,119,158,244,176,207,137,144,215,229,144,215,205,187,214,178,174,199,193,188,235,200,188,180,159,215,196,130,218,200,231,200,211,196,211,219,232,225,205,205,232,234,213,202,196,176,229,200,179,199,210,204,214,199,193,201,185,212,182,167,186,169,205,217,205,202,105,200,176,199,199,217,185,217,180,172,216,152,173,152,196,219,181,180,201,186,193,174,199,183,180,93,142,100,198,98,187,217,213,234,229,242,218,224,236,217,119,215,224,119,158,217,217,239,207,216,137,220,206,219,180,186,176,225,229,218,221,215,193,179,215,180,166,211,210,217,139,149,138,226,161,176,114,186,190,85,223,201,123,199,135,185,180,188,234,130,157,202,140,219,203,175,211,205,222,222,211,105,176,182,146,178,224,211,190,127,195,185,191,180,178,179,188,173,217,225,191,240,206,219,218,234,193,200,229,190,221,223,235,244,192,219,198,181,180,225,218,194,229,222,211,187,216,202,216,235,217,229,198,191,192,215,229,222,228,189,240,161,225,233,229,242,188,236,226,190,215,176,239,231,213,232,240,234,222,233,242,218,224,236,120,217,119,215,224,158,217,217,239,207,216,137,210,148,215,228,105,206,211,213,176,190,211,214,158,198,124,215,191,212,200,162,197,215,216,99,187,148,188,187,135,176,190,191,193,128,189,130,185,170,181,152,152,139,188,161,196,218,146,217,224,199,176,197,213,229,228,160,137,89,226,85,195,161,158,235,215,142,113,221,207,220,215,138,232,186,234,214,229,155,235,135,145,200,218,198,173,140,210,222,211,216,182,216,187,198,191,187,187,190,193,189,185,148,137,105,196,200,135,176,199,199,208,128,185,130,196,173,173,187,109,142,105,188,186,105,114,187,190,147,158,189,142,99,191,211,139,209,149,109,205,222,189,114,193,105,204,201,222,220,189,93,130,176,213,100,98,152,152,197,240,187,211,228,232,234,226,241,196,211,190,222,198,193,244,189,231,183,180,217,210,139,219,210,167,149,109,154,129,229,221,190,132,85,228,222,198,111,162,219,100,170,157,98,155,140,217,211,219,210,105,95,189,211,229,137,221,182,224,136,142,201,228,123,152,222,198,124,135,141,185,191,188,128,153,130,219,183,202,235,193,206,240,229,242,221,236,235,211,193,229,239,215,217,229,196,191,219,219,194,234,228,232,234,200,187,226,241,190,221,223,191,185,180,227,185,198,215,231,217,213,234,193,229,242,218,224,236,120,217,119,215,224,152,147,158,217,217,239,207,137,220,142,194,181,200,180,95,138,187,187,89,120,105,161,123,158,193,145,185,195,196,187,155,140,210,213,232,240,211,225,216,182,216,190,119,198,119,215,158,191,197,207,137,187,232,225,228,212,196,229,190,190,199,228,199,222,224,189,179,198,221,220,225,213,183,181,167,180,188,228,154,202,226,214,190,135,185,183,181,185,189,196,215,220,197,155,142,203,175,167,105,193,138,212,114,154,129,178,127,85,179,124,141,212,182,181,167,155,186,153,215,169,88,155,140,205,240,175,215,232,234,176,168,106,226,132,211,187,193,244,128,189,180,155,197,211,211,205,202,176,233,200,132,191,199,127,128,179,185,196,157,218,194,109,200,105,187,181,114,160,119,119,129,142,122,100,128,137,98,99,137,225,215,240,241,186,242,218,236,214,215,158,200,130,113,218,215,152,197,152,196,219,235,206,240,229,242,153,236,235,211,228,222,193,229,211,185,215,239,215,181,167,105,176,214,188,190,193,158,124,222,220,162,113,157,188,99,225,218,194,187,202,192,217,225,217,219,212,225,200,205,188,213,215,153,200,161,179,223,212,219,215,220,210,225,218,194,211,187,216,182,202,216,217,198,191,192,215,193,176,225,218,174,215,228,222,180,183,173,196,219,203,175,211,222,211,105,216,176,146,178,224,211,188,216,190,127,195,191,178,179,188,148,234,211,222,211,161,161,216,186,182,135,176,216,218,158,111,224,171,176,113,180,200,196,219,203,212,175,205,202,196,178,200,174,214,136,142,195,199,199,188,180,185,196,200,207,196,225,148,200,193,176,152,180,227,215,172,170,187,187,193,217,189,216,200,229,197,187,194,215,211,228,187,196,229,211,211,190,198,193,127,244,189,227,180,231,183,210,213,232,240,211,225,216,182,216,190,119,198,119,215,158,191,197,207,137,229,234,160,89,235,214,85,142,215,173,197,137,193,152,111,128,180,162,130,134,148,234,229,135,176,161,155,162,239,153,172,128,213,240,234,222,233,242,218,224,236,217,119,215,224,158,217,217,239,207,216,137,220,217,206,219,235,193,240,105,229,242,221,236,235,211,193,239,210,203,175,211,205,189,202,168,106,211,190,132,185,180,176,179,155,225,206,217,194,210,193,228,232,234,187,241,215,179,222,227,219,231,181,191,205,206,142,222,154,178,182,224,127,111,132,145,191,181,93,162,100,170,98,210,206,139,183,148,137,167,149,160,135,176,190,132,228,222,198,128,130,198,183,134,240,167,211,215,200,206,232,234,176,226,211,127,195,212,244,178,221,157,225,218,203,212,142,186,129,89,202,85,191,161,158,195,192,227,113,185,198,181,173,193,176,105,225,228,222,198,211,180,215,183,173,203,212,229,109,114,120,226,195,93,215,122,100,221,128,98,173,99,191,167,200,176,178,188,190,218,193,158,180,222,153,170,157,99,225,202,192,215,139,181,167,149,180,142,193,186,161,190,132,198,188,183,182,167,128,186,196,197,200,169,166,173,152,205,200,196,211,209,219,225,205,234,213,213,215,196,200,179,210,229,199,193,201,185,212,182,167,180,213,169,206,181,211,180,186,225,229,218,221,215,193,179,188,183,182,167,186,196,180,200,169,166,205,200,229,240,203,215,228,234,211,211,198,193,127,244,189,227,180,231,183,229,142,167,215,180,234,181,105,214,154,187,136,191,135,200,185,218,187,155,219,213,203,211,200,181,212,213,196,229,215,221,199,195,212,222,189,179,191,210,206,167,176,190,179,198,128,182,128,186,130,176,172,169,134,187,205,191,234,200,176,176,178,195,161,193,147,127,158,212,200,178,224,122,157,128,196,148,181,135,170,152,152,217,181,200,197,191,232,212,225,234,200,228,200,181,187,190,211,187,228,222,198,193,198,221,220,240,213,232,167,211,215,149,206,226,241,178,190,119,129,207,137,191,213,203,232,175,225,234,228,200,168,198,193,127,208,195,224,155,183,207,197,210,196,189,212,168,106,153,161,198,132,176,179,155,200,175,142,186,105,196,193,160,152,199,185,180,93,196,139,203,212,211,215,149,200,206,232,161,188,211,190,195,244,171,188,220,181,139,228,189,161,161,225,233,242,178,236,190,215,235,227,171,176,239,188,139,194,235,149,201,187,161,233,176,242,127,235,195,212,192,178,227,171,239,219,213,203,200,181,212,213,196,215,221,190,199,211,195,212,222,189,179,207,191,181,187,219,235,211,205,212,176,233,153,161,235,193,222,198,211,185,180,189,180,185,183,181,197,196,139,219,167,212,105,106,153,161,190,127,132,197,173,217,213,234,193,229,242,218,120,217,119,215,152,147,158,217,239,170,207,137,220],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #15","x":[217,217,217,217,217,217,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,154,154,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,212,212,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,240,240,240,240,240,240,240,240,240,240,240,240,240,240,211,211,206,206,206,206,206,206,144,144,144,217,217,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,209,209,209,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,215,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,210,210,210,210,210,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,225,225,225,225,225,225,225,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,173,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,144,144,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,228,228,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,213,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,213,213,213,213,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,215,215,215,215,214,214,214,214,214,214,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,229,229,229,229,229,229,229,229,229,229,229,229,229,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,190,190,190,190,190,190,190,190,190,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,221,221,221,221,221,221,221,221,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,136,136,136,179,179,179,179,179,179,179,142,142,142,142,142,142,223,223,223,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,201,201,201,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,123,123,123,123,123,123,123,123,123,123,123,123,123,123,218,218,218,218,218,218,218,218,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,162,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,201,135,135,135,135,135,135,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,185,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,182,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,188,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,167,167,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,159,159,159,224,224,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,130,130,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,219,219,219,219,219,213,213,213,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,198,198,198,198,198,198,198,198,198,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,169,169,169,169,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,191,191,191,176,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,159,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205,205,205,205,205,205,205,205],"y":[218,194,187,202,192,170,137,215,225,114,214,137,89,211,215,185,224,93,130,152,152,217,197,183,193,212,168,160,176,146,178,188,190,188,111,195,217,217,182,167,178,93,186,196,142,200,215,169,170,198,216,187,205,181,187,229,212,211,209,219,225,205,234,213,213,187,215,174,229,199,188,185,167,180,213,169,217,187,217,217,216,229,213,137,105,186,235,161,124,111,130,128,152,152,99,183,194,203,212,167,187,187,155,195,193,135,185,183,181,185,196,207,196,167,109,138,189,222,154,129,182,224,85,228,198,191,128,162,100,170,183,98,155,140,232,240,193,233,242,218,127,236,120,217,215,224,152,147,141,180,155,122,88,170,128,137,135,128,130,185,170,205,142,186,105,160,200,199,199,111,208,185,180,162,170,217,187,229,200,228,235,229,235,224,217,216,194,187,194,235,229,222,189,187,225,233,188,190,215,215,235,227,176,197,194,200,187,129,89,120,85,191,161,158,195,113,198,181,166,217,181,217,217,218,194,187,192,170,217,232,240,193,233,242,218,127,224,236,217,215,224,195,152,147,141,180,155,122,88,170,128,197,217,219,210,167,109,138,129,229,221,132,85,201,228,222,198,162,176,219,100,170,183,202,155,140,148,234,211,200,211,161,161,216,214,137,182,135,176,216,218,111,185,171,176,172,197,189,186,222,212,168,106,182,153,198,132,155,215,229,210,235,228,211,216,233,229,218,182,216,215,224,198,191,239,197,231,187,232,234,228,188,212,202,229,190,221,200,161,226,199,199,211,179,198,235,232,234,114,229,137,214,158,128,93,113,100,134,197,196,187,217,189,216,217,210,217,142,139,219,210,167,149,161,154,129,229,221,190,223,201,111,93,197,219,157,202,98,155,218,194,187,202,192,142,183,203,211,193,114,154,129,153,211,161,85,179,152,124,141,182,181,167,186,179,215,169,155,205,210,181,167,180,193,186,174,190,198,211,127,188,183,182,167,128,186,196,176,200,169,166,205,148,205,201,202,105,200,176,199,128,199,185,180,172,152,152,234,114,229,137,195,158,128,93,113,100,98,134,197,196,210,181,167,180,142,193,189,186,174,211,198,127,188,132,183,182,167,128,186,196,176,200,215,169,152,166,173,152,205,203,212,232,240,234,211,225,216,182,236,216,190,198,215,195,191,129,197,220,200,197,191,211,232,234,200,181,226,241,211,222,198,189,180,218,203,212,142,137,89,202,120,187,85,161,158,195,192,227,142,113,173,210,225,194,229,222,187,216,218,182,235,217,190,215,224,229,198,192,215,197,215,109,225,114,214,89,211,224,105,218,128,185,224,93,100,98,134,217,205,201,202,105,200,199,199,185,180,152,173,152,187,148,188,187,135,176,190,191,128,189,130,185,170,181,152,152,206,142,167,109,138,106,216,114,154,186,129,216,85,127,132,217,180,100,216,188,155,140,187,187,109,142,105,188,186,105,114,187,190,124,147,158,189,155,142,153,100,217,217,216,205,202,216,200,188,216,190,199,195,212,185,180,216,173,200,175,142,186,105,196,193,160,199,111,185,180,93,162,196,194,200,142,186,187,129,89,120,85,191,161,195,113,185,122,198,128,181,173,235,137,105,232,234,186,229,195,161,124,111,130,239,197,152,99,196,225,218,175,229,211,206,240,181,176,168,106,187,242,202,236,132,193,193,132,192,128,239,155,157,206,139,149,180,142,161,190,132,179,228,222,198,182,197,169,157,183,166,173,205,217,240,232,225,215,226,241,225,224,224,195,161,244,162,153,218,197,196,148,105,196,200,176,199,199,208,185,172,196,152,173,152,203,212,200,222,232,240,234,161,225,182,236,190,215,195,221,220,240,212,167,211,215,149,200,206,232,241,176,178,211,127,244,178,221,220,197,211,211,188,202,176,233,200,235,132,193,199,198,199,127,179,196,183,148,234,211,105,211,161,161,216,186,182,216,218,158,124,111,224,171,113,180,142,167,180,228,105,154,135,215,215,231,197,187,155,229,235,203,212,119,119,158,195,129,221,137,220,206,183,222,211,106,182,216,179,127,132,145,191,182,142,198,205,189,201,161,176,218,178,217,190,190,215,187,224,212,178,176,197,188,225,218,229,189,161,225,178,202,188,235,190,215,229,215,215,176,188,109,142,186,105,186,160,127,152,193,141,93,142,196,100,88,98,225,142,213,212,95,138,105,155,202,195,105,191,123,145,185,227,221,207,220,166,187,140,196,232,225,95,240,213,241,214,160,242,236,85,105,212,185,142,173,196,219,203,181,137,211,180,142,211,135,183,130,179,134,166,196,219,181,109,180,201,186,193,174,152,183,142,100,198,98,187,240,213,203,212,211,215,149,206,226,241,178,188,211,190,195,244,188,220,217,203,175,181,137,211,180,160,153,161,174,188,195,212,183,196,179,200,187,225,213,187,178,202,174,226,136,142,199,193,188,180,159,227,196,130,200,220,197,187,137,135,190,191,128,189,130,185,170,187,183,181,188,228,136,142,190,185,183,181,189,231,197,217,210,217,142,139,219,210,167,149,161,154,129,229,221,190,223,201,111,93,197,219,157,202,98,155,154,209,137,109,176,114,215,176,190,204,193,201,93,130,213,100,198,157,98,229,213,148,135,176,120,124,111,162,153,172,122,128,207,217,201,200,199,199,199,185,196,173,148,232,225,215,105,241,233,218,135,176,217,214,215,224,124,111,244,200,162,153,172,218,99,187,194,200,180,188,95,138,187,105,89,120,190,105,161,123,158,145,195,189,166,187,140,109,105,181,160,187,124,119,147,158,93,153,100,137,98,173,137,205,186,105,200,135,199,199,208,128,185,180,130,170,134,173,187,188,105,129,137,89,120,119,85,190,119,145,129,189,113,122,198,128,137,166,137,205,142,201,186,202,200,135,199,180,130,134,173,229,213,109,114,137,235,195,161,158,93,113,100,231,98,134,196,240,232,225,211,215,228,222,206,189,161,226,161,120,211,158,171,176,122,197,200,142,181,175,205,180,138,196,137,200,89,199,145,183,180,113,187,140,213,229,109,228,114,160,137,226,195,161,158,229,235,215,113,100,231,207,98,220,173,187,183,181,167,229,215,188,214,136,142,190,235,183,200,181,189,215,231,217,187,217,217,200,203,235,175,175,229,211,181,168,106,187,242,202,236,229,193,132,128,215,155,157,217,210,211,215,234,211,109,222,114,89,190,105,218,198,128,217,217,93,130,197,100,216,98,152,180,152,217,181,187,217,200,187,175,201,216,224,216,190,193,208,189,225,194,235,229,222,187,218,182,235,190,215,224,229,192,197,197,229,211,188,206,240,196,242,211,202,236,193,199,198,229,199,189,215,239,180,183,225,139,218,194,235,229,149,187,161,233,176,178,202,127,195,212,192,178,171,215,228,225,186,137,224,135,211,158,215,111,212,113,172,181,218,148,194,187,193,135,176,152,192,180,162,172,152,222,224,235,235,217,217,227,216,196,219,215,240,229,242,236,211,193,229,185,215,239,215,181,196,142,219,183,105,202,129,137,174,85,199,124,188,208,145,183,155,196,153,200,88,187,183,203,175,211,153,161,174,188,111,212,145,167,93,162,196,142,179,200,169,198,98,187,229,240,215,206,201,234,176,106,146,226,211,193,132,199,244,189,231,157,148,181,135,176,187,172,170,152,152,229,142,95,129,214,105,123,185,215,197,200,187,203,175,167,161,168,225,106,196,233,190,132,189,171,155,157,196,219,109,201,114,186,193,174,152,188,145,183,196,100,200,198,187,196,219,183,167,95,202,154,89,174,105,123,188,135,208,181,196,113,200,128,155,140,218,148,194,187,176,192,172,170,225,187,213,183,181,167,180,188,228,154,202,226,214,190,135,181,189,215,220,197,155,229,160,89,214,85,105,142,215,197,229,142,95,138,186,129,155,214,123,229,185,215,198,197,140,213,235,234,229,127,120,141,180,155,162,239,122,88,128,196,219,206,153,161,193,228,222,211,185,180,189,180,215,181,225,144,219,205,214,196,178,200,202,174,226,142,199,193,188,188,180,159,227,196,130,200,197,210,189,178,188,217,190,190,187,224,176,197,188,240,148,232,225,215,228,105,213,226,241,225,224,135,176,214,224,158,124,111,244,200,162,218,215,99,235,137,232,186,195,158,130,239,113,152,197,152,99,196,200,139,167,175,149,161,161,225,187,218,146,215,193,215,189,148,235,234,229,127,176,141,155,162,239,153,122,128,217,210,167,109,138,189,222,114,186,129,182,224,85,228,222,198,180,128,219,100,183,140,229,142,215,138,186,155,229,135,145,200,173,166,155,140,217,203,212,240,234,222,233,229,242,218,224,236,217,119,215,224,119,217,195,217,129,239,207,216,137,220,191,187,234,232,200,212,202,226,241,196,229,190,200,226,190,199,228,199,179,198,187,232,234,228,212,202,229,190,221,200,161,226,190,199,199,211,179,198,191,196,219,181,109,180,201,114,186,193,174,152,188,145,183,196,100,200,198,98,187,187,183,181,229,215,188,228,214,136,142,190,235,183,200,181,189,215,231,197,206,167,105,138,168,154,178,152,211,124,141,195,212,155,140,196,139,167,149,212,161,161,105,153,217,224,211,127,128,197,215,157,173,148,222,106,160,182,224,135,176,179,211,127,128,132,191,182,167,186,130,172,169,134,187,205,196,219,167,95,202,155,174,120,119,105,199,158,119,188,135,129,181,196,122,200,128,137,142,194,203,181,167,200,180,95,187,187,154,155,105,161,123,158,135,185,195,183,185,196,187,155,140,218,109,200,105,119,124,119,195,129,192,93,122,100,128,137,98,173,99,200,175,142,186,105,196,193,160,152,199,185,180,93,196,166,229,215,95,138,186,155,123,229,145,185,198,173,140,193,161,174,217,132,224,198,211,215,171,215,157,183,173,203,202,176,182,146,178,200,191,199,199,198,127,195,178,185,196,181,188,196,142,219,183,167,95,138,202,154,89,174,105,199,123,188,135,181,196,113,200,128,155,140,154,212,167,173,95,176,213,215,190,155,85,123,193,162,128,180,198,157,98,152,191,176,159,152,109,105,186,160,127,191,124,147,158,93,155,153,185,100,88,181,98,173,225,139,218,235,167,229,149,201,161,233,146,202,187,229,127,208,195,199,215,171,196,219,183,167,175,205,95,202,154,155,200,174,120,119,105,199,161,123,158,119,188,135,129,181,196,122,200,128,137,222,211,216,216,198,191,235,200,228,226,235,231,221,222,211,216,224,216,191,194,187,170,210,219,175,211,205,189,168,106,211,198,185,180,176,179,155,234,211,200,211,161,161,216,214,137,182,135,176,216,218,111,191,185,171,172,180,175,189,201,161,187,176,218,146,217,190,215,224,193,127,208,195,212,199,178,176,197,139,234,149,189,200,214,193,218,158,180,189,153,215,170,99,240,148,232,225,215,228,105,213,226,241,186,233,135,176,217,214,215,224,158,124,111,244,200,172,218,215,99,218,194,187,197,139,167,149,211,205,161,168,106,190,224,132,185,180,179,197,155,181,225,218,200,127,202,135,152,119,147,158,111,141,129,192,180,155,162,88,137,152,152,189,161,176,218,178,190,190,215,187,224,178,176,197,188,187,175,188,187,190,191,193,189,185,196,219,235,206,240,229,242,236,235,211,228,193,185,239,215,181,181,218,137,200,127,202,119,147,158,111,141,128,129,192,155,130,88,137,152,152,225,203,137,200,105,186,202,119,124,119,147,128,195,129,227,130,153,122,137,181,193,187,152,111,128,180,134,139,203,175,167,188,161,168,106,196,200,211,217,190,224,191,199,199,132,197,155,217,206,167,138,106,114,154,186,193,178,188,190,85,127,217,217,180,155,188,155,140,217,240,148,215,228,105,222,213,226,225,186,224,135,176,211,214,158,215,111,212,113,172,215,148,203,212,127,176,235,120,226,119,147,158,141,180,155,162,172,122,88,231,221,207,220,218,213,183,212,181,167,187,214,136,195,135,185,183,192,181,185,196,215,221,207,220,196,197,235,211,211,188,212,202,176,233,200,235,132,193,199,198,127,189,180,179,196,183,210,109,206,222,114,214,224,89,105,218,215,128,185,224,93,130,197,100,98,152,180,152,193,176,161,174,217,132,224,228,222,198,188,215,183,167,186,171,169,157,183,205,196,219,211,176,193,228,222,198,211,180,215,183,187,203,212,229,105,228,120,226,124,93,215,122,221,128,207,220,134,99,229,217,203,212,234,222,233,229,242,218,224,236,217,215,224,119,217,195,217,129,239,221,216,220,200,142,181,180,138,196,89,119,199,193,119,145,185,183,113,122,196,128,137,187,140,142,129,214,85,105,229,235,185,215,231,197,211,193,176,105,193,228,222,211,180,215,183,181,210,222,218,182,188,217,190,215,224,198,197,229,197,240,187,194,215,211,188,187,212,202,196,229,200,190,199,228,222,193,199,235,244,192,179,180,206,142,106,216,178,216,179,127,111,217,145,181,93,162,100,155,170,216,98,188,196,219,235,206,153,161,235,228,222,211,185,180,189,180,215,181,240,228,226,214,233,218,85,105,212,244,185,142,229,215,234,129,235,214,85,105,185,142,215,197,215,95,234,129,229,235,105,200,185,218,191,203,232,175,175,234,200,226,187,226,187,222,198,193,193,221,183,213,212,229,109,228,114,160,137,226,161,158,215,142,113,221,207,220,173,232,225,213,160,85,105,200,185,239,142,218,173,217,229,212,144,209,215,229,144,213,187,178,174,229,188,235,188,180,215,196,130,218,200,228,189,161,161,225,233,229,242,188,236,190,215,235,227,176,239,188,210,240,232,225,215,215,228,211,213,226,193,127,190,211,195,161,152,198,215,141,191,180,155,218,197,88,170,128,216,197,196,139,181,167,149,180,193,186,161,174,190,132,198,188,183,182,167,128,186,196,197,200,169,166,205,210,203,212,232,240,234,211,225,216,233,242,236,216,190,198,119,215,195,191,129,197,220,225,183,181,228,226,136,142,190,185,183,181,189,196,197,229,212,209,144,213,187,215,178,174,229,188,180,213,200,201,196,199,208,196,181,205,142,186,202,160,200,199,111,208,180,162,170,166,229,235,203,212,200,228,226,195,129,231,221,181,193,161,174,217,132,224,228,222,198,188,183,182,167,186,171,196,200,169,157,183,205,217,219,210,167,167,109,154,129,229,221,132,228,222,198,111,162,176,219,100,170,183,98,155,202,216,200,188,216,199,212,199,196,181,216,196,219,229,215,229,153,202,211,191,228,193,229,211,185,180,215,239,185,215,224,217,216,210,235,211,216,218,182,216,217,215,224,198,235,191,227,197,229,217,235,203,212,229,226,119,195,129,221,220,217,240,232,225,215,222,226,241,225,127,224,195,161,141,217,217,244,180,155,153,218,170,128,197,196,172,200,210,187,175,189,201,176,178,190,190,190,198,193,127,208,195,212,199,178,189,188,225,203,212,109,114,202,120,195,93,227,122,100,128,98,173,99,229,142,95,129,214,105,123,185,215,197,222,224,216,200,175,188,193,172,181,152,152,186,160,127,191,124,141,93,155,153,185,100,88,181,98,173,215,137,234,211,200,211,161,161,216,214,137,182,89,216,218,191,185,171,172,200,229,203,194,175,175,215,206,187,181,176,168,187,229,132,211,193,193,127,235,128,189,227,180,155,142,167,189,222,178,224,198,145,181,128,93,176,142,183,167,222,138,106,216,114,186,193,216,85,127,132,217,180,216,188,155,140,196,219,211,233,153,161,193,228,222,211,185,180,189,180,183,181,225,240,218,215,205,212,202,229,229,153,200,161,228,211,235,244,192,196,180,229,235,203,212,226,119,195,129,231,221,187,188,105,129,137,119,85,190,119,129,189,113,122,198,128,137,166,229,203,212,234,222,233,229,242,218,224,236,217,215,224,217,195,129,239,221,216,220,200,197,191,234,211,232,200,181,226,241,187,211,226,222,198,193,183,180,142,218,187,203,212,95,138,105,155,195,105,123,145,192,227,221,207,166,187,140,196,183,211,109,186,193,153,211,161,174,152,188,199,145,180,196,179,100,200,198,98,187,229,167,211,228,206,201,240,229,146,208,195,132,199,227,231,157,139,203,175,167,149,188,161,168,225,106,196,218,211,215,199,215,132,171,155,186,127,187,124,147,158,141,93,155,153,88,134,173,148,235,105,232,234,229,135,176,195,161,124,111,239,153,172,128,99,196,211,205,212,202,176,233,161,193,191,198,180,189,180,179,185,196,183,191,234,149,200,214,193,218,180,189,153,215,170,187,232,228,212,202,196,229,190,221,226,190,199,199,211,222,224,189,179,198,221,191,222,224,217,216,196,219,149,212,161,105,153,161,217,132,224,198,211,127,215,128,171,215,157,205,202,200,199,212,199,217,185,180,216,173,210,215,228,105,206,213,190,211,214,198,124,215,191,212,200,162,153,197,215,216,99,142,183,194,181,167,200,95,187,187,154,155,120,105,161,123,158,193,135,185,195,183,181,196,155,140,218,194,187,202,192,217,181,217,225,218,203,175,175,229,211,206,240,181,176,168,106,187,242,202,236,132,193,193,235,192,128,189,239,155,157,229,203,212,234,222,233,229,242,218,224,236,217,215,224,217,195,217,129,239,221,216,220,213,109,114,137,195,161,158,229,235,93,113,100,231,98,134,196,148,181,135,176,187,172,170,152,152,229,213,235,212,193,127,120,119,152,147,158,141,180,122,88,170,207,137,220,229,217,235,203,212,200,229,226,119,195,129,231,221,196,219,206,233,153,193,228,222,211,185,189,180,215,181,222,176,182,146,178,200,191,199,199,198,127,195,178,185,196,181,188,217,229,225,196,191,240,219,219,218,234,200,226,190,221,223,191,235,185,244,192,180,185,198,215,180,183,222,211,168,106,216,160,216,179,211,127,182,186,142,155,169,198,188,187,205,180,142,193,189,179,211,198,127,188,128,132,182,167,186,196,176,172,200,169,152,173,187,152,205,229,139,149,228,240,161,229,242,178,236,190,171,239,231,188,194,109,200,187,181,114,160,137,120,119,187,119,129,142,122,100,128,137,99,197,196,219,149,212,161,218,153,161,217,132,215,224,127,215,185,180,128,171,179,157,181,225,218,200,105,186,202,119,124,119,147,158,128,129,192,227,155,130,153,137,134,139,234,149,193,127,214,193,161,152,141,212,200,224,189,155,88,215,128,188,180,218,194,187,210,189,212,106,174,211,198,127,132,176,215,229,212,144,215,229,144,215,187,178,174,188,235,185,200,188,159,215,196,130,218,196,200,193,176,161,174,217,132,224,228,222,198,215,171,215,157,183,225,194,175,175,206,240,187,181,176,168,106,187,229,236,132,187,193,193,235,192,128,189,239,155,229,95,138,186,155,214,123,229,235,145,185,215,215,231,198,181,173,166,197,140,200,197,232,212,225,234,228,187,190,211,187,228,222,193,224,198,221,220,181,180,142,193,189,186,222,106,182,174,211,198,127,188,132,183,167,196,200,215,152,166,173,152,167,225,215,149,228,213,188,120,190,119,193,189,218,188,197,180,176,187,172,187,203,175,175,232,226,241,168,226,193,127,180,155,183,180,139,203,212,200,189,232,161,161,188,211,195,244,171,176,188,220,212,200,201,176,226,241,106,132,132,199,128,180,221,220,180,219,203,175,211,205,222,222,211,105,176,182,146,178,224,211,127,195,185,191,180,178,188,173,137,188,187,190,193,111,162,130,170,181,173,134,173,229,222,189,240,234,161,225,233,229,242,236,226,190,215,176,239,231,221,187,225,218,194,235,229,222,187,218,182,188,235,190,215,229,192,215,197,225,218,229,189,161,225,218,178,202,188,235,190,190,215,229,215,215,176,197,188,200,197,232,212,225,234,211,228,187,229,190,211,187,228,222,193,224,198,221,220,197,211,202,200,211,132,191,199,127,128,179,196,157,210,203,175,211,205,189,168,211,198,185,180,176,179,155,229,235,203,212,200,228,226,119,195,129,231,221],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #16","x":[200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,191,191,191,191,191,191,240,240,240,240,240,240,240,240,240,240,240,240,240,211,206,206,206,206,206,144,144,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,209,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,215,215,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,211,211,211,211,211,211,211,211,211,211,211,211,144,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,138,138,138,138,138,138,138,138,138,206,206,206,206,206,206,206,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,213,213,213,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,241,241,241,241,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,214,214,214,214,214,154,154,154,154,154,154,154,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,176,229,178,178,178,178,178,178,178,178,178,178,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,155,155,155,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,236,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,132,132,132,132,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,136,179,179,179,179,142,142,142,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,228,228,228,228,228,228,228,123,123,123,123,123,123,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,204,222,222,222,222,222,222,222,222,222,222,222,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,193,193,193,193,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,211,211,211,211,211,211,211,211,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,201,135,135,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,212,212,212,212,244,244,244,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,188,188,181,181,181,181,181,181,181,181,181,181,181,181,181,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,185,185,185,185,185,185,185,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,159,159,159,220,220,224,224,224,224,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,186,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,130,130,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,218,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,213,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,215,215,215,215,215,215,215,215,215,215,215,215,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,183,183,183,183,183,183,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,197,180,180,180,180,180,180,180,180,180,180,180,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,155,155,155,155,155,155,155,155,155,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,205,205,205,205,205],"y":[240,232,225,228,213,226,241,186,233,218,135,176,217,214,215,224,158,111,212,244,200,113,172,218,215,148,203,175,181,137,211,180,142,153,211,161,174,135,212,183,130,179,134,166,144,187,215,229,144,215,188,214,178,190,235,185,183,200,188,159,189,215,196,130,218,196,200,231,148,203,212,228,127,135,176,120,226,119,229,147,235,141,195,155,162,153,172,122,88,231,221,207,220,142,181,200,180,188,95,138,154,89,120,190,105,161,123,158,145,195,189,187,155,140,206,142,222,211,106,216,178,216,127,111,132,145,181,93,142,188,213,235,234,229,119,119,158,239,207,137,220,148,181,176,172,152,152,200,148,137,175,196,135,193,128,130,196,173,134,173,181,225,202,192,227,215,217,217,210,225,218,211,216,218,182,202,216,235,217,224,229,198,191,192,215,142,186,181,114,137,119,187,119,129,142,185,122,128,137,173,99,187,213,234,229,120,119,158,239,207,137,220,142,167,189,222,154,178,182,224,198,111,145,191,181,128,93,142,98,217,105,206,186,190,158,198,124,217,191,217,224,162,113,216,180,99,196,219,203,175,211,222,211,105,216,176,146,178,224,211,161,188,216,190,127,195,191,178,179,188,173,229,222,224,235,217,229,235,217,227,216,229,197,191,240,194,211,228,232,234,200,187,226,241,196,211,190,228,222,244,189,227,231,180,229,213,137,105,186,235,195,161,124,111,130,152,152,99,217,181,217,148,137,167,178,135,132,228,222,198,198,145,181,128,176,142,183,196,109,201,186,193,174,188,199,145,183,180,196,142,100,200,198,98,187,197,189,222,212,168,106,182,153,161,198,132,155,215,200,175,196,199,208,196,181,173,229,213,137,105,186,235,161,124,130,231,128,207,152,220,152,99,197,222,222,211,212,168,106,182,153,224,161,191,155,229,210,200,222,233,229,242,218,224,226,217,215,224,239,231,221,216,229,240,203,194,175,175,215,228,187,168,187,229,211,187,193,193,127,244,227,180,155,231,183,194,109,200,187,114,160,119,119,129,122,100,128,137,98,173,99,218,222,211,224,202,216,191,240,232,137,228,213,226,233,137,218,217,215,212,244,130,152,152,200,196,199,208,196,181,172,217,183,168,178,176,146,178,188,190,179,211,127,111,145,217,182,181,178,93,162,142,155,170,98,205,186,160,127,191,152,141,93,185,88,181,98,173,217,217,201,196,199,199,217,217,196,181,137,188,193,128,130,170,173,134,173,109,181,114,160,137,119,187,119,129,142,100,137,99,229,213,148,135,176,235,120,155,162,153,172,122,128,207,235,167,149,201,161,233,146,235,187,229,208,195,199,215,171,210,181,167,193,186,174,211,198,127,188,183,167,128,186,196,176,200,215,232,240,193,233,242,218,127,236,120,217,215,152,147,141,180,155,122,88,170,128,181,187,200,175,188,193,181,229,210,228,211,216,233,229,242,216,226,215,224,198,191,239,197,231,229,139,189,240,234,161,229,188,236,226,190,171,176,231,188,187,203,175,161,168,225,106,196,211,190,215,132,128,171,155,157,217,210,215,228,206,222,213,190,211,214,198,215,217,191,217,212,200,180,162,153,197,215,170,216,99,225,213,212,95,138,181,155,202,226,214,187,195,105,191,123,145,185,227,185,221,198,181,207,220,166,140,196,200,228,235,226,235,231,197,148,137,180,193,212,168,216,160,176,146,178,188,174,135,176,190,211,188,127,128,217,167,178,186,196,130,200,155,215,169,216,188,134,187,210,222,182,188,198,210,222,218,182,217,190,224,198,197,187,188,187,193,190,191,111,180,189,162,181,173,134,173,218,203,142,186,181,129,89,120,187,85,161,158,195,192,185,198,181,173,235,215,109,232,89,200,239,218,215,98,148,205,201,186,202,105,200,176,199,128,199,185,180,172,152,173,152,205,142,202,160,200,199,111,208,185,180,180,93,162,166,139,200,189,232,234,161,161,226,171,176,221,196,219,148,142,186,211,135,176,128,199,130,172,134,166,173,218,183,203,212,181,167,188,154,155,214,195,190,135,185,183,192,181,185,189,196,215,221,207,196,148,176,172,152,152,225,142,213,212,167,180,105,154,155,202,226,214,195,191,135,185,227,215,221,207,220,187,155,196,148,137,167,178,135,132,228,222,198,198,145,181,128,176,142,183,191,211,139,215,149,205,222,189,216,137,89,135,176,216,193,105,222,185,220,189,176,172,203,212,228,193,127,235,226,119,152,229,119,147,158,235,141,195,129,180,155,88,170,231,221,137,220,200,175,188,196,191,208,185,181,232,240,242,127,236,195,161,141,180,155,239,170,128,197,196,186,129,137,119,85,191,119,129,113,122,198,128,181,137,99,186,127,152,111,141,128,155,88,134,200,148,175,196,176,172,196,152,173,152,109,142,105,186,114,191,147,158,142,185,181,173,99,200,148,105,196,176,199,208,128,185,172,196,152,173,152,203,212,137,229,105,228,186,120,226,229,124,235,128,215,130,153,122,221,128,207,152,220,152,99,213,232,211,241,225,216,182,216,190,119,198,119,215,191,244,129,197,207,137,105,105,114,187,129,85,124,193,147,158,185,196,198,166,99,225,203,212,105,120,124,195,93,227,122,221,128,134,99,225,142,213,180,228,181,105,154,155,202,226,214,187,191,135,185,185,215,220,166,197,187,155,139,167,149,161,225,233,146,235,187,215,208,195,199,171,137,206,225,214,137,224,211,215,185,224,217,187,217,217,216,210,218,222,211,216,202,216,217,198,191,215,200,187,203,235,175,211,176,168,233,235,132,190,127,128,189,155,157,189,161,225,218,188,235,190,190,215,229,215,215,176,197,188,240,148,232,225,215,105,213,226,241,233,218,176,217,214,215,224,124,244,200,162,153,218,215,99,187,170,217,225,218,194,229,187,202,229,192,215,235,205,206,212,153,161,235,193,191,228,222,198,211,180,189,180,179,185,196,183,200,181,175,109,205,180,114,186,196,127,200,152,199,141,185,180,142,100,198,98,166,196,219,181,137,180,142,160,211,199,183,170,166,167,211,149,228,240,229,176,242,236,127,235,195,212,178,227,171,239,213,229,228,160,89,85,195,158,229,235,215,142,231,196,139,175,149,181,161,187,218,146,215,193,215,127,195,199,181,205,180,202,160,200,199,208,180,180,93,162,142,98,166,200,142,181,175,205,138,129,196,137,200,85,199,199,147,158,145,183,180,187,99,142,218,203,212,95,138,105,155,195,105,191,123,145,192,185,227,221,207,166,187,140,196,213,229,109,228,114,137,226,195,161,158,229,235,215,113,100,231,207,98,220,173,196,213,229,228,89,226,85,195,105,158,235,215,142,231,196,229,203,212,193,119,152,119,147,158,195,170,231,207,137,220,197,211,205,212,202,176,233,200,132,191,198,127,179,185,196,183,218,213,183,212,181,167,187,214,136,195,185,183,192,181,196,215,221,207,220,196,222,222,211,216,182,216,198,191,232,240,233,242,218,127,236,217,215,195,161,141,180,155,153,170,128,197,196,229,213,148,105,234,229,135,176,161,124,111,162,153,172,128,210,189,201,181,176,178,217,190,190,224,127,208,195,212,199,178,176,197,188,229,213,203,212,193,120,119,152,147,158,180,88,170,231,207,137,220,206,142,167,222,211,216,154,178,216,127,111,132,191,181,93,162,170,98,155,213,229,142,228,95,129,214,105,123,235,185,215,215,231,198,197,196,229,235,200,228,226,231,221,200,229,197,240,194,211,228,234,187,181,211,222,198,193,244,189,227,231,183,180,200,197,191,211,228,232,234,200,181,226,241,196,211,228,222,189,227,231,180,205,142,202,160,200,199,111,208,180,180,93,162,142,166,225,142,213,167,180,181,105,154,155,202,226,214,191,135,185,215,220,197,187,155,142,183,203,175,211,109,193,212,114,186,129,193,85,179,145,182,180,181,167,186,100,215,169,205,197,210,219,211,205,189,168,106,161,190,132,185,180,176,179,155,181,197,181,180,142,222,193,186,211,212,168,216,146,178,174,216,188,127,183,196,200,155,215,188,152,166,173,152,200,142,183,181,175,205,138,154,196,200,89,123,199,183,180,113,155,140,187,188,138,105,129,89,120,119,190,145,129,189,113,122,198,128,166,194,187,186,127,147,158,141,128,155,130,153,88,134,137,188,187,193,111,162,170,173,134,173,213,229,142,228,129,89,214,85,195,105,235,215,215,231,197,196,197,196,139,219,167,149,212,161,105,153,161,190,127,128,197,200,188,222,222,211,216,196,224,188,216,190,212,199,191,200,181,175,205,180,129,196,137,200,85,199,147,158,145,183,180,187,99,139,209,137,149,109,205,222,189,216,114,176,193,105,204,201,220,93,130,176,213,100,181,193,187,152,111,141,180,134,173,189,161,225,176,218,178,235,190,215,215,212,178,176,200,142,181,180,138,196,89,199,193,145,185,183,180,113,187,155,140,224,217,216,229,235,229,227,217,217,216,203,222,222,211,202,176,182,146,178,224,200,190,199,127,195,191,178,196,181,188,217,210,148,105,206,222,186,190,158,198,124,217,217,212,224,162,113,197,216,99,210,222,181,182,178,188,190,187,198,188,211,222,206,211,213,161,161,216,193,182,127,216,161,152,141,212,200,224,155,171,176,218,88,128,180,232,240,242,218,236,195,161,162,153,197,196,210,203,175,189,202,146,200,211,191,199,199,198,127,176,185,196,148,194,187,193,176,172,170,210,222,182,188,217,198,211,205,212,176,233,153,161,193,191,222,198,211,180,189,180,179,185,196,183,187,148,194,187,193,135,176,152,180,162,172,170,218,194,187,193,127,135,152,158,111,141,192,180,155,162,88,152,152,137,135,162,130,170,152,152,200,210,187,189,176,146,178,190,198,127,195,178,189,176,197,142,183,109,212,168,129,178,176,146,179,211,195,145,182,181,178,162,186,100,215,98,205,232,225,215,241,233,218,217,215,224,161,124,244,200,162,153,218,197,99,196,229,200,228,193,152,229,119,235,195,129,227,215,170,137,142,187,194,203,200,180,188,95,138,187,105,154,155,190,105,161,123,158,195,189,187,155,140,187,203,175,168,225,106,196,211,190,199,128,171,155,157,240,137,215,228,225,137,211,224,212,113,172,196,139,167,149,212,161,105,153,211,127,128,197,215,173,197,205,212,161,225,218,153,161,132,215,127,215,185,180,128,171,179,157,181,225,137,200,186,127,202,119,119,147,158,111,128,195,129,192,227,155,130,153,137,152,152,235,200,228,226,231,105,188,105,114,187,129,137,85,147,158,198,166,99,213,229,228,160,137,89,226,195,161,158,215,142,113,221,207,220,173,196,196,219,212,161,225,218,153,161,132,215,198,127,215,185,180,128,171,157,181,187,222,211,216,216,191,200,225,218,203,229,206,240,176,211,202,236,211,193,198,127,189,189,239,180,183,217,197,183,193,212,168,160,176,146,178,188,190,211,195,217,182,167,178,186,142,215,169,198,187,205,197,211,205,212,202,176,233,200,132,193,191,198,179,185,196,183,232,225,109,240,213,241,114,242,89,236,128,200,93,239,218,100,98,134,213,109,114,160,137,89,195,158,229,235,113,231,173,196,229,160,89,214,85,142,215,173,197,196,240,215,228,232,234,176,241,168,132,127,208,244,128,180,155,231,180,225,203,105,202,120,195,192,93,227,122,100,128,98,134,99,235,215,109,232,234,114,229,137,89,214,100,215,98,134,187,183,215,188,228,214,136,142,190,185,183,200,159,189,196,231,210,225,218,194,235,229,222,187,218,182,235,190,215,224,229,192,197,217,232,240,222,241,225,233,224,120,224,147,158,217,217,244,122,197,210,189,212,106,153,211,198,127,132,176,215,229,217,235,200,222,229,218,224,226,217,215,224,217,217,239,231,221,216,142,218,187,213,212,167,180,188,105,154,155,202,214,195,135,192,185,227,215,221,207,220,187,155,196,144,187,215,229,215,188,214,142,190,235,185,183,200,188,159,189,215,196,130,218,196,231,200,175,188,190,191,193,185,200,148,137,175,105,196,135,199,128,185,130,196,134,173,229,235,229,235,227,139,167,149,212,161,105,190,211,127,128,197,215,173,206,142,189,222,178,182,224,198,127,132,145,191,181,128,93,142,200,217,188,201,196,191,199,208,217,217,185,235,205,188,206,240,212,202,242,200,161,236,235,193,222,198,189,180,179,196,183,217,217,225,218,194,229,222,187,224,202,235,229,192,215,216,200,228,235,235,231,232,240,193,233,242,218,236,120,217,215,224,152,147,158,122,88,181,222,222,211,181,216,187,182,188,216,191,218,194,200,105,187,186,119,124,119,147,158,128,129,192,155,153,137,134,213,229,228,160,89,85,195,158,229,235,215,142,231,196,217,217,217,181,187,187,187,190,191,189,185,181,193,152,111,180,134,173,217,210,148,206,222,186,135,176,190,158,198,111,217,217,224,113,197,216,180,225,218,229,211,240,106,242,202,236,187,208,132,192,239,157,206,183,148,137,222,211,106,160,182,135,176,179,211,127,132,191,182,186,130,198,134,187,205,217,206,142,109,168,154,129,178,176,146,178,188,190,211,127,217,181,178,162,100,155,170,98,197,211,205,212,202,176,200,132,191,198,127,128,179,185,196,157,197,187,229,211,188,206,240,196,242,211,202,236,211,190,199,222,198,193,229,199,215,239,180,179,183,200,228,235,229,235,227,109,142,105,186,114,160,191,124,147,158,142,153,185,100,181,98,173,99,217,235,200,228,226,217,231,229,240,203,175,175,215,228,234,168,132,187,193,127,244,227,180,155,231,194,200,142,186,187,181,129,89,120,187,85,191,161,158,195,113,185,198,181,173,196,219,181,180,201,202,160,111,208,183,93,162,142,166,225,139,218,194,235,229,149,187,161,233,176,242,178,236,127,235,212,192,178,171,239,200,187,161,146,217,190,224,190,193,127,195,189,176,197,137,193,152,111,128,180,162,130,229,213,193,127,120,152,147,141,180,155,162,122,88,170,207,220,197,211,188,168,196,200,211,132,199,199,127,128,171,157,139,211,222,189,213,161,216,193,127,161,152,141,212,200,224,155,171,176,218,88,128,180,200,197,191,234,211,232,234,200,181,226,241,211,228,222,193,180,217,217,197,139,167,211,205,161,168,106,190,132,185,180,179,197,155,181,200,217,201,196,191,199,208,217,185,196,181,217,240,232,225,215,222,226,241,225,193,127,224,195,161,152,141,217,217,244,180,155,218,88,170,128,197,196,180,188,138,105,129,89,119,190,119,145,129,189,113,122,128,137,166,187,187,235,167,149,233,146,235,187,229,208,132,199,215,171,217,235,200,228,226,231,203,212,137,229,105,228,186,120,226,124,128,215,130,122,221,128,207,152,220,99,203,200,228,235,226,229,119,235,195,129,231,221,228,235,235,197,211,205,212,176,161,132,191,198,180,179,185,196,183,200,188,201,222,211,216,196,224,188,216,190,212,199,191,229,215,205,188,212,202,229,229,153,200,161,202,211,228,222,193,211,215,179,196,217,197,148,175,181,137,180,142,193,212,176,146,178,153,161,188,174,135,176,190,188,195,128,217,183,217,167,178,196,130,200,215,216,134,166,197,181,222,186,222,211,212,168,106,182,224,174,127,183,191,155,215,188,166,235,222,189,161,225,233,188,190,215,235,227,176,105,186,124,147,158,93,155,153,98,173,139,175,167,211,205,202,161,168,106,200,211,190,191,132,185,196,197,155,194,137,187,193,127,135,152,111,141,180,162,88,152,152,232,225,211,215,228,222,206,189,213,161,161,120,195,147,158,171,176,122,218,197,196,197,196,219,175,211,222,222,211,168,105,182,146,153,224,161,127,191,179,155,188,173,187,183,181,188,228,214,136,142,190,183,181,189,231,197,196,139,219,167,149,212,161,105,153,161,211,127,128,197,173,218,235,167,229,211,201,233,242,146,202,229,208,132,199,215,171,157,225,213,142,228,129,89,226,195,105,221,207,220,196,191,203,175,175,232,200,226,241,168,226,198,193,127,155,183,180,197,196,219,175,222,211,212,168,216,146,153,224,161,216,127,191,179,155,188,240,139,213,232,211,215,206,189,226,161,241,211,119,129,171,176,207,137,229,240,215,228,206,234,176,106,132,211,193,208,132,199,244,128,189,227,231,229,222,240,234,225,216,233,229,242,182,236,226,190,215,239,197,231,221,240,167,215,206,232,234,146,226,211,193,127,195,212,244,189,157,202,216,200,188,216,190,199,199,212,196,181,216,187,148,135,176,191,128,189,185,172,152,152,210,235,228,211,216,218,182,216,215,224,198,235,191,227,197,210,211,216,202,216,217,224,198,191,210,222,182,217,224,198,191,203,175,175,232,200,226,241,168,226,198,193,127,183,180,139,187,203,175,167,149,188,161,161,168,225,106,196,218,215,190,199,215,132,171,155,222,222,211,202,176,182,146,178,224,200,188,190,199,199,127,195,212,191,178,196,181,188,229,235,229,235,227],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #17","x":[200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,229,229,217,217,217,217,217,217,217,217,217,217,217,197,197,197,197,197,197,197,197,197,197,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,196,196,196,196,196,196,196,191,240,240,240,240,240,240,240,240,240,240,240,240,211,206,206,206,142,142,142,139,139,139,139,139,139,139,139,139,139,139,139,139,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,213,213,183,183,183,183,183,183,183,183,183,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,215,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,232,232,232,232,232,232,232,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,225,225,225,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,211,211,211,211,211,211,211,211,211,211,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,149,149,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,228,228,228,228,228,228,180,180,180,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,95,95,95,95,95,95,138,138,138,138,138,138,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,213,213,213,213,213,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,176,176,176,176,176,176,176,176,226,226,226,226,226,226,226,226,226,161,161,161,161,161,161,161,161,161,161,161,161,161,161,241,241,241,241,241,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,214,214,154,154,154,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,129,129,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,200,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,89,89,89,89,89,89,161,161,161,161,161,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,132,132,132,132,132,132,132,132,132,211,211,211,211,211,211,211,211,211,211,211,211,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,193,193,193,193,193,193,193,193,85,85,85,85,85,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,136,136,179,179,179,179,179,179,179,142,195,195,195,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,105,105,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,123,123,123,123,123,123,218,152,152,152,152,152,152,152,152,152,152,152,152,198,198,198,198,193,193,193,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,211,211,211,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,127,127,127,127,127,127,127,127,127,127,127,127,127,188,188,188,188,188,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,135,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,145,145,145,145,145,145,145,145,145,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,212,212,244,244,244,244,244,244,244,244,244,244,244,182,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,200,200,200,200,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,181,181,181,167,167,167,167,167,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,222,185,185,185,128,128,128,128,128,128,128,128,128,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,186,186,171,171,171,171,171,171,171,171,171,196,196,196,196,196,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,218,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,100,100,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,215,215,215,215,169,169,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,215,215,215,215,215,215,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,183,183,183,183,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,197,197,197,197,197,180,187,187,187,187,187,187,187,187,187,187,187,187,187,155,155,155,155,140,140,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,205,205,205,205],"y":[148,215,105,232,240,242,236,195,161,124,162,153,197,99,196,196,219,186,202,176,128,199,180,172,152,173,152,225,183,181,167,180,228,226,136,142,181,197,225,229,200,193,152,119,158,129,180,227,215,170,137,187,105,129,137,119,85,191,119,129,113,122,198,128,137,166,217,197,183,148,137,193,168,160,176,146,178,188,135,190,179,211,127,217,217,182,167,178,186,130,155,215,169,198,216,187,205,229,203,212,200,228,235,226,195,129,231,221,187,187,188,187,176,190,191,189,185,172,181,152,152,187,218,194,187,222,224,216,109,105,186,160,124,147,158,93,155,153,100,98,173,229,235,203,212,226,119,195,129,231,221,206,183,148,137,222,211,106,216,160,135,216,179,127,132,130,198,188,210,240,232,215,228,222,213,226,225,224,211,214,215,212,200,180,153,218,197,215,170,205,202,200,199,212,217,185,180,196,181,216,217,225,218,194,187,202,217,192,215,200,225,218,203,175,215,181,187,229,211,187,198,193,193,127,235,192,180,183,148,203,212,229,228,127,135,176,120,226,229,147,235,141,155,162,153,172,122,231,221,128,207,220,187,206,183,189,222,160,182,224,176,179,127,128,132,191,130,172,198,134,187,219,181,205,180,202,160,200,199,111,208,180,93,162,170,166,196,219,203,175,211,222,211,105,216,176,146,178,224,211,216,127,191,180,178,179,188,173,187,188,187,190,191,193,185,148,203,212,229,228,127,135,176,120,226,119,229,147,111,235,141,195,215,155,162,153,172,122,88,221,196,219,203,175,211,105,216,176,146,178,211,188,216,190,127,195,180,178,179,188,173,217,235,228,235,235,217,217,227,225,218,229,211,206,240,176,106,242,202,236,132,193,235,208,132,192,128,189,239,157,105,186,127,124,147,158,93,155,153,88,134,217,217,217,216,225,215,105,240,241,186,242,135,176,236,214,158,111,200,113,172,218,215,99,175,188,190,191,193,185,181,197,203,175,137,193,212,160,174,188,195,212,167,186,196,200,215,169,198,187,137,181,193,111,128,180,162,130,134,173,200,175,188,190,191,193,208,185,187,148,187,135,176,190,191,189,185,172,181,152,152,105,186,127,124,147,158,93,155,153,88,98,173,203,212,228,193,127,226,119,152,229,119,147,158,235,141,195,129,180,88,170,231,221,137,220,139,189,161,225,176,218,178,215,215,127,212,178,176,197,196,189,222,212,168,105,106,182,153,224,161,132,155,173,213,235,234,229,119,119,158,239,207,137,220,187,187,190,191,189,185,217,235,222,218,224,235,217,235,217,217,227,216,222,228,161,225,233,242,182,190,215,235,227,239,197,200,139,167,175,149,161,187,218,146,217,215,224,193,189,240,232,225,215,226,241,225,193,127,224,195,161,152,141,244,155,218,88,128,197,196,218,203,142,186,129,89,85,161,158,195,192,173,225,229,229,227,215,217,196,203,175,181,211,142,186,153,211,161,195,212,183,217,179,172,152,166,173,152,222,211,216,224,216,191,222,211,216,224,216,191,137,135,128,130,185,170,194,109,200,187,114,160,137,119,119,129,142,113,122,128,137,99,234,114,229,137,235,214,195,158,128,93,113,100,134,197,196,200,196,199,208,196,173,200,137,175,186,105,196,135,199,130,196,170,134,173,229,222,228,240,211,225,216,233,229,242,182,236,216,190,215,239,197,231,205,201,202,105,200,199,208,185,180,152,152,142,187,194,200,180,95,138,187,105,105,161,123,158,145,195,166,187,155,140,181,187,218,203,95,138,186,181,129,89,187,105,161,123,158,145,195,192,185,198,181,166,140,206,183,189,222,160,182,224,176,179,127,128,132,191,130,172,198,134,187,148,234,211,200,211,161,161,214,186,182,218,111,191,171,113,216,180,229,200,227,215,187,187,190,193,189,229,213,235,234,193,229,120,119,152,147,158,122,88,207,220,109,142,105,181,114,160,187,124,147,158,142,153,185,100,98,173,137,193,135,180,162,130,152,152,187,188,187,190,191,193,189,185,181,181,186,160,127,187,124,141,93,155,153,100,88,98,173,175,188,191,193,181,225,200,127,202,135,176,119,119,147,158,111,141,195,129,227,155,162,172,88,137,210,203,212,200,240,234,222,233,229,242,224,236,215,224,217,195,217,239,221,216,220,187,109,142,188,186,186,160,127,190,141,189,155,142,153,100,88,98,218,137,200,186,127,202,119,119,147,158,111,141,128,129,192,155,130,153,88,137,152,152,218,203,212,95,138,186,129,195,105,123,158,145,192,227,221,198,181,207,173,140,196,189,201,161,176,218,178,217,190,215,224,127,212,178,176,197,240,148,232,215,228,105,213,226,186,135,176,217,214,215,224,158,124,111,212,244,200,113,172,215,99,181,187,224,217,217,216,139,167,175,149,181,161,225,106,187,146,193,215,132,171,210,222,211,216,182,217,224,198,191,232,240,242,127,236,195,161,141,180,155,239,170,128,197,196,197,211,211,188,202,176,233,200,211,132,199,199,127,128,142,186,105,193,160,193,180,93,196,148,205,201,186,202,105,200,135,176,199,208,128,185,180,130,134,173,225,139,218,194,235,229,189,187,161,161,225,233,178,202,188,190,215,192,176,188,225,203,212,109,114,137,226,161,227,113,100,221,207,98,220,173,210,189,201,176,178,217,190,190,187,224,208,212,178,176,197,188,200,137,175,142,186,105,196,199,111,185,196,170,134,109,180,105,114,127,124,193,141,185,155,153,196,88,198,166,194,200,142,186,187,181,129,89,120,187,85,161,158,195,185,198,181,173,225,203,212,105,186,202,120,124,128,195,93,227,122,221,128,134,99,225,203,212,109,114,160,137,202,161,227,113,100,221,207,98,220,173,200,228,235,226,229,235,129,221,203,175,167,149,211,188,161,168,225,106,196,218,211,215,199,199,215,132,128,171,155,157,142,187,194,203,200,180,188,95,138,187,105,154,155,190,105,123,135,195,185,189,187,155,140,224,216,213,235,234,193,229,120,152,147,158,239,122,88,207,203,212,228,193,127,235,120,226,119,152,147,158,235,141,180,155,122,88,170,231,221,207,220,222,211,182,188,187,198,200,228,235,226,229,119,235,195,129,221,183,137,168,106,160,146,178,188,190,179,211,127,217,145,217,182,186,142,155,198,216,188,205,225,212,160,89,202,226,85,195,161,158,227,142,221,207,220,229,235,229,235,227,225,218,203,175,175,215,206,240,176,168,187,229,132,211,187,193,193,127,235,192,128,189,180,155,229,240,203,194,175,175,215,187,168,187,229,211,187,198,193,193,127,235,244,192,180,183,200,137,175,186,105,196,199,185,130,196,170,134,173,218,203,212,95,138,186,187,195,105,123,145,192,227,185,221,198,181,207,166,140,196,196,181,180,201,153,211,161,174,188,111,199,183,93,162,196,142,179,200,170,198,98,187,203,175,202,182,146,200,211,191,199,198,127,185,196,217,196,219,203,175,211,176,153,211,161,188,190,195,212,217,217,178,179,216,180,105,114,187,129,137,85,124,193,147,158,145,185,153,196,198,166,187,99,142,186,114,137,85,191,119,142,185,181,137,173,99,137,193,135,152,111,180,162,152,152,187,148,135,176,190,191,128,189,130,185,172,181,152,152,225,212,160,137,202,226,161,158,227,142,113,221,207,220,173,210,175,211,205,189,202,168,106,211,198,132,185,180,176,179,155,181,187,175,201,187,190,193,208,217,189,216,109,105,105,114,187,127,124,193,141,185,155,142,153,196,100,88,198,166,191,211,148,215,200,211,161,161,214,137,182,89,135,176,216,111,191,222,185,189,171,172,137,135,128,162,130,170,152,152,210,222,182,188,217,190,224,198,197,188,105,105,114,187,129,137,85,124,147,158,196,198,166,99,217,217,225,218,194,187,202,192,215,217,200,188,201,216,196,188,216,191,199,212,199,185,216,240,232,225,215,215,228,213,226,225,224,211,214,161,215,244,200,180,153,218,215,170,222,211,216,224,216,191,210,240,232,225,215,215,228,226,241,120,190,211,195,198,147,215,158,191,244,122,197,216,197,196,213,235,234,193,229,127,120,152,147,141,180,155,239,122,88,170,128,207,200,188,222,222,211,196,176,182,178,188,190,190,195,212,199,191,178,188,222,211,216,224,216,191,181,197,211,188,202,200,211,132,199,199,127,128,157,148,176,172,170,148,176,172,175,222,201,222,211,216,187,182,188,190,193,208,212,199,191,188,203,175,211,193,153,161,174,188,111,212,167,93,196,142,179,200,169,170,198,187,232,240,193,242,127,236,195,152,147,141,180,155,239,122,88,170,128,225,202,192,129,89,120,119,85,191,119,145,129,113,122,198,128,181,166,200,139,167,149,161,161,187,218,146,217,215,224,193,215,132,189,148,232,225,215,105,213,226,241,186,233,218,135,176,217,214,215,158,124,111,244,200,218,215,99,197,210,219,211,205,189,168,106,161,190,198,132,185,180,176,179,155,181,139,203,175,167,149,211,202,161,168,106,200,211,217,224,191,199,199,132,185,196,197,155,218,148,194,187,193,135,176,152,141,180,162,172,88,229,235,229,235,227,187,109,142,186,186,160,127,190,191,124,141,189,155,142,153,100,88,181,98,173,225,203,212,109,114,202,120,195,93,227,122,100,128,98,99,197,139,167,149,211,205,202,161,168,106,200,211,217,224,191,132,179,185,196,197,155,224,217,216,235,175,175,211,181,168,106,187,242,235,132,187,229,193,132,128,215,155,157,148,203,175,181,137,211,180,142,153,211,161,174,135,176,188,212,128,183,196,130,179,200,134,166,203,175,211,188,161,168,225,106,196,218,211,215,199,199,127,215,128,171,155,157,235,137,215,232,234,229,137,214,158,130,113,215,152,197,152,212,229,228,226,161,93,215,100,221,207,98,220,134,99,213,229,109,228,114,137,226,195,161,158,229,235,93,215,113,100,231,207,98,220,134,229,194,211,206,201,187,106,229,146,211,193,235,132,199,189,227,157,218,194,137,200,187,186,127,119,124,119,147,158,111,128,129,155,130,153,137,229,235,195,161,158,128,93,130,113,152,197,152,196,225,213,181,167,180,105,154,202,226,214,135,181,227,215,221,220,197,187,155,222,211,216,202,216,217,198,191,215,213,234,229,242,218,236,217,119,215,119,129,239,207,137,220,196,219,175,211,222,222,211,168,105,182,146,224,161,127,191,180,179,155,188,173,228,235,235,227,194,203,95,138,187,181,129,187,105,191,161,123,158,145,195,185,198,181,166,140,225,183,181,167,180,228,105,154,202,226,136,181,215,197,187,187,189,188,187,176,190,191,193,172,181,152,173,152,225,202,192,215,197,210,196,219,211,189,168,106,153,161,198,132,185,180,176,179,155,183,148,137,222,211,106,216,160,135,176,216,179,211,182,186,130,155,169,198,216,188,134,187,205,187,175,187,190,193,189,197,187,211,211,176,196,233,211,132,190,199,199,127,128,217,217,217,225,229,229,227,215,229,213,235,203,212,234,229,119,119,195,129,239,207,137,220,187,224,187,216,137,193,127,135,152,111,141,180,162,130,88,152,152,225,203,212,109,114,137,226,161,227,113,100,221,207,98,220,173,137,135,187,128,162,130,170,152,152,240,215,228,105,213,226,225,224,211,214,124,215,212,200,162,153,215,99,139,235,167,149,201,161,233,146,235,229,127,195,212,199,215,171,197,181,180,142,193,212,168,216,176,146,178,188,174,216,190,188,127,128,217,183,167,178,196,172,200,155,215,169,216,188,152,166,173,152,197,183,175,193,212,179,111,195,212,145,182,167,93,186,142,215,169,198,187,205,139,203,175,167,149,188,161,168,225,106,196,218,211,215,199,199,215,132,171,155,200,203,235,175,211,176,168,235,132,193,127,128,189,189,155,225,229,202,192,215,181,186,127,187,141,93,155,88,173,229,235,229,235,227,225,218,194,211,206,240,187,176,106,229,236,211,193,235,208,132,199,192,128,189,239,157,109,114,160,137,119,119,129,142,122,128,137,99,137,205,142,186,105,196,200,199,199,185,180,130,170,134,173,189,161,225,202,188,235,190,190,215,229,215,215,176,188,210,175,189,201,181,187,176,178,190,198,208,212,199,178,188,148,135,176,172,170,152,152,203,212,228,235,226,119,229,119,158,235,195,129,231,221,137,200,139,187,203,175,167,149,161,161,225,106,218,217,215,190,215,132,189,155,240,232,225,215,215,228,206,211,161,226,182,216,120,190,211,195,147,158,191,122,197,196,229,240,203,194,175,175,215,228,187,168,187,211,187,198,193,127,244,227,180,231,183,210,203,175,189,202,146,200,211,191,199,199,198,127,176,185,196,187,175,188,190,193,213,232,240,233,242,218,236,120,217,215,224,147,158,122,187,142,186,114,137,85,191,147,158,198,181,99,139,201,161,161,225,176,178,215,215,127,195,212,178,229,235,229,235,227,225,200,127,202,135,119,119,147,158,111,141,195,129,192,227,155,162,153,88,137,152,225,229,227,215,225,229,229,192,227,215,175,167,149,211,188,202,161,168,225,106,218,200,211,215,199,199,127,215,128,171,155,157,187,175,187,190,193,208,217,217,189,216,197,187,235,211,206,240,196,242,211,236,235,193,190,199,198,229,199,189,239,180,183,196,219,203,211,186,211,212,179,172,152,173,152,196,219,203,175,211,105,216,176,146,178,153,211,161,188,216,190,195,217,178,179,216,210,225,218,194,229,211,187,216,218,182,202,216,235,217,215,224,229,198,191,192,215,197,137,127,152,111,141,128,130,88,134,210,203,188,189,196,146,199,199,198,127,176,148,176,172,170,240,213,215,211,226,241,216,182,216,190,211,119,198,119,215,191,244,197,207,137,203,205,202,216,176,178,200,211,188,216,190,199,195,212,185,180,178,181,225,142,213,167,180,181,105,154,155,202,226,214,195,191,135,192,185,227,215,221,220,187,155,196,197,210,211,205,189,168,106,190,132,185,180,176,179,155,181,139,149,161,161,225,176,178,235,215,127,195,212,178,218,203,212,160,137,202,85,161,158,195,192,227,142,113,229,240,215,228,234,176,106,132,211,193,208,199,244,128,189,227,180,231,203,211,205,202,105,176,178,211,188,190,195,212,217,185,180,178,216,173,203,212,200,222,232,161,216,182,190,215,195,244,220,194,167,211,201,240,187,229,242,146,236,235,195,212,192,239,157,210,235,228,222,211,218,216,217,215,224,198,235,191,227,229,139,211,149,228,240,161,229,176,178,236,190,178,227,171,239,231,200,217,188,201,196,191,208,199,217,217,185,181,225,194,229,222,187,224,235,217,229,217,192,215,216,222,224,217,216,222,211,216,224,216,191,229,240,215,228,234,176,106,132,211,193,208,199,244,128,189,227,180,155,231,200,175,189,187,146,217,190,224,193,127,195,189,176,197,200,188,201,216,196,216,191,199,185,216,225,202,192,215],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #18","x":[200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,229,229,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,197,197,197,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,196,196,196,196,142,142,142,139,139,139,139,139,139,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,213,213,213,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,235,235,235,235,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,203,203,203,232,175,175,175,175,175,175,175,175,175,175,175,175,175,212,212,212,212,212,212,212,212,212,212,212,212,181,181,181,181,181,181,181,181,181,137,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,225,225,225,234,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,211,211,211,211,211,211,211,215,215,215,149,149,149,149,149,149,149,149,149,149,211,211,211,211,211,109,109,109,109,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,205,205,205,205,205,180,180,180,180,180,180,180,180,180,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,193,193,193,193,193,228,228,228,228,228,228,95,95,95,138,138,138,206,206,206,206,206,206,206,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,232,232,240,240,240,240,240,240,240,240,240,240,240,240,240,240,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,212,212,202,202,202,202,202,202,202,202,202,202,202,161,161,161,161,161,161,161,161,176,176,176,176,161,161,161,161,161,161,241,241,241,241,241,168,168,168,168,168,168,168,168,168,105,105,105,105,105,105,105,105,225,225,225,225,225,225,225,225,225,225,106,106,106,106,106,106,106,106,106,106,216,216,216,216,216,216,216,216,216,216,216,216,114,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,154,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,229,229,160,160,160,160,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,137,137,137,137,242,242,242,242,242,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,182,182,182,182,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,155,155,155,200,200,200,200,200,200,200,200,200,200,200,200,211,211,211,211,211,211,211,211,211,89,89,89,89,89,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,174,174,174,174,174,174,174,135,135,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,236,236,236,236,236,236,236,236,236,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,132,132,132,132,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,193,193,193,85,85,85,85,85,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,195,195,195,195,195,195,195,195,195,195,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,199,199,199,199,199,199,161,161,161,161,161,161,161,161,161,161,123,123,123,218,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,158,158,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,211,211,211,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,127,188,188,188,188,188,188,188,215,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,135,135,111,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,132,132,132,132,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,145,145,145,145,185,185,185,185,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,244,244,244,182,182,182,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,167,167,167,167,167,180,180,180,180,180,180,185,185,185,128,128,128,128,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,224,224,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,186,186,186,171,171,171,171,171,171,171,171,171,196,196,196,196,196,196,196,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,239,239,239,239,142,142,142,142,142,142,142,142,142,113,113,113,113,113,113,113,113,113,113,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,218,218,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,100,100,100,100,100,100,100,100,100,100,100,200,200,200,200,200,200,200,155,155,155,155,155,155,155,155,155,155,215,215,215,215,215,169,169,169,169,88,88,88,88,88,88,88,88,88,88,88,88,88,215,215,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,231,231,231,221,221,221,221,221,221,221,221,221,221,198,198,198,157,157,157,157,157,157,157,157,157,157,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,207,207,207,207,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,166,166,166,166,166,166,166,166,166,166,166,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,197,197,197,197,197,197,180,187,187,187,187,155,155,140,140,140,140,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,196,196,196,196,196,196,196,196,196,196,205,205,205],"y":[235,234,193,229,127,120,152,147,141,180,155,239,122,88,170,128,205,201,105,200,199,199,208,185,196,173,142,218,213,212,181,105,154,155,202,214,187,195,191,135,192,185,227,185,215,221,181,207,220,166,187,155,140,196,218,202,192,109,142,105,186,181,114,187,124,147,158,142,185,100,181,173,99,203,175,181,211,180,142,212,153,161,174,176,188,195,212,128,183,196,179,172,200,152,134,166,173,229,229,235,227,217,217,217,127,152,111,141,88,134,229,200,228,235,229,235,227,217,197,181,180,142,193,212,168,176,146,178,188,174,176,190,211,188,127,128,217,217,182,167,178,186,196,172,200,155,215,169,216,134,187,205,225,215,240,241,193,233,218,127,217,215,224,195,161,152,147,141,244,155,122,88,128,197,196,217,201,196,191,199,208,199,217,185,175,229,211,206,240,176,168,106,242,202,236,132,193,229,128,189,215,239,155,157,225,200,193,119,152,119,158,195,129,180,227,215,88,170,137,181,180,142,222,193,211,168,106,216,174,216,211,188,127,183,182,167,186,196,200,155,215,169,188,152,166,173,152,205,200,137,175,142,186,105,196,135,199,185,130,196,134,173,205,202,200,188,190,199,195,212,217,185,196,181,216,189,225,200,193,202,152,119,158,129,192,180,227,170,137,217,205,202,200,199,212,217,185,217,196,181,216,225,218,194,229,187,202,229,192,215,235,167,149,201,233,146,235,229,195,212,199,215,171,137,193,152,111,141,128,180,162,130,152,152,148,235,232,234,229,195,161,124,162,239,153,197,196,187,187,189,187,196,219,148,181,211,180,142,153,211,161,135,176,128,183,130,179,172,134,166,173,148,135,176,187,170,152,152,187,187,189,137,193,152,111,141,128,180,162,130,134,225,229,200,227,215,210,222,182,188,217,190,190,224,197,188,219,203,175,211,205,222,211,216,176,146,178,211,188,216,190,127,195,185,191,180,178,179,188,229,203,212,200,228,235,226,195,129,231,221,225,218,194,229,187,202,229,192,215,210,225,218,194,235,229,211,187,216,218,202,216,235,217,215,224,229,198,191,192,215,210,189,201,181,176,178,190,187,127,208,195,212,199,178,176,197,188,232,240,233,242,218,236,120,217,215,224,147,158,122,194,109,200,187,114,160,137,120,119,119,129,142,113,122,128,137,99,218,194,187,202,192,219,205,202,105,199,180,217,217,216,217,217,216,148,181,176,187,172,152,152,105,186,124,147,158,93,153,100,98,173,229,213,137,105,186,161,124,111,130,231,207,152,152,99,175,188,191,193,185,181,187,148,188,187,176,190,191,193,128,172,181,152,173,152,210,235,222,218,217,215,224,198,235,191,227,200,175,196,199,196,181,173,186,181,129,89,120,119,187,85,191,119,129,113,185,122,198,128,181,137,194,200,142,187,137,120,85,129,113,122,128,173,181,180,142,222,193,211,168,106,216,174,216,211,188,127,183,182,167,186,196,200,155,215,169,188,152,166,173,152,205,217,210,105,206,222,224,190,214,158,198,124,215,217,217,212,224,162,153,197,215,99,225,218,202,192,203,212,228,235,226,119,195,129,231,221,137,186,127,152,141,93,155,88,173,148,176,172,170,193,152,111,180,162,134,187,187,190,189,185,218,148,194,187,193,152,192,180,170,229,217,235,228,218,226,217,231,193,191,152,111,180,93,185,181,173,173,148,194,187,193,135,176,152,180,162,172,194,200,142,187,137,89,120,85,161,195,142,113,210,222,182,188,190,198,188,225,215,240,241,233,242,218,236,195,161,162,153,218,197,196,217,189,201,161,176,218,217,215,187,224,127,208,195,212,199,178,176,197,222,224,216,213,235,234,193,229,120,152,147,158,122,88,207,200,187,203,175,167,149,161,168,225,106,196,218,215,190,215,132,189,171,155,157,187,137,188,187,190,191,111,189,162,130,170,181,173,134,173,200,175,196,199,172,196,152,173,152,222,218,182,235,217,190,215,224,229,215,197,218,200,105,186,202,120,119,124,128,195,129,192,93,153,122,128,134,99,222,211,216,182,188,198,191,148,188,187,135,176,193,128,130,181,152,173,173,187,142,188,186,105,187,186,193,160,190,152,189,93,142,100,98,109,114,160,137,119,119,129,142,113,122,128,137,99,218,137,200,127,119,119,147,158,111,141,129,192,155,130,153,137,152,152,218,200,105,120,119,124,195,129,192,93,122,128,134,99,225,229,227,215,200,139,187,161,146,217,190,224,190,189,197,181,129,89,120,119,191,161,158,145,129,113,185,122,198,128,181,166,217,217,217,229,203,212,226,119,119,195,129,231,221,137,220,229,200,229,119,195,129,227,215,137,222,216,224,216,191,225,229,227,215,217,197,148,175,181,180,142,193,212,176,174,135,176,188,195,128,183,167,178,196,130,172,200,215,169,134,187,218,203,109,200,114,137,120,195,192,113,122,100,128,98,173,99,225,218,194,187,202,192,215,235,229,211,106,242,202,236,229,208,132,199,215,239,157,225,218,229,211,206,240,176,106,242,202,236,132,193,208,128,189,239,155,157,148,188,187,135,176,190,193,128,172,181,152,173,152,194,200,142,187,129,89,120,85,161,158,195,113,173,219,137,205,142,202,160,199,208,180,166,200,188,222,222,211,216,196,176,178,224,188,216,190,199,195,212,199,191,178,188,205,202,105,200,199,199,185,180,173,187,109,142,188,186,105,186,160,127,190,141,189,155,142,100,88,98,109,105,181,160,127,187,124,147,158,155,153,100,88,98,148,176,172,170,218,203,109,200,114,120,195,192,93,122,100,128,98,134,99,203,222,222,176,182,146,178,224,200,191,199,199,127,195,191,178,185,196,188,217,181,217,187,142,188,186,186,193,160,190,152,180,189,93,98,217,210,234,211,105,206,222,186,190,218,158,198,124,217,217,224,162,113,197,216,180,148,176,172,222,211,216,216,191,187,109,142,188,186,186,160,127,190,191,141,189,155,142,153,100,88,98,217,187,175,187,190,193,208,217,217,189,240,241,193,233,218,127,236,217,215,224,195,152,147,141,155,122,88,128,197,196,217,216,217,213,232,240,222,225,233,224,119,224,119,217,217,207,137,229,203,212,235,226,119,119,158,195,129,231,221,137,220,187,175,201,216,187,224,216,193,208,189,217,217,216,187,200,139,187,203,175,167,149,161,161,168,225,106,196,218,215,190,215,132,189,171,155,181,224,216,187,216,196,219,148,181,137,180,142,160,211,135,199,183,130,134,166,229,213,235,234,229,120,119,158,207,137,220,218,194,187,142,186,181,114,137,187,142,185,137,173,99,210,175,189,201,181,176,178,190,187,127,208,195,212,199,178,176,197,232,240,242,236,195,161,180,155,162,239,153,170,128,197,196,203,175,222,222,202,182,146,200,211,191,199,127,185,196,188,200,210,187,188,189,196,146,190,190,127,176,170,225,218,194,187,202,192,215,181,193,152,111,180,93,185,173,218,194,200,105,187,186,119,124,119,147,128,129,192,130,153,137,134,210,203,175,188,189,196,146,190,199,199,176,217,217,139,167,149,201,161,225,233,146,215,208,195,199,171,196,219,186,199,172,152,173,152,200,139,187,167,149,161,146,217,224,190,132,189,197,229,213,105,186,135,176,235,195,161,124,111,153,172,99,196,225,203,137,200,105,186,202,120,119,124,111,128,195,129,192,227,130,153,122,128,137,152,152,225,203,212,137,105,186,120,124,128,195,227,130,153,122,221,128,152,152,99,225,218,167,229,149,240,176,242,202,236,127,195,212,192,178,171,239,193,135,152,141,180,162,172,88,152,152,213,137,105,228,186,135,120,226,229,124,111,235,153,122,231,128,207,220,99,142,218,203,212,95,138,181,155,187,195,105,191,123,145,192,185,185,181,207,166,140,196,224,217,217,216,229,235,203,212,200,226,195,231,221,203,205,202,216,176,178,200,211,188,216,190,199,195,212,185,178,196,181,225,194,229,187,202,229,192,215,200,142,186,137,89,120,119,85,129,113,122,128,173,142,218,213,212,95,138,181,155,214,187,195,191,123,135,145,192,185,227,185,221,181,207,220,166,187,155,140,196,181,187,189,185,218,194,187,203,175,205,222,222,211,202,176,182,146,178,224,200,211,199,127,195,191,178,196,181,188,217,197,175,181,180,142,193,212,168,176,146,178,188,174,190,188,127,195,128,217,183,217,167,178,196,172,200,215,152,166,173,152,200,203,175,167,149,161,168,225,106,215,193,215,132,189,171,155,157,218,194,187,202,192,200,228,235,226,231,221,217,217,217,148,176,172,170,218,200,105,186,202,120,119,124,128,195,129,192,93,153,122,128,137,134,99,181,187,148,176,172,232,225,215,241,193,233,218,127,217,215,224,195,161,152,141,244,180,155,218,88,170,128,197,196,189,161,225,176,218,178,190,215,215,178,176,188,217,196,219,203,175,211,186,153,211,161,195,212,217,179,148,203,181,137,211,180,142,160,153,211,161,174,135,188,183,196,130,179,200,134,166,200,187,161,146,217,190,224,190,193,189,176,197,167,175,149,181,161,106,187,233,187,193,132,171,157,218,194,187,137,193,152,111,128,180,162,130,134,225,218,194,187,202,192,215,235,167,229,149,201,233,242,146,202,229,127,195,212,215,171,105,186,124,147,158,93,155,153,100,98,173,200,148,175,135,176,193,128,172,196,152,173,152,210,222,216,218,182,217,224,198,197,222,222,211,216,182,224,188,216,187,191,225,229,200,227,215,175,189,181,187,176,146,190,224,193,127,208,195,212,199,178,176,197,217,210,213,232,222,241,225,224,119,198,119,215,217,217,244,197,207,216,137,225,218,229,206,240,176,106,229,202,236,132,193,235,208,132,192,128,189,239,155,157,200,187,188,222,222,211,196,176,182,178,224,188,190,190,195,212,199,191,178,188,187,189,229,235,203,212,234,229,119,119,195,129,239,207,137,220,109,105,181,186,160,127,187,124,141,155,142,153,185,100,88,98,173,210,189,218,188,217,190,190,224,176,197,188,225,218,194,187,202,192,215,218,148,194,187,193,176,152,180,172,170,218,194,187,202,192,218,194,187,202,200,139,187,203,161,196,217,190,224,190,132,189,197,217,181,200,203,175,211,176,168,233,132,193,127,128,189,155,157,205,201,202,105,200,199,199,185,180,173,217,205,202,200,199,212,185,217,180,173,222,224,216,148,193,135,176,180,162,172,170,152,152,200,187,222,222,211,176,182,178,224,188,190,190,193,195,212,199,191,178,189,188,217,210,203,212,232,240,234,222,225,233,242,224,236,217,195,217,129,216,220,217,201,196,191,199,199,217,217,185,196,216,218,203,212,95,138,187,105,123,158,145,185,198,181,207,166,140,203,175,222,222,202,182,146,200,211,191,199,199,198,127,195,178,185,196,188,189,218,188,217,190,190,215,224,176,197,188,194,109,200,105,187,114,120,119,119,129,93,122,100,128,137,98,173,99,225,194,167,211,206,201,240,187,229,242,146,236,235,195,212,132,192,239,157,217,200,199,199,199,217,196,181,229,210,240,234,211,225,233,229,242,236,216,226,198,191,239,197,231,221,225,139,218,235,229,149,161,233,176,178,202,190,229,127,178,215,171,217,225,194,229,187,224,235,229,217,217,192,215,216,225,194,235,229,189,187,161,225,233,242,188,215,235,192,176,188,187,175,187,190,193,189,187,217,218,202,217,217,217,217,217,217,216,194,167,211,206,201,240,187,229,146,236,235,195,212,132,192,239,157,210,222,201,181,176,182,178,188,190,198,208,212,199,178,188,217,187,175,187,190,193,208,217,217,189,218,194,187],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #19","x":[200,200,200,200,200,200,200,200,200,229,229,229,229,217,217,217,217,217,217,217,217,217,217,217,217,217,197,197,210,210,210,210,210,210,210,210,210,210,225,225,225,225,225,225,196,196,196,196,196,196,240,139,139,139,139,139,139,139,139,139,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,213,213,213,213,213,213,148,148,148,148,148,148,148,148,148,148,148,148,203,203,203,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,235,235,235,235,235,235,235,235,235,235,203,203,203,203,203,203,203,203,203,203,232,175,175,175,212,212,212,212,212,212,212,212,212,137,137,137,137,137,137,137,137,137,137,137,137,167,167,167,167,167,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,229,229,229,229,229,229,229,229,229,229,211,215,215,215,149,149,149,149,149,149,149,211,211,211,211,211,109,109,109,109,109,109,200,200,200,200,200,200,200,200,200,200,205,205,205,205,228,228,142,142,142,142,142,105,105,105,105,105,105,105,188,188,188,188,188,188,188,188,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,228,228,228,228,228,228,228,228,95,138,189,189,189,189,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,232,232,232,232,240,240,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,234,234,234,234,234,234,222,222,222,222,222,222,222,222,222,222,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,212,212,213,213,202,202,202,202,202,202,161,161,161,161,161,161,161,161,226,161,161,161,161,161,161,161,105,105,105,105,105,225,225,225,225,225,225,225,225,106,216,216,216,216,216,216,216,216,216,216,216,216,216,114,114,114,114,114,114,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,186,186,186,186,186,186,186,186,129,129,129,129,196,196,196,196,196,196,196,196,196,196,196,196,196,193,193,193,193,193,193,193,193,193,193,193,193,233,233,233,233,233,233,233,233,229,229,229,229,229,229,229,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,137,137,137,242,242,242,242,242,242,242,218,218,218,218,218,218,218,218,218,182,182,182,182,182,182,182,182,182,146,146,146,146,146,146,146,146,146,146,146,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,153,153,153,153,153,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,200,200,200,200,200,211,211,211,211,89,89,89,161,161,161,161,161,202,202,202,202,202,202,202,202,202,202,202,202,202,202,188,188,188,188,188,188,188,188,188,188,188,188,188,188,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,176,176,236,236,236,236,216,216,216,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,235,120,120,120,120,120,120,120,120,120,120,226,226,226,226,226,226,217,217,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,211,211,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,119,119,119,119,119,214,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,85,85,85,224,224,224,224,224,224,224,224,224,190,190,190,190,190,190,190,190,190,190,190,105,105,191,191,191,191,191,191,191,191,191,191,191,191,191,199,199,199,199,199,161,161,161,161,123,152,152,152,152,152,152,152,152,152,152,152,152,158,158,158,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,199,199,199,199,199,199,199,199,199,199,199,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,215,215,215,215,215,215,215,127,127,127,127,127,127,127,127,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,111,111,111,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,132,132,132,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,217,217,217,217,217,217,217,217,217,217,217,217,217,217,145,185,185,185,185,185,195,195,195,195,195,195,195,195,195,195,195,183,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,217,217,212,244,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,192,192,192,200,200,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,178,178,178,178,178,178,178,178,178,178,178,178,178,178,189,189,189,189,189,189,189,189,189,93,93,93,93,93,93,93,93,93,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,171,171,171,171,171,171,171,130,130,130,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,176,176,176,176,239,239,239,239,239,239,239,239,142,142,142,142,142,113,179,179,179,179,179,153,153,153,153,153,153,153,153,153,153,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,122,122,122,122,122,122,122,122,122,218,196,196,196,196,196,196,197,197,197,197,197,100,100,100,100,100,100,100,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,215,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,221,221,221,221,221,221,221,198,198,198,128,128,128,128,128,128,181,181,181,181,181,181,181,181,181,181,181,181,207,207,207,207,207,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,98,98,98,98,98,98,98,98,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,220,220,220,173,173,173,173,173,173,173,173,173,173,173,173,173,173,134,134,134,134,134,134,134,134,134,134,134,134,166,166,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,99,99,99,99,99,99,99],"y":[229,213,212,235,119,158,207,137,220,200,175,196,181,203,95,138,186,187,129,105,123,158,145,195,198,173,194,187,186,160,127,141,93,155,153,88,98,173,196,219,186,211,199,152,225,218,194,202,192,215,181,137,193,135,128,180,162,130,152,152,225,202,192,215,196,203,175,211,186,153,211,161,195,212,183,179,152,166,173,152,213,232,242,236,120,119,158,239,207,200,187,175,188,190,193,235,167,149,201,233,146,235,208,195,132,199,171,218,202,192,197,196,175,211,186,212,176,146,178,153,161,188,190,195,217,217,178,179,216,148,188,176,193,128,172,181,152,173,152,217,188,201,196,191,199,208,199,217,185,181,218,194,187,200,188,201,196,191,199,208,199,185,139,189,161,161,225,176,178,190,215,127,178,176,148,135,176,172,170,229,213,193,127,120,152,147,141,180,155,122,88,170,128,207,220,181,205,201,186,202,105,199,199,180,152,152,172,181,181,187,148,135,176,172,170,152,152,218,194,187,202,192,222,211,216,216,198,191,202,200,199,199,212,217,217,196,181,216,229,229,235,227,181,187,222,224,217,217,216,222,211,182,188,190,198,191,213,235,203,212,234,229,119,119,195,129,239,207,137,220,105,186,124,147,158,93,153,100,98,173,201,200,199,199,208,185,196,173,217,217,137,127,152,111,141,128,155,130,88,134,148,203,212,229,228,127,135,176,120,226,119,229,147,235,141,195,215,155,162,153,172,122,221,128,220,187,187,190,189,189,185,217,225,218,194,229,187,224,202,235,229,217,217,192,215,216,188,187,190,191,193,185,109,142,114,160,137,147,158,142,173,99,109,105,114,160,119,119,142,100,137,98,99,217,197,175,211,186,212,176,146,178,153,161,188,190,195,217,217,178,179,216,240,232,225,215,215,228,213,226,225,193,127,211,161,141,244,200,180,155,218,88,170,194,187,181,187,229,200,229,235,227,215,137,193,111,128,180,162,130,134,181,137,135,128,130,170,152,152,229,235,229,235,227,137,181,187,128,162,130,170,134,170,109,114,160,119,119,129,122,100,128,137,98,173,99,222,211,216,224,216,191,232,234,193,229,127,120,152,147,141,180,155,239,122,88,170,128,210,222,178,188,190,190,198,188,217,217,217,216,229,203,212,235,226,119,119,195,129,231,221,137,220,139,175,181,161,187,146,217,190,224,193,176,197,148,135,176,128,185,172,152,152,188,187,190,191,193,185,181,210,222,211,216,216,198,191,194,137,187,127,119,147,158,111,141,155,130,88,137,152,152,222,224,216,187,190,191,189,185,172,152,191,111,180,162,185,181,173,134,173,105,124,147,158,93,153,100,98,173,148,194,187,193,135,176,152,180,162,172,88,194,137,187,186,127,119,147,158,111,141,128,155,130,153,88,137,152,152,218,194,187,202,192,210,175,189,201,181,187,176,178,198,193,127,208,195,212,199,178,176,188,142,186,114,137,187,85,119,142,137,173,99,200,228,235,229,235,225,218,202,192,217,217,216,218,194,187,202,192,196,219,203,211,186,153,211,161,212,179,152,166,173,152,194,105,187,186,119,124,119,147,128,129,93,153,137,134,139,167,149,201,161,233,146,235,127,195,212,171,235,167,149,201,233,146,235,229,195,132,199,215,171,187,191,189,185,109,114,160,137,119,119,129,142,122,100,128,137,98,99,200,148,186,105,196,200,135,176,199,128,185,130,172,196,134,173,187,175,201,187,190,193,208,217,189,216,201,196,199,208,196,181,193,191,152,111,180,93,185,181,173,173,186,193,152,141,93,134,173,181,187,194,137,105,187,186,119,124,119,147,158,128,129,155,130,153,137,200,187,188,201,211,216,196,188,216,190,190,212,199,187,191,111,162,185,181,173,134,173,215,228,213,225,224,211,214,215,212,200,180,153,215,170,99,224,217,216,193,152,111,180,93,185,181,173,173,213,232,234,229,242,120,119,158,239,207,137,217,217,203,212,234,229,242,218,236,217,215,195,129,239,220,229,200,228,229,235,181,217,217,216,217,175,189,187,146,217,190,224,193,127,195,176,197,217,217,217,205,201,186,202,105,200,176,199,208,128,185,180,172,152,173,152,203,212,200,228,235,226,119,195,129,231,221,109,105,186,160,127,124,147,158,93,155,153,100,88,98,173,222,182,188,190,198,188,213,235,234,193,229,127,120,152,147,158,141,122,88,207,188,211,216,196,176,178,224,188,216,190,199,195,212,199,191,178,175,222,201,222,187,176,182,178,188,190,198,193,208,195,212,199,178,189,188,137,187,128,162,130,170,134,137,127,135,152,158,111,141,180,155,162,88,152,152,200,187,222,222,176,182,178,190,190,198,193,127,195,212,199,178,189,188,189,161,176,218,178,217,215,224,127,212,178,176,205,201,202,105,200,199,208,185,180,173,210,175,189,201,181,187,176,178,190,193,127,208,195,212,199,178,176,148,203,212,228,127,120,226,229,147,235,141,180,155,162,122,88,231,221,128,207,220,218,148,194,187,127,135,176,152,119,147,158,141,180,155,162,172,88,218,200,127,202,135,119,119,147,158,111,141,129,192,155,162,172,88,137,139,235,189,161,161,225,233,178,188,235,190,229,215,215,176,188,148,176,170,225,148,203,212,229,127,176,119,119,147,158,141,195,129,180,227,215,155,162,172,88,221,137,194,200,142,186,187,129,89,120,85,161,158,195,198,173,217,228,235,229,235,227,217,188,201,196,191,199,199,217,217,185,216,218,109,105,114,160,119,142,100,137,98,99,194,203,200,142,186,187,129,89,105,161,158,195,198,173,187,181,188,216,196,188,216,190,191,199,212,199,185,196,219,203,211,186,153,211,161,212,179,181,187,139,175,181,161,187,218,146,217,187,224,127,208,195,199,229,229,235,227,194,137,187,127,119,147,158,111,141,155,130,88,152,152,232,240,242,236,120,147,158,239,122,210,222,182,188,217,190,224,198,197,205,202,105,199,185,180,173,196,219,201,186,202,176,128,199,172,152,173,152,210,175,189,201,181,187,176,178,190,198,127,208,195,212,199,178,188,139,201,161,225,218,146,215,215,127,208,195,212,199,148,135,176,172,170,152,152,139,189,161,161,225,176,178,235,190,215,178,176,137,193,127,152,111,141,128,130,88,134,187,188,187,190,191,189,185,181,222,211,224,216,191,216,218,194,187,202,192,210,222,201,182,178,188,190,187,198,188,203,212,240,234,233,229,242,218,236,217,215,224,195,129,239,220,235,167,211,149,201,233,242,146,235,229,195,212,199,215,171,175,201,216,187,216,193,208,189,216,181,200,228,235,226,231,221,193,152,93,134,173,222,211,216,182,216,198,191,210,175,189,181,187,176,146,178,198,193,127,208,195,212,199,178,176,188,187,167,175,149,181,161,225,106,187,187,215,132,171,196,199,208,196,181,201,196,199,208,199,196,181,217,217,217,175,201,216,187,216,208,229,235,200,229,218,226,217,215,224,239,231,221,200,187,175,188,190,193,208,194,200,142,186,187,129,89,120,85,161,195,113,122,173,200,188,211,216,196,176,178,224,188,216,190,190,212,199,191,210,222,211,216,182,216,198,191,186,127,124,147,158,128,155,153,88,134,139,218,235,229,149,161,233,176,178,202,229,127,178,215,171,200,175,188,201,196,191,208,185,217,235,228,222,218,224,217,215,224,235,217,217,227,216,189,161,225,218,188,235,190,215,215,176,197,188,218,202,210,218,222,216,218,182,202,235,217,190,215,224,229,198,215,197,225,139,218,235,229,149,161,233,176,242,178,202,229,127,178,215,171,222,211,216,224,216,187,191],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #20","x":[200,200,200,200,200,200,200,200,200,200,200,229,229,229,229,229,229,229,229,217,217,217,217,217,217,217,217,217,217,217,217,217,210,210,210,210,210,210,210,210,225,225,225,225,225,225,225,225,225,196,240,139,139,139,139,219,219,219,218,218,218,218,218,218,187,187,187,187,187,187,187,187,187,187,187,213,213,148,148,148,148,148,148,148,148,148,148,148,148,203,203,194,194,194,194,194,194,194,194,194,235,235,235,235,235,235,203,203,203,203,203,203,232,212,212,212,212,212,137,137,137,137,137,137,137,137,137,137,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,225,229,229,229,229,229,229,229,215,109,109,109,200,200,200,200,200,200,200,200,200,205,205,205,205,205,205,142,105,105,105,105,188,188,188,188,188,188,222,222,222,222,222,222,222,222,222,222,228,228,228,228,228,228,228,189,189,189,189,189,189,201,201,201,201,201,201,201,201,201,201,201,201,201,240,234,234,222,222,222,222,222,222,222,222,222,222,222,222,211,211,211,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,202,202,202,202,161,161,161,161,161,161,161,226,161,161,161,241,241,105,105,105,105,105,105,105,225,225,225,225,225,225,216,216,216,216,216,216,216,216,216,216,216,114,114,187,187,187,187,187,187,187,187,186,186,186,186,186,186,196,196,196,196,196,196,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,233,233,229,229,160,160,160,176,176,176,176,176,176,176,176,176,137,137,137,137,218,218,218,218,218,218,218,218,182,182,182,182,182,182,182,182,182,146,178,178,178,178,178,178,178,178,127,127,127,127,127,127,127,127,127,127,127,224,224,224,224,224,224,224,224,224,224,224,224,200,200,200,200,211,211,89,202,202,202,202,202,202,202,202,188,188,188,188,188,188,188,188,188,188,188,188,135,135,135,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,236,216,216,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,120,120,120,226,226,226,226,226,226,226,217,217,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,119,119,119,119,119,119,119,119,215,215,215,215,215,215,215,215,215,215,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,85,85,224,224,224,224,224,224,224,224,195,195,190,190,190,190,190,190,190,190,190,190,190,191,191,191,191,191,191,191,199,199,199,199,161,161,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,229,229,229,229,229,229,199,199,199,199,199,198,198,198,198,198,124,124,124,124,124,124,193,193,193,193,193,193,193,193,193,193,193,193,193,119,119,119,119,119,119,119,119,119,119,119,147,147,147,147,147,147,215,215,215,215,215,215,127,127,127,127,127,158,158,158,158,158,158,158,158,158,158,158,111,111,111,111,111,111,111,111,111,235,235,235,235,235,235,141,141,141,141,141,141,141,141,141,141,208,208,208,208,208,208,208,208,208,208,208,208,208,195,195,212,212,212,212,212,212,212,212,128,128,128,128,128,128,128,128,128,199,199,199,199,199,199,199,217,217,217,217,217,217,217,217,217,217,217,217,217,185,185,185,185,185,195,195,195,195,195,195,195,191,191,191,191,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,244,129,129,129,129,129,129,129,129,129,129,129,129,192,192,192,192,192,192,192,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,178,178,178,178,178,178,178,178,178,189,189,189,189,189,189,189,189,189,189,189,189,189,189,93,93,93,93,93,227,227,227,227,227,227,227,227,215,215,215,215,215,215,215,215,215,155,155,155,155,155,155,155,155,155,155,162,162,162,162,162,162,162,162,162,162,162,162,162,130,130,130,130,130,130,130,130,130,176,176,176,176,176,176,142,142,142,142,113,113,113,153,153,153,153,153,153,185,185,185,185,185,185,185,172,172,172,172,172,172,172,172,172,122,122,122,122,218,196,196,196,196,197,197,197,197,197,197,100,100,100,88,88,88,88,88,88,88,88,88,88,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,231,231,231,231,231,231,231,221,221,221,221,221,221,221,128,128,128,128,128,128,181,181,181,181,207,207,216,216,216,216,216,216,216,216,216,216,216,216,216,137,137,137,137,137,137,137,137,137,137,98,98,98,188,188,188,188,188,188,188,188,188,188,188,152,152,152,152,152,152,152,152,152,152,152,152,220,220,220,220,220,173,173,173,173,173,173,173,173,134,134,134,134,134,134,134,134,134,134,173,173,173,173,173,197,197,152,152,152,152,152,152,152,152,152,152,99,99,196,196],"y":[203,200,228,226,229,119,235,195,129,231,221,187,188,187,190,191,193,189,185,194,200,142,137,89,120,85,161,129,142,113,122,128,137,193,152,111,128,180,162,134,205,201,202,105,200,199,185,180,173,187,187,148,176,172,170,218,194,187,219,205,202,105,199,180,229,235,203,212,234,229,119,195,129,137,220,187,189,139,161,161,225,176,218,178,215,215,127,212,178,194,187,217,219,203,205,105,211,212,180,173,187,187,190,191,189,185,200,187,175,190,193,189,187,187,175,190,193,189,210,222,218,188,217,190,215,224,197,188,203,212,228,235,226,119,229,119,158,235,195,129,231,221,137,187,196,200,199,208,185,196,173,187,224,217,216,200,217,188,201,196,191,208,199,185,225,218,194,202,192,215,217,222,216,224,216,229,200,228,226,231,221,137,127,152,111,141,128,155,130,88,134,200,175,188,196,191,185,181,193,135,180,162,152,152,225,200,193,202,152,119,158,129,180,227,88,170,137,181,187,189,105,186,127,124,141,93,155,153,100,88,98,173,186,127,124,147,158,141,93,155,153,88,134,173,196,219,203,105,211,212,180,173,240,241,233,218,236,120,217,215,224,195,152,147,158,122,128,197,196,225,218,202,192,148,135,176,172,170,152,152,187,148,176,172,181,187,225,218,194,187,202,192,215,148,135,176,172,152,152,105,186,127,124,147,158,93,155,153,88,134,217,216,229,213,235,119,158,207,137,220,222,211,216,182,216,191,229,200,228,229,235,227,210,189,201,176,178,190,187,198,127,208,195,212,199,178,188,181,187,187,189,224,217,216,148,193,135,176,152,180,162,172,170,217,217,217,216,148,137,181,135,128,130,170,152,186,127,152,111,141,128,155,88,134,170,148,193,135,176,152,180,162,172,222,222,211,216,182,224,188,216,190,187,191,109,105,160,127,124,147,158,155,153,100,98,173,225,229,227,215,194,187,217,205,201,202,105,199,199,185,180,137,127,152,158,111,141,155,162,130,88,152,152,189,161,225,176,218,178,190,215,215,178,176,188,139,161,161,225,176,178,215,127,212,178,181,105,186,127,124,147,158,93,155,153,134,173,175,193,181,152,173,152,217,181,217,200,175,188,190,191,193,185,137,181,187,128,162,130,170,134,137,111,128,180,162,130,152,193,127,135,152,111,141,180,162,88,152,152,175,187,193,208,217,217,189,216,148,137,181,135,187,128,130,170,152,152,240,232,225,215,226,241,193,233,127,217,215,224,195,161,152,141,244,155,218,88,128,197,196,217,217,137,181,187,128,162,130,170,134,181,187,229,235,203,212,226,119,195,129,231,221,220,229,235,200,228,226,231,221,225,202,227,215,217,187,210,222,201,181,176,182,178,188,190,187,198,208,212,199,178,188,200,175,196,199,196,173,229,229,235,227,215,193,152,111,141,134,222,211,216,224,216,191,229,203,212,235,226,119,119,195,129,231,221,137,220,200,187,175,201,190,193,208,217,217,189,216,211,181,216,224,216,191,148,135,176,172,152,152,148,193,176,172,170,175,201,211,181,216,187,224,188,216,208,191,210,222,182,188,190,190,198,197,188,200,175,196,199,196,181,222,222,211,182,188,190,187,198,191,188,229,200,193,119,152,119,158,195,129,227,215,170,137,193,170,148,194,187,193,176,152,180,170,210,222,218,182,217,190,215,224,197,218,200,193,202,152,192,170,109,114,160,137,119,119,129,142,113,122,128,137,99,225,229,202,192,215,200,187,175,190,193,208,189,186,127,124,147,158,141,93,155,153,88,134,173,137,120,119,85,119,129,142,113,122,128,137,187,200,217,187,175,201,190,193,208,217,217,189,216,205,202,105,199,185,180,173,210,189,201,176,178,190,190,212,178,176,197,188,225,218,194,187,202,192,215,148,193,135,176,152,180,162,172,170,229,213,235,203,212,234,229,119,119,195,129,207,137,220,222,211,216,216,191,201,196,200,199,199,208,196,181,205,105,200,199,199,208,185,180,173,222,222,211,216,182,224,188,216,187,191,210,189,176,178,188,217,190,190,224,178,176,197,188,222,218,188,217,190,215,224,197,188,135,180,162,170,152,152,217,217,217,216,217,217,217,222,211,216,224,216,191,229,235,200,228,226,231,221,139,161,161,225,176,178,215,127,178,217,181,217,217,187,229,229,235,227,137,111,128,180,162,130,222,224,216,222,201,222,211,216,182,188,190,187,191,139,201,161,176,218,146,217,215,224,127,208,195,212,199,178,176,200,175,188,190,191,193,185,200,175,188,190,191,193,185,217,181,187,217,217,216,228,235,235,227,187,189,109,114,160,137,119,119,129,142,100,128,137,98,99,187,175,201,187,193,208,217,217,189,216,222,224,216,137,193,135,152,111,141,180,162,130,152,152,189,161,225,218,188,235,190,190,215,215,176,188,187,187,190,193,189,225,194,229,187,235,229,192,215,210,222,211,216,182,216,217,224,198,191,222,211,224,216,191,181,187,189,161,225,188,235,190,215,215,176,188,217,216,181,187],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #21","x":[200,200,200,200,217,217,217,217,217,217,217,217,217,217,217,210,210,210,210,210,210,225,225,225,225,225,225,218,218,218,218,218,218,218,218,187,187,187,187,187,187,187,213,148,148,148,148,148,148,148,148,148,148,194,194,194,194,194,194,194,194,203,212,137,137,137,137,137,137,137,175,175,175,175,229,229,229,229,229,229,229,109,109,200,200,200,200,200,200,205,105,105,105,105,188,188,188,188,188,222,222,222,222,222,222,228,228,228,228,228,189,189,189,189,201,201,201,201,232,232,240,234,222,222,222,222,222,222,222,222,211,211,211,211,211,211,211,211,211,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,202,202,216,216,216,216,216,216,216,216,216,216,114,114,187,187,187,187,187,187,187,187,187,187,187,187,186,186,186,196,196,196,196,193,193,193,193,193,193,193,193,229,160,160,242,242,218,218,218,218,182,182,182,182,182,182,182,182,178,127,224,224,224,224,224,224,200,200,200,200,200,202,202,202,202,202,202,188,188,188,188,188,188,188,135,135,135,135,135,135,135,135,135,176,176,176,176,176,176,176,176,176,176,176,236,216,216,216,216,216,216,216,216,216,235,235,235,235,235,235,235,120,226,226,226,217,217,217,217,217,217,190,190,190,190,190,190,190,190,190,190,119,119,215,215,187,187,187,187,187,187,187,187,187,187,224,224,224,224,224,224,190,190,190,190,191,191,191,191,191,199,199,199,199,152,152,152,152,152,152,229,229,229,229,229,199,199,199,199,198,198,198,198,198,198,198,198,198,124,124,124,193,193,193,193,193,119,119,119,147,147,147,147,158,158,158,158,111,111,111,111,111,235,235,235,235,235,235,235,235,141,141,141,208,208,208,208,128,128,128,128,128,128,199,199,217,217,217,217,217,217,217,217,217,217,185,185,185,195,191,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,217,217,217,217,129,192,192,192,192,192,192,192,192,180,180,180,180,180,180,180,180,180,189,189,189,189,189,189,189,93,93,93,227,227,227,227,227,215,215,215,215,215,155,162,162,162,162,162,162,130,130,130,130,130,130,130,130,176,176,176,239,239,153,153,153,185,185,185,185,185,172,172,172,172,172,172,172,172,172,172,172,122,196,196,196,196,196,196,196,197,197,197,197,197,197,197,100,100,100,88,88,88,170,170,170,170,170,170,170,170,170,231,231,231,221,221,221,181,181,181,181,181,181,207,216,216,216,216,216,216,216,216,216,216,216,216,137,137,98,98,98,188,188,188,188,152,152,152,152,152,152,152,152,152,173,173,134,134,134,173,173,173,173,152,152,152,152,152,152,152,152,152,99,99],"y":[225,229,227,215,109,105,114,160,119,119,100,137,98,173,99,148,135,130,170,152,152,200,196,199,208,196,181,201,200,199,199,208,185,196,173,200,228,235,226,235,231,221,181,210,189,188,217,190,190,224,176,197,188,201,202,200,199,199,185,196,181,187,187,222,211,216,182,216,198,191,229,200,227,215,200,175,188,191,193,185,181,217,217,187,175,187,190,193,189,187,217,217,217,216,229,235,229,235,227,193,135,180,162,152,152,187,187,190,193,189,148,176,172,170,218,194,187,192,181,187,187,181,137,193,152,111,128,180,130,134,137,193,152,111,128,180,162,130,152,205,201,202,200,199,199,185,196,213,232,234,229,242,119,119,239,207,137,194,187,137,193,152,111,141,128,180,162,130,152,217,217,203,212,200,228,235,226,119,235,195,129,231,221,224,217,216,225,202,192,215,222,222,211,216,182,188,216,191,181,217,217,181,187,176,187,172,152,137,193,135,180,162,130,152,152,170,216,186,152,141,93,88,134,218,194,187,202,192,196,200,199,208,196,173,148,193,135,176,180,172,170,210,222,182,188,217,190,224,198,197,189,218,188,217,190,190,215,224,176,197,188,187,137,193,152,111,141,128,180,130,88,187,188,187,190,191,189,185,187,187,187,189,148,135,176,172,152,152,148,135,176,172,170,152,148,176,172,170,217,181,176,172,232,240,242,218,236,120,147,158,239,122,148,135,176,172,152,152,200,228,235,235,229,235,229,235,227,218,194,187,192,222,211,216,224,216,191,188,191,193,185,181,225,218,202,192,137,135,128,180,162,130,170,152,152,217,217,216,229,200,228,229,235,217,181,187,187,217,217,216,187,217,217,216,222,211,216,216,191,187,188,187,190,191,193,189,185,216,224,216,225,218,202,192,222,211,216,216,198,191,194,187,105,186,124,147,158,93,153,100,98,173,218,194,187,187,137,193,152,111,128,180,162,130,109,105,114,160,124,147,158,153,100,98,173,99,187,201,196,200,199,199,208,196,181,222,222,211,216,182,188,216,198,191,200,228,235,226,235,231,221,224,217,216,200,175,188,191,185,200,175,196,196,181,216,222,211,216,182,198,191,210,222,211,216,182,216,198,191,148,176,172,181,187,217,217,216,229,235,229,235,227,189,218,188,217,190,190,215,224,176,197,188,187,225,218,194,187,202,192,215,148,135,176,172,170,152,152,217,217,217,224,216,216,210,189,178,188,190,190,198,197,188,187,187,189,187,187,189,225,194,229,229,192,215,181,105,186,127,124,147,158,93,155,153,88,134,173,217,181,217,217,217,148,176,172,170,210,222,211,216,182,217,224,198,197,218,202,222,224,216,217,217,217,216,210,222,218,182,217,190,224,198,197,217,217],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #22","x":[200,200,200,200,200,229,217,217,217,217,217,217,217,217,217,217,217,210,210,225,225,225,225,225,225,225,225,218,218,218,218,218,218,218,187,187,187,187,187,213,148,148,148,148,148,148,148,194,194,194,194,194,194,194,235,235,203,203,212,137,137,175,175,175,175,229,229,229,229,188,188,188,188,188,188,188,222,222,222,222,234,222,222,222,222,222,211,211,211,211,211,211,187,187,187,187,187,187,187,187,181,181,181,181,181,181,181,181,181,181,216,216,216,216,216,216,187,187,187,187,187,186,186,196,196,196,193,193,229,182,182,182,182,127,127,127,224,224,224,224,224,224,224,224,224,224,202,202,202,202,202,202,202,135,135,135,135,135,135,176,176,176,176,176,176,176,176,216,216,216,216,216,216,216,216,226,119,187,187,187,187,187,187,187,187,187,187,187,187,190,190,190,190,190,191,191,191,191,191,191,191,152,152,229,229,229,229,199,199,198,198,198,124,193,193,193,193,193,119,147,158,111,111,111,141,141,141,141,208,208,128,128,128,128,217,217,217,217,217,217,217,217,217,195,195,191,191,191,191,191,191,191,217,217,217,217,217,217,217,217,129,129,192,192,192,192,192,192,180,180,189,189,189,189,93,93,227,227,227,227,227,215,215,215,215,215,215,215,215,155,155,155,162,162,162,130,130,130,153,185,185,185,185,185,185,185,172,172,172,172,172,172,172,172,88,88,88,170,170,170,170,170,170,170,231,221,181,181,181,207,216,216,216,216,216,216,216,216,137,152,152,152,152,220,220,134,134,134,152,152,152,152,152,152],"y":[218,194,187,202,192,181,186,127,124,147,158,141,93,155,153,88,134,176,172,187,175,188,187,190,191,193,185,200,175,188,196,191,185,181,225,229,229,227,215,187,222,211,216,182,216,198,191,200,188,196,191,199,208,185,181,187,181,187,181,224,216,225,218,202,192,187,187,190,189,225,218,194,187,202,192,215,148,176,172,170,187,135,162,170,152,152,148,135,176,172,170,152,200,188,196,191,199,208,185,181,229,235,203,212,226,195,129,231,221,220,148,135,176,172,170,152,225,229,229,227,215,217,217,218,194,187,224,216,187,148,176,172,170,217,217,217,137,193,135,111,128,180,162,130,152,152,200,175,188,191,193,185,181,222,211,216,224,216,191,210,222,211,216,182,216,198,191,148,135,176,162,172,170,152,152,181,187,213,235,203,234,229,119,119,195,129,207,137,220,225,229,229,227,215,225,218,194,187,202,192,215,217,216,187,187,190,189,194,187,148,176,172,217,225,202,192,227,215,187,217,217,224,217,216,217,217,217,216,194,187,224,217,217,216,127,152,111,141,128,155,130,88,134,181,187,148,135,176,172,170,152,152,186,127,141,128,93,155,88,134,181,187,200,175,188,191,193,185,224,216,229,229,227,215,217,217,187,187,190,193,189,187,188,187,190,191,193,189,185,217,217,217,222,224,216,224,217,216,217,225,218,194,187,202,192,215,210,222,211,216,182,216,198,191,217,217,217,222,222,211,216,182,216,191,181,181,218,187,202,187,137,193,152,111,141,128,180,130,187,222,224,216,191,181,187,217,217,217,222,211,216,224,216,191],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #23","x":[229,217,217,217,217,217,217,217,217,217,217,225,218,218,218,218,218,187,187,187,187,187,148,148,148,194,194,194,194,194,194,212,137,137,137,175,175,200,200,228,228,222,222,222,187,187,187,187,187,187,181,181,181,181,187,187,187,187,187,193,193,193,224,224,224,224,202,202,202,202,135,135,135,176,176,176,235,235,226,187,187,187,187,187,187,187,187,190,190,190,190,190,152,152,193,193,193,111,111,235,128,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,192,192,192,192,180,180,180,189,189,189,189,189,189,162,162,162,162,130,130,172,172,172,170,170,231,221,216,216,216,216,216,216,216,216,152,152,152,152,152,152,152,152],"y":[187,137,193,152,111,128,180,162,130,152,152,189,187,187,190,193,189,218,194,187,202,192,222,224,216,187,175,187,190,193,189,187,217,217,217,194,187,181,187,181,187,148,176,172,187,175,187,190,193,189,200,228,235,235,218,194,187,202,192,217,217,217,148,176,172,170,187,187,190,189,217,217,216,222,224,216,181,187,187,229,212,200,228,235,226,231,221,218,194,187,202,192,217,217,218,194,187,217,217,181,217,137,193,135,180,162,152,152,137,193,135,152,111,180,162,130,152,152,187,187,190,189,217,217,217,225,218,194,187,202,192,217,217,217,216,217,217,222,224,216,224,216,187,187,148,135,176,162,172,170,152,152,217,217,217,216,217,217,217,216],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #24","x":[217,217,217,217,217,225,148,148,148,229,229,181,181,181,181,181,135,176,176,176,187,187,187,187,229,229,235,217,217,217,217,217,217,217,217,227,227,215,172,172,172,170,170,170],"y":[148,135,176,172,170,181,217,217,217,181,187,225,229,229,227,215,217,217,217,217,229,229,235,227,181,187,187,148,176,172,170,148,176,172,170,181,187,181,217,217,217,217,217,217],"type":"scattergl"},{"marker":{"size":4},"mode":"markers","name":"Lag #25","x":[225,218,218,194,194,187,181,181,181,181,181,202,202,187,187,187,187,187,187,192,192,215],"y":[187,181,187,181,187,181,218,194,187,202,192,181,187,225,218,194,202,192,215,181,187,187],"type":"scattergl"}],                        {"template":{"data":{"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"#E5ECF6","showlakes":true,"showland":true,"subunitcolor":"white"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"bgcolor":"#E5ECF6","radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","gridwidth":2,"linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white"},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","gridwidth":2,"linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white"},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","gridwidth":2,"linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"bgcolor":"#E5ECF6","caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","zerolinewidth":2}}},"shapes":[{"line":{"color":"red","dash":"dash","width":1.5},"type":"line","x0":184.39,"x1":184.39,"xref":"x","y0":0,"y1":1,"yref":"y domain"},{"line":{"color":"red","dash":"dash","width":1.5},"type":"line","x0":0,"x1":1,"xref":"x domain","y0":184.39,"y1":184.39,"yref":"y"}],"xaxis":{"title":{"text":"Tail"}},"yaxis":{"title":{"text":"Head"}}},                        {"responsive": true}                    )                };                            </script>        </div>'}

4.3.3 Variogram.location_trend

Another useful helper plot is the location_trend. This will plot the observation values related to their coordinate position, for each coordinate dimension separatedly. With the 'plotly' backend, each dimension will appear as a coloured group in a single plot. By double-clicking the legend, you can inspect each group separately.

The 'plotly' backend will automatically switch the used plot type from a ordinary scatter-plot to a WebGL backed scatter-plot, if there are more than 5000 observations. This will add some startup-overhead for the plot to appear, but the interactivity actions (like pan, zoom) are speed up by magnitudes.

Plotly

backend('plotly')
fig = V.location_trend(show=False)
fig


Since version 0.3.5 the location_trend <skgstat.Variogram.location_trend>`# function accepts a ``add_trend_line`() parameter, that defaults to False. If set to true, the class will fit linear models to each of the point clouds and output a trend line. It will also calculate the R², which you can use to either accept the input data as trend free or not (a high R² indicates a linear trend and hence you should decline using the input data).

fig = V.location_trend(add_trend_line=True, show=False)
fig

# Matplotlib
# """"""""""
#
# There is a difference between the ``'matplotlib'`` and ``'plotly'`` backend in
# this plotting function. As Plotly utilizes the legend by default to show and
# hide traces on the plot, the user can conveniently switch between the
# coordinate dimensions.
# In Matplotlib, the figures are not interactive by default and therefore
# SciKit-GStat will create one subplot for each coordinate dimension.
backend('matplotlib')
fig = V.location_trend()
tutorial 04 plotting

4.3.4 distance_difference plot

The final utility plot presented here is a scatter-plot that relates all pairwise-differences in value to the spatial distance of the respective point pairs. This can already be considered to be a variogram. For convenience, the plotting method will mark all upper lag class edges in the plot. This can already give you an idea, if the number of lag classes is chosen wisely, or if you need to adjust. To estimate valid, expressive variograms, this is maybe the most important preparation step. If your lag classes do not represent your data well, you will never find a useful variogram.

Plotly

backend('plotly')
fig = V.distance_difference_plot(show=False)
fig


You might also consider to adapt the maximum lag distance using this plot, to exclude distances that are not well backed by data. Alternatively, the binning method can be changed. Or both

Vcopy = V.clone()
Vcopy.bin_func = 'uniform'

fig = Vcopy.distance_difference_plot(show=False)
fig


# Matplotlib
# """"""""""
backend('matplotlib')
fig = V.distance_difference_plot()
Pairwise distance ~ difference

4.4 Directional Variogram

4.4.1 pair_field

The DirectionalVariogram class is inheriting from Variogram. Therefore all plotting method shown above are available for directional variograms, as well. Additionally, there is one more plotting method, DirectionalVariogram.pair_field. This function will plot all coordinate locations and draw a line between all point pairs, that were not masked by the directional mask array and will, thus, be used for variogram estimation. By default, the method will draw all lines for all point pairs and you will see nothing on the plot. But there is also the possibility to draw these lines only for a subset of the coordinate locations.

# Matplotlib
# """"""""""
backend('matplotlib')
fig = DV.pair_field()
tutorial 04 plotting

Obviously, one can see the azimuth (40°) and narrow tolerance (15°) settings in the cone-like shapes of the connection lines, but the whole plot is not really instructive or helpful like this. Using the points keyword, you can show the lines only for a given set of coordinate locations. You have to pass a list of coordinate indices. With add_points=True, the seleceted points will be highlighted in red.

fig = DV.pair_field(points=[0, 42, 104, 242], add_points=True)
tutorial 04 plotting

Plotly

Note: It is not recommended to plot the full pair_field with all points using plotly. Due to the implementation, that makes the plot really, really slow for rendering.

backend('plotly')
fig = DV.pair_field(points=[0,42, 104, 242], add_points=True, show=False)
fig


4.5 ST Variogram

The SpaceTimeVariogram does not inherit from the Variogram has two properties, SpaceTimeVariogram.XMarginal and SpaceTimeVariogram.TMarginal, which are both instances of Variogram for the spatial and temporal marginal variogram. These instances in turn, have all plotting methods available, in addition to the plotting methods of SpaceTimeVariogram itself.

# 4.5.1 `plot(kind='scatter') <skgstat.SpaceTimeVariogram.plot>`
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#
# The scatter plot can be used to inspect the experimental variogram data on a
# spatial and temporal axis, with the fitted spatio-temporal model fitted to the data.
#
# Plotly
# """"""
backend('plotly')
fig = STV.plot(kind='scatter', show=False)
fig


The method can also remove the model from the plot. This can be helpful in case the experimental data should be analyzed. Then, the model plane might be disturbing.

fig = STV.plot(kind='scatter', no_model=True, show=False)
fig


And finally, the experimental point data can be connected to a surface grid, to emphasize an apparent structure more easily in a 3D plot. This can be done by switching to kind='surf'.

fig = STV.plot(kind='surf', show=False)
fig


# Matplotlib
# """"""""""
backend('matplotlib')
fig = STV.plot(kind='surf')
tutorial 04 plotting

4.5.2 contour

3D plots are great for data exploration, especially if they are interactive. For publications, 3D plots are not that helpful. Additionally, it can be quite tricky sometimes to find a good angle to focus on the main message of a 3D plot. Hence, there are more plotting modes. They can either be used by setting kind='contour' or kind='contourf'. Alternatively, these two plotting types also have their own method. In both cases, the experimental semi-variance is plotted on a two dimensional plane. The spatial dimension can be found on the x-axis and the temporal dimension on the y-axis. The semi-variance itself is shown as a contour plot, that can either only plot the lines ('contour') or filled areas for each contour ('contourf').

Plotly

backend('plotly')
fig = STV.contour(show=False)
fig


fig = STV.contourf(show=False)
fig


Matplotlib

The matplotlib versions of the contour plots are not that sophisticated, but the returned figure can be adjusted to your needs.

backend('matplotlib')
fig = STV.plot(kind='contour')
tutorial 04 plotting
fig = STV.plot(kind='contourf')
tutorial 04 plotting

4.5.3 :func`marginals <skgstat.SpaceTimeVariogram.marginals>`

A very important step for the estimation of spatio-temporal variogram models, is the estimation of marginal models. While the marginal models are implemented as Variogram instances and can be changed and plotted like any other Variogram instance, it can come very handy to plot the marginal models side-by-side.

This can be done with the :func`marginals <skgstat.SpaceTimeVariogram.marginals>` method.

backend('plotly')
fig = STV.marginals(show=False)
fig


backend('matplotlib')
fig = STV.marginals()
spatial marginal variogram, temporal marginal variogram

Additionally, the separated spatial and temporal models can be plotted into each sub-plot:

fig = STV.marginals(include_model=True)
spatial marginal variogram, temporal marginal variogram
backend('plotly')
fig = STV.marginals(include_model=True, show=False)
fig


Total running time of the script: ( 0 minutes 16.266 seconds)

Gallery generated by Sphinx-Gallery