From 863e9f6e1aa04d8133ea406a7a19e837d7a8f92d Mon Sep 17 00:00:00 2001 From: KaisaridiSofia <115173948+KaisaridiSofia@users.noreply.github.com> Date: Mon, 6 Oct 2025 15:30:50 +0200 Subject: [PATCH 01/24] Documentation (#464) * complete mathematical background and to to go further * mixture model * fit algorithm * estimate algorithm * convergence * add link for rhat --- docs/algorithms.md | 114 +++++++++++++++++++++++++++++++++++--- docs/mathematics.md | 43 +++++++++++++- docs/models.md | 37 +++++++++++++ docs/models_evaluation.md | 12 +++- docs/references.bib | 44 +++++++++++++++ docs/to_go_further.md | 34 ++++++++++++ 6 files changed, 270 insertions(+), 14 deletions(-) diff --git a/docs/algorithms.md b/docs/algorithms.md index 0071f68b6..817965cd3 100644 --- a/docs/algorithms.md +++ b/docs/algorithms.md @@ -1,18 +1,78 @@ # Algorithms ## Fit + +In this section we describe how to fit a `leaspy` model in your data. Leaspy uses the MCMC-SAEM algorithm to fit a model by jointly estimating the fixed effects and the distribution of the random effects. It is particularly well suited to this kind of models where the likelihood involves latent variables and is not available in closed form. + +The algorithm is an adaptation of the Expectation-Maximisation (EM) algorithm that relies on an iterative procedure that alternates between the following main steps: + +- Expectation/Stochastic Approximation Step: the algorithm uses Markov Chain Monte Carlo (MCMC) to generate samples of the latent variables (random effects) conditional on the current parameter estimates, and compute the sufficient statistics of the complete-data log-likelihood using a stochastic approximation scheme. +- Maximization Step: Given the updated sufficient statistics, the fixed effects and variance components are re-estimated by maximizing the approximate complete-data log-likelihood. + +By iterating these steps, the MCMC-SAEM algorithm converges to the maximum likelihood estimates of the model parameters. + ### Prerequisites - - Data format and preprocessing steps. + +To fit a logistic model, you need a dataframe with the following columns: + +- `ID`: Patient identifier +- `TIME`: Time of measurement +- One or more columns representing the longitudinal outcomes (e.g., `FEATURE_1`, `FEATURE_2`, ...) + +For the importation of dataframe: + +```python +dataset = dataframe.set_index(["ID", "TIME"]).sort_index() +print(dataset.head()) + + FEATURE_1 FEATURE_2 + ID TIME +132-S2-0 81.661 0.44444 0.04000 + 82.136 0.60000 0.56000 + 82.682 0.39267 0.04000 + 83.139 0.58511 0.30000 + 83.691 0.57044 0.05040 + +data_leaspy = Data.from_dataframe(dataset, "visit") +``` ### Running Task - - How to run the fit algorithm. - - Example commands and code snippets. + +Then you will need to choose one from the existing models in `leaspy.models` . Let's use th logistic model as an example. + +```python +from leaspy.models import LogisticModel +``` + +We need to specify the arguments `name`, `dimension` (the number of features in your dataset) and the `obs_models` (valid choices for the logistic model are 'gaussian-diagonal' to estimate one noise coefficient per feature or 'gaussian-scalar' to estimate one noise coefficient for all the features). When we fit a multivariate model we also need to specify `source_dimension` that corresponds to the degrees of freedom of intermarker spacing parameters. We refer you to the [mathematical background section](./mathematics.md####Individual-trajectory-&Spatial-random-effects) for more details. We generally suggest a number of sources close to the square root of the number of features ($\sqrt(dimension)$). + +```python +model = LogisticModel(name="my-model", source_dimension=1, dimension=2, obs_models='gaussian-diagonal') +model.fit(data_leaspy, "mcmc_saem", n_iter=20000) +``` +You can also control add a `seed`or control other arguments for the output and the logs like `save_periodicity`, `path`, e.t.c. + ### Output - - What results to expect from the fitting process. - - DataFrame object - - Plotting object -### Setting Options (Different Models) - - How to set specific options for different types of models. - - Customizing parameters for logistic, joint, mixture, and covariate models. + +Once the iterations are done we can see the parameters that were estimated by the model and save them in a dedicated file. + +```python +model.save('my_path/my_model/model_parameters.json') +model.parameters +``` + +And we can also plot the estimated average trajectory. + +```python +import matplotlib.pyplot as plt +from leaspy.io.logs.visualization.plotting import Plotting +leaspy_plotting = Plotting(model) + +ax = leaspy_plotting.average_trajectory( + alpha=1, figsize=(14, 6), n_std_left=2, n_std_right=8 +) +plt.show() +``` + ## Personalize @@ -76,6 +136,42 @@ GS-200 1.152407 -0.171888 76.504517 0.770118 ## Estimate + +This sections describes the procedure for estimating a patient's trajectory. +Once the personalization is performed then we can estimate and visualize the trajectory of a specific subject using its individual parameters. + +```python +import numpy as np + +observations = dataframe.loc["GS-187"] +print(f"Seen ages: {observations.index.values}") +print("Individual Parameters : ", ip["GS-187"]) + +timepoints = np.linspace(60, 100, 100) +reconstruction = model.estimate({"GS-187": timepoints}, ip) +``` + +The reconstruction object contains the estimated feature values for the individual and we can plot them along with the actual observations. + +```python +ax = leaspy_plotting.patient_trajectories( + data_leaspy, + ip, + patients_idx=["GS-187"], + labels=["FEATURE_1", "FEATURE_2"], + alpha=1, + linestyle="-", + linewidth=2, + markersize=8, + obs_alpha=0.5, + figsize=(16, 6), + factor_past=0.5, + factor_future=5, +) +ax.set_xlim(45, 80) +plt.show() +``` + ## Simulate This section describes the procedure for simulating new patient data under the Spatiotemporal model structure. The simulation method, relying on a fitted Leaspy model and user-defined parameters, involves the following steps: diff --git a/docs/mathematics.md b/docs/mathematics.md index c91d6b9ce..52d972e91 100644 --- a/docs/mathematics.md +++ b/docs/mathematics.md @@ -1,10 +1,47 @@ # Mathematical Background -## Mixed effect models +## Nonlinear mixed effect models -*Talk about mixed-effect models and their ability to handle missing values* +Mixed effects models have become a powerful and widely used statistical tool for analyzing longitudinal, or more specifically repeated measurements, data, especially in the context of biomedical and epidemiological research. These models are particularly suited for studying neurodegenerative and brain diseases where patients are followed over time, and multiple clinical characteristics are measured repeatedly. Moreover these diseases have been known to be heterogenous with subtypes that are often difficult ot characterize. -## Riemanian framework +One of the key strengths of mixed-effects models lies in their ability to capture two types of variability: + +- **Within-subject variability (fixed effects)** + This reflects systematic influences that affect all patients in similar ways, such as the effect of treatment, demographic factors, or known disease subtypes. Fixed effects represent consistent trends or shifts in the data that apply across the **population** or across specific groups. +- **Between-subject variability (random effects)** + This accounts for differences among individual patients. For example, even if patients share the same diagnosis, their disease progression rates and onset time can vary considerably. By incorporating random effects, the model can capture this heterogeneity, allowing for personalized trajectory estimates at an **individual** level. + +With a mixed effects model, we can estimate the long-term progression of a disease by reconstructing individual patient trajectories over time, even when measurements are irregularly spaced or partially missing. This is crucial for understanding the natural history of a disease, identifying typical progression patterns, and recognizing outliers. Importantly, understanding how a disease evolves over time and quantifying the expected variability between individuals have significant clinical and research implications. Clinically, it supports personalized medicine approaches, tailoring treatment plans based on predicted progression. From a research standpoint, it helps identify factors driving heterogeneity in disease progression, which can inform new hypotheses about disease mechanisms or guide the development of targeted therapies. + +Brain and neurodegenerative diseases typically do not progress at a constant rate over time. In this context a non-linear formulation of mixed effects models provides a more realistic and flexible framework for representing the intricate and variable progression patterns. Many biomarkers and clinical symptoms in neurodegeneration follow nonlinear relationships with time or disease stage. Also, nonlinear models can flexibly accommodate this heterogeneity by allowing individual trajectories to differ not only in magnitude but also in shape and timing. For example, some patients may experience a rapid decline early on, while others decline more slowly but for a longer duration. + +### Parameter estimation + +We suppose that the parameters capturing the population and the individual variability, namely fixed and random effects respectively, are latent ($z$) follow some prior distributions. The parameters that define these distributions are called namely model parameters ($\theta$). We can also include hyperparmeters $\Pi$ that have known values. + +Estimating the parameters of the models can be done through maximisation of the likelihood. + +Assuming $y$ correspond to the observed data, $z$ the latent parameters, $\theta$ the model parameters and $\Pi$ the hyperparameters the likelihood estimated by the model is the following: + +$$ +p(y \mid \theta, \Pi) = \int_{z} p(y, z \mid \theta, \Pi) dz +$$ + +$p(y, z \mid \theta, \Pi)$ can be divided into two different terms: data attachment, which represents how well the model describes the data $y$, and a prior attachment, which prevents over-fitting: + +$$ +\log p(y, z \mid \theta ,\Pi) = \log {p(y \mid z, \theta, \Pi)} + \log p(z \mid \theta , \Pi ) +$$ + +The prior attachment term can be separated into two terms: two terms for the prior attachment of latent parameters (fixed and random). We end up with the following expression : + +$$ +\log p(y, z \mid \theta, \Pi) = \log {p(y \mid z, \theta, \Pi)} + \log p(z_{re} \mid z_{fe}, \theta, \Pi) + \log p(z_{fe} \mid \theta, \Pi) +$$ + +A common and well-defined algorithm for the likelihood maximization, proven to converge for non-linear mixed effects models is the MCMC-SAEM. + +## Riemannian framework ### Disease progression represented as trajectory diff --git a/docs/models.md b/docs/models.md index ab0f1c5d9..18bfbf47e 100644 --- a/docs/models.md +++ b/docs/models.md @@ -221,6 +221,43 @@ leaspy_joint.fit(data_joint, nb_iter=1000, nb_burnin=500) For estimation, it is the [CIF](./glossary.md#cif) that is outputted by the model. Note that for prediction purposes, the [CIF](./glossary.md#cif) is corrected using the survival probability at the time of the last observed visit, following common practice in other packages {cite}`andrinopoulou_combined_2017`. ## Mixture Model + +### Definition + +Mixture models are a class of statistical models that represent a population as a combination of underlying subpopulations, each described by its own probability distribution {cite}`mclachlan_finite_2000`. Standard mixed effects models assume a certain homogeneity in the sense that the inter-patient variability as random variations around a fixed reference. Mixture models explicitly recognize that observed data may arise from distinct latent groups—for example, patients may cluster into different onset times, rates of disease progression or more advanced clinical scores. This formulation captures heterogeneity in the data, allowing for flexible modeling of complex, multimodal patterns. Estimation is typically carried out using an adaptation of MCMC-SAEM for mixture models as described in {cite}`mclachlan_finite_2000`, which iteratively refine both the component parameters and the posterior probabilities of membership. By providing a probabilistic clustering framework, mixture models not only identify hidden structure but also quantify uncertainty in subgroup assignment, making them widely applicable in biomedical sciences. + +In Leaspy the mixture model is implemented as an adaptation of the spatio-temporal logistic model where the individual parameters (`tau`, `xi`and `sources`) come from a mixture of gaussian distributions with a number of components defined by the user. + +### Data + +The same rules apply as for the standard [logistic model](#logistic-model). + +### Mathematical background + +To build a mixture model, we add another layer upon the hierarchical structure of the model. We suppose that each subgroup $c$ can be described by a different set of $(\overline{\tau}^c, \overline{\xi}^c, \overline{s}^c)$ and has a respective probability of occurrence $\pi^c$. We suppose that the population parameters come from normal distributions as in the standard model, while the individual parameters are sampled from a mixture of gaussians with mixing probabilities $\pi^c$. + +The individual parameters (random effects): + +$$ +\begin{cases} +\xi_i \sim \sum_{c=1}^{n_c} \pi^c \mathcal{N} (\overline\xi^c, \sigma_{\xi}^c) \\ +\tau_i \sim \sum_{c=1}^{n_c} \pi^c \mathcal{N} (\overline\tau^c, \sigma_{\tau}^c)\\ +s_{il} \sim \sum_{c=1}^{n_c} \pi^c \mathcal{N} (\overline s^c, 1) +\end{cases} +$$ + + +### Model summary + +To use the mixture model in Leaspy you need to choose the number of cluster you wish to estimate beforehand. + +```python +from leaspy.models import LogisticMultivariateMixtureModel + +leaspy_mixture = LogisticMultivariateMixtureModel(source_dimension=1, n_clusters=2, dimension=3) +leaspy_mixture.fit(data_logistic, "mcmc_saem", n_iter=1000) +``` + ## Covariate Model ## References diff --git a/docs/models_evaluation.md b/docs/models_evaluation.md index 615261153..47655f2bf 100644 --- a/docs/models_evaluation.md +++ b/docs/models_evaluation.md @@ -2,14 +2,22 @@ ## Convergence diagnosis -## Likelihood based metrics +When using leaspy, you have to choose the number of iterations to estimate the model and hopefully to reach convergence of the MCMC-SAEM algorithm used. A famous way to monitor it is by running several MC chains with various random seeds and compute the statistic of Gelman-Rubin{cite}`gelman1992inference`, denoted $\hat{R}$. The $\hat{R}$ measures the ratio of the **within-chain variance** to the **between-chain variance**. If the chain has converged to the same stationary distribution, these two variances should be roughly equal{cite}`vehtari2021convergence`. + +$$ +\hat{R} = \frac{\hat{V}}{W} +$$ + +where $W$ is the within-chain variance and $\hat{V}$ is the posterior variance estimate for the pooled rank-traces. + +This could be computed thanks to the package `arviz` with the function [`rhat`](https://python.arviz.org/en/stable/api/generated/arviz.rhat.html). ## Fit metrics Leaspy stores three negative log likelihood (nll) values in the `fit_metrics` of the model’s json file: - `nll_attach`: $-\log p(y \mid z, \theta, \Pi)$, where $y$ are the observations, $z$ the latent parameters, $\theta$ the model parameters, and $\Pi$ the hyperparameters. It corresponds to the nll attached to the data. - `nll_regul_ind_sum`: $-\log p(z_{\text{re}} \mid z_{\text{fe}}, \theta, \Pi)$, where $z_{\text{re}}$ denotes the latent random effects and $z_{\text{fe}}$ the latent fixed effects. It corresponds to the nll from the random effects. -- `nll_tot`: $-\log p(y, z, \theta \mid \Pi)$. It corresponds to the total nll: nll_attach, nll_regul_ind_sum and the nll linked to the individual parameters (`v0`,`xi`,`tau`), that is not reported directly in the json file. +- `nll_tot`: $-\log p(y, z, \theta \mid \Pi)$. It corresponds to the total nll: nll_attach, nll_regul_ind_sum and the nll linked to the fixed effects $-\log p(z_{\text{fe}} \mid \theta, \Pi)$, that is not reported directly in the json file. The last conditional nll can be used for computing fit metrics. diff --git a/docs/references.bib b/docs/references.bib index d9c690f6e..a62215170 100644 --- a/docs/references.bib +++ b/docs/references.bib @@ -627,3 +627,47 @@ @article{willmott2005advantages year={2005}, publisher={Inter-Research} } + +@book{mclachlan_finite_2000, + title = {Finite Mixture Models}, + author = {McLachlan, Geoffrey J. and Peel, David}, + year = {2000}, + publisher = {Wiley}, + address = {New York}, + isbn = {978-0-471-00626-8} +} + +@article{dempster_maximum_1977, + title = {Maximum likelihood from incomplete data via the {EM} algorithm}, + author = {Dempster, Arthur P. and Laird, Nan M. and Rubin, Donald B.}, + journal = {Journal of the Royal Statistical Society: Series B (Methodological)}, + volume = {39}, + number = {1}, + pages = {1--38}, + year = {1977}, + publisher = {Wiley} +} + +@article{vehtari2021convergence, + title={Rank-Normalization, Folding, and Localization: An Improved Rˆ for Assessing Convergence of MCMC (with Discussion)}, + volume={16}, + ISSN={1936-0975}, + url={http://dx.doi.org/10.1214/20-BA1221}, + DOI={10.1214/20-ba1221}, + number={2}, + journal={Bayesian Analysis}, + publisher={Institute of Mathematical Statistics}, + author={Vehtari, Aki and Gelman, Andrew and Simpson, Daniel and Carpenter, Bob and Bürkner, Paul-Christian}, + year={2021}, + month=jun } + + @article{gelman1992inference, + title = {Inference from Iterative Simulation Using Multiple Sequences}, + author = {Gelman, Andrew and Rubin, Donald B.}, + journal = {Statistical Science}, + volume = {7}, + number = {4}, + pages = {457--472}, + year = {1992}, + publisher = {Institute of Mathematical Statistics} +} diff --git a/docs/to_go_further.md b/docs/to_go_further.md index d44964906..c8f8bb47a 100644 --- a/docs/to_go_further.md +++ b/docs/to_go_further.md @@ -1,6 +1,40 @@ # To Go Further ## Model Implementation + +This section aims to provide a survival guide for any potential futue developper who wishes to contribute to leaspy by implementing a new model. In order to implement a new model you should be able to answer the following questions : + +- Data + - What kind of data my model aims to analyze? +- Parameters + - What parameters my model needs to be fully specified? +- Algorithm + - Does my model require a new/modified version of the MCMC-SAEM algortihm to estimate the parameters? + +You could start by creating a *my_model.py* with the basic structure of you model. +What model class should be branched? + +### Data + +If other than longitudinal, events, covariates you should buid a *_data_reader.py* + +### Parameters + +- **DAG** + For models to be computationally sound, we needed to have a flow of dependency: a variable cannot depend on a variable that itself depends on it. Said differently, every model + should be laid out as a Directed Acyclic Graph (DAG). The graph specifies the properties of each variable, as well as the dependency flow and the update rules. Such structure can + optimise computations and has the advantage of being close to the mathematical formulation. +- **Parameter classes** + Decide on what class to attribute each parameter, *get_variable_specs* +- **Likelihood** + *distributions* for the latent parameters +- **Sufficient Statistics** + *utils* functions for new model parameters + +### Algortihm + +Probably *samplers* because *algo/mcmc_saem* provides the basic structure. + ### DAG Intuition and Structure for Models ## What kind of scientific question could be answered with leaspy? From 7e2e23d9bdaad98795a3e7258f44b7bb052182dc Mon Sep 17 00:00:00 2001 From: caglayantuna Date: Fri, 10 Oct 2025 13:48:05 +0200 Subject: [PATCH 02/24] improve examples (#465) --- docs/index.md | 56 ++++++++-------- docs/sg_execution_times.rst | 10 +-- examples/plot_parkinson_example.py | 32 +++++---- examples/plot_quickstart.py | 100 +++++++++-------------------- 4 files changed, 82 insertions(+), 116 deletions(-) diff --git a/docs/index.md b/docs/index.md index 97980174d..b252bc899 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,34 +1,5 @@ - ![leaspy logo](./_static/images/leaspy_logo.png) -# Welcome to Leaspy's documentation! - -```{toctree} -:caption: Getting Started -:maxdepth: 2 -install -``` - -```{toctree} -:caption: Examples -:maxdepth: 2 - -auto_examples/index - -``` - -```{toctree} -:caption: Documentation -:maxdepth: 3 - -user_guide -glossary -notations -references -changelog -license -``` - ## LEArning Spatiotemporal Patterns in Python @@ -79,3 +50,30 @@ More detailed explanations about the models themselves and about the estimation - **Intensive application for Alzheimer's Disease progression**: *AD Course Map charts Alzheimer's disease progression*, I. Koval, A. Bone, M. Louis, S. Bottani, A. Marcoux, J. Samper-Gonzalez, N. Burgos, B. Charlier, A. Bertrand, S. Epelbaum, O. Colliot, S. Allassonniere & S. Durrleman, Scientific Reports, 2021. 11(1):1-16 [Open Access](https://hal.inria.fr/hal-01964821) - [www.digital-brain.org](https://project.inria.fr/digitalbrain/) : Website related to the application of the model for Alzheimer's disease. - [Disease Course Mapping](https://disease-progression-modelling.github.io/pages/models/disease_course_mapping.html) webpage by Igor Koval + + +```{toctree} +:caption: Getting Started +:maxdepth: 2 +install +``` + +```{toctree} +:caption: Examples +:maxdepth: 2 + +auto_examples/index + +``` + +```{toctree} +:caption: Documentation +:maxdepth: 3 + +user_guide +glossary +notations +references +changelog +license +``` \ No newline at end of file diff --git a/docs/sg_execution_times.rst b/docs/sg_execution_times.rst index bb34db1cc..bf1e2eadc 100644 --- a/docs/sg_execution_times.rst +++ b/docs/sg_execution_times.rst @@ -6,7 +6,7 @@ Computation times ================= -**00:42.558** total execution time for 4 files **from all galleries**: +**00:30.526** total execution time for 4 files **from all galleries**: .. container:: @@ -33,14 +33,14 @@ Computation times - Time - Mem (MB) * - :ref:`sphx_glr_auto_examples_plot_quickstart.py` (``../examples/plot_quickstart.py``) - - 00:31.453 + - 00:20.482 - 0.0 * - :ref:`sphx_glr_auto_examples_plot_parkinson_example.py` (``../examples/plot_parkinson_example.py``) - - 00:05.162 + - 00:04.638 - 0.0 * - :ref:`sphx_glr_auto_examples_plot_mixture.py` (``../examples/plot_mixture.py``) - - 00:03.092 + - 00:02.755 - 0.0 * - :ref:`sphx_glr_auto_examples_plot_simulate.py` (``../examples/plot_simulate.py``) - - 00:02.850 + - 00:02.651 - 0.0 diff --git a/examples/plot_parkinson_example.py b/examples/plot_parkinson_example.py index a423f02a6..f32a3b1ab 100644 --- a/examples/plot_parkinson_example.py +++ b/examples/plot_parkinson_example.py @@ -33,6 +33,7 @@ data_train = Data.from_dataframe(df_train) data_test = Data.from_dataframe(df_test) + # %% # The logistic model is imported and initialized. # A two-dimensional source space is chosen to represent disease progression trajectories. @@ -40,16 +41,6 @@ model = LogisticModel(name="test-model", source_dimension=2) -# %% -# The model is fitted to the training data using the MCMC-SAEM algorithm. -# A fixed seed is used for reproducibility and 100 iterations are performed. -model.fit( - data_train, - "mcmc_saem", - n_iter=100, - progress_bar=False, -) - # %% # Visualization utilities from Leaspy and Matplotlib are imported. import matplotlib.pyplot as plt @@ -59,14 +50,28 @@ leaspy_plotting = Plotting(model) # %% -# An illustration of individual patient observations on the learned disease progression space is created. +# Data that will be used to fit the model can be illustrated as follows: + ax = leaspy_plotting.patient_observations(data_train, alpha=0.7, figsize=(14, 6)) ax.set_ylim(0, 0.8) # The y-axis is adjusted for better visibility. plt.show() + +# %% +# The model is fitted to the training data using the MCMC-SAEM algorithm. +# A fixed seed is used for reproducibility and 100 iterations are performed. +model.fit( + data_train, + "mcmc_saem", + seed=0, + n_iter=100, + progress_bar=False, +) + + # %% # The average trajectory estimated by the model is displayed. -# This figure shows the mean disease progression curve together with variability bands. +# This figure shows the mean disease progression curves for all features. ax = leaspy_plotting.average_trajectory( alpha=1, figsize=(14, 6), n_std_left=2, n_std_right=8 ) @@ -89,7 +94,6 @@ data_test, alpha=0.7, linestyle="-", - # patients_idx=list(data_test.individuals.keys())[:4], figsize=(14, 6), ) plt.show() @@ -110,7 +114,7 @@ ax = leaspy_plotting.patient_trajectories( data_test, ip, - patients_idx=["GS-187", "GS-180"], + patients_idx=["GS-187"], labels=["MDS1", "MDS2", "MDS3 (off)"], alpha=1, linestyle="-", diff --git a/examples/plot_quickstart.py b/examples/plot_quickstart.py index 0810362ba..fb6cec23b 100644 --- a/examples/plot_quickstart.py +++ b/examples/plot_quickstart.py @@ -2,13 +2,14 @@ Quickstart with Leaspy ====================== -This example shows how to quickly use Leaspy. +This example demonstrates how to quickly use Leaspy with properly formatted data. """ # %% -# Comprehensive example -# --------------------- -# We first load synthetic data in a long format to get of a grasp of longitudinal data: +# Leaspy uses its own data container. To use it correctly, you need to provide either +# a CSV file or a pandas.DataFrame in *long format*. +# +# Below is an example of synthetic longitudinal data illustrating how to use Leaspy: from leaspy.datasets import load_dataset @@ -20,15 +21,23 @@ # %% # The data correspond to repeated visits (`TIME` index) of different participants (`ID` index). # Each visit corresponds to the measurement of 4 different outcomes : the MMSE, the RAVLT, the FAQ and the FDG PET. -# If plotted, the data would look like the following: -# -# .. image:: ../alzheimer-observations.png -# :width: 600 -# :alt: Alzeimer observations + # %% -# Where each color corresponds to a variable, and the connected dots corresponds to the repeated visits of a single participant. -# Not very engaging, right ? To go a step further, let's first encapsulate the data into the main `Data` container: +# ```{warning} +# You **MUST** include both `ID` and `TIME`, either as indices or as columns. +# The remaining columns should correspond to the observed variables +# (also called features or endpoints). +# Each feature should have its own column, and each visit should occupy one row. +# ``` + + +# %% +# ```{warning} +# - Leaspy supports *linear* and *logistic* models. +# - The features **MUST** be increasing over time. +# - For logistic models, data must be rescaled between 0 and 1. +# ``` from leaspy.io.data import Data, Dataset @@ -36,8 +45,9 @@ dataset = Dataset(data) # %% -# Leaspy core functionality is to estimate the group-average trajectory of the different variables that are measured in a population. -# Clinical scores often have a ceiling and a floor effect, so let's initialize a multivariate logistic model: +# The core functionality of Leaspy is to estimate the group-average trajectory +# of the variables measured in a population. To do this, you need to choose a model. +# For example, a logistic model can be initialized and fitted as follows: from leaspy.models import LogisticModel @@ -51,67 +61,21 @@ ) # %% -# If we were to plot the measured average progression of the variables, see started example notebook for details, it would look like the following: -# -# .. image:: ../alzheimer-model.png -# :width: 600 -# :alt: Alzeimer model - -# %% -# We can also derive the individual trajectory of each subject. -# To do this, we use a personalization algorithm called `scipy_minimize`: +# Leaspy can also estimate the *individual trajectories* of each participant. +# This is done using a personalization algorithm, here `scipy_minimize`: individual_parameters = model.personalize( dataset, "scipy_minimize", seed=0, progress_bar=False ) print(individual_parameters.to_dataframe()) -# %% -# Plotting the input participant data against its personalization would give the following, see started example notebook for details. -# -# .. image:: ../alzheimer-subject_trajectories.png -# :width: 600 -# :alt: Alzeimer subject trajectories # %% -# Using my own data -# ----------------- -# -# Data format -# ........... -# -# Leaspy uses its own data container. To use it properly, you need to provide a csv file or a pandas.DataFrame in the right format: longitudinal data in a long format. -# Let's have a look at the data used in the previous example: - -print(alzheimer_df.head()) - -# %% [markdown] -# ```{warning} -# You **MUST** have `ID` and `TIME`, either in index or in the columns. The other columns must be the observed variables (also named features or endpoints). In this fashion, you have one column per feature and one line per visit. -# ``` - -# %% -# Data scale & constraints -# ........................ -# - -# %% [markdwon] -# ```{warning} -# - Leaspy uses linear and logistic models. -# - The features **MUST** be increasing with time. -# - For the logistic model, you need to rescale your data between 0 and 1. -# ``` - -# %% -# Missing data -# ............ -# Leaspy automatically handles missing data as long as they are encoded as nan in your pandas.DataFrame, or as empty values in your csv file. - -# %% -# Going further -# ............. -# You can check the [user_guide](../user_guide.md) and the full API documentation. -# -# You can also dive into the [examples](./index.rst). +# To go further; # -# The [Disease Progression Modelling](https://disease-progression-modelling.github.io/) website also hosts a [mathematical introduction](https://disease-progression-modelling.github.io/pages/models/disease_course_mapping.html) and [tutorials](https://disease-progression-modelling.github.io/pages/notebooks/disease_course_mapping/disease_course_mapping.html) for Leaspy. +# 1. See the [User Guide](../user_guide.md) and full API documentation. +# 2. Explore additional [examples](./index.rst). +# 3. Visit the [Disease Progression Modelling](https://disease-progression-modelling.github.io/) website, +# which provides a [mathematical introduction](https://disease-progression-modelling.github.io/pages/models/disease_course_mapping.html) +# and [tutorials](https://disease-progression-modelling.github.io/pages/notebooks/disease_course_mapping/disease_course_mapping.html) +# for earlier versions such as v1.5. From 04e202617df0360bd5647647dd6e6ee482126c2c Mon Sep 17 00:00:00 2001 From: caglayantuna Date: Fri, 10 Oct 2025 13:48:17 +0200 Subject: [PATCH 03/24] update license (#467) --- LICENSE | 703 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 674 insertions(+), 29 deletions(-) diff --git a/LICENSE b/LICENSE index 6b4679d2e..047cd609d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,29 +1,674 @@ -BSD 3-Clause License - -Copyright (c) 2021, INRIA / Aramis Lab -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + leaspy + Copyright (C) 2019 icm-institute / AramisLab + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + leaspy Copyright (C) 2019 icm-institute / AramisLab + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. From 8282b215255ef71529280b45c288e7299aac35db Mon Sep 17 00:00:00 2001 From: caglayantuna Date: Fri, 10 Oct 2025 13:48:29 +0200 Subject: [PATCH 04/24] add_joint_example (#466) --- docs/models.md | 2 +- examples/plot_joint.py | 58 +++++++ .../data/simulated_data_for_joint.csv | 158 ++++++++++++++++++ 3 files changed, 217 insertions(+), 1 deletion(-) create mode 100644 examples/plot_joint.py create mode 100644 src/leaspy/datasets/data/simulated_data_for_joint.csv diff --git a/docs/models.md b/docs/models.md index 18bfbf47e..9008ea665 100644 --- a/docs/models.md +++ b/docs/models.md @@ -215,7 +215,7 @@ $$ In practice in leaspy, to use the joint model, you need to precise "joint" in Leaspy object creation, then you can use it to fit, personnalize, estimate and simulate. ```python -leaspy_joint = Joint(nb_events=2, source_dimension=3) +leaspy_joint = JointModel(nb_events=2, source_dimension=3) leaspy_joint.fit(data_joint, nb_iter=1000, nb_burnin=500) ``` For estimation, it is the [CIF](./glossary.md#cif) that is outputted by the model. Note that for prediction purposes, the [CIF](./glossary.md#cif) is corrected using the survival probability at the time of the last observed visit, following common practice in other packages {cite}`andrinopoulou_combined_2017`. diff --git a/examples/plot_joint.py b/examples/plot_joint.py new file mode 100644 index 000000000..2a436fb7d --- /dev/null +++ b/examples/plot_joint.py @@ -0,0 +1,58 @@ +""" +Joint Model +===================================================== +This notebook contains the code for a simple implementation of the Leaspy Joint model on synthetic data. +""" + +# %% +# The following imports are required libraries for numerical computation and data manipulation. +import os + +import pandas as pd + +import leaspy +from leaspy.io.data import Data + +leaspy_root = os.path.dirname(leaspy.__file__) + +data_path = os.path.join(leaspy_root, "datasets/data/simulated_data_for_joint.csv") + +df = pd.read_csv(data_path, dtype={"ID": str}, sep=";") +print(df.head()) + +# %% +# To use the Joint Model in Leaspy, your dataset must include the following columns: +# +# 1. **ID** : Patient identifier +# 2. **TIME** : Time of measurement +# 3. **EVENT_TIME** : Time of the event +# 4. **EVENT_BOOL** : Event indicator: +# - `1` if the event occurred +# - `0` if censored +# - `2` if a competing event occurred +# +# For one patient, the event time and event bool are the same for each row. + + +# %% +# We load the Joint Model from the `leaspy.models` and transform the dataset in a leaspy-compatible form with the built-in functions. +from leaspy.models import JointModel + +data = Data.from_dataframe(df, "joint") +model = JointModel(name="test_model", nb_events=1) + +# %% +# The parameter `nb_events` should match the number of distinct event types +# present in the `EVENT_BOOL` column: +# +# - If `EVENT_BOOL` contains values {0, 1}, then `nb_events=1`. +# - If it contains values {0, 1, 2}, then `nb_events=2`. +# +# Once the model is initialized, we can fit it to the data. + +model.fit(data, "mcmc_saem", seed=1312, n_iter=100, progress_bar=False) + + +# %% +# The Joint Model includes specific parameters such as `log_rho_mean` and `zeta_mean`. +print(model.parameters) diff --git a/src/leaspy/datasets/data/simulated_data_for_joint.csv b/src/leaspy/datasets/data/simulated_data_for_joint.csv new file mode 100644 index 000000000..e3684406d --- /dev/null +++ b/src/leaspy/datasets/data/simulated_data_for_joint.csv @@ -0,0 +1,158 @@ +ID;TIME;EVENT_TIME;EVENT_BOOL;Y0;Y1;Y2;Y3 +116;78.461;85.5;1;0.44443999999999995;0.04;0.0;0.0 +116;78.936;85.5;1;0.6;0.0;0.0;0.2 +116;79.482;85.5;1;0.39266999999999996;0.04;0.0;0.2 +116;79.939;85.5;1;0.58511;0.0;0.0;0.0 +116;80.491;85.5;1;0.57044;0.0;0.0;0.0 +116;81.455;85.5;1;0.55556;0.2;0.1;0.2 +116;82.491;85.5;1;0.71844;0.2;0.1;0.6 +116;83.463;85.5;1;0.71111;0.32;0.2;0.6 +116;84.439;85.5;1;0.9111100000000001;0.52;0.6;1.0 +142;77.794;85.777;0;0.326;0.0;0.0;0.0 +142;78.27199999999999;85.777;0;0.35556;0.0;0.0;0.0 +142;78.888;85.777;0;0.4;0.0;0.0;0.0 +142;79.288;85.777;0;0.31111;0.0;0.0;0.0 +142;79.829;85.777;0;0.53333;0.0;0.0;0.0 +142;80.836;85.777;0;0.49622;0.0;0.0;0.0 +142;81.839;85.777;0;0.42956000000000005;0.0;0.0;0.0 +142;82.81299999999999;85.777;0;0.62222;0.04;0.0;0.0 +142;83.775;85.777;0;0.64444;0.0;0.0;0.0 +142;84.92200000000001;85.777;0;0.77778;0.08;0.1;0.2 +142;85.777;85.777;0;0.77778;0.12;0.0;0.0 +169;77.794;82;1;0.326;0.0;0.0;0.0 +169;78.27199999999999;82;1;0.35556;0.0;0.0;0.0 +169;78.888;82;1;0.4;0.0;0.0;0.0 +169;79.288;82;1;0.31111;0.0;0.0;0.0 +169;79.829;82;1;0.53333;0.0;0.0;0.0 +169;80.836;82;1;0.49622;0.0;0.0;0.0 +169;81.839;82;1;0.42956000000000005;0.0;0.0;0.0 +178;65.26100000000001;72.374;1;0.40733;0.0;0.1;0.0 +178;65.794;72.374;1;0.29622;0.0;0.2;0.0 +178;66.308;72.374;1;0.49622;0.0;0.1;0.0 +178;66.78;72.374;1;0.4;0.0;0.1;0.0 +178;67.305;72.374;1;0.46667;0.08;0.1;0.0 +178;68.227;72.374;1;0.48889;0.0;0.2;0.0 +178;69.582;72.374;1;0.526;0.0;0.2;0.0 +178;70.385;72.374;1;0.55556;0.0;0.2;0.2 +178;71.363;72.374;1;0.6;0.0;0.1;0.4 +178;72.374;72.374;1;0.73333;0.0;0.2;0.4 +200;83.749;89.977;0;0.40733;0.0;0.0;0.0 +200;84.205;89.977;0;0.45933;0.0;0.1;0.2 +200;84.75200000000001;89.977;0;0.4;0.0;0.0;0.0 +200;85.18;89.977;0;0.5111100000000001;0.0;0.0;0.0 +200;85.727;89.977;0;0.526;0.0;0.1;0.0 +200;86.764;89.977;0;0.48889;0.04;0.0;0.0 +200;87.78;89.977;0;0.66667;0.0;0.1;0.2 +200;88.75200000000001;89.977;0;0.71111;0.0;0.0;0.2 +200;89.977;89.977;0;0.68889;0.08;0.1;0.4 +225;79.869;87.896;0;0.36289;0.04;0.1;0.6 +225;80.363;87.896;0;0.30378;0.04;0.1;0.2 +225;80.883;87.896;0;0.43711000000000005;0.04;0.1;0.0 +225;81.499;87.896;0;0.526;0.04;0.0;0.0 +225;81.891;87.896;0;0.49622;0.08;0.0;0.0 +225;83.266;87.896;0;0.46667;0.12;0.0;0.0 +225;84.45200000000001;87.896;0;0.77778;0.16;0.1;1.0 +225;85.84700000000001;87.896;0;0.8;0.24;0.1;0.2 +225;86.99600000000001;87.896;0;0.8222200000000001;0.36;0.4;1.0 +225;87.896;87.896;0;0.86667;0.64;0.7;0.8 +296;70.344;77;1;0.46667;0.08;0.1;0.4 +296;70.842;77;1;0.60733;0.04;0.1;0.2 +296;71.339;77;1;0.42222;0.0;0.0;0.0 +296;71.855;77;1;0.55556;0.08;0.1;0.2 +296;72.35;77;1;0.5482199999999999;0.0;0.1;0.2 +296;73.335;77;1;0.69622;0.16;0.1;0.2 +296;74.388;77;1;0.71111;0.04;0.1;0.4 +296;75.369;77;1;0.75556;0.28;0.4;0.8 +296;76.29899999999999;77;1;0.9555600000000001;0.28;0.6;1.0 +307;71.077;80;1;0.21489;0.0;0.0;0.0 +307;71.582;80;1;0.31111;0.0;0.0;0.0 +307;72.077;80;1;0.2;0.0;0.0;0.0 +307;72.594;80;1;0.45178;0.0;0.0;0.0 +307;73.033;80;1;0.30378;0.0;0.0;0.0 +307;74.079;80;1;0.326;0.0;0.0;0.4 +307;76.149;80;1;0.33333;0.0;0.0;0.0 +307;77.071;80;1;0.31111;0.0;0.0;0.0 +307;78.086;80;1;0.31111;0.0;0.0;0.0 +307;79.108;80;1;0.37778;0.0;0.0;0.0 +377;65.839;73;1;0.22221999999999997;0.0;0.0;0.2 +377;66.329;73;1;0.24444000000000002;0.04;0.0;0.4 +377;66.847;73;1;0.25178;0.0;0.0;0.2 +377;67.347;73;1;0.48156000000000004;0.0;0.0;0.2 +377;67.813;73;1;0.35556;0.0;0.0;0.2 +377;68.847;73;1;0.43711000000000005;0.0;0.0;0.4 +377;69.874;73;1;0.36289;0.0;0.0;0.0 +377;70.832;73;1;0.5777800000000001;0.04;0.0;0.2 +377;71.866;73;1;0.44443999999999995;0.0;0.0;0.4 +377;72.916;73;1;0.46667;0.04;0.0;0.4 +448;67.916;73.944;0;0.326;0.04;0.1;0.4 +448;68.413;73.944;0;0.24444000000000002;0.04;0.1;0.6 +448;68.891;73.944;0;0.28889000000000004;0.04;0.1;0.4 +448;69.419;73.944;0;0.25178;0.08;0.0;0.4 +448;69.922;73.944;0;0.37044;0.08;0.1;0.4 +448;70.913;73.944;0;0.41489;0.08;0.2;0.4 +448;71.947;73.944;0;0.37778;0.24;0.1;0.6 +448;72.971;73.944;0;0.53333;0.32;0.2;0.6 +448;73.944;73.944;0;0.75556;0.6;0.6;1.0 +546;76.613;84;1;0.59267;0.04;0.1;0.2 +546;77.092;84;1;0.48156000000000004;0.12;0.0;0.2 +546;77.689;84;1;0.62222;0.16;0.1;0.0 +546;78.183;84;1;0.65178;0.0;0.0;0.2 +546;78.592;84;1;0.62222;0.0;0.0;0.0 +546;79.608;84;1;0.51844;0.04;0.0;0.2 +546;80.638;84;1;0.6;0.04;0.1;0.2 +546;81.635;84;1;0.62222;0.0;0.1;0.2 +546;82.666;84;1;0.6;0.2;0.1;0.2 +546;83.66799999999999;84;1;0.75556;0.2;0.0;0.2 +557;70.638;76;1;0.2;0.0;0.0;0.0 +557;71.133;76;1;0.13333;0.04;0.0;0.0 +557;71.56;76;1;0.28156;0.0;0.1;0.0 +557;72.149;76;1;0.25178;0.0;0.0;0.0 +557;72.624;76;1;0.20733000000000001;0.0;0.0;0.0 +557;73.668;76;1;0.36289;0.0;0.0;0.0 +557;74.702;76;1;0.35556;0.0;0.0;0.0 +557;75.635;76;1;0.37778;0.0;0.0;0.0 +626;82.38;90;1;0.38511;0.0;0.0;0.6 +626;82.874;90;1;0.326;0.0;0.0;0.4 +626;83.374;90;1;0.41489;0.0;0.0;0.2 +626;83.883;90;1;0.34822;0.0;0.0;0.2 +626;84.385;90;1;0.43711000000000005;0.0;0.0;0.4 +626;85.42200000000001;90;1;0.41489;0.0;0.0;0.2 +626;86.355;90;1;0.326;0.0;0.1;0.4 +626;87.38;90;1;0.46667;0.08;0.0;0.6 +626;88.329;90;1;0.55556;0.16;0.1;0.8 +626;89.344;90;1;0.46667;0.04;0.1;0.6 +644;80.883;86.955;0;0.33333;0.08;0.1;0.0 +644;81.377;86.955;0;0.21489;0.0;0.1;0.0 +644;81.874;86.955;0;0.37044;0.0;0.0;0.2 +644;82.413;86.955;0;0.4;0.04;0.1;0.2 +644;82.891;86.955;0;0.38511;0.0;0.1;0.0 +644;83.88799999999999;86.955;0;0.35556;0.0;0.1;0.2 +644;85.055;86.955;0;0.44443999999999995;0.0;0.1;0.0 +644;85.88;86.955;0;0.48889;0.0;0.1;0.4 +644;86.955;86.955;0;0.46667;0.0;0.1;0.2 +673;79.014;86.275;1;0.28156;0.0;0.0;0.2 +673;79.53;86.275;1;0.5111100000000001;0.0;0.1;0.4 +673;80.02199999999999;86.275;1;0.35556;0.0;0.1;0.2 +673;80.527;86.275;1;0.39266999999999996;0.0;0.1;0.4 +673;81.025;86.275;1;0.34822;0.04;0.1;0.4 +673;81.993;86.275;1;0.31111;0.0;0.1;0.6 +673;83.266;86.275;1;0.37778;0.04;0.1;0.8 +673;84.266;86.275;1;0.37778;0.12;0.1;0.8 +673;85.258;86.275;1;0.46667;0.08;0.1;0.8 +673;86.275;86.275;1;0.53333;0.16;0.1;0.6 +698;76.108;80.35300000000001;0;0.4;0.04;0.1;0.4 +698;76.743;80.35300000000001;0;0.674;0.08;0.2;0.4 +698;77.13;80.35300000000001;0;0.6148899999999999;0.0;0.1;0.4 +698;77.616;80.35300000000001;0;0.726;0.04;0.2;0.8 +698;78.168;80.35300000000001;0;0.726;0.08;0.0;0.6 +698;79.391;80.35300000000001;0;0.8295600000000001;0.08;0.2;0.6 +698;80.35300000000001;80.35300000000001;0;0.9111100000000001;0.36;0.2;1.0 +709;72.342;79;1;0.326;0.0;0.0;0.4 +709;73.025;79;1;0.34067;0.0;0.0;0.2 +709;73.372;79;1;0.37778;0.0;0.0;0.2 +709;74.02199999999999;79;1;0.35556;0.0;0.0;0.0 +709;74.35;79;1;0.44443999999999995;0.0;0.0;0.2 +709;75.347;79;1;0.43711000000000005;0.0;0.1;0.2 +709;76.30199999999999;79;1;0.4;0.0;0.0;0.2 +709;77.355;79;1;0.37778;0.0;0.0;0.2 +709;78.413;79;1;0.42222;0.0;0.0;0.4 \ No newline at end of file From 403effa606d58860b2dda46eaecee09c10dfc0a2 Mon Sep 17 00:00:00 2001 From: caglayantuna Date: Thu, 30 Oct 2025 13:45:44 +0100 Subject: [PATCH 05/24] Fix gallery (#468) --- Makefile | 1 + README.md | 19 +- docs/_static/custom.css | 3 + docs/_static/custom.js | 23 + docs/conf.py | 10 +- docs/index.md | 19 +- docs/install.md | 20 +- docs/sg_execution_times.rst | 21 +- docs/tutorials.md | 5 - docs/user_guide.md | 1 - .../algorithm_settings_calibration.json | 35 - .../algorithm_settings_personalization.json | 9 - example/start/inputs/cofactor.csv | 249 --- example/start/inputs/data.csv | 1488 ----------------- example/start/inputs/data_normalized.csv | 1488 ----------------- example/start/inputs/data_univariate.csv | 34 - example/start/inputs/simulation_settings.json | 7 - .../logs/parameter_convergence/betas_0.csv | 61 - .../logs/parameter_convergence/betas_1.csv | 61 - .../outputs/logs/parameter_convergence/g.csv | 61 - .../logs/parameter_convergence/noise_std.csv | 61 - .../logs/parameter_convergence/sources0.csv | 100 -- .../logs/parameter_convergence/sources1.csv | 100 -- .../parameter_convergence/sources_mean.csv | 61 - .../parameter_convergence/sources_std.csv | 61 - .../logs/parameter_convergence/tau.csv | 100 -- .../logs/parameter_convergence/tau_mean.csv | 61 - .../logs/parameter_convergence/tau_std.csv | 61 - .../outputs/logs/parameter_convergence/v0.csv | 61 - .../outputs/logs/parameter_convergence/xi.csv | 100 -- .../logs/parameter_convergence/xi_mean.csv | 61 - .../logs/parameter_convergence/xi_std.csv | 61 - example/start/outputs/model_parameters.json | 73 - example/start/starter.ipynb | 711 -------- examples/GALLERY_HEADER.rst | 4 +- ...ot_quickstart.py => plot_01_quickstart.py} | 4 - ...xample.py => plot_02_parkinson_example.py} | 0 examples/{plot_joint.py => plot_03_joint.py} | 0 .../{plot_mixture.py => plot_04_mixture.py} | 0 .../{plot_simulate.py => plot_05_simulate.py} | 0 poetry.lock | 84 +- pyproject.toml | 1 + 42 files changed, 158 insertions(+), 5222 deletions(-) create mode 100644 docs/_static/custom.js delete mode 100644 docs/tutorials.md delete mode 100644 example/start/inputs/algorithm_settings_calibration.json delete mode 100644 example/start/inputs/algorithm_settings_personalization.json delete mode 100644 example/start/inputs/cofactor.csv delete mode 100644 example/start/inputs/data.csv delete mode 100644 example/start/inputs/data_normalized.csv delete mode 100644 example/start/inputs/data_univariate.csv delete mode 100644 example/start/inputs/simulation_settings.json delete mode 100644 example/start/outputs/logs/parameter_convergence/betas_0.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/betas_1.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/g.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/noise_std.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/sources0.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/sources1.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/sources_mean.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/sources_std.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/tau.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/tau_mean.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/tau_std.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/v0.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/xi.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/xi_mean.csv delete mode 100644 example/start/outputs/logs/parameter_convergence/xi_std.csv delete mode 100644 example/start/outputs/model_parameters.json delete mode 100644 example/start/starter.ipynb rename examples/{plot_quickstart.py => plot_01_quickstart.py} (84%) rename examples/{plot_parkinson_example.py => plot_02_parkinson_example.py} (100%) rename examples/{plot_joint.py => plot_03_joint.py} (100%) rename examples/{plot_mixture.py => plot_04_mixture.py} (100%) rename examples/{plot_simulate.py => plot_05_simulate.py} (100%) diff --git a/Makefile b/Makefile index a6b112019..151a96831 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ clean.doc: @$(RM) -rf site/ @$(RM) -rf docs/_build/ @$(RM) -rf docs/auto_examples/ + @$(RM) -rf docs/sg_execution_times.rst .PHONY: clean.py clean.py: diff --git a/README.md b/README.md index 80ea780ac..41a208504 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ pip install leaspy #### Install in development mode -If you haven't done it already, create and activate a dedicated environment (see the beginning of the installation section). +If you haven't done it already, create and activate a dedicated environment. **Clone the repository** @@ -84,10 +84,8 @@ pre-commit install ### Examples & Tutorials -The `example/start/` folder contains a starting point if you want to launch your first scripts and notebook with the Leaspy package. -You can find additional walkthroughs in: -- this series of [online tutorials](https://disease-progression-modelling.github.io/pages/notebooks/disease_course_mapping/disease_course_mapping.html) from 2020 -- this [Medium post](https://medium.com/@igoroa/analysis-of-longitudinal-data-made-easy-with-leaspy-f8d529fcb5f8) of 2019 (_warning_: the plotter and the individual parameters described there have been deprecated since then) +The `examples` folder contains a starting point if you want to launch your first scripts and notebook with the Leaspy package. + ## Description Leaspy is a software package for the statistical analysis of **longitudinal data**, particularly **medical** data that comes in a form of **repeated observations** of patients at different time-points. @@ -99,7 +97,7 @@ Considering these series of short-term data, the software aims at : - predicting future observations - simulating virtual patients to un-bias the initial cohort or mimics its characteristics -The software package can be used with scalar multivariate data whose progression can be modelled by a logistic shape, an exponential decay or a linear progression. +The software package can be used with scalar multivariate data whose progression can be described by a logistic model, linear, joint or mixture model. The simplest type of data handled by the software are scalar data: they correspond to one (univariate) or multiple (multivariate) measurement(s) per patient observation. This includes, for instance, clinical scores, cognitive assessments, physiological measurements (e.g. blood markers, radioactive markers) but also imaging-derived data that are rescaled, for instance, between 0 and 1 to describe a logistic progression. @@ -113,15 +111,12 @@ This includes, for instance, clinical scores, cognitive assessments, physiologic More detailed explanations about the models themselves and about the estimation procedure can be found in the following articles : - **Mathematical framework**: *A Bayesian mixed-effects model to learn trajectories of changes from repeated manifold-valued observations*. Jean-Baptiste Schiratti, Stéphanie Allassonnière, Olivier Colliot, and Stanley Durrleman. The Journal of Machine Learning Research, 18:1–33, December 2017. [Open Access](https://hal.archives-ouvertes.fr/hal-01540367). -- **Application to imaging data**: *Statistical learning of spatiotemporal patterns from longitudinal manifold-valued networks*. I. Koval, J.-B. Schiratti, A. Routier, M. Bacci, O. Colliot, S. Allassonnière and S. Durrleman. MICCAI, September 2017. [Open Access](https://hal.archives-ouvertes.fr/hal-01540828) -- **Application to imaging data**: *Spatiotemporal Propagation of the Cortical Atrophy: Population and Individual Patterns*. Igor Koval, Jean-Baptiste Schiratti, Alexandre Routier, Michael Bacci, Olivier Colliot, Stéphanie Allassonnière, and Stanley Durrleman. Front Neurol. 2018 May 4;9:235. [Open Access](https://hal.inria.fr/hal-01910400) -- **Application to data with missing values**: *Learning disease progression models with longitudinal data and missing values*. R. Couronne, M. Vidailhet, JC. Corvol, S. Lehéricy, S. Durrleman. ISBI, April 2019. [Open Access](https://hal.archives-ouvertes.fr/hal-02091571) -- **Intensive application for Alzheimer's Disease progression**: *AD Course Map charts Alzheimer's disease progression*, I. Koval, A. Bone, M. Louis, S. Bottani, A. Marcoux, J. Samper-Gonzalez, N. Burgos, B. Charlier, A. Bertrand, S. Epelbaum, O. Colliot, S. Allassonniere & S. Durrleman, Scientific Reports, 2021. 11(1):1-16 [Open Access](https://hal.inria.fr/hal-01964821) +- **Mixture Model**: *A mixture model for subtype identification: Application to CADASIL* Sofia Kaisaridi, Juliette Ortholand, Caglayan Tuna, Nicolas Gensollen, and Sophie Tezenas Du Montcel. ISCB 46-46th Annual Conference of the International Society for Clinical Biostatistics, August 2025. [Open Access](https://hal.science/hal-05266776v1) +- **Joint Model**: *Joint model with latent disease age: overcoming the need for reference time* Juliette Ortholand, Nicolas Gensollen, Stanley Durrleman, Sophie Tezenas du Montcel. arXiv preprint arXiv:2401.17249. 2024 [Open Access](https://arxiv.org/abs/2401.17249) - [www.digital-brain.org](https://www.digital-brain.org): website related to the application of the model for Alzheimer's disease -- [Disease Course Mapping](https://disease-progression-modelling.github.io/pages/models/disease_course_mapping.html) webpage by Igor Koval ## License -The package is distributed under the BSD 3-Clause license. +The package is distributed under the GNU LESSER GENERAL PUBLIC LICENSE. ## Support The development of this software has been supported by the European Union H2020 program (project EuroPOND, grant number 666992, project HBP SGA1 grant number 720270), by the European Research Council (to Stanley Durrleman project LEASP, grant number 678304) and by the ICM Big Brain Theory Program (project DYNAMO). diff --git a/docs/_static/custom.css b/docs/_static/custom.css index f82ebaf39..e5645e0a5 100644 --- a/docs/_static/custom.css +++ b/docs/_static/custom.css @@ -1,3 +1,6 @@ .wy-nav-content { max-width: 96% !important; } +.sphx-glr-thumbcontainer .xref.std.std-ref { + display: none; +} \ No newline at end of file diff --git a/docs/_static/custom.js b/docs/_static/custom.js new file mode 100644 index 000000000..0febaaf58 --- /dev/null +++ b/docs/_static/custom.js @@ -0,0 +1,23 @@ +document.addEventListener("DOMContentLoaded", function() { + // Find all gallery thumbnails + document.querySelectorAll('.sphx-glr-thumbcontainer').forEach(function(el) { + const pyfileSpan = el.querySelector('.xref.std.std-ref'); + if (pyfileSpan) { + let pyfile = pyfileSpan.textContent.trim(); + + // Remove the sphx_glr_auto_examples_ prefix + pyfile = pyfile.replace(/^sphx_glr_auto_examples_/, ''); + + // Replace .py with .html + const htmlFile = pyfile.replace(/\.py$/, '.html'); + + // Attach click event + el.addEventListener('click', function() { + window.location.href = htmlFile; + }); + + // Change cursor to pointer + el.style.cursor = 'pointer'; + } + }); +}); \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 424be9ae6..df984314e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,6 +16,7 @@ from datetime import date import sphinx +from sphinx_gallery.sorting import FileNameSortKey # -- Project information ----------------------------------------------------- @@ -45,7 +46,6 @@ def find_var(varname: str, *py_file_paths): "sphinx.ext.autosummary", "sphinx.ext.intersphinx", "numpydoc", - "sphinx_rtd_theme", "sphinx_gallery.gen_gallery", "myst_nb", "sphinxcontrib.bibtex", @@ -74,10 +74,11 @@ def find_var(varname: str, *py_file_paths): ] sphinx_gallery_conf = { - "examples_dirs": "../examples", # path to your example scripts - "gallery_dirs": "auto_examples", # path to where to save gallery generated output + "examples_dirs": ["../examples"], # path to your example scripts + "gallery_dirs": ["auto_examples"], # path to where to save gallery generated output "notebook_images": "https://leaspy.readthedocs.io/en/stable/_images/", "plot_gallery": True, + "within_subsection_order": FileNameSortKey, } # this is needed for some reason... @@ -140,7 +141,7 @@ def find_var(varname: str, *py_file_paths): # html_theme = 'alabaster' # html_theme = 'sphinx-theme' -html_theme = "sphinx_rtd_theme" +html_theme = "pydata_sphinx_theme" add_function_parentheses = True @@ -151,6 +152,7 @@ def find_var(varname: str, *py_file_paths): html_css_files = [ "custom.css", ] +html_js_files = ["custom.js"] # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/docs/index.md b/docs/index.md index b252bc899..7b4523dbd 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,13 +18,13 @@ Considering these series of short-term data, the software aims at : - Predicting future observations - Simulating virtual patients to un-bias the initial cohort or mimic its characteristics -The software package can be used with scalar multivariate data whose progression can be modelled by a logistic shape, an exponential decay or a linear progression. +The software package can be used with scalar multivariate data whose progression can be described by a logistic model, linear, joint or mixture model. The simplest type of data handled by the software are scalar data: they correspond to one (univariate) or multiple (multivariate) measurement(s) per patient observation. This includes, for instance, clinical scores, cognitive assessments, physiological measurements (e.g. blood markers, radioactive markers) but also imaging-derived data that are rescaled, for instance, between 0 and 1 to describe a logistic progression. #### Getting started -Information to install, test, and contribute to the package are available [here](./nutshell.md). +Information to install, test, and contribute to the package are available [here](./install.md). #### API Documentation @@ -37,28 +37,28 @@ The main documentation. This contains an in-depth description of all algorithms #### License -The package is distributed under the BSD 3-Clause license. +The package is distributed under the GNU LESSER GENERAL PUBLIC LICENSE. ### Further information More detailed explanations about the models themselves and about the estimation procedure can be found in the following articles : -- **Mathematical framework**: *A Bayesian mixed-effects model to learn trajectories of changes from repeated manifold-valued observations.* Jean-Baptiste Schiratti, Stéphanie Allassonnière, Olivier Colliot, and Stanley Durrleman. The Journal of Machine Learning Research, 18:1–33, December 2017. [Open Access](https: //hal.archives-ouvertes.fr/hal-01540367) -- **Application to imaging data**: *Statistical learning of spatiotemporal patterns from longitudinal manifold-valued networks.* I. Koval, J.-B. Schiratti, A. Routier, M. Bacci, O. Colliot, S. Allassonnière and S. Durrleman. MICCAI, September 2017. [Open Access](https://hal.archives-ouvertes.fr/hal-01540828) -- **Application to imaging data**: *Spatiotemporal Propagation of the Cortical Atrophy: Population and Individual Patterns.* Igor Koval, Jean-Baptiste Schiratti, Alexandre Routier, Michael Bacci, Olivier Colliot, Stéphanie Allassonnière, and Stanley Durrleman. Front Neurol. 2018 May 4;9:235. [Open Access](https://hal.inria.fr/hal-01910400) -- **Application to data with missing values**: *Learning disease progression models with longitudinal data and missing values*. R. Couronne, M. Vidailhet, JC. Corvol, S. Lehéricy, S. Durrleman. ISBI, April 2019. [Open Access](https://hal.archives-ouvertes.fr/hal-02091571) -- **Intensive application for Alzheimer's Disease progression**: *AD Course Map charts Alzheimer's disease progression*, I. Koval, A. Bone, M. Louis, S. Bottani, A. Marcoux, J. Samper-Gonzalez, N. Burgos, B. Charlier, A. Bertrand, S. Epelbaum, O. Colliot, S. Allassonniere & S. Durrleman, Scientific Reports, 2021. 11(1):1-16 [Open Access](https://hal.inria.fr/hal-01964821) +- **Mathematical framework**: *A Bayesian mixed-effects model to learn trajectories of changes from repeated manifold-valued observations.* Jean-Baptiste Schiratti, Stéphanie Allassonnière, Olivier Colliot, and Stanley Durrleman. The Journal of Machine Learning Research, 18:1–33, December 2017. [Open Access](https://hal.archives-ouvertes.fr/hal-01540367) +- **Mixture Model**: *A mixture model for subtype identification: Application to CADASIL* Sofia Kaisaridi, Juliette Ortholand, Caglayan Tuna, Nicolas Gensollen, and Sophie Tezenas Du Montcel +ISCB 46-46th Annual Conference of the International Society for Clinical Biostatistics, August 2025. [Open Access](https://hal.science/hal-05266776v1) +- **Joint Model**: *Joint model with latent disease age: overcoming the need for reference time* Juliette Ortholand, Nicolas Gensollen, Stanley Durrleman, Sophie Tezenas du Montcel. arXiv preprint arXiv:2401.17249. 2024 [Open Access](https://arxiv.org/abs/2401.17249) - [www.digital-brain.org](https://project.inria.fr/digitalbrain/) : Website related to the application of the model for Alzheimer's disease. -- [Disease Course Mapping](https://disease-progression-modelling.github.io/pages/models/disease_course_mapping.html) webpage by Igor Koval ```{toctree} + :hidden: :caption: Getting Started :maxdepth: 2 install ``` ```{toctree} +:hidden: :caption: Examples :maxdepth: 2 @@ -67,6 +67,7 @@ auto_examples/index ``` ```{toctree} +:hidden: :caption: Documentation :maxdepth: 3 diff --git a/docs/install.md b/docs/install.md index 1b6b46827..25d2c50ef 100644 --- a/docs/install.md +++ b/docs/install.md @@ -1,7 +1,7 @@ # Installation ```{warning} -Leaspy requires Python >= 3.9, < 3.13. +Leaspy requires Python >= 3.9, <= 3.13. ``` ```{tip} @@ -15,7 +15,7 @@ conda create --name leaspy python=3.10 conda activate leaspy ``` -## Install a released version +## 1. Install a released version To install the latest version of Leaspy: @@ -23,11 +23,11 @@ To install the latest version of Leaspy: pip install leaspy ``` -## Install in development mode +## 2. Install in development mode -If you haven't done it already, create and activate a dedicated environment (see the beginning of the installation section). +If you haven't done it already, create and activate a dedicated environment. -### Clone the repository +### 2.1 Clone the repository To install the project in development mode, you first need to get the source code by cloning the project's repository: @@ -36,7 +36,7 @@ git clone git@gitlab.com:icm-institute/aramislab/leaspy.git cd leaspy ``` -### Install poetry +### 2.2 Install poetry This project relies on [poetry](https://python-poetry.org) that you would need to install (see the [official instructions](https://python-poetry.org/docs/#installation)). @@ -54,7 +54,7 @@ pipx ensurepath pipx install poetry ``` -### Install Leaspy and its dependencies +### 2.3 Install Leaspy and its dependencies Install leaspy in development mode: @@ -62,7 +62,7 @@ Install leaspy in development mode: poetry install ``` -### Install the pre-commit hook +### 2.4 Install the pre-commit hook Once you have installed Leaspy in development mode, do not forget to install the [pre-commit](https://pre-commit.com) hook in order to automatically format and lint your commits: @@ -71,9 +71,9 @@ pipx install pre-commit pre-commit install ``` -## Notebook configuration +## 3. Notebook configuration -After installation, you can run the examples [here](./nutshell.md). +After installation, you can run the examples in the next section. To do so, in your ``leaspy`` environment, you can download ``ipykernel`` to use ``leaspy`` with ``jupyter`` notebooks: diff --git a/docs/sg_execution_times.rst b/docs/sg_execution_times.rst index bf1e2eadc..23ad02ae1 100644 --- a/docs/sg_execution_times.rst +++ b/docs/sg_execution_times.rst @@ -6,7 +6,7 @@ Computation times ================= -**00:30.526** total execution time for 4 files **from all galleries**: +**00:36.810** total execution time for 5 files **from all galleries**: .. container:: @@ -32,15 +32,18 @@ Computation times * - Example - Time - Mem (MB) - * - :ref:`sphx_glr_auto_examples_plot_quickstart.py` (``../examples/plot_quickstart.py``) - - 00:20.482 + * - :ref:`sphx_glr_auto_examples_plot_01_quickstart.py` (``../examples/plot_01_quickstart.py``) + - 00:20.917 - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_parkinson_example.py` (``../examples/plot_parkinson_example.py``) - - 00:04.638 + * - :ref:`sphx_glr_auto_examples_plot_05_simulate.py` (``../examples/plot_05_simulate.py``) + - 00:05.703 - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_mixture.py` (``../examples/plot_mixture.py``) - - 00:02.755 + * - :ref:`sphx_glr_auto_examples_plot_04_mixture.py` (``../examples/plot_04_mixture.py``) + - 00:04.900 - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_simulate.py` (``../examples/plot_simulate.py``) - - 00:02.651 + * - :ref:`sphx_glr_auto_examples_plot_02_parkinson_example.py` (``../examples/plot_02_parkinson_example.py``) + - 00:04.716 + - 0.0 + * - :ref:`sphx_glr_auto_examples_plot_03_joint.py` (``../examples/plot_03_joint.py``) + - 00:00.574 - 0.0 diff --git a/docs/tutorials.md b/docs/tutorials.md deleted file mode 100644 index b53c79f6b..000000000 --- a/docs/tutorials.md +++ /dev/null @@ -1,5 +0,0 @@ -# Link to Jupyter Notebook Tutorial - -The [Disease Progression Modelling](https://disease-progression-modelling.github.io/) website hosts [tutorials](https://disease-progression-modelling.github.io/pages/notebooks/disease_course_mapping/disease_course_mapping.html) for Leaspy. - -*NOTE: do we reallly need to separate Tuto 2 and 3?"* diff --git a/docs/user_guide.md b/docs/user_guide.md index 64efc1028..9a917543a 100644 --- a/docs/user_guide.md +++ b/docs/user_guide.md @@ -13,6 +13,5 @@ mathematics models algorithms models_evaluation -tutorials to_go_further ``` diff --git a/example/start/inputs/algorithm_settings_calibration.json b/example/start/inputs/algorithm_settings_calibration.json deleted file mode 100644 index 6611ffd18..000000000 --- a/example/start/inputs/algorithm_settings_calibration.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "mcmc_saem", - "seed": 0, - "algorithm_initialization_method": null, - "model_initialization_method": "default", - "device": "cpu", - "parameters": { - "progress_bar": true, - "n_iter": 3000, - "n_burn_in_iter": null, - "n_burn_in_iter_frac": 0.9, - "burn_in_step_power": 0.8, - "random_order_variables": true, - "sampler_ind": "Gibbs", - "sampler_ind_params": { - "acceptation_history_length": 25, - "mean_acceptation_rate_target_bounds": [0.2, 0.4], - "adaptive_std_factor": 0.1 - }, - "sampler_pop": "Gibbs", - "sampler_pop_params": { - "random_order_dimension": true, - "acceptation_history_length": 25, - "mean_acceptation_rate_target_bounds": [0.2, 0.4], - "adaptive_std_factor": 0.1 - }, - "annealing": { - "do_annealing": false, - "initial_temperature": 100, - "n_plateau": 10, - "n_iter": null, - "n_iter_frac": 0.5 - } - } -} diff --git a/example/start/inputs/algorithm_settings_personalization.json b/example/start/inputs/algorithm_settings_personalization.json deleted file mode 100644 index 20394fcaa..000000000 --- a/example/start/inputs/algorithm_settings_personalization.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "scipy_minimize", - "seed": 0, - "parameters": { - "progress_bar": true, - "use_jacobian": true, - "n_jobs": 1 - } -} diff --git a/example/start/inputs/cofactor.csv b/example/start/inputs/cofactor.csv deleted file mode 100644 index 8667e20d0..000000000 --- a/example/start/inputs/cofactor.csv +++ /dev/null @@ -1,249 +0,0 @@ -ID,Cofactor 1 -132-S2-0,1 -184-S2-0,1 -238-S2-1,1 -256-S2-0,1 -300-S2-0,1 -350-S2-1,1 -492-S2-0,1 -514-S2-1,1 -654-S2-1,1 -796-S2-0,1 -992-S2-0,1 -1014-S2-1,1 -1152-S2-0,1 -1188-S2-0,1 -1246-S2-1,1 -1296-S2-0,1 -1318-S2-1,1 -1500-S2-0,1 -1504-S2-0,0 -1634-S2-1,1 -1716-S2-0,1 -1728-S2-0,1 -1738-S2-1,1 -1750-S2-1,1 -1878-S2-1,0 -1964-S2-0,1 -1968-S2-0,1 -1980-S2-0,1 -1990-S2-1,1 -1992-S2-0,1 -2004-S2-0,1 -2044-S2-0,1 -2048-S2-0,1 -2144-S2-0,1 -2162-S2-1,1 -2210-S2-1,1 -2272-S2-0,1 -2274-S2-1,1 -2336-S2-0,1 -2438-S2-1,1 -2500-S2-0,1 -2656-S2-0,1 -2716-S2-0,1 -2728-S2-0,1 -2734-S2-1,1 -2738-S2-1,1 -114-S2-1,1 -200-S2-0,1 -902-S2-1,1 -910-S2-1,1 -1258-S2-1,1 -1330-S2-1,1 -1392-S2-0,1 -1440-S2-0,1 -2136-S2-0,1 -2392-S2-0,1 -2420-S2-0,1 -2660-S2-0,1 -2736-S2-0,1 -3904-S2-0,1 -3952-S2-0,0 -3954-S2-1,1 -3962-S2-1,1 -3972-S2-0,1 -3974-S2-1,1 -3984-S2-0,1 -3986-S2-1,1 -3990-S2-1,1 -4004-S2-0,1 -4010-S2-1,1 -4016-S2-0,1 -4020-S2-0,1 -4022-S2-1,1 -4026-S2-1,0 -4036-S2-0,1 -4044-S2-0,1 -4046-S2-1,1 -4048-S2-0,1 -4054-S2-1,1 -4058-S2-1,1 -4066-S2-1,1 -4074-S2-1,1 -4086-S2-1,1 -4098-S2-1,1 -4100-S2-0,1 -4118-S2-1,1 -4132-S2-0,1 -4138-S2-1,1 -4142-S2-1,1 -4146-S2-1,1 -4148-S2-0,1 -4150-S2-1,1 -4160-S2-0,1 -4166-S2-1,1 -4184-S2-0,1 -4196-S2-0,1 -4202-S2-1,1 -4206-S2-1,0 -4210-S2-1,1 -4228-S2-0,1 -4234-S2-1,0 -4236-S2-0,1 -4242-S2-1,1 -4260-S2-0,1 -4264-S2-0,0 -4266-S2-1,1 -4268-S2-0,1 -4270-S2-1,1 -4274-S2-1,1 -4280-S2-0,1 -4282-S2-1,1 -4286-S2-1,1 -4290-S2-1,1 -4292-S2-0,1 -4300-S2-0,1 -4310-S2-1,1 -4316-S2-0,1 -4320-S2-0,0 -4326-S2-1,1 -4338-S2-1,1 -4340-S2-0,1 -4350-S2-1,0 -4376-S2-0,1 -4378-S2-1,0 -4380-S2-0,1 -4390-S2-1,1 -4394-S2-1,1 -4398-S2-1,1 -4428-S2-0,1 -4448-S2-0,1 -4508-S2-0,1 -4514-S2-1,1 -4516-S2-0,1 -4530-S2-1,1 -4548-S2-0,1 -4564-S2-0,1 -4566-S2-1,0 -4572-S2-0,1 -4594-S2-1,0 -4614-S2-1,1 -4620-S2-0,1 -4626-S2-1,1 -4634-S2-1,1 -4646-S2-1,1 -4648-S2-0,1 -4652-S2-0,1 -4656-S2-0,1 -4658-S2-1,1 -4660-S2-0,1 -4678-S2-1,1 -4680-S2-0,1 -4682-S2-1,1 -4684-S2-0,1 -4688-S2-0,1 -4690-S2-1,1 -4692-S2-0,1 -4706-S2-1,1 -4710-S2-1,1 -4714-S2-1,1 -7908-S2-0,1 -7914-S2-1,1 -7924-S2-0,1 -7944-S2-0,1 -7958-S2-1,0 -7960-S2-0,1 -7968-S2-0,1 -7972-S2-0,1 -8002-S2-1,1 -8006-S2-1,1 -8018-S2-1,1 -8022-S2-1,1 -8026-S2-1,1 -8044-S2-0,1 -8046-S2-1,1 -8054-S2-1,1 -8130-S2-1,1 -8144-S2-0,1 -8154-S2-1,1 -8156-S2-0,1 -8166-S2-1,1 -8168-S2-0,1 -8176-S2-0,1 -8186-S2-1,1 -8192-S2-0,1 -8198-S2-1,1 -8214-S2-1,1 -8218-S2-1,1 -8220-S2-0,1 -8236-S2-0,0 -8238-S2-1,1 -8240-S2-0,1 -8250-S2-1,1 -8268-S2-0,1 -8270-S2-1,1 -8274-S2-1,1 -8276-S2-0,1 -8288-S2-0,1 -8294-S2-1,1 -8298-S2-1,1 -8304-S2-0,1 -8310-S2-1,1 -8312-S2-0,1 -8320-S2-0,1 -8328-S2-0,1 -8332-S2-0,1 -8334-S2-1,0 -8338-S2-1,1 -8340-S2-0,1 -8352-S2-0,0 -8358-S2-1,1 -8364-S2-0,1 -8370-S2-1,1 -8374-S2-1,1 -8382-S2-1,1 -8388-S2-0,1 -8390-S2-1,1 -8412-S2-0,0 -8418-S2-1,1 -8442-S2-1,1 -8444-S2-0,1 -8462-S2-1,1 -8470-S2-1,1 -8474-S2-1,1 -8488-S2-0,1 -8498-S2-1,1 -8500-S2-0,1 -8502-S2-1,1 -8504-S2-0,1 -8518-S2-1,1 -8522-S2-1,0 -8524-S2-0,1 -8554-S2-1,1 -8556-S2-0,1 -8562-S2-1,1 -8592-S2-0,1 -8608-S2-0,1 -8612-S2-0,1 -8618-S2-1,1 -8620-S2-0,1 -8626-S2-1,1 -8654-S2-1,1 -8662-S2-1,1 -8666-S2-1,1 -8680-S2-0,1 -8684-S2-0,1 -8688-S2-0,1 -8690-S2-1,1 -8708-S2-0,1 diff --git a/example/start/inputs/data.csv b/example/start/inputs/data.csv deleted file mode 100644 index 3067b132d..000000000 --- a/example/start/inputs/data.csv +++ /dev/null @@ -1,1488 +0,0 @@ -ID,TIME,Feature 1,Feature 2,Feature 3,Feature 4 -132-S2-0,81.661,0.44444,4.0,1.0,60.0 -132-S2-0,82.13600000000001,0.6,0.0,1.0,54.0 -132-S2-0,82.682,0.39267,4.0,1.0,54.0 -132-S2-0,83.139,0.58511,0.0,1.0,60.0 -132-S2-0,83.691,0.57044,0.0,1.0,60.0 -132-S2-0,84.655,0.55556,20.0,0.9,54.0 -132-S2-0,85.691,0.71844,20.0,0.9,42.0 -132-S2-0,86.663,0.71111,32.0,0.8,42.0 -132-S2-0,87.639,0.91111,52.0,0.4,30.0 -184-S2-0,80.994,0.326,0.0,1.0,60.0 -184-S2-0,81.47199999999998,0.35556,0.0,1.0,60.0 -184-S2-0,82.08800000000001,0.4,0.0,1.0,60.0 -184-S2-0,82.488,0.31111,0.0,1.0,60.0 -184-S2-0,83.029,0.53333,0.0,1.0,60.0 -184-S2-0,84.036,0.49622,0.0,1.0,60.0 -184-S2-0,85.039,0.4295600000000001,0.0,1.0,60.0 -184-S2-0,86.01299999999998,0.62222,4.0,1.0,60.0 -184-S2-0,86.97500000000001,0.64444,0.0,1.0,60.0 -184-S2-0,88.12200000000003,0.77778,8.0,0.9,54.0 -184-S2-0,88.977,0.77778,12.0,1.0,60.0 -238-S2-1,80.994,0.326,0.0,1.0,60.0 -238-S2-1,81.47199999999998,0.35556,0.0,1.0,60.0 -238-S2-1,82.08800000000001,0.4,0.0,1.0,60.0 -238-S2-1,82.488,0.31111,0.0,1.0,60.0 -238-S2-1,83.029,0.53333,0.0,1.0,60.0 -238-S2-1,84.036,0.49622,0.0,1.0,60.0 -238-S2-1,85.039,0.4295600000000001,0.0,1.0,60.0 -256-S2-0,68.46100000000001,0.40733,0.0,0.9,60.0 -256-S2-0,68.994,0.29622,0.0,0.8,60.0 -256-S2-0,69.50800000000001,0.49622,0.0,0.9,60.0 -256-S2-0,69.98,0.4,0.0,0.9,60.0 -256-S2-0,70.50500000000001,0.46667,8.0,0.9,60.0 -256-S2-0,71.427,0.48889,0.0,0.8,60.0 -256-S2-0,72.782,0.526,0.0,0.8,60.0 -256-S2-0,73.58500000000001,0.55556,0.0,0.8,54.0 -256-S2-0,74.563,0.6,0.0,0.9,48.0 -256-S2-0,75.574,0.73333,0.0,0.8,48.0 -300-S2-0,86.949,0.40733,0.0,1.0,60.0 -300-S2-0,87.405,0.45933,0.0,0.9,54.0 -300-S2-0,87.95200000000003,0.4,0.0,1.0,60.0 -300-S2-0,88.38000000000001,0.5111100000000001,0.0,1.0,60.0 -300-S2-0,88.927,0.526,0.0,0.9,60.0 -300-S2-0,89.964,0.48889,4.0,1.0,60.0 -300-S2-0,90.98,0.66667,0.0,0.9,54.0 -300-S2-0,91.95200000000003,0.71111,0.0,1.0,54.0 -300-S2-0,93.177,0.68889,8.0,0.9,48.0 -350-S2-1,83.069,0.36289,4.0,0.9,42.0 -350-S2-1,83.563,0.30378,4.0,0.9,54.0 -350-S2-1,84.083,0.4371100000000001,4.0,0.9,60.0 -350-S2-1,84.699,0.526,4.0,1.0,60.0 -350-S2-1,85.09100000000001,0.49622,8.0,1.0,60.0 -350-S2-1,86.46600000000001,0.46667,12.0,1.0,60.0 -350-S2-1,87.65200000000002,0.77778,16.0,0.9,30.0 -350-S2-1,89.04700000000003,0.8,24.0,0.9,54.0 -350-S2-1,90.19600000000003,0.8222200000000001,36.0,0.6,30.0 -350-S2-1,91.096,0.86667,64.0,0.30000000000000004,36.0 -492-S2-0,73.544,0.46667,8.0,0.9,48.0 -492-S2-0,74.042,0.60733,4.0,0.9,54.0 -492-S2-0,74.539,0.42222,0.0,1.0,60.0 -492-S2-0,75.055,0.55556,8.0,0.9,54.0 -492-S2-0,75.55,0.5482199999999999,0.0,0.9,54.0 -492-S2-0,76.535,0.69622,16.0,0.9,54.0 -492-S2-0,77.58800000000001,0.71111,4.0,0.9,48.0 -492-S2-0,78.569,0.75556,28.000000000000004,0.6,36.0 -492-S2-0,79.49899999999998,0.95556,28.000000000000004,0.4,30.0 -514-S2-1,74.277,0.21489,0.0,1.0,60.0 -514-S2-1,74.782,0.31111,0.0,1.0,60.0 -514-S2-1,75.277,0.2,0.0,1.0,60.0 -514-S2-1,75.794,0.45178,0.0,1.0,60.0 -514-S2-1,76.233,0.30378,0.0,1.0,60.0 -514-S2-1,77.279,0.326,0.0,1.0,48.0 -514-S2-1,79.349,0.33333,0.0,1.0,60.0 -514-S2-1,80.271,0.31111,0.0,1.0,60.0 -514-S2-1,81.286,0.31111,0.0,1.0,60.0 -514-S2-1,82.308,0.37778,0.0,1.0,60.0 -654-S2-1,69.039,0.22222,0.0,1.0,54.0 -654-S2-1,69.529,0.24444,4.0,1.0,48.0 -654-S2-1,70.047,0.25178,0.0,1.0,54.0 -654-S2-1,70.547,0.48156,0.0,1.0,54.0 -654-S2-1,71.013,0.35556,0.0,1.0,54.0 -654-S2-1,72.047,0.4371100000000001,0.0,1.0,48.0 -654-S2-1,73.074,0.36289,0.0,1.0,60.0 -654-S2-1,74.032,0.5777800000000001,4.0,1.0,54.0 -654-S2-1,75.066,0.44444,0.0,1.0,48.0 -654-S2-1,76.116,0.46667,4.0,1.0,48.0 -796-S2-0,71.116,0.326,4.0,0.9,48.0 -796-S2-0,71.613,0.24444,4.0,0.9,42.0 -796-S2-0,72.09100000000001,0.28889000000000004,4.0,0.9,48.0 -796-S2-0,72.619,0.25178,8.0,1.0,48.0 -796-S2-0,73.122,0.37044,8.0,0.9,48.0 -796-S2-0,74.113,0.41489,8.0,0.8,48.0 -796-S2-0,75.147,0.37778,24.0,0.9,42.0 -796-S2-0,76.171,0.53333,32.0,0.8,42.0 -796-S2-0,77.144,0.75556,60.0,0.4,30.0 -992-S2-0,79.813,0.59267,4.0,0.9,54.0 -992-S2-0,80.292,0.48156,12.0,1.0,54.0 -992-S2-0,80.889,0.62222,16.0,0.9,60.0 -992-S2-0,81.38300000000001,0.65178,0.0,1.0,54.0 -992-S2-0,81.792,0.62222,0.0,1.0,60.0 -992-S2-0,82.808,0.51844,4.0,1.0,54.0 -992-S2-0,83.83800000000001,0.6,4.0,0.9,54.0 -992-S2-0,84.83500000000001,0.62222,0.0,0.9,54.0 -992-S2-0,85.866,0.6,20.0,0.9,54.0 -992-S2-0,86.86799999999998,0.75556,20.0,1.0,54.0 -1014-S2-1,73.83800000000001,0.2,0.0,1.0,60.0 -1014-S2-1,74.333,0.13333,4.0,1.0,60.0 -1014-S2-1,74.76,0.28156,0.0,0.9,60.0 -1014-S2-1,75.349,0.25178,0.0,1.0,60.0 -1014-S2-1,75.824,0.20733,0.0,1.0,60.0 -1014-S2-1,76.86800000000001,0.36289,0.0,1.0,60.0 -1014-S2-1,77.902,0.35556,0.0,1.0,60.0 -1014-S2-1,78.83500000000001,0.37778,0.0,1.0,60.0 -1152-S2-0,85.58,0.38511,0.0,1.0,42.0 -1152-S2-0,86.074,0.326,0.0,1.0,48.0 -1152-S2-0,86.574,0.41489,0.0,1.0,54.0 -1152-S2-0,87.083,0.34822,0.0,1.0,54.0 -1152-S2-0,87.58500000000001,0.4371100000000001,0.0,1.0,48.0 -1152-S2-0,88.62200000000003,0.41489,0.0,1.0,54.0 -1152-S2-0,89.555,0.326,0.0,0.9,48.0 -1152-S2-0,90.58,0.46667,8.0,1.0,42.0 -1152-S2-0,91.529,0.55556,16.0,0.9,36.0 -1152-S2-0,92.544,0.46667,4.0,0.9,42.0 -1188-S2-0,84.083,0.33333,8.0,0.9,60.0 -1188-S2-0,84.577,0.21489,0.0,0.9,60.0 -1188-S2-0,85.074,0.37044,0.0,1.0,54.0 -1188-S2-0,85.613,0.4,4.0,0.9,54.0 -1188-S2-0,86.09100000000001,0.38511,0.0,0.9,60.0 -1188-S2-0,87.08799999999998,0.35556,0.0,0.9,54.0 -1188-S2-0,88.25500000000001,0.44444,0.0,0.9,60.0 -1188-S2-0,89.08,0.48889,0.0,0.9,48.0 -1188-S2-0,90.155,0.46667,0.0,0.9,54.0 -1246-S2-1,82.214,0.28156,0.0,1.0,54.0 -1246-S2-1,82.73,0.5111100000000001,0.0,0.9,48.0 -1246-S2-1,83.22199999999998,0.35556,0.0,0.9,54.0 -1246-S2-1,83.727,0.39267,0.0,0.9,48.0 -1246-S2-1,84.22500000000001,0.34822,4.0,0.9,48.0 -1246-S2-1,85.193,0.31111,0.0,0.9,42.0 -1246-S2-1,86.46600000000001,0.37778,4.0,0.9,36.0 -1246-S2-1,87.46600000000001,0.37778,12.0,0.9,36.0 -1246-S2-1,88.458,0.46667,8.0,0.9,36.0 -1246-S2-1,89.47500000000001,0.53333,16.0,0.9,42.0 -1296-S2-0,79.308,0.4,4.0,0.9,48.0 -1296-S2-0,79.943,0.674,8.0,0.8,48.0 -1296-S2-0,80.33,0.6148899999999999,0.0,0.9,48.0 -1296-S2-0,80.816,0.726,4.0,0.8,36.0 -1296-S2-0,81.36800000000001,0.726,8.0,1.0,42.0 -1296-S2-0,82.59100000000001,0.8295600000000001,8.0,0.8,42.0 -1296-S2-0,83.55300000000003,0.91111,36.0,0.8,30.0 -1318-S2-1,75.542,0.326,0.0,1.0,48.0 -1318-S2-1,76.22500000000001,0.34067,0.0,1.0,54.0 -1318-S2-1,76.572,0.37778,0.0,1.0,54.0 -1318-S2-1,77.22199999999998,0.35556,0.0,1.0,60.0 -1318-S2-1,77.55,0.44444,0.0,1.0,54.0 -1318-S2-1,78.547,0.4371100000000001,0.0,0.9,54.0 -1318-S2-1,79.50199999999998,0.4,0.0,1.0,54.0 -1318-S2-1,80.555,0.37778,0.0,1.0,54.0 -1318-S2-1,81.613,0.42222,0.0,1.0,48.0 -1500-S2-0,73.00500000000001,0.54067,4.0,0.9,54.0 -1500-S2-0,73.453,0.60733,4.0,1.0,54.0 -1500-S2-0,73.943,0.49622,8.0,0.9,54.0 -1500-S2-0,74.419,0.5111100000000001,36.0,1.0,42.0 -1500-S2-0,75.421,0.53333,52.0,0.8,30.0 -1500-S2-0,76.438,0.62222,72.0,0.5,30.0 -1500-S2-0,77.51,1.0,92.0,0.0,30.0 -1500-S2-0,78.491,1.0,96.0,0.0,30.0 -1504-S2-0,64.372,0.526,0.0,1.0,54.0 -1504-S2-0,64.919,0.41489,0.0,1.0,54.0 -1504-S2-0,65.369,0.44444,0.0,1.0,60.0 -1504-S2-0,65.908,0.6,0.0,1.0,54.0 -1504-S2-0,66.547,0.474,4.0,1.0,54.0 -1504-S2-0,67.84100000000001,0.49622,4.0,0.9,60.0 -1504-S2-0,69.352,0.66667,0.0,0.9,48.0 -1504-S2-0,70.38600000000001,0.68889,12.0,0.8,48.0 -1504-S2-0,71.44600000000001,0.68889,4.0,0.5,36.0 -1634-S2-1,77.688,0.41489,12.0,0.9,54.0 -1634-S2-1,78.205,0.48889,4.0,0.9,48.0 -1634-S2-1,78.66600000000003,0.526,16.0,0.8,54.0 -1634-S2-1,79.21899999999998,0.6,4.0,0.7,48.0 -1634-S2-1,79.68,0.65933,16.0,0.8,48.0 -1634-S2-1,80.68,0.68156,16.0,0.8,48.0 -1634-S2-1,81.83,0.75556,80.0,0.5,30.0 -1716-S2-0,88.42399999999998,0.28156,0.0,0.9,54.0 -1716-S2-0,88.927,0.22222,0.0,1.0,54.0 -1716-S2-0,89.63600000000001,0.37044,0.0,1.0,54.0 -1716-S2-0,89.938,0.29622,0.0,1.0,48.0 -1716-S2-0,90.421,0.37778,0.0,1.0,48.0 -1716-S2-0,91.45299999999999,0.34067,0.0,1.0,48.0 -1716-S2-0,92.45299999999999,0.33333,4.0,1.0,42.0 -1716-S2-0,93.441,0.5777800000000001,4.0,0.9,36.0 -1716-S2-0,95.074,0.55556,16.0,0.8,36.0 -1728-S2-0,68.539,0.30378,0.0,0.9,60.0 -1728-S2-0,69.096,0.31111,0.0,0.9,48.0 -1728-S2-0,69.63300000000001,0.41489,4.0,0.9,54.0 -1728-S2-0,70.128,0.44444,0.0,0.9,60.0 -1728-S2-0,70.613,0.30378,0.0,0.9,54.0 -1728-S2-0,71.569,0.4,4.0,0.9,54.0 -1728-S2-0,72.51,0.48889,16.0,0.9,48.0 -1728-S2-0,73.539,0.5777800000000001,16.0,0.9,54.0 -1728-S2-0,74.555,0.64444,24.0,0.9,60.0 -1728-S2-0,75.555,0.71111,20.0,0.9,54.0 -1738-S2-1,74.171,0.35556,4.0,0.9,60.0 -1738-S2-1,74.705,0.37778,8.0,1.0,60.0 -1738-S2-1,75.161,0.31111,4.0,1.0,60.0 -1738-S2-1,75.68,0.37044,4.0,1.0,60.0 -1738-S2-1,76.182,0.30378,4.0,0.9,60.0 -1738-S2-1,77.171,0.36289,16.0,1.0,60.0 -1738-S2-1,78.177,0.44444,4.0,0.9,54.0 -1738-S2-1,79.17399999999998,0.4,12.0,1.0,60.0 -1750-S2-1,82.432,0.44444,4.0,0.9,54.0 -1750-S2-1,83.096,0.48156,12.0,0.9,48.0 -1750-S2-1,83.41600000000003,0.50378,16.0,0.9,54.0 -1750-S2-1,83.96600000000001,0.58511,16.0,0.8,48.0 -1750-S2-1,86.663,0.66667,40.0,0.8,36.0 -1878-S2-1,67.244,0.37778,0.0,0.9,60.0 -1878-S2-1,67.766,0.57044,0.0,0.9,54.0 -1878-S2-1,68.76,0.60733,0.0,0.9,54.0 -1878-S2-1,69.313,0.5111100000000001,16.0,0.9,54.0 -1878-S2-1,70.305,0.59267,12.0,0.8,54.0 -1878-S2-1,71.268,0.73333,28.000000000000004,0.7,48.0 -1964-S2-0,76.152,0.58511,0.0,0.9,60.0 -1964-S2-0,76.65,0.54067,0.0,0.9,60.0 -1964-S2-0,77.16300000000003,0.48889,0.0,0.9,60.0 -1964-S2-0,77.702,0.58511,0.0,0.9,60.0 -1964-S2-0,78.158,0.57044,0.0,0.9,60.0 -1964-S2-0,79.122,0.57044,4.0,0.9,60.0 -1964-S2-0,80.13000000000001,0.55556,0.0,0.8,54.0 -1964-S2-0,81.147,0.68889,8.0,0.9,54.0 -1964-S2-0,82.169,0.62222,4.0,0.8,48.0 -1968-S2-0,86.316,0.50378,4.0,1.0,54.0 -1968-S2-0,86.803,0.49622,0.0,0.9,48.0 -1968-S2-0,87.33500000000001,0.62222,4.0,0.9,48.0 -1968-S2-0,87.803,0.74822,0.0,0.7,54.0 -1968-S2-0,88.32700000000003,0.65933,0.0,0.8,54.0 -1968-S2-0,90.311,0.64444,4.0,0.6,48.0 -1968-S2-0,91.289,0.84444,8.0,0.8,42.0 -1968-S2-0,92.279,0.8222200000000001,8.0,0.7,42.0 -1980-S2-0,81.405,0.4295600000000001,4.0,0.8,48.0 -1980-S2-0,81.92399999999998,0.41489,8.0,0.7,48.0 -1980-S2-0,82.4,0.57044,4.0,0.8,54.0 -1980-S2-0,82.891,0.57044,0.0,0.9,54.0 -1980-S2-0,83.435,0.65933,4.0,0.9,36.0 -1980-S2-0,84.432,0.5777800000000001,0.0,0.9,48.0 -1980-S2-0,85.455,0.68889,12.0,0.9,48.0 -1990-S2-1,75.75199999999998,0.4295600000000001,4.0,0.9,54.0 -1990-S2-1,76.24899999999998,0.38511,4.0,0.8,54.0 -1990-S2-1,76.74899999999998,0.34822,12.0,0.9,60.0 -1990-S2-1,77.26,0.45178,8.0,0.9,54.0 -1990-S2-1,77.846,0.526,4.0,0.8,54.0 -1990-S2-1,78.84100000000001,0.6371100000000001,20.0,0.8,60.0 -1990-S2-1,79.83500000000001,0.8222200000000001,20.0,0.7,48.0 -1992-S2-0,77.044,0.56289,8.0,0.9,48.0 -1992-S2-0,77.524,0.55556,0.0,0.7,54.0 -1992-S2-0,78.039,0.45178,0.0,0.9,54.0 -1992-S2-0,78.521,0.66667,8.0,0.8,48.0 -1992-S2-0,80.08500000000001,0.8,24.0,0.6,48.0 -1992-S2-0,81.018,0.84444,48.0,0.30000000000000004,36.0 -1992-S2-0,82.039,0.97778,80.0,0.0,30.0 -1992-S2-0,83.096,1.0,80.0,0.09999999999999998,30.0 -1992-S2-0,83.997,1.0,96.0,0.0,30.0 -2004-S2-0,68.647,0.33333,0.0,0.9,60.0 -2004-S2-0,69.141,0.51844,0.0,0.9,60.0 -2004-S2-0,69.644,0.4295600000000001,0.0,0.9,60.0 -2004-S2-0,70.139,0.4371100000000001,0.0,0.9,60.0 -2004-S2-0,70.641,0.42222,0.0,1.0,60.0 -2004-S2-0,71.622,0.5482199999999999,0.0,0.9,60.0 -2004-S2-0,72.652,0.5111100000000001,0.0,0.8,60.0 -2004-S2-0,73.65,0.62222,0.0,0.6,54.0 -2004-S2-0,74.628,0.64444,28.000000000000004,0.5,48.0 -2004-S2-0,75.641,0.86667,44.0,0.4,30.0 -2044-S2-0,71.486,0.56289,4.0,0.9,48.0 -2044-S2-0,71.98,0.54067,0.0,0.9,48.0 -2044-S2-0,72.483,0.53333,0.0,0.9,54.0 -2044-S2-0,72.972,0.60733,4.0,0.9,54.0 -2044-S2-0,73.47500000000001,0.41489,0.0,0.9,48.0 -2044-S2-0,74.497,0.58511,0.0,0.9,48.0 -2044-S2-0,75.491,0.66667,4.0,0.9,54.0 -2044-S2-0,76.50199999999998,0.6,8.0,0.9,42.0 -2044-S2-0,77.48,0.6,0.0,0.8,42.0 -2044-S2-0,78.497,0.8222200000000001,16.0,0.6,36.0 -2048-S2-0,75.72199999999998,0.42222,0.0,0.8,54.0 -2048-S2-0,76.308,0.51844,0.0,0.8,48.0 -2048-S2-0,76.744,0.34822,4.0,0.8,48.0 -2048-S2-0,77.22199999999998,0.5777800000000001,0.0,0.8,60.0 -2048-S2-0,77.76,0.51844,4.0,0.9,54.0 -2048-S2-0,78.75199999999998,0.49622,8.0,0.8,54.0 -2048-S2-0,79.811,0.66667,0.0,0.8,48.0 -2144-S2-0,85.11,0.48889,0.0,0.9,54.0 -2144-S2-0,85.59100000000001,0.57044,0.0,1.0,54.0 -2144-S2-0,86.11799999999998,0.54067,4.0,1.0,60.0 -2144-S2-0,86.65,0.5111100000000001,4.0,0.9,54.0 -2144-S2-0,87.147,0.55556,0.0,0.9,54.0 -2144-S2-0,89.241,0.64444,4.0,0.8,54.0 -2144-S2-0,90.13299999999998,0.75556,16.0,0.7,54.0 -2144-S2-0,90.74700000000003,0.8,8.0,0.8,54.0 -2162-S2-1,80.208,0.33333,4.0,1.0,54.0 -2162-S2-1,80.671,0.48156,0.0,1.0,54.0 -2162-S2-1,81.203,0.474,0.0,0.9,54.0 -2162-S2-1,81.705,0.4295600000000001,0.0,1.0,54.0 -2162-S2-1,82.21100000000003,0.45933,0.0,1.0,54.0 -2162-S2-1,83.208,0.526,0.0,0.9,48.0 -2162-S2-1,84.203,0.5111100000000001,0.0,0.8,42.0 -2210-S2-1,76.539,0.37044,0.0,0.9,54.0 -2210-S2-1,77.047,0.326,4.0,0.9,54.0 -2210-S2-1,77.613,0.28156,4.0,0.9,54.0 -2210-S2-1,78.032,0.4371100000000001,8.0,0.9,54.0 -2210-S2-1,78.65,0.42222,0.0,0.9,54.0 -2210-S2-1,79.51,0.474,0.0,0.9,54.0 -2210-S2-1,80.563,0.44444,0.0,0.8,54.0 -2210-S2-1,81.55300000000003,0.5777800000000001,4.0,0.9,54.0 -2210-S2-1,82.569,0.64444,8.0,0.9,48.0 -2272-S2-0,58.550000000000004,0.22956,0.0,0.9,60.0 -2272-S2-0,59.044000000000004,0.38511,0.0,0.9,54.0 -2272-S2-0,59.547000000000004,0.39267,0.0,0.9,60.0 -2272-S2-0,60.039,0.44444,0.0,0.9,54.0 -2272-S2-0,60.544000000000004,0.4,0.0,0.9,60.0 -2272-S2-0,61.536000000000016,0.37778,0.0,0.9,60.0 -2272-S2-0,62.558,0.64444,0.0,0.9,42.0 -2272-S2-0,63.547000000000004,0.73333,0.0,0.9,48.0 -2272-S2-0,64.491,0.73333,0.0,0.9,48.0 -2272-S2-0,65.542,0.75556,0.0,0.8,48.0 -2274-S2-1,83.878,0.46667,0.0,1.0,48.0 -2274-S2-1,84.355,0.5777800000000001,4.0,1.0,54.0 -2274-S2-1,84.932,0.55556,0.0,1.0,48.0 -2274-S2-1,85.408,0.66667,0.0,1.0,36.0 -2274-S2-1,85.93,0.62956,0.0,1.0,48.0 -2274-S2-1,86.908,0.71844,8.0,1.0,42.0 -2274-S2-1,87.894,0.64444,24.0,0.9,42.0 -2274-S2-1,88.919,0.8,36.0,0.7,42.0 -2336-S2-0,75.738,0.33333,0.0,1.0,60.0 -2336-S2-0,76.21600000000001,0.30378,4.0,0.9,60.0 -2336-S2-0,76.699,0.41489,0.0,0.9,60.0 -2336-S2-0,77.17399999999998,0.39267,4.0,1.0,60.0 -2336-S2-0,77.71600000000001,0.48156,12.0,1.0,60.0 -2336-S2-0,80.705,0.46667,4.0,0.9,60.0 -2438-S2-1,77.741,0.44444,4.0,1.0,60.0 -2438-S2-1,78.227,0.4371100000000001,8.0,0.9,54.0 -2438-S2-1,78.71100000000003,0.49622,8.0,1.0,54.0 -2438-S2-1,79.268,0.6371100000000001,4.0,1.0,48.0 -2438-S2-1,79.819,0.6148899999999999,8.0,1.0,48.0 -2438-S2-1,80.741,0.80733,16.0,0.9,42.0 -2438-S2-1,81.705,0.77778,24.0,0.7,42.0 -2500-S2-0,70.824,0.17778,0.0,1.0,48.0 -2500-S2-0,71.308,0.23711,0.0,0.9,48.0 -2500-S2-0,71.811,0.25178,0.0,1.0,48.0 -2500-S2-0,72.319,0.33333,4.0,1.0,42.0 -2500-S2-0,73.813,0.21489,0.0,0.9,42.0 -2500-S2-0,74.891,0.28889000000000004,0.0,0.7,36.0 -2500-S2-0,75.824,0.26667,4.0,0.7,30.0 -2500-S2-0,76.794,0.5111100000000001,8.0,0.5,30.0 -2500-S2-0,77.846,0.46667,32.0,0.19999999999999996,30.0 -2656-S2-0,64.81099999999999,0.40733,4.0,1.0,54.0 -2656-S2-0,65.48,0.274,4.0,0.9,60.0 -2656-S2-0,65.80799999999999,0.5111100000000001,0.0,1.0,60.0 -2656-S2-0,66.878,0.42222,4.0,0.8,54.0 -2656-S2-0,67.777,0.60733,4.0,1.0,30.0 -2656-S2-0,68.872,0.64444,4.0,0.9,36.0 -2656-S2-0,69.88600000000001,0.77778,24.0,1.0,48.0 -2656-S2-0,71.605,0.97778,84.0,0.30000000000000004,30.0 -2716-S2-0,75.794,0.45178,4.0,1.0,54.0 -2716-S2-0,76.274,0.45933,0.0,1.0,48.0 -2716-S2-0,76.822,0.31844,0.0,0.9,54.0 -2716-S2-0,77.294,0.56289,4.0,0.9,54.0 -2716-S2-0,77.771,0.53333,0.0,0.8,48.0 -2716-S2-0,78.805,0.53333,12.0,0.9,48.0 -2716-S2-0,79.811,0.71111,32.0,0.8,48.0 -2716-S2-0,80.83500000000001,0.73333,36.0,1.0,42.0 -2716-S2-0,81.863,0.8,48.0,0.7,42.0 -2728-S2-0,74.00800000000001,0.44444,0.0,0.9,60.0 -2728-S2-0,74.50500000000001,0.37778,0.0,0.8,54.0 -2728-S2-0,74.994,0.45178,0.0,0.9,60.0 -2728-S2-0,75.66600000000003,0.46667,0.0,0.9,60.0 -2728-S2-0,76.244,0.4295600000000001,0.0,0.9,60.0 -2728-S2-0,77.19600000000003,0.53333,12.0,0.8,60.0 -2728-S2-0,78.09100000000001,0.42222,12.0,0.8,60.0 -2728-S2-0,78.96100000000003,0.44444,20.0,0.8,54.0 -2728-S2-0,79.943,0.6,12.0,0.9,60.0 -2734-S2-1,84.8,0.35556,0.0,0.9,54.0 -2734-S2-1,85.25799999999998,0.34067,0.0,0.9,48.0 -2734-S2-1,85.79700000000003,0.33333,0.0,0.9,54.0 -2734-S2-1,86.316,0.35556,0.0,0.9,54.0 -2734-S2-1,87.813,0.50378,0.0,0.9,54.0 -2734-S2-1,88.824,0.6,20.0,0.9,42.0 -2734-S2-1,89.79700000000003,0.53333,20.0,0.9,30.0 -2738-S2-1,76.46600000000001,0.48889,8.0,0.9,54.0 -2738-S2-1,76.958,0.55556,4.0,1.0,60.0 -2738-S2-1,77.438,0.45933,0.0,1.0,54.0 -2738-S2-1,77.983,0.48156,4.0,1.0,60.0 -2738-S2-1,78.477,0.59267,8.0,1.0,60.0 -2738-S2-1,79.458,0.5111100000000001,4.0,1.0,48.0 -2738-S2-1,80.50500000000001,0.5777800000000001,0.0,0.9,48.0 -2738-S2-1,81.561,0.6,0.0,1.0,60.0 -2738-S2-1,82.622,0.66667,4.0,0.9,54.0 -114-S2-1,86.714,0.33333,0.0,1.0,54.0 -114-S2-1,87.20299999999999,0.38511,0.0,1.0,48.0 -114-S2-1,87.70200000000003,0.42222,4.0,1.0,54.0 -114-S2-1,88.191,0.35556,0.0,1.0,60.0 -114-S2-1,88.71600000000001,0.41489,0.0,1.0,48.0 -114-S2-1,89.727,0.41489,0.0,1.0,48.0 -114-S2-1,90.655,0.62222,0.0,1.0,60.0 -114-S2-1,92.661,0.5777800000000001,4.0,1.0,48.0 -200-S2-0,72.308,0.46667,8.0,0.9,54.0 -200-S2-0,73.061,0.53333,0.0,0.9,48.0 -200-S2-0,73.308,0.54067,8.0,1.0,54.0 -200-S2-0,73.83800000000001,0.54067,4.0,1.0,48.0 -200-S2-0,74.30300000000003,0.4371100000000001,0.0,0.9,48.0 -200-S2-0,75.846,0.68889,4.0,0.8,36.0 -200-S2-0,77.855,0.77778,4.0,0.6,30.0 -200-S2-0,79.21100000000003,0.77778,64.0,0.4,30.0 -902-S2-1,74.544,0.58511,0.0,0.9,54.0 -902-S2-1,75.08,0.58511,0.0,0.9,54.0 -902-S2-1,75.58,0.48889,0.0,0.9,54.0 -902-S2-1,76.032,0.48889,0.0,0.8,54.0 -902-S2-1,76.63300000000001,0.48889,0.0,0.8,48.0 -902-S2-1,77.566,0.44444,8.0,1.0,48.0 -902-S2-1,78.563,0.55556,0.0,0.8,42.0 -902-S2-1,79.641,0.73333,12.0,0.8,42.0 -902-S2-1,80.639,0.68889,0.0,1.0,48.0 -910-S2-1,80.682,0.4295600000000001,0.0,0.9,60.0 -910-S2-1,81.22500000000001,0.48889,4.0,0.9,60.0 -910-S2-1,81.661,0.4295600000000001,4.0,1.0,60.0 -910-S2-1,82.171,0.526,0.0,0.9,60.0 -910-S2-1,82.708,0.54067,0.0,1.0,60.0 -910-S2-1,83.685,0.53333,0.0,1.0,60.0 -910-S2-1,84.71600000000001,0.66667,4.0,1.0,60.0 -910-S2-1,85.71899999999998,0.66667,0.0,0.9,54.0 -910-S2-1,86.71100000000003,0.5777800000000001,0.0,1.0,60.0 -910-S2-1,87.744,0.68889,12.0,1.0,60.0 -1258-S2-1,79.88600000000001,0.31111,0.0,0.9,60.0 -1258-S2-1,80.411,0.21489,24.0,0.9,60.0 -1258-S2-1,81.00800000000001,0.31844,12.0,0.9,60.0 -1258-S2-1,81.97500000000001,0.46667,24.0,0.9,60.0 -1258-S2-1,82.953,0.31844,0.0,0.9,60.0 -1258-S2-1,83.88600000000001,0.55556,4.0,0.9,60.0 -1258-S2-1,84.88600000000001,0.64444,24.0,0.8,60.0 -1330-S2-1,86.13000000000001,0.18511,0.0,0.9,60.0 -1330-S2-1,86.677,0.28156,0.0,1.0,54.0 -1330-S2-1,87.313,0.19267,0.0,1.0,60.0 -1330-S2-1,87.647,0.17778,0.0,0.9,54.0 -1330-S2-1,88.147,0.34822,4.0,0.9,54.0 -1330-S2-1,89.125,0.21489,12.0,1.0,54.0 -1330-S2-1,90.25500000000001,0.24444,12.0,1.0,54.0 -1330-S2-1,91.15,0.26667,0.0,0.7,54.0 -1330-S2-1,92.15,0.28889000000000004,4.0,0.7,54.0 -1392-S2-0,80.435,0.48889,4.0,0.9,60.0 -1392-S2-0,80.94600000000003,0.42222,8.0,0.9,60.0 -1392-S2-0,81.41300000000003,0.57044,20.0,0.9,54.0 -1392-S2-0,81.997,0.75556,12.0,1.0,48.0 -1392-S2-0,82.435,0.56289,24.0,0.6,42.0 -1392-S2-0,83.43,0.69622,28.000000000000004,0.7,48.0 -1392-S2-0,84.421,0.8222200000000001,80.0,0.8,36.0 -1440-S2-0,86.375,0.23711,4.0,1.0,54.0 -1440-S2-0,86.894,0.38511,16.0,1.0,54.0 -1440-S2-0,87.43,0.15556,12.0,0.9,54.0 -1440-S2-0,88.139,0.088889,12.0,0.9,54.0 -1440-S2-0,88.34399999999998,0.30378,20.0,1.0,54.0 -1440-S2-0,89.4,0.39267,12.0,0.9,54.0 -1440-S2-0,90.38000000000001,0.66667,40.0,0.9,48.0 -1440-S2-0,91.435,0.73333,64.0,0.9,48.0 -1440-S2-0,92.316,0.73333,60.0,0.9,42.0 -2136-S2-0,69.685,0.4,0.0,1.0,60.0 -2136-S2-0,70.185,0.45933,0.0,1.0,60.0 -2136-S2-0,70.688,0.57044,0.0,0.9,60.0 -2136-S2-0,71.214,0.48156,0.0,1.0,60.0 -2136-S2-0,71.699,0.58511,0.0,0.9,54.0 -2136-S2-0,72.811,0.71111,0.0,0.9,48.0 -2136-S2-0,73.782,0.73333,0.0,0.9,48.0 -2136-S2-0,74.88300000000001,0.73333,0.0,0.7,42.0 -2136-S2-0,75.66300000000003,0.75556,4.0,0.4,42.0 -2392-S2-0,80.072,0.34822,4.0,1.0,42.0 -2392-S2-0,80.605,0.51844,12.0,0.9,48.0 -2392-S2-0,81.05,0.5482199999999999,20.0,0.8,48.0 -2392-S2-0,84.263,0.6,56.00000000000001,0.6,30.0 -2420-S2-0,75.92399999999998,0.34822,4.0,0.9,60.0 -2420-S2-0,76.48,0.34822,0.0,0.9,60.0 -2420-S2-0,77.029,0.24444,0.0,0.9,60.0 -2420-S2-0,77.529,0.274,4.0,0.9,60.0 -2420-S2-0,77.955,0.25933,8.0,1.0,60.0 -2420-S2-0,79.144,0.4,0.0,1.0,60.0 -2420-S2-0,79.938,0.33333,0.0,1.0,60.0 -2420-S2-0,80.983,0.46667,12.0,0.9,60.0 -2420-S2-0,81.919,0.48889,4.0,0.9,54.0 -2660-S2-0,75.241,0.46667,0.0,1.0,60.0 -2660-S2-0,75.71899999999998,0.38511,0.0,1.0,60.0 -2660-S2-0,76.191,0.37778,4.0,0.9,60.0 -2660-S2-0,76.75500000000001,0.4,0.0,1.0,60.0 -2660-S2-0,77.25199999999998,0.58511,12.0,0.9,60.0 -2660-S2-0,78.24899999999998,0.5777800000000001,4.0,0.9,60.0 -2660-S2-0,79.313,0.73333,4.0,1.0,48.0 -2660-S2-0,80.333,0.88889,36.0,0.9,48.0 -2736-S2-0,89.061,0.49622,12.0,0.9,48.0 -2736-S2-0,89.58500000000001,0.48156,4.0,0.9,54.0 -2736-S2-0,90.063,0.56289,12.0,0.9,54.0 -2736-S2-0,90.566,0.58511,12.0,1.0,54.0 -2736-S2-0,91.061,0.65933,12.0,0.9,48.0 -2736-S2-0,92.069,0.66667,36.0,0.9,48.0 -2736-S2-0,93.036,0.73333,40.0,0.8,30.0 -2736-S2-0,94.013,0.88889,52.0,0.7,30.0 -3904-S2-0,78.013,0.39267,8.0,0.9,60.0 -3904-S2-0,78.61,0.45178,4.0,1.0,54.0 -3904-S2-0,80.185,0.31844,4.0,1.0,60.0 -3904-S2-0,81.292,0.44444,4.0,1.0,54.0 -3904-S2-0,83.652,0.5111100000000001,4.0,0.8,60.0 -3904-S2-0,84.55300000000003,0.64444,16.0,0.9,54.0 -3952-S2-0,72.938,0.48889,4.0,0.7,42.0 -3952-S2-0,73.41300000000001,0.71844,20.0,0.7,30.0 -3952-S2-0,73.953,0.75556,12.0,0.8,36.0 -3952-S2-0,74.48,0.76289,24.0,0.5,30.0 -3952-S2-0,74.935,0.69622,24.0,0.7,30.0 -3952-S2-0,75.91300000000003,0.68889,24.0,0.7,30.0 -3952-S2-0,76.91300000000003,0.75556,24.0,0.6,30.0 -3952-S2-0,77.905,0.75556,24.0,0.7,30.0 -3952-S2-0,78.91600000000003,0.64444,24.0,0.7,30.0 -3954-S2-1,76.22500000000001,0.26667,0.0,1.0,60.0 -3954-S2-1,76.702,0.21489,0.0,1.0,60.0 -3954-S2-1,77.22199999999998,0.31111,0.0,0.9,60.0 -3954-S2-1,77.72199999999998,0.4371100000000001,4.0,1.0,60.0 -3954-S2-1,78.279,0.40733,0.0,1.0,60.0 -3954-S2-1,79.294,0.49622,0.0,1.0,60.0 -3954-S2-1,80.577,0.68156,0.0,1.0,60.0 -3954-S2-1,81.65,0.66667,0.0,1.0,60.0 -3954-S2-1,82.279,0.66667,0.0,0.9,60.0 -3954-S2-1,83.427,0.71111,0.0,1.0,60.0 -3954-S2-1,84.25500000000001,0.71111,0.0,1.0,60.0 -3962-S2-1,69.891,0.37044,0.0,1.0,54.0 -3962-S2-1,70.363,0.33333,0.0,1.0,54.0 -3962-S2-1,70.941,0.31111,0.0,1.0,54.0 -3962-S2-1,71.458,0.35556,0.0,1.0,60.0 -3962-S2-1,71.897,0.34067,0.0,1.0,54.0 -3962-S2-1,72.9,0.37778,0.0,1.0,54.0 -3962-S2-1,75.555,0.42222,0.0,1.0,54.0 -3962-S2-1,76.905,0.42222,0.0,0.9,48.0 -3962-S2-1,77.86,0.6,12.0,1.0,54.0 -3972-S2-0,76.96100000000003,0.24444,0.0,1.0,60.0 -3972-S2-0,77.46600000000001,0.30378,0.0,1.0,60.0 -3972-S2-0,78.029,0.37778,0.0,1.0,60.0 -3972-S2-0,78.48,0.31844,0.0,1.0,60.0 -3972-S2-0,78.9,0.21489,4.0,1.0,54.0 -3972-S2-0,79.93,0.48889,4.0,1.0,60.0 -3972-S2-0,81.027,0.4295600000000001,0.0,1.0,54.0 -3972-S2-0,83.08,0.53333,0.0,1.0,60.0 -3972-S2-0,84.18,0.5777800000000001,4.0,1.0,36.0 -3974-S2-1,78.661,0.44444,8.0,0.9,54.0 -3974-S2-1,79.308,0.50378,4.0,1.0,54.0 -3974-S2-1,79.774,0.48156,4.0,0.9,54.0 -3974-S2-1,80.15,0.51844,8.0,1.0,60.0 -3974-S2-1,80.688,0.41489,4.0,0.9,54.0 -3974-S2-1,81.747,0.44444,0.0,1.0,54.0 -3974-S2-1,82.671,0.5482199999999999,8.0,0.9,54.0 -3974-S2-1,83.71100000000003,0.6,12.0,0.9,54.0 -3974-S2-1,84.69600000000003,0.71111,4.0,1.0,48.0 -3984-S2-0,82.49899999999998,0.2,4.0,0.9,54.0 -3984-S2-0,82.991,0.31844,4.0,1.0,48.0 -3984-S2-0,83.61,0.326,12.0,0.9,54.0 -3984-S2-0,84.021,0.45178,8.0,1.0,48.0 -3984-S2-0,84.532,0.37778,12.0,0.9,48.0 -3984-S2-0,85.55799999999998,0.4295600000000001,8.0,0.9,48.0 -3984-S2-0,86.583,0.28889000000000004,16.0,0.9,48.0 -3984-S2-0,87.84399999999998,0.53333,56.00000000000001,0.8,48.0 -3984-S2-0,88.889,0.53333,24.0,0.8,48.0 -3984-S2-0,89.98299999999999,0.48889,36.0,0.8,42.0 -3986-S2-1,70.569,0.39267,0.0,0.9,48.0 -3986-S2-1,71.083,0.34067,0.0,1.0,54.0 -3986-S2-1,71.561,0.50378,0.0,0.7,48.0 -3986-S2-1,72.042,0.45178,4.0,0.9,48.0 -3986-S2-1,72.58,0.5482199999999999,4.0,0.9,42.0 -3986-S2-1,73.547,0.58511,12.0,0.8,36.0 -3986-S2-1,74.555,0.77044,4.0,0.4,36.0 -3986-S2-1,75.524,0.86667,40.0,0.30000000000000004,30.0 -3990-S2-1,82.607,0.28889000000000004,4.0,0.8,60.0 -3990-S2-1,83.122,0.31111,4.0,0.8,48.0 -3990-S2-1,83.625,0.34822,0.0,0.9,54.0 -3990-S2-1,84.099,0.23711,4.0,0.7,54.0 -3990-S2-1,84.605,0.4,8.0,1.0,42.0 -3990-S2-1,85.613,0.50378,16.0,0.9,48.0 -3990-S2-1,87.596,0.44444,16.0,1.0,54.0 -3990-S2-1,88.58799999999998,0.35556,28.000000000000004,0.9,48.0 -3990-S2-1,89.82200000000002,0.35556,16.0,0.6,60.0 -4004-S2-0,67.96100000000001,0.46667,0.0,0.9,60.0 -4004-S2-0,68.458,0.53333,0.0,0.9,54.0 -4004-S2-0,68.935,0.45178,0.0,0.9,60.0 -4004-S2-0,69.47500000000001,0.53333,0.0,0.9,60.0 -4004-S2-0,69.941,0.40733,0.0,0.9,54.0 -4004-S2-0,70.97500000000001,0.49622,0.0,0.9,54.0 -4004-S2-0,72.042,0.59267,0.0,0.9,48.0 -4004-S2-0,73.039,0.64444,0.0,0.8,36.0 -4004-S2-0,74.13300000000001,0.62222,16.0,0.7,30.0 -4004-S2-0,74.97500000000001,0.77778,20.0,0.8,42.0 -4004-S2-0,75.953,0.77778,28.000000000000004,0.6,30.0 -4010-S2-1,77.891,0.55556,4.0,1.0,60.0 -4010-S2-1,78.369,0.34067,4.0,1.0,60.0 -4010-S2-1,78.905,0.39267,0.0,1.0,54.0 -4010-S2-1,79.38600000000001,0.48889,0.0,1.0,60.0 -4010-S2-1,79.88300000000001,0.36289,0.0,1.0,54.0 -4010-S2-1,80.9,0.53333,0.0,1.0,54.0 -4010-S2-1,81.894,0.53333,0.0,1.0,54.0 -4010-S2-1,82.889,0.5111100000000001,0.0,0.9,54.0 -4010-S2-1,83.949,0.77778,0.0,0.9,54.0 -4010-S2-1,84.889,0.68889,4.0,0.8,54.0 -4016-S2-0,72.427,0.28156,0.0,1.0,60.0 -4016-S2-0,72.938,0.37044,0.0,1.0,54.0 -4016-S2-0,73.42399999999999,0.39267,0.0,1.0,54.0 -4016-S2-0,73.932,0.4295600000000001,12.0,0.9,60.0 -4016-S2-0,74.43,0.46667,4.0,1.0,54.0 -4016-S2-0,75.441,0.39267,0.0,1.0,54.0 -4016-S2-0,78.029,0.68889,4.0,0.7,42.0 -4016-S2-0,79.09100000000001,0.73333,16.0,0.6,36.0 -4016-S2-0,80.061,0.88889,36.0,0.19999999999999996,30.0 -4020-S2-0,84.13600000000001,0.23711,12.0,1.0,48.0 -4020-S2-0,84.63300000000001,0.17778,0.0,1.0,54.0 -4020-S2-0,85.128,0.17778,4.0,1.0,54.0 -4020-S2-0,85.61,0.28156,0.0,1.0,60.0 -4020-S2-0,86.144,0.21489,0.0,0.9,48.0 -4020-S2-0,87.161,0.15556,4.0,1.0,60.0 -4020-S2-0,89.13299999999998,0.17778,8.0,1.0,54.0 -4022-S2-1,76.94600000000003,0.4295600000000001,4.0,0.9,48.0 -4022-S2-1,77.458,0.49622,16.0,0.9,48.0 -4022-S2-1,77.93,0.41489,16.0,1.0,54.0 -4022-S2-1,78.411,0.4371100000000001,8.0,0.9,54.0 -4022-S2-1,78.857,0.54067,8.0,0.9,54.0 -4022-S2-1,80.061,0.526,28.000000000000004,0.8,54.0 -4022-S2-1,80.83800000000001,0.6148899999999999,12.0,0.9,48.0 -4022-S2-1,82.055,0.73333,24.0,0.9,42.0 -4022-S2-1,83.128,0.71111,28.000000000000004,0.9,36.0 -4026-S2-1,63.591000000000015,0.48156,0.0,0.9,54.0 -4026-S2-1,64.125,0.53333,4.0,0.9,54.0 -4026-S2-1,64.55,0.57044,0.0,0.9,54.0 -4026-S2-1,65.047,0.68156,0.0,0.9,48.0 -4026-S2-1,65.585,0.64444,0.0,0.9,54.0 -4026-S2-1,68.58,0.95556,60.0,0.6,30.0 -4026-S2-1,69.744,1.0,100.0,0.0,30.0 -4036-S2-0,68.08500000000001,0.53333,12.0,0.8,60.0 -4036-S2-0,68.625,0.56289,8.0,1.0,60.0 -4036-S2-0,69.072,0.53333,8.0,0.8,60.0 -4036-S2-0,69.583,0.7037800000000001,4.0,1.0,60.0 -4036-S2-0,70.297,0.60733,16.0,0.9,60.0 -4036-S2-0,71.641,0.77044,8.0,1.0,60.0 -4036-S2-0,72.714,0.84444,32.0,0.9,54.0 -4036-S2-0,73.688,0.95556,36.0,0.8,48.0 -4044-S2-0,90.074,0.326,4.0,0.9,60.0 -4044-S2-0,90.59399999999998,0.48156,8.0,0.9,54.0 -4044-S2-0,91.053,0.37778,4.0,0.8,60.0 -4044-S2-0,91.57200000000002,0.35556,0.0,0.9,60.0 -4044-S2-0,92.04700000000003,0.34822,12.0,0.9,54.0 -4044-S2-0,93.083,0.66667,0.0,0.8,54.0 -4044-S2-0,94.102,0.59267,12.0,0.8,54.0 -4044-S2-0,95.061,0.68889,28.000000000000004,0.9,48.0 -4046-S2-1,90.319,0.37044,12.0,0.8,60.0 -4046-S2-1,91.29700000000003,0.48889,20.0,0.7,54.0 -4046-S2-1,91.943,0.49622,12.0,0.8,54.0 -4046-S2-1,92.518,0.526,20.0,0.9,54.0 -4046-S2-1,95.355,0.46667,44.0,0.7,42.0 -4048-S2-0,85.35700000000003,0.56289,8.0,1.0,42.0 -4048-S2-0,85.83,0.48156,0.0,0.9,48.0 -4048-S2-0,86.3,0.54067,12.0,0.9,54.0 -4048-S2-0,86.83799999999998,0.62956,0.0,1.0,42.0 -4048-S2-0,87.352,0.59267,8.0,1.0,42.0 -4048-S2-0,88.366,0.73333,0.0,0.8,36.0 -4048-S2-0,89.34399999999998,0.8,0.0,0.6,42.0 -4048-S2-0,90.366,0.68889,4.0,0.8,36.0 -4048-S2-0,91.394,0.75556,8.0,0.6,36.0 -4054-S2-1,73.099,0.49622,4.0,1.0,60.0 -4054-S2-1,73.677,0.4295600000000001,0.0,1.0,60.0 -4054-S2-1,74.241,0.41489,0.0,1.0,60.0 -4054-S2-1,74.866,0.39267,0.0,0.9,60.0 -4054-S2-1,75.547,0.4,0.0,1.0,60.0 -4054-S2-1,78.096,0.44444,0.0,1.0,54.0 -4058-S2-1,84.027,0.46667,24.0,0.9,48.0 -4058-S2-1,84.644,0.6,28.000000000000004,1.0,48.0 -4058-S2-1,85.047,0.62956,24.0,1.0,60.0 -4058-S2-1,85.53200000000002,0.59267,24.0,0.9,60.0 -4058-S2-1,86.47200000000001,0.68156,24.0,1.0,54.0 -4058-S2-1,88.994,0.8222200000000001,36.0,0.7,42.0 -4058-S2-1,90.074,0.77778,44.0,0.7,36.0 -4058-S2-1,91.066,0.75556,44.0,0.6,42.0 -4066-S2-1,77.305,0.38511,0.0,1.0,60.0 -4066-S2-1,77.808,0.55556,8.0,0.9,54.0 -4066-S2-1,78.322,0.56289,24.0,1.0,54.0 -4066-S2-1,78.805,0.73333,12.0,0.9,54.0 -4066-S2-1,79.319,0.62222,12.0,1.0,54.0 -4066-S2-1,80.313,0.5482199999999999,24.0,0.9,48.0 -4066-S2-1,82.435,0.77778,8.0,0.9,48.0 -4066-S2-1,83.305,0.68889,16.0,0.9,48.0 -4066-S2-1,84.333,0.88889,28.000000000000004,0.9,48.0 -4074-S2-1,71.986,0.37778,8.0,1.0,60.0 -4074-S2-1,72.518,0.37044,4.0,1.0,60.0 -4074-S2-1,72.964,0.4371100000000001,8.0,1.0,60.0 -4074-S2-1,73.46100000000001,0.39267,12.0,1.0,60.0 -4074-S2-1,74.958,0.474,8.0,1.0,60.0 -4074-S2-1,76.894,0.62222,20.0,1.0,60.0 -4086-S2-1,77.391,0.17778,4.0,1.0,60.0 -4086-S2-1,77.863,0.26667,0.0,0.9,54.0 -4086-S2-1,78.36800000000001,0.11111,4.0,1.0,60.0 -4086-S2-1,78.889,0.25178,4.0,0.9,60.0 -4086-S2-1,79.369,0.31111,0.0,1.0,54.0 -4086-S2-1,80.405,0.126,0.0,0.9,54.0 -4086-S2-1,82.375,0.22222,0.0,1.0,54.0 -4086-S2-1,83.375,0.42222,0.0,1.0,48.0 -4086-S2-1,84.372,0.48889,0.0,1.0,48.0 -4098-S2-1,74.669,0.37044,4.0,1.0,48.0 -4098-S2-1,75.128,0.34067,0.0,1.0,54.0 -4098-S2-1,75.647,0.28156,0.0,1.0,54.0 -4098-S2-1,76.16300000000003,0.4295600000000001,0.0,1.0,54.0 -4098-S2-1,76.66300000000003,0.48156,4.0,1.0,48.0 -4098-S2-1,77.63600000000001,0.59267,4.0,1.0,48.0 -4098-S2-1,78.69600000000003,0.75556,28.000000000000004,1.0,30.0 -4098-S2-1,79.652,0.8,32.0,0.4,30.0 -4100-S2-0,79.59399999999998,0.474,4.0,0.9,60.0 -4100-S2-0,80.077,0.326,0.0,0.8,48.0 -4100-S2-0,80.61,0.58511,4.0,0.8,54.0 -4100-S2-0,81.113,0.59267,8.0,0.9,54.0 -4100-S2-0,81.671,0.6,12.0,0.9,48.0 -4100-S2-0,82.58500000000001,0.65933,28.000000000000004,0.8,48.0 -4100-S2-0,83.811,0.97778,56.00000000000001,0.6,48.0 -4118-S2-1,80.48,0.58511,16.0,1.0,48.0 -4118-S2-1,80.986,0.54067,0.0,1.0,48.0 -4118-S2-1,81.435,0.45178,8.0,1.0,36.0 -4118-S2-1,82.096,0.68889,4.0,0.9,36.0 -4118-S2-1,82.494,0.7406699999999999,4.0,1.0,36.0 -4118-S2-1,83.50800000000001,0.76289,28.000000000000004,0.7,36.0 -4118-S2-1,84.513,0.91111,64.0,0.8,30.0 -4132-S2-0,64.51,0.088889,0.0,1.0,60.0 -4132-S2-0,65.042,0.0073333,0.0,1.0,60.0 -4132-S2-0,65.619,0.029556,0.0,1.0,60.0 -4132-S2-0,66.51800000000001,0.014889,0.0,1.0,60.0 -4132-S2-0,68.953,0.06666699999999999,20.0,1.0,60.0 -4132-S2-0,69.94600000000001,0.044444,0.0,1.0,54.0 -4132-S2-0,70.977,0.044444,0.0,1.0,60.0 -4138-S2-1,78.911,0.37044,0.0,0.9,60.0 -4138-S2-1,79.421,0.44444,4.0,0.9,54.0 -4138-S2-1,79.932,0.57044,4.0,1.0,54.0 -4138-S2-1,80.411,0.57044,8.0,0.9,48.0 -4138-S2-1,80.91600000000003,0.54067,12.0,1.0,48.0 -4138-S2-1,82.869,0.8222200000000001,44.0,0.8,42.0 -4142-S2-1,80.805,0.28889000000000004,0.0,1.0,54.0 -4142-S2-1,81.289,0.26667,0.0,1.0,54.0 -4142-S2-1,81.782,0.33333,4.0,1.0,54.0 -4142-S2-1,82.779,0.35556,8.0,1.0,48.0 -4142-S2-1,83.794,0.55556,0.0,1.0,48.0 -4146-S2-1,80.902,0.24444,8.0,1.0,48.0 -4146-S2-1,81.48,0.46667,4.0,1.0,54.0 -4146-S2-1,81.953,0.37778,16.0,1.0,54.0 -4146-S2-1,83.92399999999998,0.48889,4.0,0.9,54.0 -4148-S2-0,71.555,0.26667,8.0,0.9,54.0 -4148-S2-0,72.05300000000001,0.26667,4.0,1.0,60.0 -4148-S2-0,72.55300000000001,0.33333,8.0,0.7,60.0 -4148-S2-0,73.55,0.33333,4.0,0.9,48.0 -4148-S2-0,74.583,0.6,20.0,0.6,36.0 -4150-S2-1,79.48,0.26667,0.0,0.9,54.0 -4150-S2-1,79.97500000000001,0.28889000000000004,0.0,0.8,54.0 -4150-S2-1,80.669,0.2,0.0,1.0,54.0 -4150-S2-1,81.55,0.35556,0.0,1.0,54.0 -4160-S2-0,77.75199999999998,0.53333,0.0,0.8,48.0 -4160-S2-0,78.292,0.46667,4.0,0.9,48.0 -4160-S2-0,78.958,0.55556,4.0,0.9,48.0 -4166-S2-1,72.535,0.33333,0.0,1.0,60.0 -4166-S2-1,73.047,0.2,0.0,1.0,54.0 -4166-S2-1,73.55,0.24444,0.0,1.0,60.0 -4166-S2-1,74.569,0.37778,0.0,0.9,60.0 -4184-S2-0,74.902,0.22222,4.0,0.9,48.0 -4184-S2-0,75.397,0.31111,8.0,0.9,42.0 -4184-S2-0,75.93,0.4,12.0,0.9,36.0 -4184-S2-0,76.927,0.37778,8.0,0.7,42.0 -4196-S2-0,76.98,0.28889000000000004,4.0,1.0,60.0 -4196-S2-0,77.577,0.37778,8.0,0.9,54.0 -4196-S2-0,77.977,0.31111,8.0,1.0,60.0 -4196-S2-0,78.99899999999998,0.6,8.0,1.0,54.0 -4202-S2-1,76.25500000000001,0.35556,4.0,0.9,48.0 -4202-S2-1,76.75500000000001,0.22222,4.0,0.9,54.0 -4202-S2-1,77.305,0.31111,8.0,0.9,54.0 -4202-S2-1,78.214,0.33333,24.0,0.8,42.0 -4206-S2-1,60.580000000000005,0.28889000000000004,12.0,1.0,60.0 -4206-S2-1,61.13,0.33333,28.000000000000004,1.0,54.0 -4206-S2-1,61.56600000000001,0.33333,28.000000000000004,1.0,60.0 -4206-S2-1,62.319,0.4,36.0,1.0,54.0 -4210-S2-1,84.569,0.46667,20.0,0.9,30.0 -4210-S2-1,85.074,0.48889,20.0,0.9,54.0 -4210-S2-1,85.566,0.5111100000000001,36.0,1.0,54.0 -4210-S2-1,86.566,0.62222,24.0,1.0,42.0 -4228-S2-0,87.98,0.53333,4.0,1.0,48.0 -4228-S2-0,88.50799999999998,0.55556,0.0,0.9,48.0 -4228-S2-0,88.98299999999999,0.66667,0.0,1.0,54.0 -4228-S2-0,90.055,0.68889,0.0,1.0,48.0 -4234-S2-1,67.878,0.55556,8.0,1.0,54.0 -4234-S2-1,68.313,0.53333,4.0,1.0,48.0 -4234-S2-1,68.891,0.6,16.0,1.0,48.0 -4234-S2-1,69.891,0.62222,4.0,1.0,48.0 -4236-S2-0,63.43,0.4,8.0,0.9,54.0 -4236-S2-0,63.935,0.44444,4.0,0.8,48.0 -4236-S2-0,64.42399999999999,0.35556,0.0,0.9,54.0 -4236-S2-0,65.402,0.24444,0.0,0.9,60.0 -4242-S2-1,87.88600000000001,0.55556,8.0,0.9,60.0 -4242-S2-1,88.38299999999998,0.5777800000000001,20.0,0.9,54.0 -4242-S2-1,88.889,0.64444,36.0,1.0,54.0 -4260-S2-0,70.285,0.53333,12.0,0.8,60.0 -4260-S2-0,70.747,0.5111100000000001,24.0,0.8,60.0 -4260-S2-0,71.22500000000001,0.62222,28.000000000000004,0.8,60.0 -4264-S2-0,58.432,0.37778,0.0,1.0,60.0 -4264-S2-0,58.938,0.42222,4.0,1.0,54.0 -4264-S2-0,59.446000000000005,0.46667,0.0,1.0,60.0 -4264-S2-0,60.372,0.55556,0.0,1.0,48.0 -4266-S2-1,85.79200000000002,0.5111100000000001,32.0,0.8,60.0 -4266-S2-1,86.313,0.44444,24.0,0.8,48.0 -4266-S2-1,86.816,0.5777800000000001,16.0,0.8,60.0 -4268-S2-0,74.72199999999998,0.5111100000000001,0.0,0.9,60.0 -4268-S2-0,75.274,0.37778,4.0,0.9,60.0 -4268-S2-0,75.68,0.42222,0.0,0.8,60.0 -4268-S2-0,76.774,0.5111100000000001,0.0,1.0,54.0 -4270-S2-1,72.93,0.55556,4.0,0.9,60.0 -4270-S2-1,73.402,0.46667,4.0,0.7,60.0 -4270-S2-1,73.921,0.46667,4.0,0.8,60.0 -4270-S2-1,74.92399999999998,0.5777800000000001,4.0,0.8,54.0 -4274-S2-1,72.768,0.37778,20.0,0.9,54.0 -4274-S2-1,73.279,0.37778,12.0,1.0,54.0 -4274-S2-1,73.76,0.5111100000000001,28.000000000000004,1.0,54.0 -4274-S2-1,74.949,0.62222,24.0,0.9,42.0 -4280-S2-0,76.661,0.55556,8.0,1.0,60.0 -4280-S2-0,77.369,0.5111100000000001,4.0,0.9,48.0 -4280-S2-0,78.11800000000001,0.6,8.0,0.9,54.0 -4282-S2-1,77.741,0.2,0.0,0.9,48.0 -4282-S2-1,78.25199999999998,0.28889000000000004,0.0,0.9,48.0 -4282-S2-1,78.774,0.22222,0.0,1.0,48.0 -4282-S2-1,79.763,0.37778,4.0,0.8,60.0 -4286-S2-1,74.208,0.62222,0.0,0.9,48.0 -4286-S2-1,74.693,0.5777800000000001,0.0,1.0,42.0 -4286-S2-1,75.182,0.6,4.0,0.8,48.0 -4286-S2-1,76.182,0.68889,12.0,0.9,42.0 -4290-S2-1,83.099,0.6,8.0,0.9,54.0 -4290-S2-1,83.63600000000001,0.5777800000000001,16.0,1.0,54.0 -4290-S2-1,84.096,0.55556,16.0,0.9,60.0 -4290-S2-1,85.107,0.71111,8.0,1.0,54.0 -4292-S2-0,81.91300000000003,0.42222,4.0,1.0,60.0 -4292-S2-0,82.394,0.46667,4.0,0.9,42.0 -4292-S2-0,82.935,0.5111100000000001,4.0,1.0,54.0 -4292-S2-0,83.927,0.6,8.0,1.0,48.0 -4300-S2-0,77.74899999999998,0.42222,0.0,0.9,60.0 -4300-S2-0,78.266,0.46667,0.0,0.9,60.0 -4300-S2-0,78.747,0.35556,0.0,0.9,60.0 -4300-S2-0,79.8,0.53333,0.0,0.9,60.0 -4310-S2-1,73.116,0.35556,4.0,0.9,42.0 -4310-S2-1,73.639,0.5111100000000001,4.0,0.7,48.0 -4310-S2-1,74.113,0.31111,4.0,0.8,42.0 -4310-S2-1,75.13000000000001,0.35556,4.0,0.7,42.0 -4316-S2-0,83.555,0.37778,0.0,0.9,54.0 -4316-S2-0,84.058,0.42222,0.0,0.8,48.0 -4316-S2-0,84.558,0.44444,0.0,1.0,54.0 -4316-S2-0,85.57200000000002,0.53333,0.0,1.0,54.0 -4320-S2-0,66.238,0.42222,0.0,0.9,60.0 -4320-S2-0,66.736,0.44444,0.0,0.8,48.0 -4320-S2-0,67.238,0.48889,0.0,0.9,54.0 -4320-S2-0,68.322,0.71111,0.0,0.9,36.0 -4326-S2-1,76.92399999999998,0.68889,16.0,0.9,60.0 -4326-S2-1,77.292,0.64444,20.0,0.8,54.0 -4326-S2-1,77.889,0.73333,4.0,0.8,54.0 -4338-S2-1,76.247,0.5777800000000001,0.0,0.9,54.0 -4338-S2-1,76.863,0.55556,0.0,0.9,54.0 -4338-S2-1,77.375,0.62222,0.0,0.9,48.0 -4338-S2-1,78.297,0.5777800000000001,4.0,0.9,42.0 -4340-S2-0,82.23,0.31111,4.0,0.9,60.0 -4340-S2-0,82.714,0.2,4.0,1.0,60.0 -4340-S2-0,83.233,0.31111,4.0,0.9,60.0 -4340-S2-0,84.208,0.4,8.0,1.0,60.0 -4350-S2-1,64.21600000000001,0.42222,0.0,0.9,60.0 -4350-S2-1,64.67099999999999,0.35556,0.0,0.9,60.0 -4350-S2-1,65.152,0.48889,4.0,0.9,60.0 -4350-S2-1,66.17999999999999,0.5111100000000001,16.0,0.8,60.0 -4376-S2-0,78.602,0.35556,4.0,1.0,60.0 -4376-S2-0,79.11800000000001,0.62222,4.0,1.0,54.0 -4376-S2-0,79.669,0.28889000000000004,4.0,0.9,54.0 -4376-S2-0,80.61,0.24444,8.0,1.0,54.0 -4378-S2-1,65.016,0.46667,4.0,0.9,54.0 -4378-S2-1,65.53600000000002,0.44444,16.0,0.8,42.0 -4378-S2-1,66.013,0.44444,8.0,0.8,48.0 -4378-S2-1,67.083,0.64444,28.000000000000004,0.8,48.0 -4380-S2-0,79.453,0.55556,0.0,1.0,60.0 -4380-S2-0,79.949,0.64444,4.0,0.9,60.0 -4380-S2-0,80.46899999999998,0.62222,0.0,0.9,54.0 -4380-S2-0,81.464,0.5111100000000001,0.0,0.9,54.0 -4390-S2-1,61.980000000000004,0.5111100000000001,0.0,1.0,60.0 -4390-S2-1,62.521000000000015,0.55556,8.0,0.9,54.0 -4390-S2-1,62.94100000000001,0.62222,16.0,0.9,42.0 -4390-S2-1,63.983000000000004,0.77778,20.0,0.9,48.0 -4394-S2-1,81.491,0.53333,0.0,0.9,48.0 -4394-S2-1,81.96899999999998,0.42222,0.0,0.9,48.0 -4394-S2-1,82.599,0.6,0.0,0.9,54.0 -4394-S2-1,83.402,0.53333,0.0,1.0,54.0 -4398-S2-1,78.013,0.55556,8.0,1.0,60.0 -4398-S2-1,78.583,0.55556,4.0,0.9,54.0 -4398-S2-1,79.069,0.71111,8.0,1.0,60.0 -4398-S2-1,80.055,0.8222200000000001,20.0,0.8,36.0 -4428-S2-0,79.263,0.31111,4.0,1.0,54.0 -4428-S2-0,79.779,0.31111,4.0,1.0,54.0 -4428-S2-0,80.366,0.42222,4.0,0.9,54.0 -4448-S2-0,82.677,0.66667,8.0,1.0,48.0 -4448-S2-0,83.128,0.73333,0.0,0.9,48.0 -4448-S2-0,83.628,0.77778,8.0,1.0,42.0 -4448-S2-0,84.677,0.73333,20.0,0.9,36.0 -4508-S2-0,81.73,0.24444,4.0,0.9,60.0 -4508-S2-0,82.277,0.28889000000000004,0.0,0.9,42.0 -4508-S2-0,82.727,0.28889000000000004,0.0,0.9,60.0 -4508-S2-0,83.69600000000003,0.35556,0.0,0.8,54.0 -4514-S2-1,80.021,0.37778,24.0,1.0,48.0 -4514-S2-1,80.518,0.28889000000000004,12.0,1.0,48.0 -4514-S2-1,80.991,0.31111,32.0,1.0,42.0 -4514-S2-1,82.027,0.5111100000000001,60.0,0.9,36.0 -4516-S2-0,69.158,0.35556,0.0,0.9,48.0 -4516-S2-0,69.641,0.33333,0.0,0.9,48.0 -4516-S2-0,70.147,0.37778,0.0,1.0,48.0 -4516-S2-0,71.13600000000001,0.42222,0.0,1.0,48.0 -4530-S2-1,77.147,0.2,8.0,1.0,48.0 -4530-S2-1,77.63300000000001,0.31111,12.0,0.9,42.0 -4530-S2-1,78.147,0.33333,20.0,0.9,36.0 -4548-S2-0,74.205,0.48889,0.0,0.9,48.0 -4548-S2-0,74.68,0.55556,0.0,1.0,42.0 -4548-S2-0,75.26,0.5777800000000001,8.0,0.9,36.0 -4564-S2-0,83.205,0.42222,0.0,0.9,48.0 -4564-S2-0,83.703,0.37778,4.0,0.9,54.0 -4564-S2-0,84.17399999999998,0.35556,4.0,0.9,54.0 -4564-S2-0,85.188,0.46667,4.0,0.9,42.0 -4566-S2-1,66.819,0.35556,0.0,0.9,60.0 -4566-S2-1,67.277,0.31111,4.0,0.9,54.0 -4566-S2-1,67.794,0.4,8.0,0.9,54.0 -4566-S2-1,68.738,0.48889,12.0,0.7,54.0 -4572-S2-0,72.983,0.46667,8.0,0.9,60.0 -4572-S2-0,73.497,0.66667,16.0,1.0,54.0 -4572-S2-0,73.991,0.55556,12.0,0.9,60.0 -4594-S2-1,64.074,0.22222,4.0,0.9,60.0 -4594-S2-1,64.55,0.37778,8.0,0.9,48.0 -4594-S2-1,65.053,0.4,0.0,1.0,48.0 -4614-S2-1,77.738,0.5777800000000001,4.0,1.0,60.0 -4614-S2-1,78.292,0.33333,0.0,1.0,60.0 -4614-S2-1,78.69600000000003,0.55556,4.0,1.0,60.0 -4620-S2-0,85.05,0.35556,4.0,1.0,54.0 -4620-S2-0,85.516,0.53333,0.0,1.0,54.0 -4620-S2-0,85.97200000000001,0.35556,12.0,0.8,54.0 -4626-S2-1,76.122,0.53333,8.0,0.8,42.0 -4626-S2-1,76.59100000000001,0.5777800000000001,4.0,0.8,30.0 -4626-S2-1,77.16300000000003,0.55556,12.0,0.9,42.0 -4634-S2-1,71.705,0.31111,0.0,0.8,54.0 -4634-S2-1,72.203,0.5111100000000001,0.0,0.9,54.0 -4634-S2-1,72.869,0.42222,0.0,0.8,30.0 -4646-S2-1,78.17399999999998,0.48889,0.0,1.0,54.0 -4646-S2-1,78.661,0.53333,0.0,1.0,54.0 -4646-S2-1,79.169,0.5111100000000001,4.0,1.0,48.0 -4648-S2-0,72.389,0.62222,4.0,0.8,60.0 -4648-S2-0,72.972,0.6,4.0,0.9,60.0 -4648-S2-0,73.443,0.44444,4.0,0.9,60.0 -4652-S2-0,81.152,0.33333,4.0,0.9,60.0 -4652-S2-0,81.652,0.44444,0.0,0.9,60.0 -4652-S2-0,82.33500000000001,0.2,0.0,1.0,60.0 -4656-S2-0,72.9,0.35556,8.0,0.9,60.0 -4656-S2-0,73.411,0.33333,0.0,1.0,54.0 -4656-S2-0,73.927,0.33333,0.0,0.7,54.0 -4658-S2-1,83.33500000000001,0.44444,0.0,1.0,48.0 -4658-S2-1,83.816,0.44444,0.0,0.9,54.0 -4658-S2-1,84.311,0.55556,0.0,1.0,54.0 -4658-S2-1,84.852,0.58511,0.0,0.9,54.0 -4658-S2-1,85.397,0.6371100000000001,0.0,1.0,54.0 -4658-S2-1,86.435,0.71111,0.0,0.9,48.0 -4660-S2-0,74.322,0.58511,0.0,0.8,60.0 -4660-S2-0,74.822,0.5482199999999999,0.0,1.0,54.0 -4660-S2-0,75.316,0.53333,4.0,0.8,60.0 -4660-S2-0,75.816,0.69622,0.0,0.9,60.0 -4660-S2-0,76.297,0.6,0.0,0.9,48.0 -4660-S2-0,77.313,0.7406699999999999,0.0,0.9,54.0 -4660-S2-0,78.491,0.74822,0.0,0.6,36.0 -4678-S2-1,89.48299999999999,0.474,0.0,0.9,54.0 -4678-S2-1,89.98,0.54067,8.0,0.9,54.0 -4678-S2-1,90.647,0.56289,8.0,1.0,60.0 -4680-S2-0,81.039,0.46667,8.0,0.9,30.0 -4680-S2-0,81.55300000000003,0.53333,8.0,0.9,30.0 -4680-S2-0,82.05300000000003,0.59267,16.0,1.0,36.0 -4680-S2-0,82.58800000000001,0.62956,12.0,0.8,36.0 -4680-S2-0,83.069,0.91111,68.0,0.19999999999999996,30.0 -4682-S2-1,84.494,0.62956,8.0,1.0,48.0 -4682-S2-1,85.063,0.674,12.0,0.9,48.0 -4682-S2-1,85.524,0.75556,12.0,0.9,54.0 -4682-S2-1,86.074,0.79267,4.0,0.9,48.0 -4682-S2-1,86.52700000000002,0.68156,4.0,0.9,48.0 -4682-S2-1,87.47200000000001,0.81489,0.0,0.7,42.0 -4684-S2-0,80.80300000000003,0.34822,8.0,0.9,54.0 -4684-S2-0,81.411,0.35556,16.0,0.8,48.0 -4684-S2-0,81.8,0.75556,12.0,0.6,60.0 -4684-S2-0,82.419,0.8,24.0,0.9,30.0 -4684-S2-0,82.872,0.65933,24.0,0.8,36.0 -4688-S2-0,83.227,0.55556,0.0,0.9,54.0 -4688-S2-0,83.75800000000001,0.62222,20.0,1.0,54.0 -4688-S2-0,84.292,0.68156,12.0,0.9,60.0 -4688-S2-0,84.782,0.726,8.0,0.9,54.0 -4688-S2-0,85.599,0.68889,4.0,0.8,54.0 -4690-S2-1,87.941,0.37044,0.0,1.0,54.0 -4690-S2-1,88.72500000000001,0.45178,4.0,0.8,48.0 -4690-S2-1,89.01299999999998,0.28156,4.0,0.9,48.0 -4690-S2-1,90.144,0.42222,4.0,0.9,48.0 -4690-S2-1,90.95299999999999,0.5777800000000001,4.0,0.7,54.0 -4692-S2-0,79.23,0.45933,4.0,0.9,42.0 -4692-S2-0,79.75800000000001,0.48889,12.0,0.9,36.0 -4692-S2-0,80.236,0.4295600000000001,12.0,0.8,36.0 -4706-S2-1,84.513,0.39267,4.0,0.9,60.0 -4706-S2-1,84.96600000000001,0.50378,0.0,0.8,60.0 -4706-S2-1,85.51299999999998,0.45933,4.0,0.9,60.0 -4706-S2-1,85.96100000000003,0.55556,8.0,0.8,60.0 -4706-S2-1,86.53200000000002,0.474,4.0,0.9,48.0 -4706-S2-1,87.518,0.5777800000000001,0.0,0.9,54.0 -4706-S2-1,88.51299999999998,0.58511,4.0,0.9,48.0 -4710-S2-1,84.50800000000001,0.40733,0.0,0.9,60.0 -4710-S2-1,85.49899999999998,0.37778,0.0,0.9,60.0 -4710-S2-1,85.98,0.25178,0.0,1.0,60.0 -4710-S2-1,86.464,0.41489,0.0,0.9,60.0 -4710-S2-1,87.49899999999998,0.57044,0.0,0.9,54.0 -4714-S2-1,84.305,0.38511,4.0,0.8,42.0 -4714-S2-1,84.824,0.45178,8.0,1.0,54.0 -4714-S2-1,85.313,0.49622,24.0,0.9,48.0 -4714-S2-1,85.813,0.59267,24.0,0.8,54.0 -4714-S2-1,86.29700000000003,0.65178,32.0,0.7,48.0 -4714-S2-1,87.30799999999998,0.69622,36.0,0.8,54.0 -7908-S2-0,80.527,0.35556,12.0,1.0,48.0 -7908-S2-0,80.991,0.36289,0.0,0.8,36.0 -7908-S2-0,81.532,0.35556,0.0,0.9,48.0 -7908-S2-0,82.00800000000001,0.44444,0.0,0.9,48.0 -7908-S2-0,82.529,0.44444,20.0,0.9,42.0 -7914-S2-1,82.958,0.35556,20.0,1.0,48.0 -7914-S2-1,83.455,0.38511,4.0,1.0,48.0 -7914-S2-1,83.932,0.41489,20.0,0.7,36.0 -7914-S2-1,84.427,0.46667,16.0,0.7,42.0 -7914-S2-1,84.932,0.5111100000000001,20.0,0.4,36.0 -7914-S2-1,85.96600000000001,0.65178,32.0,0.6,30.0 -7924-S2-0,74.518,0.36289,4.0,1.0,54.0 -7924-S2-0,75.09100000000001,0.59267,4.0,0.8,48.0 -7924-S2-0,75.513,0.5482199999999999,4.0,0.9,54.0 -7924-S2-0,76.027,0.5111100000000001,0.0,0.9,54.0 -7924-S2-0,76.547,0.62222,0.0,0.9,54.0 -7924-S2-0,77.544,0.6,4.0,0.9,54.0 -7944-S2-0,89.324,0.33333,8.0,1.0,54.0 -7944-S2-0,89.824,0.35556,4.0,0.9,54.0 -7944-S2-0,90.33799999999998,0.40733,4.0,0.8,54.0 -7944-S2-0,90.852,0.37778,4.0,0.9,48.0 -7944-S2-0,91.29700000000003,0.35556,0.0,0.9,54.0 -7958-S2-1,63.738,0.36289,4.0,1.0,60.0 -7958-S2-1,64.23,0.45933,0.0,1.0,48.0 -7958-S2-1,64.752,0.36289,4.0,0.9,54.0 -7958-S2-1,65.249,0.40733,0.0,0.9,48.0 -7958-S2-1,65.73,0.44444,0.0,0.9,48.0 -7958-S2-1,66.211,0.40733,0.0,0.9,42.0 -7960-S2-0,91.708,0.36289,0.0,1.0,54.0 -7960-S2-0,92.26299999999998,0.37044,4.0,1.0,60.0 -7960-S2-0,92.70200000000003,0.36289,0.0,1.0,60.0 -7960-S2-0,93.279,0.31844,8.0,1.0,54.0 -7960-S2-0,93.741,0.34822,0.0,1.0,60.0 -7968-S2-0,85.188,0.274,8.0,0.9,60.0 -7968-S2-0,85.693,0.24444,4.0,0.9,60.0 -7968-S2-0,86.18200000000002,0.28156,8.0,0.9,60.0 -7968-S2-0,86.71100000000003,0.38511,8.0,0.9,60.0 -7968-S2-0,87.22200000000001,0.274,0.0,0.9,60.0 -7968-S2-0,88.19600000000003,0.37778,0.0,0.9,54.0 -7968-S2-0,89.155,0.36289,4.0,0.9,60.0 -7972-S2-0,71.48,0.41489,0.0,1.0,54.0 -7972-S2-0,72.055,0.62222,4.0,0.9,54.0 -7972-S2-0,72.453,0.5777800000000001,4.0,0.9,54.0 -8002-S2-1,75.319,0.34822,0.0,1.0,60.0 -8002-S2-1,75.857,0.34822,0.0,1.0,54.0 -8002-S2-1,76.369,0.37044,0.0,0.8,60.0 -8002-S2-1,76.875,0.37778,0.0,1.0,60.0 -8002-S2-1,77.366,0.42222,0.0,0.9,60.0 -8002-S2-1,78.311,0.48156,0.0,1.0,60.0 -8002-S2-1,79.402,0.6,0.0,1.0,60.0 -8006-S2-1,74.786,0.274,0.0,0.8,60.0 -8006-S2-1,75.286,0.4295600000000001,0.0,0.9,60.0 -8006-S2-1,75.768,0.41489,0.0,0.9,60.0 -8006-S2-1,76.266,0.55556,0.0,0.9,60.0 -8006-S2-1,76.80300000000003,0.49622,0.0,0.9,60.0 -8018-S2-1,91.10700000000003,0.28889000000000004,8.0,0.8,54.0 -8018-S2-1,91.699,0.37044,8.0,0.9,54.0 -8018-S2-1,92.155,0.36289,4.0,0.9,48.0 -8018-S2-1,92.658,0.45178,4.0,0.9,54.0 -8018-S2-1,93.096,0.46667,8.0,0.9,48.0 -8018-S2-1,94.13300000000001,0.55556,8.0,0.8,42.0 -8022-S2-1,75.583,0.4295600000000001,8.0,0.9,60.0 -8022-S2-1,76.46899999999998,0.274,4.0,1.0,60.0 -8022-S2-1,76.616,0.25178,0.0,0.9,60.0 -8022-S2-1,77.13300000000001,0.24444,0.0,1.0,60.0 -8022-S2-1,77.58800000000001,0.34822,8.0,1.0,60.0 -8022-S2-1,78.58500000000001,0.45178,12.0,1.0,60.0 -8022-S2-1,79.661,0.41489,16.0,0.9,54.0 -8026-S2-1,74.139,0.41489,0.0,1.0,60.0 -8026-S2-1,74.622,0.60733,0.0,1.0,60.0 -8026-S2-1,75.155,0.45178,0.0,1.0,60.0 -8026-S2-1,75.652,0.50378,0.0,0.9,60.0 -8026-S2-1,76.16600000000003,0.50378,0.0,1.0,48.0 -8044-S2-0,80.297,0.38511,4.0,1.0,60.0 -8044-S2-0,80.827,0.31844,4.0,0.9,60.0 -8044-S2-0,81.289,0.34822,12.0,1.0,60.0 -8044-S2-0,81.83,0.44444,4.0,1.0,60.0 -8044-S2-0,82.292,0.38511,8.0,1.0,60.0 -8044-S2-0,83.279,0.474,8.0,1.0,60.0 -8046-S2-1,79.613,0.4,4.0,1.0,60.0 -8046-S2-1,80.139,0.4371100000000001,4.0,1.0,60.0 -8046-S2-1,80.583,0.31844,8.0,1.0,60.0 -8046-S2-1,81.628,0.45178,12.0,0.7,54.0 -8046-S2-1,82.655,0.48889,4.0,0.9,60.0 -8054-S2-1,82.16600000000003,0.48156,4.0,0.9,60.0 -8054-S2-1,82.682,0.54067,4.0,0.9,54.0 -8054-S2-1,83.182,0.4295600000000001,4.0,0.9,48.0 -8054-S2-1,83.677,0.4371100000000001,4.0,0.9,60.0 -8054-S2-1,84.161,0.5111100000000001,0.0,0.9,60.0 -8054-S2-1,85.285,0.49622,0.0,0.9,60.0 -8054-S2-1,86.324,0.62222,4.0,0.9,60.0 -8130-S2-1,73.91600000000003,0.40733,0.0,0.9,54.0 -8130-S2-1,74.411,0.4,0.0,1.0,54.0 -8130-S2-1,74.908,0.50378,4.0,1.0,60.0 -8130-S2-1,75.42399999999998,0.46667,0.0,0.9,60.0 -8130-S2-1,75.92399999999998,0.37778,0.0,0.8,60.0 -8130-S2-1,76.88300000000001,0.58511,0.0,1.0,54.0 -8130-S2-1,78.021,0.6371100000000001,4.0,1.0,54.0 -8144-S2-0,74.599,0.29622,12.0,0.7,48.0 -8144-S2-0,75.13000000000001,0.29622,0.0,0.9,42.0 -8144-S2-0,75.574,0.26667,0.0,0.8,36.0 -8144-S2-0,76.11,0.4371100000000001,0.0,0.9,42.0 -8144-S2-0,76.59100000000001,0.4,4.0,0.9,42.0 -8144-S2-0,77.572,0.6371100000000001,12.0,0.8,30.0 -8154-S2-1,74.878,0.54067,0.0,1.0,54.0 -8154-S2-1,75.38000000000001,0.42222,0.0,1.0,60.0 -8154-S2-1,75.863,0.526,0.0,0.9,60.0 -8154-S2-1,76.4,0.6,0.0,1.0,60.0 -8154-S2-1,76.866,0.46667,0.0,0.9,60.0 -8154-S2-1,77.894,0.66667,0.0,1.0,60.0 -8154-S2-1,78.878,0.60733,0.0,0.9,60.0 -8156-S2-0,83.88300000000001,0.34822,0.0,1.0,60.0 -8156-S2-0,84.397,0.37778,0.0,1.0,60.0 -8156-S2-0,84.889,0.38511,0.0,1.0,60.0 -8156-S2-0,85.41600000000003,0.49622,8.0,1.0,60.0 -8156-S2-0,85.897,0.48889,0.0,1.0,60.0 -8156-S2-0,86.913,0.7851100000000001,20.0,1.0,60.0 -8166-S2-1,87.51299999999998,0.42222,8.0,0.9,48.0 -8166-S2-1,88.044,0.42222,8.0,0.9,48.0 -8166-S2-1,88.529,0.48889,12.0,0.9,54.0 -8166-S2-1,89.05799999999998,0.5482199999999999,20.0,0.9,48.0 -8166-S2-1,89.50799999999998,0.53333,12.0,0.8,42.0 -8166-S2-1,90.48299999999999,0.57044,8.0,0.8,48.0 -8168-S2-0,81.349,0.45178,12.0,0.8,48.0 -8168-S2-0,81.797,0.22956,4.0,0.7,30.0 -8168-S2-0,82.935,0.4295600000000001,16.0,0.8,42.0 -8168-S2-0,83.327,0.51844,8.0,0.9,42.0 -8168-S2-0,84.38000000000001,0.59267,16.0,0.7,36.0 -8176-S2-0,82.96899999999998,0.44444,0.0,1.0,54.0 -8176-S2-0,83.46600000000001,0.6371100000000001,4.0,1.0,48.0 -8176-S2-0,83.991,0.50378,0.0,1.0,60.0 -8176-S2-0,84.455,0.6371100000000001,0.0,1.0,54.0 -8186-S2-1,84.058,0.21489,16.0,0.9,48.0 -8186-S2-1,84.561,0.15556,4.0,0.9,42.0 -8186-S2-1,85.055,0.40733,8.0,0.9,48.0 -8186-S2-1,85.569,0.22956,4.0,0.9,48.0 -8186-S2-1,86.066,0.30378,0.0,0.9,42.0 -8186-S2-1,87.063,0.2,0.0,0.9,42.0 -8186-S2-1,88.04700000000003,0.39267,0.0,0.7,42.0 -8192-S2-0,75.144,0.24444,0.0,1.0,54.0 -8192-S2-0,75.647,0.31844,8.0,0.9,54.0 -8192-S2-0,76.152,0.4,4.0,1.0,60.0 -8192-S2-0,76.63600000000001,0.48156,8.0,0.9,54.0 -8192-S2-0,77.13600000000001,0.51844,28.000000000000004,0.9,48.0 -8192-S2-0,78.147,0.62222,8.0,0.9,54.0 -8198-S2-1,78.185,0.34822,0.0,1.0,54.0 -8198-S2-1,78.86,0.34067,8.0,1.0,54.0 -8198-S2-1,79.25500000000001,0.39267,0.0,1.0,60.0 -8214-S2-1,71.92399999999999,0.29622,0.0,1.0,60.0 -8214-S2-1,72.38000000000001,0.29622,0.0,1.0,60.0 -8214-S2-1,72.938,0.42222,0.0,0.9,54.0 -8214-S2-1,73.38600000000001,0.46667,0.0,1.0,60.0 -8214-S2-1,73.889,0.37778,0.0,1.0,60.0 -8214-S2-1,74.949,0.42222,4.0,0.9,54.0 -8218-S2-1,83.738,0.40733,0.0,0.9,54.0 -8218-S2-1,84.205,0.56289,0.0,0.9,54.0 -8218-S2-1,84.733,0.48156,4.0,0.8,60.0 -8218-S2-1,85.241,0.6,8.0,1.0,54.0 -8220-S2-0,79.71600000000001,0.64444,4.0,0.9,54.0 -8220-S2-0,80.247,0.66667,8.0,0.9,48.0 -8220-S2-0,80.805,0.64444,8.0,0.9,48.0 -8220-S2-0,81.308,0.6148899999999999,16.0,0.9,42.0 -8236-S2-0,58.607,0.51844,4.0,0.9,54.0 -8236-S2-0,59.105000000000004,0.59267,4.0,0.8,54.0 -8236-S2-0,59.641000000000005,0.51844,24.0,0.9,60.0 -8236-S2-0,60.102000000000004,0.66667,12.0,0.9,54.0 -8236-S2-0,60.644000000000005,0.5482199999999999,20.0,0.9,48.0 -8238-S2-1,61.13,0.474,0.0,0.8,48.0 -8238-S2-1,61.633,0.51844,0.0,0.7,54.0 -8238-S2-1,62.128,0.37778,4.0,0.7,54.0 -8238-S2-1,62.616,0.45933,0.0,0.9,54.0 -8238-S2-1,63.125,0.59267,0.0,0.8,48.0 -8240-S2-0,72.292,0.35556,4.0,1.0,54.0 -8240-S2-0,72.805,0.28889000000000004,0.0,1.0,48.0 -8240-S2-0,73.277,0.28156,12.0,1.0,42.0 -8240-S2-0,73.777,0.45178,0.0,1.0,42.0 -8240-S2-0,74.274,0.34067,12.0,1.0,48.0 -8240-S2-0,75.289,0.41489,20.0,1.0,42.0 -8250-S2-1,72.952,0.48889,4.0,0.9,54.0 -8250-S2-1,73.488,0.5111100000000001,4.0,0.9,48.0 -8250-S2-1,73.949,0.30378,24.0,0.8,30.0 -8250-S2-1,74.46899999999998,0.39267,0.0,0.9,36.0 -8250-S2-1,74.953,0.40733,20.0,0.9,48.0 -8268-S2-0,72.308,0.40733,8.0,0.9,48.0 -8268-S2-0,72.84100000000001,0.48156,8.0,0.9,48.0 -8268-S2-0,73.322,0.54067,16.0,0.8,42.0 -8268-S2-0,73.878,0.54067,12.0,0.9,36.0 -8270-S2-1,77.042,0.674,0.0,0.9,54.0 -8270-S2-1,77.542,0.65933,4.0,1.0,48.0 -8270-S2-1,78.039,0.44444,0.0,1.0,48.0 -8270-S2-1,78.521,0.7037800000000001,4.0,1.0,48.0 -8270-S2-1,79.036,0.68889,0.0,1.0,42.0 -8270-S2-1,80.069,0.55556,4.0,1.0,36.0 -8274-S2-1,83.139,0.326,4.0,1.0,48.0 -8274-S2-1,83.63000000000001,0.51844,0.0,1.0,54.0 -8274-S2-1,84.13000000000001,0.41489,4.0,1.0,54.0 -8274-S2-1,84.66300000000003,0.56289,4.0,0.9,54.0 -8274-S2-1,85.141,0.51844,4.0,0.9,48.0 -8276-S2-0,89.919,0.34822,0.0,0.9,60.0 -8276-S2-0,90.394,0.45933,0.0,0.9,60.0 -8276-S2-0,90.897,0.33333,0.0,1.0,60.0 -8276-S2-0,91.391,0.29622,0.0,1.0,60.0 -8276-S2-0,92.02700000000002,0.4371100000000001,0.0,1.0,54.0 -8276-S2-0,92.97200000000001,0.30378,0.0,1.0,60.0 -8288-S2-0,75.33800000000001,0.44444,8.0,0.9,60.0 -8288-S2-0,75.9,0.48889,4.0,1.0,48.0 -8288-S2-0,76.33800000000001,0.4295600000000001,8.0,1.0,48.0 -8288-S2-0,76.813,0.57044,4.0,1.0,54.0 -8288-S2-0,77.558,0.71844,8.0,0.9,48.0 -8288-S2-0,78.641,0.73333,16.0,0.9,36.0 -8294-S2-1,80.566,0.77044,4.0,0.8,48.0 -8294-S2-1,81.055,0.6148899999999999,4.0,0.9,48.0 -8294-S2-1,81.596,0.73333,8.0,0.9,36.0 -8294-S2-1,82.055,0.88889,20.0,0.9,42.0 -8294-S2-1,82.59100000000001,0.88889,8.0,0.8,36.0 -8298-S2-1,86.71899999999998,0.59267,0.0,1.0,48.0 -8298-S2-1,87.199,0.64444,8.0,1.0,48.0 -8298-S2-1,87.714,0.65178,12.0,1.0,54.0 -8298-S2-1,88.19600000000003,0.75556,12.0,0.9,48.0 -8298-S2-1,88.71100000000003,0.674,4.0,0.9,30.0 -8304-S2-0,82.50199999999998,0.46667,0.0,0.9,60.0 -8304-S2-0,83.018,0.40733,0.0,0.9,54.0 -8304-S2-0,83.647,0.49622,8.0,0.9,60.0 -8304-S2-0,84.647,0.60733,0.0,1.0,54.0 -8304-S2-0,85.647,0.62222,0.0,0.7,54.0 -8310-S2-1,79.763,0.326,0.0,1.0,60.0 -8310-S2-1,80.263,0.37778,4.0,0.9,54.0 -8310-S2-1,80.736,0.326,4.0,1.0,54.0 -8310-S2-1,81.25800000000001,0.40733,0.0,1.0,60.0 -8310-S2-1,81.736,0.40733,0.0,1.0,54.0 -8310-S2-1,82.768,0.50378,0.0,0.9,54.0 -8310-S2-1,83.72500000000001,0.56289,12.0,1.0,48.0 -8312-S2-0,82.458,0.25178,4.0,0.8,48.0 -8312-S2-0,82.997,0.274,4.0,0.8,42.0 -8312-S2-0,83.47199999999998,0.34822,0.0,0.7,36.0 -8312-S2-0,84.00500000000001,0.28889000000000004,0.0,0.8,30.0 -8312-S2-0,84.46899999999998,0.21489,0.0,0.8,42.0 -8312-S2-0,85.46600000000001,0.274,32.0,0.7,30.0 -8320-S2-0,84.36800000000001,0.33333,8.0,1.0,54.0 -8320-S2-0,84.894,0.28889000000000004,0.0,1.0,54.0 -8320-S2-0,85.389,0.37778,4.0,1.0,54.0 -8320-S2-0,85.92399999999998,0.48889,4.0,1.0,48.0 -8320-S2-0,86.38000000000001,0.44444,0.0,1.0,48.0 -8328-S2-0,72.67399999999999,0.31111,12.0,0.9,54.0 -8328-S2-0,73.15,0.326,4.0,0.9,54.0 -8328-S2-0,73.671,0.23711,0.0,0.8,54.0 -8328-S2-0,74.185,0.37044,4.0,0.9,48.0 -8328-S2-0,74.703,0.37778,8.0,0.9,48.0 -8328-S2-0,75.677,0.50378,0.0,0.9,48.0 -8332-S2-0,79.016,0.19267,8.0,0.9,48.0 -8332-S2-0,79.544,0.30378,4.0,0.8,42.0 -8332-S2-0,79.935,0.31111,32.0,1.0,54.0 -8332-S2-0,80.55,0.45933,28.000000000000004,0.8,36.0 -8332-S2-0,81.027,0.88889,36.0,0.8,30.0 -8334-S2-1,65.619,0.22956,4.0,0.9,60.0 -8334-S2-1,66.163,0.21489,0.0,0.7,60.0 -8334-S2-1,66.58800000000001,0.36289,0.0,0.9,60.0 -8334-S2-1,67.122,0.26667,0.0,0.8,60.0 -8334-S2-1,67.652,0.35556,4.0,0.9,54.0 -8334-S2-1,68.599,0.42222,8.0,1.0,54.0 -8338-S2-1,82.88600000000001,0.44444,4.0,1.0,48.0 -8338-S2-1,83.41300000000003,0.35556,12.0,1.0,48.0 -8338-S2-1,83.875,0.39267,20.0,0.9,48.0 -8338-S2-1,84.366,0.48156,20.0,1.0,48.0 -8338-S2-1,84.911,0.62222,36.0,0.9,42.0 -8338-S2-1,85.88600000000001,0.55556,40.0,0.9,42.0 -8340-S2-0,78.99899999999998,0.31844,0.0,0.7,48.0 -8340-S2-0,79.486,0.4371100000000001,0.0,0.9,54.0 -8340-S2-0,79.96100000000003,0.4295600000000001,0.0,0.9,54.0 -8340-S2-0,80.50500000000001,0.474,0.0,1.0,48.0 -8352-S2-0,63.699000000000005,0.56289,0.0,0.9,48.0 -8352-S2-0,64.191,0.55556,4.0,0.9,48.0 -8352-S2-0,64.688,0.56289,4.0,0.9,48.0 -8352-S2-0,65.163,0.60733,8.0,0.9,54.0 -8352-S2-0,65.703,0.68156,4.0,0.9,48.0 -8358-S2-1,88.628,0.55556,12.0,0.9,54.0 -8358-S2-1,89.125,0.48156,8.0,0.9,48.0 -8358-S2-1,89.602,0.526,8.0,0.8,54.0 -8364-S2-0,90.54700000000003,0.28889000000000004,4.0,0.9,48.0 -8364-S2-0,91.039,0.25178,8.0,0.8,48.0 -8364-S2-0,91.539,0.29622,8.0,0.9,42.0 -8364-S2-0,92.016,0.37044,12.0,0.9,42.0 -8364-S2-0,92.555,0.31111,4.0,0.9,42.0 -8364-S2-0,93.561,0.5482199999999999,8.0,0.8,30.0 -8370-S2-1,77.00800000000001,0.24444,4.0,0.9,42.0 -8370-S2-1,77.527,0.326,0.0,1.0,48.0 -8370-S2-1,77.97199999999998,0.34822,0.0,0.9,54.0 -8370-S2-1,78.529,0.326,4.0,1.0,42.0 -8370-S2-1,79.00199999999998,0.30378,0.0,0.9,48.0 -8370-S2-1,80.00199999999998,0.39267,0.0,0.9,42.0 -8370-S2-1,81.029,0.4295600000000001,0.0,0.9,48.0 -8374-S2-1,69.524,0.40733,4.0,0.9,60.0 -8374-S2-1,70.042,0.45933,0.0,0.8,60.0 -8374-S2-1,70.502,0.4295600000000001,4.0,1.0,60.0 -8374-S2-1,71.036,0.37044,0.0,0.9,60.0 -8374-S2-1,71.639,0.6148899999999999,0.0,0.8,54.0 -8374-S2-1,72.658,0.88889,0.0,0.8,42.0 -8382-S2-1,76.177,0.18511,8.0,1.0,60.0 -8382-S2-1,76.699,0.13333,4.0,1.0,54.0 -8382-S2-1,77.155,0.22222,0.0,0.9,60.0 -8382-S2-1,77.71100000000003,0.34822,0.0,1.0,54.0 -8382-S2-1,78.193,0.28156,0.0,1.0,48.0 -8382-S2-1,79.158,0.68156,4.0,0.8,48.0 -8388-S2-0,87.50200000000001,0.37778,4.0,1.0,54.0 -8388-S2-0,87.958,0.50378,12.0,1.0,54.0 -8388-S2-0,88.49899999999998,0.4371100000000001,16.0,0.8,54.0 -8388-S2-0,89.021,0.44444,12.0,0.9,54.0 -8388-S2-0,89.613,0.55556,20.0,1.0,48.0 -8390-S2-1,72.693,0.526,4.0,1.0,54.0 -8390-S2-1,73.21100000000001,0.39267,4.0,0.9,54.0 -8390-S2-1,73.661,0.48156,4.0,0.8,54.0 -8390-S2-1,74.289,0.56289,8.0,1.0,48.0 -8390-S2-1,74.714,0.4295600000000001,4.0,1.0,54.0 -8390-S2-1,75.73,0.526,0.0,0.8,54.0 -8412-S2-0,60.083000000000006,0.48156,48.0,0.9,54.0 -8412-S2-0,60.580000000000005,0.4,24.0,0.9,42.0 -8412-S2-0,61.077000000000005,0.62956,24.0,0.9,42.0 -8412-S2-0,61.599000000000004,0.71844,28.000000000000004,0.9,36.0 -8418-S2-1,78.42399999999998,0.51844,4.0,0.9,60.0 -8418-S2-1,78.894,0.54067,4.0,1.0,54.0 -8418-S2-1,79.42399999999998,0.62222,0.0,0.9,60.0 -8418-S2-1,79.927,0.5111100000000001,4.0,0.8,60.0 -8418-S2-1,80.46899999999998,0.50378,8.0,1.0,54.0 -8442-S2-1,76.685,0.53333,20.0,0.9,48.0 -8442-S2-1,77.18,0.62222,16.0,0.8,48.0 -8442-S2-1,77.699,0.68889,32.0,0.7,36.0 -8442-S2-1,78.177,0.7851100000000001,68.0,0.7,30.0 -8442-S2-1,78.68,0.75556,52.0,0.8,42.0 -8444-S2-0,86.018,0.33333,4.0,0.9,42.0 -8444-S2-0,86.518,0.41489,4.0,0.9,54.0 -8444-S2-0,87.024,0.4,8.0,0.9,42.0 -8444-S2-0,87.494,0.46667,8.0,0.9,48.0 -8462-S2-1,72.83,0.4371100000000001,0.0,1.0,48.0 -8462-S2-1,73.286,0.51844,0.0,0.9,54.0 -8462-S2-1,73.747,0.55556,4.0,1.0,54.0 -8462-S2-1,74.408,0.51844,4.0,1.0,48.0 -8462-S2-1,74.824,0.62222,8.0,0.9,48.0 -8470-S2-1,83.891,0.24444,0.0,1.0,54.0 -8470-S2-1,84.391,0.44444,0.0,1.0,60.0 -8470-S2-1,84.908,0.45178,0.0,0.9,48.0 -8470-S2-1,85.408,0.40733,0.0,1.0,54.0 -8470-S2-1,85.94600000000003,0.54067,0.0,1.0,60.0 -8470-S2-1,86.964,0.54067,0.0,0.9,60.0 -8474-S2-1,83.63600000000001,0.6148899999999999,4.0,1.0,60.0 -8474-S2-1,84.122,0.48889,12.0,1.0,54.0 -8474-S2-1,84.655,0.60733,28.000000000000004,1.0,60.0 -8474-S2-1,85.15200000000002,0.66667,8.0,0.9,54.0 -8474-S2-1,85.811,0.57044,28.000000000000004,1.0,54.0 -8488-S2-0,82.46100000000003,0.62956,8.0,0.8,42.0 -8488-S2-0,82.986,0.69622,8.0,0.8,30.0 -8488-S2-0,83.55,0.56289,12.0,0.9,48.0 -8488-S2-0,83.986,0.7406699999999999,24.0,0.8,48.0 -8498-S2-1,76.703,0.4371100000000001,4.0,1.0,54.0 -8498-S2-1,77.19600000000003,0.53333,0.0,1.0,48.0 -8498-S2-1,77.71100000000003,0.45933,0.0,1.0,48.0 -8500-S2-0,73.297,0.59267,0.0,0.9,54.0 -8500-S2-0,73.797,0.45178,0.0,1.0,48.0 -8500-S2-0,74.324,0.42222,0.0,1.0,54.0 -8500-S2-0,74.852,0.50378,0.0,0.9,48.0 -8500-S2-0,75.294,0.5482199999999999,4.0,0.9,42.0 -8502-S2-1,77.063,0.326,20.0,1.0,48.0 -8502-S2-1,77.55300000000003,0.58511,32.0,0.9,48.0 -8502-S2-1,78.047,0.37044,28.000000000000004,0.9,42.0 -8502-S2-1,78.736,0.36289,48.0,0.9,42.0 -8502-S2-1,79.066,0.44444,52.0,0.8,36.0 -8504-S2-0,69.05300000000001,0.46667,0.0,0.9,48.0 -8504-S2-0,69.58800000000001,0.38511,0.0,0.8,48.0 -8504-S2-0,70.05,0.46667,0.0,0.9,42.0 -8504-S2-0,70.427,0.45933,8.0,0.8,48.0 -8504-S2-0,71.066,0.45178,4.0,0.7,42.0 -8504-S2-0,72.08,0.56289,8.0,0.8,36.0 -8518-S2-1,86.75500000000001,0.34822,0.0,0.9,54.0 -8518-S2-1,87.25500000000001,0.20733,0.0,0.9,60.0 -8518-S2-1,87.691,0.326,0.0,1.0,60.0 -8518-S2-1,88.26299999999998,0.4,4.0,0.8,54.0 -8518-S2-1,88.73299999999999,0.37044,0.0,0.9,54.0 -8518-S2-1,89.73,0.33333,0.0,0.9,60.0 -8518-S2-1,90.75799999999998,0.2,0.0,0.9,48.0 -8522-S2-1,59.607,0.53333,0.0,0.9,48.0 -8522-S2-1,60.105000000000004,0.48156,8.0,0.9,42.0 -8522-S2-1,60.569,0.68889,4.0,0.9,42.0 -8522-S2-1,61.094,0.5777800000000001,24.0,0.8,36.0 -8522-S2-1,61.574000000000005,0.674,28.000000000000004,0.7,30.0 -8522-S2-1,62.577000000000005,0.75556,56.00000000000001,0.30000000000000004,36.0 -8524-S2-0,83.822,0.42222,0.0,0.7,48.0 -8524-S2-0,84.33,0.34067,0.0,0.9,54.0 -8524-S2-0,84.794,0.51844,0.0,0.9,54.0 -8524-S2-0,85.33,0.50378,0.0,0.9,48.0 -8524-S2-0,85.96899999999998,0.5111100000000001,0.0,0.9,48.0 -8554-S2-1,78.994,0.37778,4.0,1.0,60.0 -8554-S2-1,79.47500000000001,0.5777800000000001,4.0,0.9,48.0 -8554-S2-1,79.96899999999998,0.4295600000000001,4.0,0.8,48.0 -8554-S2-1,80.516,0.474,0.0,0.9,60.0 -8554-S2-1,81.01,0.56289,0.0,0.9,54.0 -8556-S2-0,73.16300000000001,0.35556,4.0,0.8,54.0 -8556-S2-0,73.68,0.26667,8.0,0.9,54.0 -8556-S2-0,74.161,0.5482199999999999,0.0,1.0,60.0 -8556-S2-0,75.792,0.62956,12.0,0.9,54.0 -8562-S2-1,78.152,0.38511,0.0,1.0,48.0 -8562-S2-1,78.702,0.5482199999999999,4.0,0.9,42.0 -8562-S2-1,79.17399999999998,0.54067,8.0,1.0,36.0 -8562-S2-1,79.693,0.73333,24.0,0.9,42.0 -8562-S2-1,80.21100000000003,0.85178,20.0,0.8,36.0 -8592-S2-0,71.244,0.22222,0.0,1.0,54.0 -8592-S2-0,71.738,0.36289,0.0,1.0,48.0 -8592-S2-0,72.236,0.42222,0.0,1.0,54.0 -8592-S2-0,72.738,0.34822,8.0,1.0,54.0 -8592-S2-0,73.236,0.37044,12.0,0.9,48.0 -8592-S2-0,74.308,0.50378,32.0,0.9,30.0 -8608-S2-0,84.47199999999998,0.4,4.0,1.0,48.0 -8608-S2-0,84.905,0.35556,0.0,1.0,48.0 -8608-S2-0,85.50799999999998,0.34822,4.0,1.0,42.0 -8608-S2-0,86.066,0.31111,0.0,1.0,54.0 -8608-S2-0,86.488,0.4,0.0,0.9,48.0 -8608-S2-0,87.553,0.45178,4.0,1.0,48.0 -8612-S2-0,70.435,0.46667,4.0,0.9,54.0 -8612-S2-0,70.911,0.40733,4.0,0.9,48.0 -8612-S2-0,71.458,0.56289,0.0,1.0,54.0 -8612-S2-0,71.943,0.6,0.0,1.0,48.0 -8612-S2-0,72.46100000000001,0.64444,0.0,0.9,42.0 -8618-S2-1,75.891,0.4295600000000001,0.0,0.8,48.0 -8618-S2-1,76.36800000000001,0.51844,0.0,0.8,48.0 -8618-S2-1,76.866,0.65178,12.0,0.8,54.0 -8618-S2-1,77.397,0.56289,4.0,0.9,42.0 -8618-S2-1,77.98,0.65933,8.0,0.9,42.0 -8620-S2-0,85.569,0.33333,4.0,0.9,60.0 -8620-S2-0,86.08500000000001,0.29622,4.0,1.0,60.0 -8620-S2-0,86.569,0.36289,12.0,1.0,60.0 -8620-S2-0,87.066,0.34822,12.0,1.0,60.0 -8620-S2-0,87.583,0.42222,24.0,0.9,60.0 -8620-S2-0,88.639,0.51844,12.0,0.8,60.0 -8626-S2-1,79.66300000000003,0.55556,0.0,1.0,60.0 -8626-S2-1,80.144,0.59267,28.000000000000004,0.9,54.0 -8626-S2-1,80.682,0.68156,24.0,1.0,60.0 -8626-S2-1,81.177,0.8222200000000001,36.0,0.9,42.0 -8654-S2-1,80.11,0.4295600000000001,0.0,0.9,60.0 -8654-S2-1,80.572,0.35556,4.0,0.9,48.0 -8654-S2-1,81.199,0.53333,4.0,1.0,54.0 -8654-S2-1,81.59100000000001,0.39267,8.0,1.0,48.0 -8662-S2-1,75.214,0.42222,8.0,0.9,48.0 -8662-S2-1,75.75199999999998,0.60733,20.0,0.9,48.0 -8662-S2-1,76.24899999999998,0.48156,8.0,0.8,54.0 -8662-S2-1,76.747,0.6371100000000001,8.0,0.9,54.0 -8662-S2-1,77.23,0.54067,8.0,0.9,54.0 -8662-S2-1,78.22199999999998,0.6,12.0,1.0,48.0 -8666-S2-1,72.497,0.36289,4.0,0.9,60.0 -8666-S2-1,72.991,0.33333,4.0,0.9,60.0 -8666-S2-1,73.59399999999998,0.39267,0.0,0.9,54.0 -8666-S2-1,74.039,0.4371100000000001,0.0,0.9,60.0 -8666-S2-1,74.516,0.5482199999999999,0.0,0.9,48.0 -8680-S2-0,86.76,0.45933,4.0,0.8,54.0 -8680-S2-0,87.25799999999998,0.54067,8.0,0.9,48.0 -8680-S2-0,87.75500000000001,0.50378,8.0,0.9,48.0 -8680-S2-0,88.22500000000001,0.5777800000000001,8.0,0.8,48.0 -8680-S2-0,88.75200000000001,0.6,8.0,0.9,48.0 -8680-S2-0,89.786,0.6148899999999999,4.0,0.9,42.0 -8684-S2-0,85.99899999999998,0.4,8.0,0.9,54.0 -8684-S2-0,86.47200000000001,0.41489,4.0,0.9,54.0 -8684-S2-0,86.96899999999998,0.58511,12.0,0.9,60.0 -8684-S2-0,87.46600000000001,0.6,8.0,0.9,48.0 -8684-S2-0,87.98,0.58511,8.0,0.9,48.0 -8684-S2-0,89.018,0.71111,12.0,0.7,36.0 -8688-S2-0,80.988,0.57044,0.0,0.9,42.0 -8688-S2-0,81.491,0.80733,24.0,0.9,36.0 -8688-S2-0,82.024,0.81489,16.0,0.9,36.0 -8688-S2-0,82.536,0.88889,4.0,0.8,36.0 -8690-S2-1,62.777,0.326,4.0,0.9,54.0 -8690-S2-1,63.294000000000004,0.40733,0.0,1.0,54.0 -8690-S2-1,63.771000000000015,0.34067,0.0,0.9,60.0 -8708-S2-0,72.819,0.45933,0.0,0.9,54.0 -8708-S2-0,73.319,0.48889,4.0,0.9,60.0 -8708-S2-0,73.816,0.50378,4.0,0.9,60.0 diff --git a/example/start/inputs/data_normalized.csv b/example/start/inputs/data_normalized.csv deleted file mode 100644 index 4a1c18992..000000000 --- a/example/start/inputs/data_normalized.csv +++ /dev/null @@ -1,1488 +0,0 @@ -ID,TIME,Y0,Y1,Y2,Y3 -132-S2-0,81.661,0.44444,0.04,0.0,0.0 -132-S2-0,82.13600000000001,0.6,0.0,0.0,0.2 -132-S2-0,82.682,0.39267,0.04,0.0,0.2 -132-S2-0,83.139,0.58511,0.0,0.0,0.0 -132-S2-0,83.691,0.57044,0.0,0.0,0.0 -132-S2-0,84.655,0.55556,0.2,0.1,0.2 -132-S2-0,85.691,0.71844,0.2,0.1,0.6 -132-S2-0,86.663,0.71111,0.32,0.2,0.6 -132-S2-0,87.639,0.91111,0.52,0.6,1.0 -184-S2-0,80.994,0.326,0.0,0.0,0.0 -184-S2-0,81.47199999999998,0.35556,0.0,0.0,0.0 -184-S2-0,82.08800000000001,0.4,0.0,0.0,0.0 -184-S2-0,82.488,0.31111,0.0,0.0,0.0 -184-S2-0,83.029,0.53333,0.0,0.0,0.0 -184-S2-0,84.036,0.49622,0.0,0.0,0.0 -184-S2-0,85.039,0.4295600000000001,0.0,0.0,0.0 -184-S2-0,86.01299999999998,0.62222,0.04,0.0,0.0 -184-S2-0,86.97500000000001,0.64444,0.0,0.0,0.0 -184-S2-0,88.12200000000003,0.77778,0.08,0.1,0.2 -184-S2-0,88.977,0.77778,0.12,0.0,0.0 -238-S2-1,80.994,0.326,0.0,0.0,0.0 -238-S2-1,81.47199999999998,0.35556,0.0,0.0,0.0 -238-S2-1,82.08800000000001,0.4,0.0,0.0,0.0 -238-S2-1,82.488,0.31111,0.0,0.0,0.0 -238-S2-1,83.029,0.53333,0.0,0.0,0.0 -238-S2-1,84.036,0.49622,0.0,0.0,0.0 -238-S2-1,85.039,0.4295600000000001,0.0,0.0,0.0 -256-S2-0,68.46100000000001,0.40733,0.0,0.1,0.0 -256-S2-0,68.994,0.29622,0.0,0.2,0.0 -256-S2-0,69.50800000000001,0.49622,0.0,0.1,0.0 -256-S2-0,69.98,0.4,0.0,0.1,0.0 -256-S2-0,70.50500000000001,0.46667,0.08,0.1,0.0 -256-S2-0,71.427,0.48889,0.0,0.2,0.0 -256-S2-0,72.782,0.526,0.0,0.2,0.0 -256-S2-0,73.58500000000001,0.55556,0.0,0.2,0.2 -256-S2-0,74.563,0.6,0.0,0.1,0.4 -256-S2-0,75.574,0.73333,0.0,0.2,0.4 -300-S2-0,86.949,0.40733,0.0,0.0,0.0 -300-S2-0,87.405,0.45933,0.0,0.1,0.2 -300-S2-0,87.95200000000003,0.4,0.0,0.0,0.0 -300-S2-0,88.38000000000001,0.5111100000000001,0.0,0.0,0.0 -300-S2-0,88.927,0.526,0.0,0.1,0.0 -300-S2-0,89.964,0.48889,0.04,0.0,0.0 -300-S2-0,90.98,0.66667,0.0,0.1,0.2 -300-S2-0,91.95200000000003,0.71111,0.0,0.0,0.2 -300-S2-0,93.177,0.68889,0.08,0.1,0.4 -350-S2-1,83.069,0.36289,0.04,0.1,0.6 -350-S2-1,83.563,0.30378,0.04,0.1,0.2 -350-S2-1,84.083,0.4371100000000001,0.04,0.1,0.0 -350-S2-1,84.699,0.526,0.04,0.0,0.0 -350-S2-1,85.09100000000001,0.49622,0.08,0.0,0.0 -350-S2-1,86.46600000000001,0.46667,0.12,0.0,0.0 -350-S2-1,87.65200000000002,0.77778,0.16,0.1,1.0 -350-S2-1,89.04700000000003,0.8,0.24,0.1,0.2 -350-S2-1,90.19600000000003,0.8222200000000001,0.36,0.4,1.0 -350-S2-1,91.096,0.86667,0.64,0.7,0.8 -492-S2-0,73.544,0.46667,0.08,0.1,0.4 -492-S2-0,74.042,0.60733,0.04,0.1,0.2 -492-S2-0,74.539,0.42222,0.0,0.0,0.0 -492-S2-0,75.055,0.55556,0.08,0.1,0.2 -492-S2-0,75.55,0.5482199999999999,0.0,0.1,0.2 -492-S2-0,76.535,0.69622,0.16,0.1,0.2 -492-S2-0,77.58800000000001,0.71111,0.04,0.1,0.4 -492-S2-0,78.569,0.75556,0.28,0.4,0.8 -492-S2-0,79.49899999999998,0.95556,0.28,0.6,1.0 -514-S2-1,74.277,0.21489,0.0,0.0,0.0 -514-S2-1,74.782,0.31111,0.0,0.0,0.0 -514-S2-1,75.277,0.2,0.0,0.0,0.0 -514-S2-1,75.794,0.45178,0.0,0.0,0.0 -514-S2-1,76.233,0.30378,0.0,0.0,0.0 -514-S2-1,77.279,0.326,0.0,0.0,0.4 -514-S2-1,79.349,0.33333,0.0,0.0,0.0 -514-S2-1,80.271,0.31111,0.0,0.0,0.0 -514-S2-1,81.286,0.31111,0.0,0.0,0.0 -514-S2-1,82.308,0.37778,0.0,0.0,0.0 -654-S2-1,69.039,0.22222,0.0,0.0,0.2 -654-S2-1,69.529,0.24444,0.04,0.0,0.4 -654-S2-1,70.047,0.25178,0.0,0.0,0.2 -654-S2-1,70.547,0.48156,0.0,0.0,0.2 -654-S2-1,71.013,0.35556,0.0,0.0,0.2 -654-S2-1,72.047,0.4371100000000001,0.0,0.0,0.4 -654-S2-1,73.074,0.36289,0.0,0.0,0.0 -654-S2-1,74.032,0.5777800000000001,0.04,0.0,0.2 -654-S2-1,75.066,0.44444,0.0,0.0,0.4 -654-S2-1,76.116,0.46667,0.04,0.0,0.4 -796-S2-0,71.116,0.326,0.04,0.1,0.4 -796-S2-0,71.613,0.24444,0.04,0.1,0.6 -796-S2-0,72.09100000000001,0.28889000000000004,0.04,0.1,0.4 -796-S2-0,72.619,0.25178,0.08,0.0,0.4 -796-S2-0,73.122,0.37044,0.08,0.1,0.4 -796-S2-0,74.113,0.41489,0.08,0.2,0.4 -796-S2-0,75.147,0.37778,0.24,0.1,0.6 -796-S2-0,76.171,0.53333,0.32,0.2,0.6 -796-S2-0,77.144,0.75556,0.6,0.6,1.0 -992-S2-0,79.813,0.59267,0.04,0.1,0.2 -992-S2-0,80.292,0.48156,0.12,0.0,0.2 -992-S2-0,80.889,0.62222,0.16,0.1,0.0 -992-S2-0,81.38300000000001,0.65178,0.0,0.0,0.2 -992-S2-0,81.792,0.62222,0.0,0.0,0.0 -992-S2-0,82.808,0.51844,0.04,0.0,0.2 -992-S2-0,83.83800000000001,0.6,0.04,0.1,0.2 -992-S2-0,84.83500000000001,0.62222,0.0,0.1,0.2 -992-S2-0,85.866,0.6,0.2,0.1,0.2 -992-S2-0,86.86799999999998,0.75556,0.2,0.0,0.2 -1014-S2-1,73.83800000000001,0.2,0.0,0.0,0.0 -1014-S2-1,74.333,0.13333,0.04,0.0,0.0 -1014-S2-1,74.76,0.28156,0.0,0.1,0.0 -1014-S2-1,75.349,0.25178,0.0,0.0,0.0 -1014-S2-1,75.824,0.20733,0.0,0.0,0.0 -1014-S2-1,76.86800000000001,0.36289,0.0,0.0,0.0 -1014-S2-1,77.902,0.35556,0.0,0.0,0.0 -1014-S2-1,78.83500000000001,0.37778,0.0,0.0,0.0 -1152-S2-0,85.58,0.38511,0.0,0.0,0.6 -1152-S2-0,86.074,0.326,0.0,0.0,0.4 -1152-S2-0,86.574,0.41489,0.0,0.0,0.2 -1152-S2-0,87.083,0.34822,0.0,0.0,0.2 -1152-S2-0,87.58500000000001,0.4371100000000001,0.0,0.0,0.4 -1152-S2-0,88.62200000000003,0.41489,0.0,0.0,0.2 -1152-S2-0,89.555,0.326,0.0,0.1,0.4 -1152-S2-0,90.58,0.46667,0.08,0.0,0.6 -1152-S2-0,91.529,0.55556,0.16,0.1,0.8 -1152-S2-0,92.544,0.46667,0.04,0.1,0.6 -1188-S2-0,84.083,0.33333,0.08,0.1,0.0 -1188-S2-0,84.577,0.21489,0.0,0.1,0.0 -1188-S2-0,85.074,0.37044,0.0,0.0,0.2 -1188-S2-0,85.613,0.4,0.04,0.1,0.2 -1188-S2-0,86.09100000000001,0.38511,0.0,0.1,0.0 -1188-S2-0,87.08799999999998,0.35556,0.0,0.1,0.2 -1188-S2-0,88.25500000000001,0.44444,0.0,0.1,0.0 -1188-S2-0,89.08,0.48889,0.0,0.1,0.4 -1188-S2-0,90.155,0.46667,0.0,0.1,0.2 -1246-S2-1,82.214,0.28156,0.0,0.0,0.2 -1246-S2-1,82.73,0.5111100000000001,0.0,0.1,0.4 -1246-S2-1,83.22199999999998,0.35556,0.0,0.1,0.2 -1246-S2-1,83.727,0.39267,0.0,0.1,0.4 -1246-S2-1,84.22500000000001,0.34822,0.04,0.1,0.4 -1246-S2-1,85.193,0.31111,0.0,0.1,0.6 -1246-S2-1,86.46600000000001,0.37778,0.04,0.1,0.8 -1246-S2-1,87.46600000000001,0.37778,0.12,0.1,0.8 -1246-S2-1,88.458,0.46667,0.08,0.1,0.8 -1246-S2-1,89.47500000000001,0.53333,0.16,0.1,0.6 -1296-S2-0,79.308,0.4,0.04,0.1,0.4 -1296-S2-0,79.943,0.674,0.08,0.2,0.4 -1296-S2-0,80.33,0.6148899999999999,0.0,0.1,0.4 -1296-S2-0,80.816,0.726,0.04,0.2,0.8 -1296-S2-0,81.36800000000001,0.726,0.08,0.0,0.6 -1296-S2-0,82.59100000000001,0.8295600000000001,0.08,0.2,0.6 -1296-S2-0,83.55300000000003,0.91111,0.36,0.2,1.0 -1318-S2-1,75.542,0.326,0.0,0.0,0.4 -1318-S2-1,76.22500000000001,0.34067,0.0,0.0,0.2 -1318-S2-1,76.572,0.37778,0.0,0.0,0.2 -1318-S2-1,77.22199999999998,0.35556,0.0,0.0,0.0 -1318-S2-1,77.55,0.44444,0.0,0.0,0.2 -1318-S2-1,78.547,0.4371100000000001,0.0,0.1,0.2 -1318-S2-1,79.50199999999998,0.4,0.0,0.0,0.2 -1318-S2-1,80.555,0.37778,0.0,0.0,0.2 -1318-S2-1,81.613,0.42222,0.0,0.0,0.4 -1500-S2-0,73.00500000000001,0.54067,0.04,0.1,0.2 -1500-S2-0,73.453,0.60733,0.04,0.0,0.2 -1500-S2-0,73.943,0.49622,0.08,0.1,0.2 -1500-S2-0,74.419,0.5111100000000001,0.36,0.0,0.6 -1500-S2-0,75.421,0.53333,0.52,0.2,1.0 -1500-S2-0,76.438,0.62222,0.72,0.5,1.0 -1500-S2-0,77.51,1.0,0.92,1.0,1.0 -1500-S2-0,78.491,1.0,0.96,1.0,1.0 -1504-S2-0,64.372,0.526,0.0,0.0,0.2 -1504-S2-0,64.919,0.41489,0.0,0.0,0.2 -1504-S2-0,65.369,0.44444,0.0,0.0,0.0 -1504-S2-0,65.908,0.6,0.0,0.0,0.2 -1504-S2-0,66.547,0.474,0.04,0.0,0.2 -1504-S2-0,67.84100000000001,0.49622,0.04,0.1,0.0 -1504-S2-0,69.352,0.66667,0.0,0.1,0.4 -1504-S2-0,70.38600000000001,0.68889,0.12,0.2,0.4 -1504-S2-0,71.44600000000001,0.68889,0.04,0.5,0.8 -1634-S2-1,77.688,0.41489,0.12,0.1,0.2 -1634-S2-1,78.205,0.48889,0.04,0.1,0.4 -1634-S2-1,78.66600000000003,0.526,0.16,0.2,0.2 -1634-S2-1,79.21899999999998,0.6,0.04,0.3,0.4 -1634-S2-1,79.68,0.65933,0.16,0.2,0.4 -1634-S2-1,80.68,0.68156,0.16,0.2,0.4 -1634-S2-1,81.83,0.75556,0.8,0.5,1.0 -1716-S2-0,88.42399999999998,0.28156,0.0,0.1,0.2 -1716-S2-0,88.927,0.22222,0.0,0.0,0.2 -1716-S2-0,89.63600000000001,0.37044,0.0,0.0,0.2 -1716-S2-0,89.938,0.29622,0.0,0.0,0.4 -1716-S2-0,90.421,0.37778,0.0,0.0,0.4 -1716-S2-0,91.45299999999999,0.34067,0.0,0.0,0.4 -1716-S2-0,92.45299999999999,0.33333,0.04,0.0,0.6 -1716-S2-0,93.441,0.5777800000000001,0.04,0.1,0.8 -1716-S2-0,95.074,0.55556,0.16,0.2,0.8 -1728-S2-0,68.539,0.30378,0.0,0.1,0.0 -1728-S2-0,69.096,0.31111,0.0,0.1,0.4 -1728-S2-0,69.63300000000001,0.41489,0.04,0.1,0.2 -1728-S2-0,70.128,0.44444,0.0,0.1,0.0 -1728-S2-0,70.613,0.30378,0.0,0.1,0.2 -1728-S2-0,71.569,0.4,0.04,0.1,0.2 -1728-S2-0,72.51,0.48889,0.16,0.1,0.4 -1728-S2-0,73.539,0.5777800000000001,0.16,0.1,0.2 -1728-S2-0,74.555,0.64444,0.24,0.1,0.0 -1728-S2-0,75.555,0.71111,0.2,0.1,0.2 -1738-S2-1,74.171,0.35556,0.04,0.1,0.0 -1738-S2-1,74.705,0.37778,0.08,0.0,0.0 -1738-S2-1,75.161,0.31111,0.04,0.0,0.0 -1738-S2-1,75.68,0.37044,0.04,0.0,0.0 -1738-S2-1,76.182,0.30378,0.04,0.1,0.0 -1738-S2-1,77.171,0.36289,0.16,0.0,0.0 -1738-S2-1,78.177,0.44444,0.04,0.1,0.2 -1738-S2-1,79.17399999999998,0.4,0.12,0.0,0.0 -1750-S2-1,82.432,0.44444,0.04,0.1,0.2 -1750-S2-1,83.096,0.48156,0.12,0.1,0.4 -1750-S2-1,83.41600000000003,0.50378,0.16,0.1,0.2 -1750-S2-1,83.96600000000001,0.58511,0.16,0.2,0.4 -1750-S2-1,86.663,0.66667,0.4,0.2,0.8 -1878-S2-1,67.244,0.37778,0.0,0.1,0.0 -1878-S2-1,67.766,0.57044,0.0,0.1,0.2 -1878-S2-1,68.76,0.60733,0.0,0.1,0.2 -1878-S2-1,69.313,0.5111100000000001,0.16,0.1,0.2 -1878-S2-1,70.305,0.59267,0.12,0.2,0.2 -1878-S2-1,71.268,0.73333,0.28,0.3,0.4 -1964-S2-0,76.152,0.58511,0.0,0.1,0.0 -1964-S2-0,76.65,0.54067,0.0,0.1,0.0 -1964-S2-0,77.16300000000003,0.48889,0.0,0.1,0.0 -1964-S2-0,77.702,0.58511,0.0,0.1,0.0 -1964-S2-0,78.158,0.57044,0.0,0.1,0.0 -1964-S2-0,79.122,0.57044,0.04,0.1,0.0 -1964-S2-0,80.13000000000001,0.55556,0.0,0.2,0.2 -1964-S2-0,81.147,0.68889,0.08,0.1,0.2 -1964-S2-0,82.169,0.62222,0.04,0.2,0.4 -1968-S2-0,86.316,0.50378,0.04,0.0,0.2 -1968-S2-0,86.803,0.49622,0.0,0.1,0.4 -1968-S2-0,87.33500000000001,0.62222,0.04,0.1,0.4 -1968-S2-0,87.803,0.74822,0.0,0.3,0.2 -1968-S2-0,88.32700000000003,0.65933,0.0,0.2,0.2 -1968-S2-0,90.311,0.64444,0.04,0.4,0.4 -1968-S2-0,91.289,0.84444,0.08,0.2,0.6 -1968-S2-0,92.279,0.8222200000000001,0.08,0.3,0.6 -1980-S2-0,81.405,0.4295600000000001,0.04,0.2,0.4 -1980-S2-0,81.92399999999998,0.41489,0.08,0.3,0.4 -1980-S2-0,82.4,0.57044,0.04,0.2,0.2 -1980-S2-0,82.891,0.57044,0.0,0.1,0.2 -1980-S2-0,83.435,0.65933,0.04,0.1,0.8 -1980-S2-0,84.432,0.5777800000000001,0.0,0.1,0.4 -1980-S2-0,85.455,0.68889,0.12,0.1,0.4 -1990-S2-1,75.75199999999998,0.4295600000000001,0.04,0.1,0.2 -1990-S2-1,76.24899999999998,0.38511,0.04,0.2,0.2 -1990-S2-1,76.74899999999998,0.34822,0.12,0.1,0.0 -1990-S2-1,77.26,0.45178,0.08,0.1,0.2 -1990-S2-1,77.846,0.526,0.04,0.2,0.2 -1990-S2-1,78.84100000000001,0.6371100000000001,0.2,0.2,0.0 -1990-S2-1,79.83500000000001,0.8222200000000001,0.2,0.3,0.4 -1992-S2-0,77.044,0.56289,0.08,0.1,0.4 -1992-S2-0,77.524,0.55556,0.0,0.3,0.2 -1992-S2-0,78.039,0.45178,0.0,0.1,0.2 -1992-S2-0,78.521,0.66667,0.08,0.2,0.4 -1992-S2-0,80.08500000000001,0.8,0.24,0.4,0.4 -1992-S2-0,81.018,0.84444,0.48,0.7,0.8 -1992-S2-0,82.039,0.97778,0.8,1.0,1.0 -1992-S2-0,83.096,1.0,0.8,0.9,1.0 -1992-S2-0,83.997,1.0,0.96,1.0,1.0 -2004-S2-0,68.647,0.33333,0.0,0.1,0.0 -2004-S2-0,69.141,0.51844,0.0,0.1,0.0 -2004-S2-0,69.644,0.4295600000000001,0.0,0.1,0.0 -2004-S2-0,70.139,0.4371100000000001,0.0,0.1,0.0 -2004-S2-0,70.641,0.42222,0.0,0.0,0.0 -2004-S2-0,71.622,0.5482199999999999,0.0,0.1,0.0 -2004-S2-0,72.652,0.5111100000000001,0.0,0.2,0.0 -2004-S2-0,73.65,0.62222,0.0,0.4,0.2 -2004-S2-0,74.628,0.64444,0.28,0.5,0.4 -2004-S2-0,75.641,0.86667,0.44,0.6,1.0 -2044-S2-0,71.486,0.56289,0.04,0.1,0.4 -2044-S2-0,71.98,0.54067,0.0,0.1,0.4 -2044-S2-0,72.483,0.53333,0.0,0.1,0.2 -2044-S2-0,72.972,0.60733,0.04,0.1,0.2 -2044-S2-0,73.47500000000001,0.41489,0.0,0.1,0.4 -2044-S2-0,74.497,0.58511,0.0,0.1,0.4 -2044-S2-0,75.491,0.66667,0.04,0.1,0.2 -2044-S2-0,76.50199999999998,0.6,0.08,0.1,0.6 -2044-S2-0,77.48,0.6,0.0,0.2,0.6 -2044-S2-0,78.497,0.8222200000000001,0.16,0.4,0.8 -2048-S2-0,75.72199999999998,0.42222,0.0,0.2,0.2 -2048-S2-0,76.308,0.51844,0.0,0.2,0.4 -2048-S2-0,76.744,0.34822,0.04,0.2,0.4 -2048-S2-0,77.22199999999998,0.5777800000000001,0.0,0.2,0.0 -2048-S2-0,77.76,0.51844,0.04,0.1,0.2 -2048-S2-0,78.75199999999998,0.49622,0.08,0.2,0.2 -2048-S2-0,79.811,0.66667,0.0,0.2,0.4 -2144-S2-0,85.11,0.48889,0.0,0.1,0.2 -2144-S2-0,85.59100000000001,0.57044,0.0,0.0,0.2 -2144-S2-0,86.11799999999998,0.54067,0.04,0.0,0.0 -2144-S2-0,86.65,0.5111100000000001,0.04,0.1,0.2 -2144-S2-0,87.147,0.55556,0.0,0.1,0.2 -2144-S2-0,89.241,0.64444,0.04,0.2,0.2 -2144-S2-0,90.13299999999998,0.75556,0.16,0.3,0.2 -2144-S2-0,90.74700000000003,0.8,0.08,0.2,0.2 -2162-S2-1,80.208,0.33333,0.04,0.0,0.2 -2162-S2-1,80.671,0.48156,0.0,0.0,0.2 -2162-S2-1,81.203,0.474,0.0,0.1,0.2 -2162-S2-1,81.705,0.4295600000000001,0.0,0.0,0.2 -2162-S2-1,82.21100000000003,0.45933,0.0,0.0,0.2 -2162-S2-1,83.208,0.526,0.0,0.1,0.4 -2162-S2-1,84.203,0.5111100000000001,0.0,0.2,0.6 -2210-S2-1,76.539,0.37044,0.0,0.1,0.2 -2210-S2-1,77.047,0.326,0.04,0.1,0.2 -2210-S2-1,77.613,0.28156,0.04,0.1,0.2 -2210-S2-1,78.032,0.4371100000000001,0.08,0.1,0.2 -2210-S2-1,78.65,0.42222,0.0,0.1,0.2 -2210-S2-1,79.51,0.474,0.0,0.1,0.2 -2210-S2-1,80.563,0.44444,0.0,0.2,0.2 -2210-S2-1,81.55300000000003,0.5777800000000001,0.04,0.1,0.2 -2210-S2-1,82.569,0.64444,0.08,0.1,0.4 -2272-S2-0,58.550000000000004,0.22956,0.0,0.1,0.0 -2272-S2-0,59.044000000000004,0.38511,0.0,0.1,0.2 -2272-S2-0,59.547000000000004,0.39267,0.0,0.1,0.0 -2272-S2-0,60.039,0.44444,0.0,0.1,0.2 -2272-S2-0,60.544000000000004,0.4,0.0,0.1,0.0 -2272-S2-0,61.536000000000016,0.37778,0.0,0.1,0.0 -2272-S2-0,62.558,0.64444,0.0,0.1,0.6 -2272-S2-0,63.547000000000004,0.73333,0.0,0.1,0.4 -2272-S2-0,64.491,0.73333,0.0,0.1,0.4 -2272-S2-0,65.542,0.75556,0.0,0.2,0.4 -2274-S2-1,83.878,0.46667,0.0,0.0,0.4 -2274-S2-1,84.355,0.5777800000000001,0.04,0.0,0.2 -2274-S2-1,84.932,0.55556,0.0,0.0,0.4 -2274-S2-1,85.408,0.66667,0.0,0.0,0.8 -2274-S2-1,85.93,0.62956,0.0,0.0,0.4 -2274-S2-1,86.908,0.71844,0.08,0.0,0.6 -2274-S2-1,87.894,0.64444,0.24,0.1,0.6 -2274-S2-1,88.919,0.8,0.36,0.3,0.6 -2336-S2-0,75.738,0.33333,0.0,0.0,0.0 -2336-S2-0,76.21600000000001,0.30378,0.04,0.1,0.0 -2336-S2-0,76.699,0.41489,0.0,0.1,0.0 -2336-S2-0,77.17399999999998,0.39267,0.04,0.0,0.0 -2336-S2-0,77.71600000000001,0.48156,0.12,0.0,0.0 -2336-S2-0,80.705,0.46667,0.04,0.1,0.0 -2438-S2-1,77.741,0.44444,0.04,0.0,0.0 -2438-S2-1,78.227,0.4371100000000001,0.08,0.1,0.2 -2438-S2-1,78.71100000000003,0.49622,0.08,0.0,0.2 -2438-S2-1,79.268,0.6371100000000001,0.04,0.0,0.4 -2438-S2-1,79.819,0.6148899999999999,0.08,0.0,0.4 -2438-S2-1,80.741,0.80733,0.16,0.1,0.6 -2438-S2-1,81.705,0.77778,0.24,0.3,0.6 -2500-S2-0,70.824,0.17778,0.0,0.0,0.4 -2500-S2-0,71.308,0.23711,0.0,0.1,0.4 -2500-S2-0,71.811,0.25178,0.0,0.0,0.4 -2500-S2-0,72.319,0.33333,0.04,0.0,0.6 -2500-S2-0,73.813,0.21489,0.0,0.1,0.6 -2500-S2-0,74.891,0.28889000000000004,0.0,0.3,0.8 -2500-S2-0,75.824,0.26667,0.04,0.3,1.0 -2500-S2-0,76.794,0.5111100000000001,0.08,0.5,1.0 -2500-S2-0,77.846,0.46667,0.32,0.8,1.0 -2656-S2-0,64.81099999999999,0.40733,0.04,0.0,0.2 -2656-S2-0,65.48,0.274,0.04,0.1,0.0 -2656-S2-0,65.80799999999999,0.5111100000000001,0.0,0.0,0.0 -2656-S2-0,66.878,0.42222,0.04,0.2,0.2 -2656-S2-0,67.777,0.60733,0.04,0.0,1.0 -2656-S2-0,68.872,0.64444,0.04,0.1,0.8 -2656-S2-0,69.88600000000001,0.77778,0.24,0.0,0.4 -2656-S2-0,71.605,0.97778,0.84,0.7,1.0 -2716-S2-0,75.794,0.45178,0.04,0.0,0.2 -2716-S2-0,76.274,0.45933,0.0,0.0,0.4 -2716-S2-0,76.822,0.31844,0.0,0.1,0.2 -2716-S2-0,77.294,0.56289,0.04,0.1,0.2 -2716-S2-0,77.771,0.53333,0.0,0.2,0.4 -2716-S2-0,78.805,0.53333,0.12,0.1,0.4 -2716-S2-0,79.811,0.71111,0.32,0.2,0.4 -2716-S2-0,80.83500000000001,0.73333,0.36,0.0,0.6 -2716-S2-0,81.863,0.8,0.48,0.3,0.6 -2728-S2-0,74.00800000000001,0.44444,0.0,0.1,0.0 -2728-S2-0,74.50500000000001,0.37778,0.0,0.2,0.2 -2728-S2-0,74.994,0.45178,0.0,0.1,0.0 -2728-S2-0,75.66600000000003,0.46667,0.0,0.1,0.0 -2728-S2-0,76.244,0.4295600000000001,0.0,0.1,0.0 -2728-S2-0,77.19600000000003,0.53333,0.12,0.2,0.0 -2728-S2-0,78.09100000000001,0.42222,0.12,0.2,0.0 -2728-S2-0,78.96100000000003,0.44444,0.2,0.2,0.2 -2728-S2-0,79.943,0.6,0.12,0.1,0.0 -2734-S2-1,84.8,0.35556,0.0,0.1,0.2 -2734-S2-1,85.25799999999998,0.34067,0.0,0.1,0.4 -2734-S2-1,85.79700000000003,0.33333,0.0,0.1,0.2 -2734-S2-1,86.316,0.35556,0.0,0.1,0.2 -2734-S2-1,87.813,0.50378,0.0,0.1,0.2 -2734-S2-1,88.824,0.6,0.2,0.1,0.6 -2734-S2-1,89.79700000000003,0.53333,0.2,0.1,1.0 -2738-S2-1,76.46600000000001,0.48889,0.08,0.1,0.2 -2738-S2-1,76.958,0.55556,0.04,0.0,0.0 -2738-S2-1,77.438,0.45933,0.0,0.0,0.2 -2738-S2-1,77.983,0.48156,0.04,0.0,0.0 -2738-S2-1,78.477,0.59267,0.08,0.0,0.0 -2738-S2-1,79.458,0.5111100000000001,0.04,0.0,0.4 -2738-S2-1,80.50500000000001,0.5777800000000001,0.0,0.1,0.4 -2738-S2-1,81.561,0.6,0.0,0.0,0.0 -2738-S2-1,82.622,0.66667,0.04,0.1,0.2 -114-S2-1,86.714,0.33333,0.0,0.0,0.2 -114-S2-1,87.20299999999999,0.38511,0.0,0.0,0.4 -114-S2-1,87.70200000000003,0.42222,0.04,0.0,0.2 -114-S2-1,88.191,0.35556,0.0,0.0,0.0 -114-S2-1,88.71600000000001,0.41489,0.0,0.0,0.4 -114-S2-1,89.727,0.41489,0.0,0.0,0.4 -114-S2-1,90.655,0.62222,0.0,0.0,0.0 -114-S2-1,92.661,0.5777800000000001,0.04,0.0,0.4 -200-S2-0,72.308,0.46667,0.08,0.1,0.2 -200-S2-0,73.061,0.53333,0.0,0.1,0.4 -200-S2-0,73.308,0.54067,0.08,0.0,0.2 -200-S2-0,73.83800000000001,0.54067,0.04,0.0,0.4 -200-S2-0,74.30300000000003,0.4371100000000001,0.0,0.1,0.4 -200-S2-0,75.846,0.68889,0.04,0.2,0.8 -200-S2-0,77.855,0.77778,0.04,0.4,1.0 -200-S2-0,79.21100000000003,0.77778,0.64,0.6,1.0 -902-S2-1,74.544,0.58511,0.0,0.1,0.2 -902-S2-1,75.08,0.58511,0.0,0.1,0.2 -902-S2-1,75.58,0.48889,0.0,0.1,0.2 -902-S2-1,76.032,0.48889,0.0,0.2,0.2 -902-S2-1,76.63300000000001,0.48889,0.0,0.2,0.4 -902-S2-1,77.566,0.44444,0.08,0.0,0.4 -902-S2-1,78.563,0.55556,0.0,0.2,0.6 -902-S2-1,79.641,0.73333,0.12,0.2,0.6 -902-S2-1,80.639,0.68889,0.0,0.0,0.4 -910-S2-1,80.682,0.4295600000000001,0.0,0.1,0.0 -910-S2-1,81.22500000000001,0.48889,0.04,0.1,0.0 -910-S2-1,81.661,0.4295600000000001,0.04,0.0,0.0 -910-S2-1,82.171,0.526,0.0,0.1,0.0 -910-S2-1,82.708,0.54067,0.0,0.0,0.0 -910-S2-1,83.685,0.53333,0.0,0.0,0.0 -910-S2-1,84.71600000000001,0.66667,0.04,0.0,0.0 -910-S2-1,85.71899999999998,0.66667,0.0,0.1,0.2 -910-S2-1,86.71100000000003,0.5777800000000001,0.0,0.0,0.0 -910-S2-1,87.744,0.68889,0.12,0.0,0.0 -1258-S2-1,79.88600000000001,0.31111,0.0,0.1,0.0 -1258-S2-1,80.411,0.21489,0.24,0.1,0.0 -1258-S2-1,81.00800000000001,0.31844,0.12,0.1,0.0 -1258-S2-1,81.97500000000001,0.46667,0.24,0.1,0.0 -1258-S2-1,82.953,0.31844,0.0,0.1,0.0 -1258-S2-1,83.88600000000001,0.55556,0.04,0.1,0.0 -1258-S2-1,84.88600000000001,0.64444,0.24,0.2,0.0 -1330-S2-1,86.13000000000001,0.18511,0.0,0.1,0.0 -1330-S2-1,86.677,0.28156,0.0,0.0,0.2 -1330-S2-1,87.313,0.19267,0.0,0.0,0.0 -1330-S2-1,87.647,0.17778,0.0,0.1,0.2 -1330-S2-1,88.147,0.34822,0.04,0.1,0.2 -1330-S2-1,89.125,0.21489,0.12,0.0,0.2 -1330-S2-1,90.25500000000001,0.24444,0.12,0.0,0.2 -1330-S2-1,91.15,0.26667,0.0,0.3,0.2 -1330-S2-1,92.15,0.28889000000000004,0.04,0.3,0.2 -1392-S2-0,80.435,0.48889,0.04,0.1,0.0 -1392-S2-0,80.94600000000003,0.42222,0.08,0.1,0.0 -1392-S2-0,81.41300000000003,0.57044,0.2,0.1,0.2 -1392-S2-0,81.997,0.75556,0.12,0.0,0.4 -1392-S2-0,82.435,0.56289,0.24,0.4,0.6 -1392-S2-0,83.43,0.69622,0.28,0.3,0.4 -1392-S2-0,84.421,0.8222200000000001,0.8,0.2,0.8 -1440-S2-0,86.375,0.23711,0.04,0.0,0.2 -1440-S2-0,86.894,0.38511,0.16,0.0,0.2 -1440-S2-0,87.43,0.15556,0.12,0.1,0.2 -1440-S2-0,88.139,0.088889,0.12,0.1,0.2 -1440-S2-0,88.34399999999998,0.30378,0.2,0.0,0.2 -1440-S2-0,89.4,0.39267,0.12,0.1,0.2 -1440-S2-0,90.38000000000001,0.66667,0.4,0.1,0.4 -1440-S2-0,91.435,0.73333,0.64,0.1,0.4 -1440-S2-0,92.316,0.73333,0.6,0.1,0.6 -2136-S2-0,69.685,0.4,0.0,0.0,0.0 -2136-S2-0,70.185,0.45933,0.0,0.0,0.0 -2136-S2-0,70.688,0.57044,0.0,0.1,0.0 -2136-S2-0,71.214,0.48156,0.0,0.0,0.0 -2136-S2-0,71.699,0.58511,0.0,0.1,0.2 -2136-S2-0,72.811,0.71111,0.0,0.1,0.4 -2136-S2-0,73.782,0.73333,0.0,0.1,0.4 -2136-S2-0,74.88300000000001,0.73333,0.0,0.3,0.6 -2136-S2-0,75.66300000000003,0.75556,0.04,0.6,0.6 -2392-S2-0,80.072,0.34822,0.04,0.0,0.6 -2392-S2-0,80.605,0.51844,0.12,0.1,0.4 -2392-S2-0,81.05,0.5482199999999999,0.2,0.2,0.4 -2392-S2-0,84.263,0.6,0.56,0.4,1.0 -2420-S2-0,75.92399999999998,0.34822,0.04,0.1,0.0 -2420-S2-0,76.48,0.34822,0.0,0.1,0.0 -2420-S2-0,77.029,0.24444,0.0,0.1,0.0 -2420-S2-0,77.529,0.274,0.04,0.1,0.0 -2420-S2-0,77.955,0.25933,0.08,0.0,0.0 -2420-S2-0,79.144,0.4,0.0,0.0,0.0 -2420-S2-0,79.938,0.33333,0.0,0.0,0.0 -2420-S2-0,80.983,0.46667,0.12,0.1,0.0 -2420-S2-0,81.919,0.48889,0.04,0.1,0.2 -2660-S2-0,75.241,0.46667,0.0,0.0,0.0 -2660-S2-0,75.71899999999998,0.38511,0.0,0.0,0.0 -2660-S2-0,76.191,0.37778,0.04,0.1,0.0 -2660-S2-0,76.75500000000001,0.4,0.0,0.0,0.0 -2660-S2-0,77.25199999999998,0.58511,0.12,0.1,0.0 -2660-S2-0,78.24899999999998,0.5777800000000001,0.04,0.1,0.0 -2660-S2-0,79.313,0.73333,0.04,0.0,0.4 -2660-S2-0,80.333,0.88889,0.36,0.1,0.4 -2736-S2-0,89.061,0.49622,0.12,0.1,0.4 -2736-S2-0,89.58500000000001,0.48156,0.04,0.1,0.2 -2736-S2-0,90.063,0.56289,0.12,0.1,0.2 -2736-S2-0,90.566,0.58511,0.12,0.0,0.2 -2736-S2-0,91.061,0.65933,0.12,0.1,0.4 -2736-S2-0,92.069,0.66667,0.36,0.1,0.4 -2736-S2-0,93.036,0.73333,0.4,0.2,1.0 -2736-S2-0,94.013,0.88889,0.52,0.3,1.0 -3904-S2-0,78.013,0.39267,0.08,0.1,0.0 -3904-S2-0,78.61,0.45178,0.04,0.0,0.2 -3904-S2-0,80.185,0.31844,0.04,0.0,0.0 -3904-S2-0,81.292,0.44444,0.04,0.0,0.2 -3904-S2-0,83.652,0.5111100000000001,0.04,0.2,0.0 -3904-S2-0,84.55300000000003,0.64444,0.16,0.1,0.2 -3952-S2-0,72.938,0.48889,0.04,0.3,0.6 -3952-S2-0,73.41300000000001,0.71844,0.2,0.3,1.0 -3952-S2-0,73.953,0.75556,0.12,0.2,0.8 -3952-S2-0,74.48,0.76289,0.24,0.5,1.0 -3952-S2-0,74.935,0.69622,0.24,0.3,1.0 -3952-S2-0,75.91300000000003,0.68889,0.24,0.3,1.0 -3952-S2-0,76.91300000000003,0.75556,0.24,0.4,1.0 -3952-S2-0,77.905,0.75556,0.24,0.3,1.0 -3952-S2-0,78.91600000000003,0.64444,0.24,0.3,1.0 -3954-S2-1,76.22500000000001,0.26667,0.0,0.0,0.0 -3954-S2-1,76.702,0.21489,0.0,0.0,0.0 -3954-S2-1,77.22199999999998,0.31111,0.0,0.1,0.0 -3954-S2-1,77.72199999999998,0.4371100000000001,0.04,0.0,0.0 -3954-S2-1,78.279,0.40733,0.0,0.0,0.0 -3954-S2-1,79.294,0.49622,0.0,0.0,0.0 -3954-S2-1,80.577,0.68156,0.0,0.0,0.0 -3954-S2-1,81.65,0.66667,0.0,0.0,0.0 -3954-S2-1,82.279,0.66667,0.0,0.1,0.0 -3954-S2-1,83.427,0.71111,0.0,0.0,0.0 -3954-S2-1,84.25500000000001,0.71111,0.0,0.0,0.0 -3962-S2-1,69.891,0.37044,0.0,0.0,0.2 -3962-S2-1,70.363,0.33333,0.0,0.0,0.2 -3962-S2-1,70.941,0.31111,0.0,0.0,0.2 -3962-S2-1,71.458,0.35556,0.0,0.0,0.0 -3962-S2-1,71.897,0.34067,0.0,0.0,0.2 -3962-S2-1,72.9,0.37778,0.0,0.0,0.2 -3962-S2-1,75.555,0.42222,0.0,0.0,0.2 -3962-S2-1,76.905,0.42222,0.0,0.1,0.4 -3962-S2-1,77.86,0.6,0.12,0.0,0.2 -3972-S2-0,76.96100000000003,0.24444,0.0,0.0,0.0 -3972-S2-0,77.46600000000001,0.30378,0.0,0.0,0.0 -3972-S2-0,78.029,0.37778,0.0,0.0,0.0 -3972-S2-0,78.48,0.31844,0.0,0.0,0.0 -3972-S2-0,78.9,0.21489,0.04,0.0,0.2 -3972-S2-0,79.93,0.48889,0.04,0.0,0.0 -3972-S2-0,81.027,0.4295600000000001,0.0,0.0,0.2 -3972-S2-0,83.08,0.53333,0.0,0.0,0.0 -3972-S2-0,84.18,0.5777800000000001,0.04,0.0,0.8 -3974-S2-1,78.661,0.44444,0.08,0.1,0.2 -3974-S2-1,79.308,0.50378,0.04,0.0,0.2 -3974-S2-1,79.774,0.48156,0.04,0.1,0.2 -3974-S2-1,80.15,0.51844,0.08,0.0,0.0 -3974-S2-1,80.688,0.41489,0.04,0.1,0.2 -3974-S2-1,81.747,0.44444,0.0,0.0,0.2 -3974-S2-1,82.671,0.5482199999999999,0.08,0.1,0.2 -3974-S2-1,83.71100000000003,0.6,0.12,0.1,0.2 -3974-S2-1,84.69600000000003,0.71111,0.04,0.0,0.4 -3984-S2-0,82.49899999999998,0.2,0.04,0.1,0.2 -3984-S2-0,82.991,0.31844,0.04,0.0,0.4 -3984-S2-0,83.61,0.326,0.12,0.1,0.2 -3984-S2-0,84.021,0.45178,0.08,0.0,0.4 -3984-S2-0,84.532,0.37778,0.12,0.1,0.4 -3984-S2-0,85.55799999999998,0.4295600000000001,0.08,0.1,0.4 -3984-S2-0,86.583,0.28889000000000004,0.16,0.1,0.4 -3984-S2-0,87.84399999999998,0.53333,0.56,0.2,0.4 -3984-S2-0,88.889,0.53333,0.24,0.2,0.4 -3984-S2-0,89.98299999999999,0.48889,0.36,0.2,0.6 -3986-S2-1,70.569,0.39267,0.0,0.1,0.4 -3986-S2-1,71.083,0.34067,0.0,0.0,0.2 -3986-S2-1,71.561,0.50378,0.0,0.3,0.4 -3986-S2-1,72.042,0.45178,0.04,0.1,0.4 -3986-S2-1,72.58,0.5482199999999999,0.04,0.1,0.6 -3986-S2-1,73.547,0.58511,0.12,0.2,0.8 -3986-S2-1,74.555,0.77044,0.04,0.6,0.8 -3986-S2-1,75.524,0.86667,0.4,0.7,1.0 -3990-S2-1,82.607,0.28889000000000004,0.04,0.2,0.0 -3990-S2-1,83.122,0.31111,0.04,0.2,0.4 -3990-S2-1,83.625,0.34822,0.0,0.1,0.2 -3990-S2-1,84.099,0.23711,0.04,0.3,0.2 -3990-S2-1,84.605,0.4,0.08,0.0,0.6 -3990-S2-1,85.613,0.50378,0.16,0.1,0.4 -3990-S2-1,87.596,0.44444,0.16,0.0,0.2 -3990-S2-1,88.58799999999998,0.35556,0.28,0.1,0.4 -3990-S2-1,89.82200000000002,0.35556,0.16,0.4,0.0 -4004-S2-0,67.96100000000001,0.46667,0.0,0.1,0.0 -4004-S2-0,68.458,0.53333,0.0,0.1,0.2 -4004-S2-0,68.935,0.45178,0.0,0.1,0.0 -4004-S2-0,69.47500000000001,0.53333,0.0,0.1,0.0 -4004-S2-0,69.941,0.40733,0.0,0.1,0.2 -4004-S2-0,70.97500000000001,0.49622,0.0,0.1,0.2 -4004-S2-0,72.042,0.59267,0.0,0.1,0.4 -4004-S2-0,73.039,0.64444,0.0,0.2,0.8 -4004-S2-0,74.13300000000001,0.62222,0.16,0.3,1.0 -4004-S2-0,74.97500000000001,0.77778,0.2,0.2,0.6 -4004-S2-0,75.953,0.77778,0.28,0.4,1.0 -4010-S2-1,77.891,0.55556,0.04,0.0,0.0 -4010-S2-1,78.369,0.34067,0.04,0.0,0.0 -4010-S2-1,78.905,0.39267,0.0,0.0,0.2 -4010-S2-1,79.38600000000001,0.48889,0.0,0.0,0.0 -4010-S2-1,79.88300000000001,0.36289,0.0,0.0,0.2 -4010-S2-1,80.9,0.53333,0.0,0.0,0.2 -4010-S2-1,81.894,0.53333,0.0,0.0,0.2 -4010-S2-1,82.889,0.5111100000000001,0.0,0.1,0.2 -4010-S2-1,83.949,0.77778,0.0,0.1,0.2 -4010-S2-1,84.889,0.68889,0.04,0.2,0.2 -4016-S2-0,72.427,0.28156,0.0,0.0,0.0 -4016-S2-0,72.938,0.37044,0.0,0.0,0.2 -4016-S2-0,73.42399999999999,0.39267,0.0,0.0,0.2 -4016-S2-0,73.932,0.4295600000000001,0.12,0.1,0.0 -4016-S2-0,74.43,0.46667,0.04,0.0,0.2 -4016-S2-0,75.441,0.39267,0.0,0.0,0.2 -4016-S2-0,78.029,0.68889,0.04,0.3,0.6 -4016-S2-0,79.09100000000001,0.73333,0.16,0.4,0.8 -4016-S2-0,80.061,0.88889,0.36,0.8,1.0 -4020-S2-0,84.13600000000001,0.23711,0.12,0.0,0.4 -4020-S2-0,84.63300000000001,0.17778,0.0,0.0,0.2 -4020-S2-0,85.128,0.17778,0.04,0.0,0.2 -4020-S2-0,85.61,0.28156,0.0,0.0,0.0 -4020-S2-0,86.144,0.21489,0.0,0.1,0.4 -4020-S2-0,87.161,0.15556,0.04,0.0,0.0 -4020-S2-0,89.13299999999998,0.17778,0.08,0.0,0.2 -4022-S2-1,76.94600000000003,0.4295600000000001,0.04,0.1,0.4 -4022-S2-1,77.458,0.49622,0.16,0.1,0.4 -4022-S2-1,77.93,0.41489,0.16,0.0,0.2 -4022-S2-1,78.411,0.4371100000000001,0.08,0.1,0.2 -4022-S2-1,78.857,0.54067,0.08,0.1,0.2 -4022-S2-1,80.061,0.526,0.28,0.2,0.2 -4022-S2-1,80.83800000000001,0.6148899999999999,0.12,0.1,0.4 -4022-S2-1,82.055,0.73333,0.24,0.1,0.6 -4022-S2-1,83.128,0.71111,0.28,0.1,0.8 -4026-S2-1,63.591000000000015,0.48156,0.0,0.1,0.2 -4026-S2-1,64.125,0.53333,0.04,0.1,0.2 -4026-S2-1,64.55,0.57044,0.0,0.1,0.2 -4026-S2-1,65.047,0.68156,0.0,0.1,0.4 -4026-S2-1,65.585,0.64444,0.0,0.1,0.2 -4026-S2-1,68.58,0.95556,0.6,0.4,1.0 -4026-S2-1,69.744,1.0,1.0,1.0,1.0 -4036-S2-0,68.08500000000001,0.53333,0.12,0.2,0.0 -4036-S2-0,68.625,0.56289,0.08,0.0,0.0 -4036-S2-0,69.072,0.53333,0.08,0.2,0.0 -4036-S2-0,69.583,0.7037800000000001,0.04,0.0,0.0 -4036-S2-0,70.297,0.60733,0.16,0.1,0.0 -4036-S2-0,71.641,0.77044,0.08,0.0,0.0 -4036-S2-0,72.714,0.84444,0.32,0.1,0.2 -4036-S2-0,73.688,0.95556,0.36,0.2,0.4 -4044-S2-0,90.074,0.326,0.04,0.1,0.0 -4044-S2-0,90.59399999999998,0.48156,0.08,0.1,0.2 -4044-S2-0,91.053,0.37778,0.04,0.2,0.0 -4044-S2-0,91.57200000000002,0.35556,0.0,0.1,0.0 -4044-S2-0,92.04700000000003,0.34822,0.12,0.1,0.2 -4044-S2-0,93.083,0.66667,0.0,0.2,0.2 -4044-S2-0,94.102,0.59267,0.12,0.2,0.2 -4044-S2-0,95.061,0.68889,0.28,0.1,0.4 -4046-S2-1,90.319,0.37044,0.12,0.2,0.0 -4046-S2-1,91.29700000000003,0.48889,0.2,0.3,0.2 -4046-S2-1,91.943,0.49622,0.12,0.2,0.2 -4046-S2-1,92.518,0.526,0.2,0.1,0.2 -4046-S2-1,95.355,0.46667,0.44,0.3,0.6 -4048-S2-0,85.35700000000003,0.56289,0.08,0.0,0.6 -4048-S2-0,85.83,0.48156,0.0,0.1,0.4 -4048-S2-0,86.3,0.54067,0.12,0.1,0.2 -4048-S2-0,86.83799999999998,0.62956,0.0,0.0,0.6 -4048-S2-0,87.352,0.59267,0.08,0.0,0.6 -4048-S2-0,88.366,0.73333,0.0,0.2,0.8 -4048-S2-0,89.34399999999998,0.8,0.0,0.4,0.6 -4048-S2-0,90.366,0.68889,0.04,0.2,0.8 -4048-S2-0,91.394,0.75556,0.08,0.4,0.8 -4054-S2-1,73.099,0.49622,0.04,0.0,0.0 -4054-S2-1,73.677,0.4295600000000001,0.0,0.0,0.0 -4054-S2-1,74.241,0.41489,0.0,0.0,0.0 -4054-S2-1,74.866,0.39267,0.0,0.1,0.0 -4054-S2-1,75.547,0.4,0.0,0.0,0.0 -4054-S2-1,78.096,0.44444,0.0,0.0,0.2 -4058-S2-1,84.027,0.46667,0.24,0.1,0.4 -4058-S2-1,84.644,0.6,0.28,0.0,0.4 -4058-S2-1,85.047,0.62956,0.24,0.0,0.0 -4058-S2-1,85.53200000000002,0.59267,0.24,0.1,0.0 -4058-S2-1,86.47200000000001,0.68156,0.24,0.0,0.2 -4058-S2-1,88.994,0.8222200000000001,0.36,0.3,0.6 -4058-S2-1,90.074,0.77778,0.44,0.3,0.8 -4058-S2-1,91.066,0.75556,0.44,0.4,0.6 -4066-S2-1,77.305,0.38511,0.0,0.0,0.0 -4066-S2-1,77.808,0.55556,0.08,0.1,0.2 -4066-S2-1,78.322,0.56289,0.24,0.0,0.2 -4066-S2-1,78.805,0.73333,0.12,0.1,0.2 -4066-S2-1,79.319,0.62222,0.12,0.0,0.2 -4066-S2-1,80.313,0.5482199999999999,0.24,0.1,0.4 -4066-S2-1,82.435,0.77778,0.08,0.1,0.4 -4066-S2-1,83.305,0.68889,0.16,0.1,0.4 -4066-S2-1,84.333,0.88889,0.28,0.1,0.4 -4074-S2-1,71.986,0.37778,0.08,0.0,0.0 -4074-S2-1,72.518,0.37044,0.04,0.0,0.0 -4074-S2-1,72.964,0.4371100000000001,0.08,0.0,0.0 -4074-S2-1,73.46100000000001,0.39267,0.12,0.0,0.0 -4074-S2-1,74.958,0.474,0.08,0.0,0.0 -4074-S2-1,76.894,0.62222,0.2,0.0,0.0 -4086-S2-1,77.391,0.17778,0.04,0.0,0.0 -4086-S2-1,77.863,0.26667,0.0,0.1,0.2 -4086-S2-1,78.36800000000001,0.11111,0.04,0.0,0.0 -4086-S2-1,78.889,0.25178,0.04,0.1,0.0 -4086-S2-1,79.369,0.31111,0.0,0.0,0.2 -4086-S2-1,80.405,0.126,0.0,0.1,0.2 -4086-S2-1,82.375,0.22222,0.0,0.0,0.2 -4086-S2-1,83.375,0.42222,0.0,0.0,0.4 -4086-S2-1,84.372,0.48889,0.0,0.0,0.4 -4098-S2-1,74.669,0.37044,0.04,0.0,0.4 -4098-S2-1,75.128,0.34067,0.0,0.0,0.2 -4098-S2-1,75.647,0.28156,0.0,0.0,0.2 -4098-S2-1,76.16300000000003,0.4295600000000001,0.0,0.0,0.2 -4098-S2-1,76.66300000000003,0.48156,0.04,0.0,0.4 -4098-S2-1,77.63600000000001,0.59267,0.04,0.0,0.4 -4098-S2-1,78.69600000000003,0.75556,0.28,0.0,1.0 -4098-S2-1,79.652,0.8,0.32,0.6,1.0 -4100-S2-0,79.59399999999998,0.474,0.04,0.1,0.0 -4100-S2-0,80.077,0.326,0.0,0.2,0.4 -4100-S2-0,80.61,0.58511,0.04,0.2,0.2 -4100-S2-0,81.113,0.59267,0.08,0.1,0.2 -4100-S2-0,81.671,0.6,0.12,0.1,0.4 -4100-S2-0,82.58500000000001,0.65933,0.28,0.2,0.4 -4100-S2-0,83.811,0.97778,0.56,0.4,0.4 -4118-S2-1,80.48,0.58511,0.16,0.0,0.4 -4118-S2-1,80.986,0.54067,0.0,0.0,0.4 -4118-S2-1,81.435,0.45178,0.08,0.0,0.8 -4118-S2-1,82.096,0.68889,0.04,0.1,0.8 -4118-S2-1,82.494,0.7406699999999999,0.04,0.0,0.8 -4118-S2-1,83.50800000000001,0.76289,0.28,0.3,0.8 -4118-S2-1,84.513,0.91111,0.64,0.2,1.0 -4132-S2-0,64.51,0.088889,0.0,0.0,0.0 -4132-S2-0,65.042,0.0073333,0.0,0.0,0.0 -4132-S2-0,65.619,0.029556,0.0,0.0,0.0 -4132-S2-0,66.51800000000001,0.014889,0.0,0.0,0.0 -4132-S2-0,68.953,0.06666699999999999,0.2,0.0,0.0 -4132-S2-0,69.94600000000001,0.044444,0.0,0.0,0.2 -4132-S2-0,70.977,0.044444,0.0,0.0,0.0 -4138-S2-1,78.911,0.37044,0.0,0.1,0.0 -4138-S2-1,79.421,0.44444,0.04,0.1,0.2 -4138-S2-1,79.932,0.57044,0.04,0.0,0.2 -4138-S2-1,80.411,0.57044,0.08,0.1,0.4 -4138-S2-1,80.91600000000003,0.54067,0.12,0.0,0.4 -4138-S2-1,82.869,0.8222200000000001,0.44,0.2,0.6 -4142-S2-1,80.805,0.28889000000000004,0.0,0.0,0.2 -4142-S2-1,81.289,0.26667,0.0,0.0,0.2 -4142-S2-1,81.782,0.33333,0.04,0.0,0.2 -4142-S2-1,82.779,0.35556,0.08,0.0,0.4 -4142-S2-1,83.794,0.55556,0.0,0.0,0.4 -4146-S2-1,80.902,0.24444,0.08,0.0,0.4 -4146-S2-1,81.48,0.46667,0.04,0.0,0.2 -4146-S2-1,81.953,0.37778,0.16,0.0,0.2 -4146-S2-1,83.92399999999998,0.48889,0.04,0.1,0.2 -4148-S2-0,71.555,0.26667,0.08,0.1,0.2 -4148-S2-0,72.05300000000001,0.26667,0.04,0.0,0.0 -4148-S2-0,72.55300000000001,0.33333,0.08,0.3,0.0 -4148-S2-0,73.55,0.33333,0.04,0.1,0.4 -4148-S2-0,74.583,0.6,0.2,0.4,0.8 -4150-S2-1,79.48,0.26667,0.0,0.1,0.2 -4150-S2-1,79.97500000000001,0.28889000000000004,0.0,0.2,0.2 -4150-S2-1,80.669,0.2,0.0,0.0,0.2 -4150-S2-1,81.55,0.35556,0.0,0.0,0.2 -4160-S2-0,77.75199999999998,0.53333,0.0,0.2,0.4 -4160-S2-0,78.292,0.46667,0.04,0.1,0.4 -4160-S2-0,78.958,0.55556,0.04,0.1,0.4 -4166-S2-1,72.535,0.33333,0.0,0.0,0.0 -4166-S2-1,73.047,0.2,0.0,0.0,0.2 -4166-S2-1,73.55,0.24444,0.0,0.0,0.0 -4166-S2-1,74.569,0.37778,0.0,0.1,0.0 -4184-S2-0,74.902,0.22222,0.04,0.1,0.4 -4184-S2-0,75.397,0.31111,0.08,0.1,0.6 -4184-S2-0,75.93,0.4,0.12,0.1,0.8 -4184-S2-0,76.927,0.37778,0.08,0.3,0.6 -4196-S2-0,76.98,0.28889000000000004,0.04,0.0,0.0 -4196-S2-0,77.577,0.37778,0.08,0.1,0.2 -4196-S2-0,77.977,0.31111,0.08,0.0,0.0 -4196-S2-0,78.99899999999998,0.6,0.08,0.0,0.2 -4202-S2-1,76.25500000000001,0.35556,0.04,0.1,0.4 -4202-S2-1,76.75500000000001,0.22222,0.04,0.1,0.2 -4202-S2-1,77.305,0.31111,0.08,0.1,0.2 -4202-S2-1,78.214,0.33333,0.24,0.2,0.6 -4206-S2-1,60.580000000000005,0.28889000000000004,0.12,0.0,0.0 -4206-S2-1,61.13,0.33333,0.28,0.0,0.2 -4206-S2-1,61.56600000000001,0.33333,0.28,0.0,0.0 -4206-S2-1,62.319,0.4,0.36,0.0,0.2 -4210-S2-1,84.569,0.46667,0.2,0.1,1.0 -4210-S2-1,85.074,0.48889,0.2,0.1,0.2 -4210-S2-1,85.566,0.5111100000000001,0.36,0.0,0.2 -4210-S2-1,86.566,0.62222,0.24,0.0,0.6 -4228-S2-0,87.98,0.53333,0.04,0.0,0.4 -4228-S2-0,88.50799999999998,0.55556,0.0,0.1,0.4 -4228-S2-0,88.98299999999999,0.66667,0.0,0.0,0.2 -4228-S2-0,90.055,0.68889,0.0,0.0,0.4 -4234-S2-1,67.878,0.55556,0.08,0.0,0.2 -4234-S2-1,68.313,0.53333,0.04,0.0,0.4 -4234-S2-1,68.891,0.6,0.16,0.0,0.4 -4234-S2-1,69.891,0.62222,0.04,0.0,0.4 -4236-S2-0,63.43,0.4,0.08,0.1,0.2 -4236-S2-0,63.935,0.44444,0.04,0.2,0.4 -4236-S2-0,64.42399999999999,0.35556,0.0,0.1,0.2 -4236-S2-0,65.402,0.24444,0.0,0.1,0.0 -4242-S2-1,87.88600000000001,0.55556,0.08,0.1,0.0 -4242-S2-1,88.38299999999998,0.5777800000000001,0.2,0.1,0.2 -4242-S2-1,88.889,0.64444,0.36,0.0,0.2 -4260-S2-0,70.285,0.53333,0.12,0.2,0.0 -4260-S2-0,70.747,0.5111100000000001,0.24,0.2,0.0 -4260-S2-0,71.22500000000001,0.62222,0.28,0.2,0.0 -4264-S2-0,58.432,0.37778,0.0,0.0,0.0 -4264-S2-0,58.938,0.42222,0.04,0.0,0.2 -4264-S2-0,59.446000000000005,0.46667,0.0,0.0,0.0 -4264-S2-0,60.372,0.55556,0.0,0.0,0.4 -4266-S2-1,85.79200000000002,0.5111100000000001,0.32,0.2,0.0 -4266-S2-1,86.313,0.44444,0.24,0.2,0.4 -4266-S2-1,86.816,0.5777800000000001,0.16,0.2,0.0 -4268-S2-0,74.72199999999998,0.5111100000000001,0.0,0.1,0.0 -4268-S2-0,75.274,0.37778,0.04,0.1,0.0 -4268-S2-0,75.68,0.42222,0.0,0.2,0.0 -4268-S2-0,76.774,0.5111100000000001,0.0,0.0,0.2 -4270-S2-1,72.93,0.55556,0.04,0.1,0.0 -4270-S2-1,73.402,0.46667,0.04,0.3,0.0 -4270-S2-1,73.921,0.46667,0.04,0.2,0.0 -4270-S2-1,74.92399999999998,0.5777800000000001,0.04,0.2,0.2 -4274-S2-1,72.768,0.37778,0.2,0.1,0.2 -4274-S2-1,73.279,0.37778,0.12,0.0,0.2 -4274-S2-1,73.76,0.5111100000000001,0.28,0.0,0.2 -4274-S2-1,74.949,0.62222,0.24,0.1,0.6 -4280-S2-0,76.661,0.55556,0.08,0.0,0.0 -4280-S2-0,77.369,0.5111100000000001,0.04,0.1,0.4 -4280-S2-0,78.11800000000001,0.6,0.08,0.1,0.2 -4282-S2-1,77.741,0.2,0.0,0.1,0.4 -4282-S2-1,78.25199999999998,0.28889000000000004,0.0,0.1,0.4 -4282-S2-1,78.774,0.22222,0.0,0.0,0.4 -4282-S2-1,79.763,0.37778,0.04,0.2,0.0 -4286-S2-1,74.208,0.62222,0.0,0.1,0.4 -4286-S2-1,74.693,0.5777800000000001,0.0,0.0,0.6 -4286-S2-1,75.182,0.6,0.04,0.2,0.4 -4286-S2-1,76.182,0.68889,0.12,0.1,0.6 -4290-S2-1,83.099,0.6,0.08,0.1,0.2 -4290-S2-1,83.63600000000001,0.5777800000000001,0.16,0.0,0.2 -4290-S2-1,84.096,0.55556,0.16,0.1,0.0 -4290-S2-1,85.107,0.71111,0.08,0.0,0.2 -4292-S2-0,81.91300000000003,0.42222,0.04,0.0,0.0 -4292-S2-0,82.394,0.46667,0.04,0.1,0.6 -4292-S2-0,82.935,0.5111100000000001,0.04,0.0,0.2 -4292-S2-0,83.927,0.6,0.08,0.0,0.4 -4300-S2-0,77.74899999999998,0.42222,0.0,0.1,0.0 -4300-S2-0,78.266,0.46667,0.0,0.1,0.0 -4300-S2-0,78.747,0.35556,0.0,0.1,0.0 -4300-S2-0,79.8,0.53333,0.0,0.1,0.0 -4310-S2-1,73.116,0.35556,0.04,0.1,0.6 -4310-S2-1,73.639,0.5111100000000001,0.04,0.3,0.4 -4310-S2-1,74.113,0.31111,0.04,0.2,0.6 -4310-S2-1,75.13000000000001,0.35556,0.04,0.3,0.6 -4316-S2-0,83.555,0.37778,0.0,0.1,0.2 -4316-S2-0,84.058,0.42222,0.0,0.2,0.4 -4316-S2-0,84.558,0.44444,0.0,0.0,0.2 -4316-S2-0,85.57200000000002,0.53333,0.0,0.0,0.2 -4320-S2-0,66.238,0.42222,0.0,0.1,0.0 -4320-S2-0,66.736,0.44444,0.0,0.2,0.4 -4320-S2-0,67.238,0.48889,0.0,0.1,0.2 -4320-S2-0,68.322,0.71111,0.0,0.1,0.8 -4326-S2-1,76.92399999999998,0.68889,0.16,0.1,0.0 -4326-S2-1,77.292,0.64444,0.2,0.2,0.2 -4326-S2-1,77.889,0.73333,0.04,0.2,0.2 -4338-S2-1,76.247,0.5777800000000001,0.0,0.1,0.2 -4338-S2-1,76.863,0.55556,0.0,0.1,0.2 -4338-S2-1,77.375,0.62222,0.0,0.1,0.4 -4338-S2-1,78.297,0.5777800000000001,0.04,0.1,0.6 -4340-S2-0,82.23,0.31111,0.04,0.1,0.0 -4340-S2-0,82.714,0.2,0.04,0.0,0.0 -4340-S2-0,83.233,0.31111,0.04,0.1,0.0 -4340-S2-0,84.208,0.4,0.08,0.0,0.0 -4350-S2-1,64.21600000000001,0.42222,0.0,0.1,0.0 -4350-S2-1,64.67099999999999,0.35556,0.0,0.1,0.0 -4350-S2-1,65.152,0.48889,0.04,0.1,0.0 -4350-S2-1,66.17999999999999,0.5111100000000001,0.16,0.2,0.0 -4376-S2-0,78.602,0.35556,0.04,0.0,0.0 -4376-S2-0,79.11800000000001,0.62222,0.04,0.0,0.2 -4376-S2-0,79.669,0.28889000000000004,0.04,0.1,0.2 -4376-S2-0,80.61,0.24444,0.08,0.0,0.2 -4378-S2-1,65.016,0.46667,0.04,0.1,0.2 -4378-S2-1,65.53600000000002,0.44444,0.16,0.2,0.6 -4378-S2-1,66.013,0.44444,0.08,0.2,0.4 -4378-S2-1,67.083,0.64444,0.28,0.2,0.4 -4380-S2-0,79.453,0.55556,0.0,0.0,0.0 -4380-S2-0,79.949,0.64444,0.04,0.1,0.0 -4380-S2-0,80.46899999999998,0.62222,0.0,0.1,0.2 -4380-S2-0,81.464,0.5111100000000001,0.0,0.1,0.2 -4390-S2-1,61.980000000000004,0.5111100000000001,0.0,0.0,0.0 -4390-S2-1,62.521000000000015,0.55556,0.08,0.1,0.2 -4390-S2-1,62.94100000000001,0.62222,0.16,0.1,0.6 -4390-S2-1,63.983000000000004,0.77778,0.2,0.1,0.4 -4394-S2-1,81.491,0.53333,0.0,0.1,0.4 -4394-S2-1,81.96899999999998,0.42222,0.0,0.1,0.4 -4394-S2-1,82.599,0.6,0.0,0.1,0.2 -4394-S2-1,83.402,0.53333,0.0,0.0,0.2 -4398-S2-1,78.013,0.55556,0.08,0.0,0.0 -4398-S2-1,78.583,0.55556,0.04,0.1,0.2 -4398-S2-1,79.069,0.71111,0.08,0.0,0.0 -4398-S2-1,80.055,0.8222200000000001,0.2,0.2,0.8 -4428-S2-0,79.263,0.31111,0.04,0.0,0.2 -4428-S2-0,79.779,0.31111,0.04,0.0,0.2 -4428-S2-0,80.366,0.42222,0.04,0.1,0.2 -4448-S2-0,82.677,0.66667,0.08,0.0,0.4 -4448-S2-0,83.128,0.73333,0.0,0.1,0.4 -4448-S2-0,83.628,0.77778,0.08,0.0,0.6 -4448-S2-0,84.677,0.73333,0.2,0.1,0.8 -4508-S2-0,81.73,0.24444,0.04,0.1,0.0 -4508-S2-0,82.277,0.28889000000000004,0.0,0.1,0.6 -4508-S2-0,82.727,0.28889000000000004,0.0,0.1,0.0 -4508-S2-0,83.69600000000003,0.35556,0.0,0.2,0.2 -4514-S2-1,80.021,0.37778,0.24,0.0,0.4 -4514-S2-1,80.518,0.28889000000000004,0.12,0.0,0.4 -4514-S2-1,80.991,0.31111,0.32,0.0,0.6 -4514-S2-1,82.027,0.5111100000000001,0.6,0.1,0.8 -4516-S2-0,69.158,0.35556,0.0,0.1,0.4 -4516-S2-0,69.641,0.33333,0.0,0.1,0.4 -4516-S2-0,70.147,0.37778,0.0,0.0,0.4 -4516-S2-0,71.13600000000001,0.42222,0.0,0.0,0.4 -4530-S2-1,77.147,0.2,0.08,0.0,0.4 -4530-S2-1,77.63300000000001,0.31111,0.12,0.1,0.6 -4530-S2-1,78.147,0.33333,0.2,0.1,0.8 -4548-S2-0,74.205,0.48889,0.0,0.1,0.4 -4548-S2-0,74.68,0.55556,0.0,0.0,0.6 -4548-S2-0,75.26,0.5777800000000001,0.08,0.1,0.8 -4564-S2-0,83.205,0.42222,0.0,0.1,0.4 -4564-S2-0,83.703,0.37778,0.04,0.1,0.2 -4564-S2-0,84.17399999999998,0.35556,0.04,0.1,0.2 -4564-S2-0,85.188,0.46667,0.04,0.1,0.6 -4566-S2-1,66.819,0.35556,0.0,0.1,0.0 -4566-S2-1,67.277,0.31111,0.04,0.1,0.2 -4566-S2-1,67.794,0.4,0.08,0.1,0.2 -4566-S2-1,68.738,0.48889,0.12,0.3,0.2 -4572-S2-0,72.983,0.46667,0.08,0.1,0.0 -4572-S2-0,73.497,0.66667,0.16,0.0,0.2 -4572-S2-0,73.991,0.55556,0.12,0.1,0.0 -4594-S2-1,64.074,0.22222,0.04,0.1,0.0 -4594-S2-1,64.55,0.37778,0.08,0.1,0.4 -4594-S2-1,65.053,0.4,0.0,0.0,0.4 -4614-S2-1,77.738,0.5777800000000001,0.04,0.0,0.0 -4614-S2-1,78.292,0.33333,0.0,0.0,0.0 -4614-S2-1,78.69600000000003,0.55556,0.04,0.0,0.0 -4620-S2-0,85.05,0.35556,0.04,0.0,0.2 -4620-S2-0,85.516,0.53333,0.0,0.0,0.2 -4620-S2-0,85.97200000000001,0.35556,0.12,0.2,0.2 -4626-S2-1,76.122,0.53333,0.08,0.2,0.6 -4626-S2-1,76.59100000000001,0.5777800000000001,0.04,0.2,1.0 -4626-S2-1,77.16300000000003,0.55556,0.12,0.1,0.6 -4634-S2-1,71.705,0.31111,0.0,0.2,0.2 -4634-S2-1,72.203,0.5111100000000001,0.0,0.1,0.2 -4634-S2-1,72.869,0.42222,0.0,0.2,1.0 -4646-S2-1,78.17399999999998,0.48889,0.0,0.0,0.2 -4646-S2-1,78.661,0.53333,0.0,0.0,0.2 -4646-S2-1,79.169,0.5111100000000001,0.04,0.0,0.4 -4648-S2-0,72.389,0.62222,0.04,0.2,0.0 -4648-S2-0,72.972,0.6,0.04,0.1,0.0 -4648-S2-0,73.443,0.44444,0.04,0.1,0.0 -4652-S2-0,81.152,0.33333,0.04,0.1,0.0 -4652-S2-0,81.652,0.44444,0.0,0.1,0.0 -4652-S2-0,82.33500000000001,0.2,0.0,0.0,0.0 -4656-S2-0,72.9,0.35556,0.08,0.1,0.0 -4656-S2-0,73.411,0.33333,0.0,0.0,0.2 -4656-S2-0,73.927,0.33333,0.0,0.3,0.2 -4658-S2-1,83.33500000000001,0.44444,0.0,0.0,0.4 -4658-S2-1,83.816,0.44444,0.0,0.1,0.2 -4658-S2-1,84.311,0.55556,0.0,0.0,0.2 -4658-S2-1,84.852,0.58511,0.0,0.1,0.2 -4658-S2-1,85.397,0.6371100000000001,0.0,0.0,0.2 -4658-S2-1,86.435,0.71111,0.0,0.1,0.4 -4660-S2-0,74.322,0.58511,0.0,0.2,0.0 -4660-S2-0,74.822,0.5482199999999999,0.0,0.0,0.2 -4660-S2-0,75.316,0.53333,0.04,0.2,0.0 -4660-S2-0,75.816,0.69622,0.0,0.1,0.0 -4660-S2-0,76.297,0.6,0.0,0.1,0.4 -4660-S2-0,77.313,0.7406699999999999,0.0,0.1,0.2 -4660-S2-0,78.491,0.74822,0.0,0.4,0.8 -4678-S2-1,89.48299999999999,0.474,0.0,0.1,0.2 -4678-S2-1,89.98,0.54067,0.08,0.1,0.2 -4678-S2-1,90.647,0.56289,0.08,0.0,0.0 -4680-S2-0,81.039,0.46667,0.08,0.1,1.0 -4680-S2-0,81.55300000000003,0.53333,0.08,0.1,1.0 -4680-S2-0,82.05300000000003,0.59267,0.16,0.0,0.8 -4680-S2-0,82.58800000000001,0.62956,0.12,0.2,0.8 -4680-S2-0,83.069,0.91111,0.68,0.8,1.0 -4682-S2-1,84.494,0.62956,0.08,0.0,0.4 -4682-S2-1,85.063,0.674,0.12,0.1,0.4 -4682-S2-1,85.524,0.75556,0.12,0.1,0.2 -4682-S2-1,86.074,0.79267,0.04,0.1,0.4 -4682-S2-1,86.52700000000002,0.68156,0.04,0.1,0.4 -4682-S2-1,87.47200000000001,0.81489,0.0,0.3,0.6 -4684-S2-0,80.80300000000003,0.34822,0.08,0.1,0.2 -4684-S2-0,81.411,0.35556,0.16,0.2,0.4 -4684-S2-0,81.8,0.75556,0.12,0.4,0.0 -4684-S2-0,82.419,0.8,0.24,0.1,1.0 -4684-S2-0,82.872,0.65933,0.24,0.2,0.8 -4688-S2-0,83.227,0.55556,0.0,0.1,0.2 -4688-S2-0,83.75800000000001,0.62222,0.2,0.0,0.2 -4688-S2-0,84.292,0.68156,0.12,0.1,0.0 -4688-S2-0,84.782,0.726,0.08,0.1,0.2 -4688-S2-0,85.599,0.68889,0.04,0.2,0.2 -4690-S2-1,87.941,0.37044,0.0,0.0,0.2 -4690-S2-1,88.72500000000001,0.45178,0.04,0.2,0.4 -4690-S2-1,89.01299999999998,0.28156,0.04,0.1,0.4 -4690-S2-1,90.144,0.42222,0.04,0.1,0.4 -4690-S2-1,90.95299999999999,0.5777800000000001,0.04,0.3,0.2 -4692-S2-0,79.23,0.45933,0.04,0.1,0.6 -4692-S2-0,79.75800000000001,0.48889,0.12,0.1,0.8 -4692-S2-0,80.236,0.4295600000000001,0.12,0.2,0.8 -4706-S2-1,84.513,0.39267,0.04,0.1,0.0 -4706-S2-1,84.96600000000001,0.50378,0.0,0.2,0.0 -4706-S2-1,85.51299999999998,0.45933,0.04,0.1,0.0 -4706-S2-1,85.96100000000003,0.55556,0.08,0.2,0.0 -4706-S2-1,86.53200000000002,0.474,0.04,0.1,0.4 -4706-S2-1,87.518,0.5777800000000001,0.0,0.1,0.2 -4706-S2-1,88.51299999999998,0.58511,0.04,0.1,0.4 -4710-S2-1,84.50800000000001,0.40733,0.0,0.1,0.0 -4710-S2-1,85.49899999999998,0.37778,0.0,0.1,0.0 -4710-S2-1,85.98,0.25178,0.0,0.0,0.0 -4710-S2-1,86.464,0.41489,0.0,0.1,0.0 -4710-S2-1,87.49899999999998,0.57044,0.0,0.1,0.2 -4714-S2-1,84.305,0.38511,0.04,0.2,0.6 -4714-S2-1,84.824,0.45178,0.08,0.0,0.2 -4714-S2-1,85.313,0.49622,0.24,0.1,0.4 -4714-S2-1,85.813,0.59267,0.24,0.2,0.2 -4714-S2-1,86.29700000000003,0.65178,0.32,0.3,0.4 -4714-S2-1,87.30799999999998,0.69622,0.36,0.2,0.2 -7908-S2-0,80.527,0.35556,0.12,0.0,0.4 -7908-S2-0,80.991,0.36289,0.0,0.2,0.8 -7908-S2-0,81.532,0.35556,0.0,0.1,0.4 -7908-S2-0,82.00800000000001,0.44444,0.0,0.1,0.4 -7908-S2-0,82.529,0.44444,0.2,0.1,0.6 -7914-S2-1,82.958,0.35556,0.2,0.0,0.4 -7914-S2-1,83.455,0.38511,0.04,0.0,0.4 -7914-S2-1,83.932,0.41489,0.2,0.3,0.8 -7914-S2-1,84.427,0.46667,0.16,0.3,0.6 -7914-S2-1,84.932,0.5111100000000001,0.2,0.6,0.8 -7914-S2-1,85.96600000000001,0.65178,0.32,0.4,1.0 -7924-S2-0,74.518,0.36289,0.04,0.0,0.2 -7924-S2-0,75.09100000000001,0.59267,0.04,0.2,0.4 -7924-S2-0,75.513,0.5482199999999999,0.04,0.1,0.2 -7924-S2-0,76.027,0.5111100000000001,0.0,0.1,0.2 -7924-S2-0,76.547,0.62222,0.0,0.1,0.2 -7924-S2-0,77.544,0.6,0.04,0.1,0.2 -7944-S2-0,89.324,0.33333,0.08,0.0,0.2 -7944-S2-0,89.824,0.35556,0.04,0.1,0.2 -7944-S2-0,90.33799999999998,0.40733,0.04,0.2,0.2 -7944-S2-0,90.852,0.37778,0.04,0.1,0.4 -7944-S2-0,91.29700000000003,0.35556,0.0,0.1,0.2 -7958-S2-1,63.738,0.36289,0.04,0.0,0.0 -7958-S2-1,64.23,0.45933,0.0,0.0,0.4 -7958-S2-1,64.752,0.36289,0.04,0.1,0.2 -7958-S2-1,65.249,0.40733,0.0,0.1,0.4 -7958-S2-1,65.73,0.44444,0.0,0.1,0.4 -7958-S2-1,66.211,0.40733,0.0,0.1,0.6 -7960-S2-0,91.708,0.36289,0.0,0.0,0.2 -7960-S2-0,92.26299999999998,0.37044,0.04,0.0,0.0 -7960-S2-0,92.70200000000003,0.36289,0.0,0.0,0.0 -7960-S2-0,93.279,0.31844,0.08,0.0,0.2 -7960-S2-0,93.741,0.34822,0.0,0.0,0.0 -7968-S2-0,85.188,0.274,0.08,0.1,0.0 -7968-S2-0,85.693,0.24444,0.04,0.1,0.0 -7968-S2-0,86.18200000000002,0.28156,0.08,0.1,0.0 -7968-S2-0,86.71100000000003,0.38511,0.08,0.1,0.0 -7968-S2-0,87.22200000000001,0.274,0.0,0.1,0.0 -7968-S2-0,88.19600000000003,0.37778,0.0,0.1,0.2 -7968-S2-0,89.155,0.36289,0.04,0.1,0.0 -7972-S2-0,71.48,0.41489,0.0,0.0,0.2 -7972-S2-0,72.055,0.62222,0.04,0.1,0.2 -7972-S2-0,72.453,0.5777800000000001,0.04,0.1,0.2 -8002-S2-1,75.319,0.34822,0.0,0.0,0.0 -8002-S2-1,75.857,0.34822,0.0,0.0,0.2 -8002-S2-1,76.369,0.37044,0.0,0.2,0.0 -8002-S2-1,76.875,0.37778,0.0,0.0,0.0 -8002-S2-1,77.366,0.42222,0.0,0.1,0.0 -8002-S2-1,78.311,0.48156,0.0,0.0,0.0 -8002-S2-1,79.402,0.6,0.0,0.0,0.0 -8006-S2-1,74.786,0.274,0.0,0.2,0.0 -8006-S2-1,75.286,0.4295600000000001,0.0,0.1,0.0 -8006-S2-1,75.768,0.41489,0.0,0.1,0.0 -8006-S2-1,76.266,0.55556,0.0,0.1,0.0 -8006-S2-1,76.80300000000003,0.49622,0.0,0.1,0.0 -8018-S2-1,91.10700000000003,0.28889000000000004,0.08,0.2,0.2 -8018-S2-1,91.699,0.37044,0.08,0.1,0.2 -8018-S2-1,92.155,0.36289,0.04,0.1,0.4 -8018-S2-1,92.658,0.45178,0.04,0.1,0.2 -8018-S2-1,93.096,0.46667,0.08,0.1,0.4 -8018-S2-1,94.13300000000001,0.55556,0.08,0.2,0.6 -8022-S2-1,75.583,0.4295600000000001,0.08,0.1,0.0 -8022-S2-1,76.46899999999998,0.274,0.04,0.0,0.0 -8022-S2-1,76.616,0.25178,0.0,0.1,0.0 -8022-S2-1,77.13300000000001,0.24444,0.0,0.0,0.0 -8022-S2-1,77.58800000000001,0.34822,0.08,0.0,0.0 -8022-S2-1,78.58500000000001,0.45178,0.12,0.0,0.0 -8022-S2-1,79.661,0.41489,0.16,0.1,0.2 -8026-S2-1,74.139,0.41489,0.0,0.0,0.0 -8026-S2-1,74.622,0.60733,0.0,0.0,0.0 -8026-S2-1,75.155,0.45178,0.0,0.0,0.0 -8026-S2-1,75.652,0.50378,0.0,0.1,0.0 -8026-S2-1,76.16600000000003,0.50378,0.0,0.0,0.4 -8044-S2-0,80.297,0.38511,0.04,0.0,0.0 -8044-S2-0,80.827,0.31844,0.04,0.1,0.0 -8044-S2-0,81.289,0.34822,0.12,0.0,0.0 -8044-S2-0,81.83,0.44444,0.04,0.0,0.0 -8044-S2-0,82.292,0.38511,0.08,0.0,0.0 -8044-S2-0,83.279,0.474,0.08,0.0,0.0 -8046-S2-1,79.613,0.4,0.04,0.0,0.0 -8046-S2-1,80.139,0.4371100000000001,0.04,0.0,0.0 -8046-S2-1,80.583,0.31844,0.08,0.0,0.0 -8046-S2-1,81.628,0.45178,0.12,0.3,0.2 -8046-S2-1,82.655,0.48889,0.04,0.1,0.0 -8054-S2-1,82.16600000000003,0.48156,0.04,0.1,0.0 -8054-S2-1,82.682,0.54067,0.04,0.1,0.2 -8054-S2-1,83.182,0.4295600000000001,0.04,0.1,0.4 -8054-S2-1,83.677,0.4371100000000001,0.04,0.1,0.0 -8054-S2-1,84.161,0.5111100000000001,0.0,0.1,0.0 -8054-S2-1,85.285,0.49622,0.0,0.1,0.0 -8054-S2-1,86.324,0.62222,0.04,0.1,0.0 -8130-S2-1,73.91600000000003,0.40733,0.0,0.1,0.2 -8130-S2-1,74.411,0.4,0.0,0.0,0.2 -8130-S2-1,74.908,0.50378,0.04,0.0,0.0 -8130-S2-1,75.42399999999998,0.46667,0.0,0.1,0.0 -8130-S2-1,75.92399999999998,0.37778,0.0,0.2,0.0 -8130-S2-1,76.88300000000001,0.58511,0.0,0.0,0.2 -8130-S2-1,78.021,0.6371100000000001,0.04,0.0,0.2 -8144-S2-0,74.599,0.29622,0.12,0.3,0.4 -8144-S2-0,75.13000000000001,0.29622,0.0,0.1,0.6 -8144-S2-0,75.574,0.26667,0.0,0.2,0.8 -8144-S2-0,76.11,0.4371100000000001,0.0,0.1,0.6 -8144-S2-0,76.59100000000001,0.4,0.04,0.1,0.6 -8144-S2-0,77.572,0.6371100000000001,0.12,0.2,1.0 -8154-S2-1,74.878,0.54067,0.0,0.0,0.2 -8154-S2-1,75.38000000000001,0.42222,0.0,0.0,0.0 -8154-S2-1,75.863,0.526,0.0,0.1,0.0 -8154-S2-1,76.4,0.6,0.0,0.0,0.0 -8154-S2-1,76.866,0.46667,0.0,0.1,0.0 -8154-S2-1,77.894,0.66667,0.0,0.0,0.0 -8154-S2-1,78.878,0.60733,0.0,0.1,0.0 -8156-S2-0,83.88300000000001,0.34822,0.0,0.0,0.0 -8156-S2-0,84.397,0.37778,0.0,0.0,0.0 -8156-S2-0,84.889,0.38511,0.0,0.0,0.0 -8156-S2-0,85.41600000000003,0.49622,0.08,0.0,0.0 -8156-S2-0,85.897,0.48889,0.0,0.0,0.0 -8156-S2-0,86.913,0.7851100000000001,0.2,0.0,0.0 -8166-S2-1,87.51299999999998,0.42222,0.08,0.1,0.4 -8166-S2-1,88.044,0.42222,0.08,0.1,0.4 -8166-S2-1,88.529,0.48889,0.12,0.1,0.2 -8166-S2-1,89.05799999999998,0.5482199999999999,0.2,0.1,0.4 -8166-S2-1,89.50799999999998,0.53333,0.12,0.2,0.6 -8166-S2-1,90.48299999999999,0.57044,0.08,0.2,0.4 -8168-S2-0,81.349,0.45178,0.12,0.2,0.4 -8168-S2-0,81.797,0.22956,0.04,0.3,1.0 -8168-S2-0,82.935,0.4295600000000001,0.16,0.2,0.6 -8168-S2-0,83.327,0.51844,0.08,0.1,0.6 -8168-S2-0,84.38000000000001,0.59267,0.16,0.3,0.8 -8176-S2-0,82.96899999999998,0.44444,0.0,0.0,0.2 -8176-S2-0,83.46600000000001,0.6371100000000001,0.04,0.0,0.4 -8176-S2-0,83.991,0.50378,0.0,0.0,0.0 -8176-S2-0,84.455,0.6371100000000001,0.0,0.0,0.2 -8186-S2-1,84.058,0.21489,0.16,0.1,0.4 -8186-S2-1,84.561,0.15556,0.04,0.1,0.6 -8186-S2-1,85.055,0.40733,0.08,0.1,0.4 -8186-S2-1,85.569,0.22956,0.04,0.1,0.4 -8186-S2-1,86.066,0.30378,0.0,0.1,0.6 -8186-S2-1,87.063,0.2,0.0,0.1,0.6 -8186-S2-1,88.04700000000003,0.39267,0.0,0.3,0.6 -8192-S2-0,75.144,0.24444,0.0,0.0,0.2 -8192-S2-0,75.647,0.31844,0.08,0.1,0.2 -8192-S2-0,76.152,0.4,0.04,0.0,0.0 -8192-S2-0,76.63600000000001,0.48156,0.08,0.1,0.2 -8192-S2-0,77.13600000000001,0.51844,0.28,0.1,0.4 -8192-S2-0,78.147,0.62222,0.08,0.1,0.2 -8198-S2-1,78.185,0.34822,0.0,0.0,0.2 -8198-S2-1,78.86,0.34067,0.08,0.0,0.2 -8198-S2-1,79.25500000000001,0.39267,0.0,0.0,0.0 -8214-S2-1,71.92399999999999,0.29622,0.0,0.0,0.0 -8214-S2-1,72.38000000000001,0.29622,0.0,0.0,0.0 -8214-S2-1,72.938,0.42222,0.0,0.1,0.2 -8214-S2-1,73.38600000000001,0.46667,0.0,0.0,0.0 -8214-S2-1,73.889,0.37778,0.0,0.0,0.0 -8214-S2-1,74.949,0.42222,0.04,0.1,0.2 -8218-S2-1,83.738,0.40733,0.0,0.1,0.2 -8218-S2-1,84.205,0.56289,0.0,0.1,0.2 -8218-S2-1,84.733,0.48156,0.04,0.2,0.0 -8218-S2-1,85.241,0.6,0.08,0.0,0.2 -8220-S2-0,79.71600000000001,0.64444,0.04,0.1,0.2 -8220-S2-0,80.247,0.66667,0.08,0.1,0.4 -8220-S2-0,80.805,0.64444,0.08,0.1,0.4 -8220-S2-0,81.308,0.6148899999999999,0.16,0.1,0.6 -8236-S2-0,58.607,0.51844,0.04,0.1,0.2 -8236-S2-0,59.105000000000004,0.59267,0.04,0.2,0.2 -8236-S2-0,59.641000000000005,0.51844,0.24,0.1,0.0 -8236-S2-0,60.102000000000004,0.66667,0.12,0.1,0.2 -8236-S2-0,60.644000000000005,0.5482199999999999,0.2,0.1,0.4 -8238-S2-1,61.13,0.474,0.0,0.2,0.4 -8238-S2-1,61.633,0.51844,0.0,0.3,0.2 -8238-S2-1,62.128,0.37778,0.04,0.3,0.2 -8238-S2-1,62.616,0.45933,0.0,0.1,0.2 -8238-S2-1,63.125,0.59267,0.0,0.2,0.4 -8240-S2-0,72.292,0.35556,0.04,0.0,0.2 -8240-S2-0,72.805,0.28889000000000004,0.0,0.0,0.4 -8240-S2-0,73.277,0.28156,0.12,0.0,0.6 -8240-S2-0,73.777,0.45178,0.0,0.0,0.6 -8240-S2-0,74.274,0.34067,0.12,0.0,0.4 -8240-S2-0,75.289,0.41489,0.2,0.0,0.6 -8250-S2-1,72.952,0.48889,0.04,0.1,0.2 -8250-S2-1,73.488,0.5111100000000001,0.04,0.1,0.4 -8250-S2-1,73.949,0.30378,0.24,0.2,1.0 -8250-S2-1,74.46899999999998,0.39267,0.0,0.1,0.8 -8250-S2-1,74.953,0.40733,0.2,0.1,0.4 -8268-S2-0,72.308,0.40733,0.08,0.1,0.4 -8268-S2-0,72.84100000000001,0.48156,0.08,0.1,0.4 -8268-S2-0,73.322,0.54067,0.16,0.2,0.6 -8268-S2-0,73.878,0.54067,0.12,0.1,0.8 -8270-S2-1,77.042,0.674,0.0,0.1,0.2 -8270-S2-1,77.542,0.65933,0.04,0.0,0.4 -8270-S2-1,78.039,0.44444,0.0,0.0,0.4 -8270-S2-1,78.521,0.7037800000000001,0.04,0.0,0.4 -8270-S2-1,79.036,0.68889,0.0,0.0,0.6 -8270-S2-1,80.069,0.55556,0.04,0.0,0.8 -8274-S2-1,83.139,0.326,0.04,0.0,0.4 -8274-S2-1,83.63000000000001,0.51844,0.0,0.0,0.2 -8274-S2-1,84.13000000000001,0.41489,0.04,0.0,0.2 -8274-S2-1,84.66300000000003,0.56289,0.04,0.1,0.2 -8274-S2-1,85.141,0.51844,0.04,0.1,0.4 -8276-S2-0,89.919,0.34822,0.0,0.1,0.0 -8276-S2-0,90.394,0.45933,0.0,0.1,0.0 -8276-S2-0,90.897,0.33333,0.0,0.0,0.0 -8276-S2-0,91.391,0.29622,0.0,0.0,0.0 -8276-S2-0,92.02700000000002,0.4371100000000001,0.0,0.0,0.2 -8276-S2-0,92.97200000000001,0.30378,0.0,0.0,0.0 -8288-S2-0,75.33800000000001,0.44444,0.08,0.1,0.0 -8288-S2-0,75.9,0.48889,0.04,0.0,0.4 -8288-S2-0,76.33800000000001,0.4295600000000001,0.08,0.0,0.4 -8288-S2-0,76.813,0.57044,0.04,0.0,0.2 -8288-S2-0,77.558,0.71844,0.08,0.1,0.4 -8288-S2-0,78.641,0.73333,0.16,0.1,0.8 -8294-S2-1,80.566,0.77044,0.04,0.2,0.4 -8294-S2-1,81.055,0.6148899999999999,0.04,0.1,0.4 -8294-S2-1,81.596,0.73333,0.08,0.1,0.8 -8294-S2-1,82.055,0.88889,0.2,0.1,0.6 -8294-S2-1,82.59100000000001,0.88889,0.08,0.2,0.8 -8298-S2-1,86.71899999999998,0.59267,0.0,0.0,0.4 -8298-S2-1,87.199,0.64444,0.08,0.0,0.4 -8298-S2-1,87.714,0.65178,0.12,0.0,0.2 -8298-S2-1,88.19600000000003,0.75556,0.12,0.1,0.4 -8298-S2-1,88.71100000000003,0.674,0.04,0.1,1.0 -8304-S2-0,82.50199999999998,0.46667,0.0,0.1,0.0 -8304-S2-0,83.018,0.40733,0.0,0.1,0.2 -8304-S2-0,83.647,0.49622,0.08,0.1,0.0 -8304-S2-0,84.647,0.60733,0.0,0.0,0.2 -8304-S2-0,85.647,0.62222,0.0,0.3,0.2 -8310-S2-1,79.763,0.326,0.0,0.0,0.0 -8310-S2-1,80.263,0.37778,0.04,0.1,0.2 -8310-S2-1,80.736,0.326,0.04,0.0,0.2 -8310-S2-1,81.25800000000001,0.40733,0.0,0.0,0.0 -8310-S2-1,81.736,0.40733,0.0,0.0,0.2 -8310-S2-1,82.768,0.50378,0.0,0.1,0.2 -8310-S2-1,83.72500000000001,0.56289,0.12,0.0,0.4 -8312-S2-0,82.458,0.25178,0.04,0.2,0.4 -8312-S2-0,82.997,0.274,0.04,0.2,0.6 -8312-S2-0,83.47199999999998,0.34822,0.0,0.3,0.8 -8312-S2-0,84.00500000000001,0.28889000000000004,0.0,0.2,1.0 -8312-S2-0,84.46899999999998,0.21489,0.0,0.2,0.6 -8312-S2-0,85.46600000000001,0.274,0.32,0.3,1.0 -8320-S2-0,84.36800000000001,0.33333,0.08,0.0,0.2 -8320-S2-0,84.894,0.28889000000000004,0.0,0.0,0.2 -8320-S2-0,85.389,0.37778,0.04,0.0,0.2 -8320-S2-0,85.92399999999998,0.48889,0.04,0.0,0.4 -8320-S2-0,86.38000000000001,0.44444,0.0,0.0,0.4 -8328-S2-0,72.67399999999999,0.31111,0.12,0.1,0.2 -8328-S2-0,73.15,0.326,0.04,0.1,0.2 -8328-S2-0,73.671,0.23711,0.0,0.2,0.2 -8328-S2-0,74.185,0.37044,0.04,0.1,0.4 -8328-S2-0,74.703,0.37778,0.08,0.1,0.4 -8328-S2-0,75.677,0.50378,0.0,0.1,0.4 -8332-S2-0,79.016,0.19267,0.08,0.1,0.4 -8332-S2-0,79.544,0.30378,0.04,0.2,0.6 -8332-S2-0,79.935,0.31111,0.32,0.0,0.2 -8332-S2-0,80.55,0.45933,0.28,0.2,0.8 -8332-S2-0,81.027,0.88889,0.36,0.2,1.0 -8334-S2-1,65.619,0.22956,0.04,0.1,0.0 -8334-S2-1,66.163,0.21489,0.0,0.3,0.0 -8334-S2-1,66.58800000000001,0.36289,0.0,0.1,0.0 -8334-S2-1,67.122,0.26667,0.0,0.2,0.0 -8334-S2-1,67.652,0.35556,0.04,0.1,0.2 -8334-S2-1,68.599,0.42222,0.08,0.0,0.2 -8338-S2-1,82.88600000000001,0.44444,0.04,0.0,0.4 -8338-S2-1,83.41300000000003,0.35556,0.12,0.0,0.4 -8338-S2-1,83.875,0.39267,0.2,0.1,0.4 -8338-S2-1,84.366,0.48156,0.2,0.0,0.4 -8338-S2-1,84.911,0.62222,0.36,0.1,0.6 -8338-S2-1,85.88600000000001,0.55556,0.4,0.1,0.6 -8340-S2-0,78.99899999999998,0.31844,0.0,0.3,0.4 -8340-S2-0,79.486,0.4371100000000001,0.0,0.1,0.2 -8340-S2-0,79.96100000000003,0.4295600000000001,0.0,0.1,0.2 -8340-S2-0,80.50500000000001,0.474,0.0,0.0,0.4 -8352-S2-0,63.699000000000005,0.56289,0.0,0.1,0.4 -8352-S2-0,64.191,0.55556,0.04,0.1,0.4 -8352-S2-0,64.688,0.56289,0.04,0.1,0.4 -8352-S2-0,65.163,0.60733,0.08,0.1,0.2 -8352-S2-0,65.703,0.68156,0.04,0.1,0.4 -8358-S2-1,88.628,0.55556,0.12,0.1,0.2 -8358-S2-1,89.125,0.48156,0.08,0.1,0.4 -8358-S2-1,89.602,0.526,0.08,0.2,0.2 -8364-S2-0,90.54700000000003,0.28889000000000004,0.04,0.1,0.4 -8364-S2-0,91.039,0.25178,0.08,0.2,0.4 -8364-S2-0,91.539,0.29622,0.08,0.1,0.6 -8364-S2-0,92.016,0.37044,0.12,0.1,0.6 -8364-S2-0,92.555,0.31111,0.04,0.1,0.6 -8364-S2-0,93.561,0.5482199999999999,0.08,0.2,1.0 -8370-S2-1,77.00800000000001,0.24444,0.04,0.1,0.6 -8370-S2-1,77.527,0.326,0.0,0.0,0.4 -8370-S2-1,77.97199999999998,0.34822,0.0,0.1,0.2 -8370-S2-1,78.529,0.326,0.04,0.0,0.6 -8370-S2-1,79.00199999999998,0.30378,0.0,0.1,0.4 -8370-S2-1,80.00199999999998,0.39267,0.0,0.1,0.6 -8370-S2-1,81.029,0.4295600000000001,0.0,0.1,0.4 -8374-S2-1,69.524,0.40733,0.04,0.1,0.0 -8374-S2-1,70.042,0.45933,0.0,0.2,0.0 -8374-S2-1,70.502,0.4295600000000001,0.04,0.0,0.0 -8374-S2-1,71.036,0.37044,0.0,0.1,0.0 -8374-S2-1,71.639,0.6148899999999999,0.0,0.2,0.2 -8374-S2-1,72.658,0.88889,0.0,0.2,0.6 -8382-S2-1,76.177,0.18511,0.08,0.0,0.0 -8382-S2-1,76.699,0.13333,0.04,0.0,0.2 -8382-S2-1,77.155,0.22222,0.0,0.1,0.0 -8382-S2-1,77.71100000000003,0.34822,0.0,0.0,0.2 -8382-S2-1,78.193,0.28156,0.0,0.0,0.4 -8382-S2-1,79.158,0.68156,0.04,0.2,0.4 -8388-S2-0,87.50200000000001,0.37778,0.04,0.0,0.2 -8388-S2-0,87.958,0.50378,0.12,0.0,0.2 -8388-S2-0,88.49899999999998,0.4371100000000001,0.16,0.2,0.2 -8388-S2-0,89.021,0.44444,0.12,0.1,0.2 -8388-S2-0,89.613,0.55556,0.2,0.0,0.4 -8390-S2-1,72.693,0.526,0.04,0.0,0.2 -8390-S2-1,73.21100000000001,0.39267,0.04,0.1,0.2 -8390-S2-1,73.661,0.48156,0.04,0.2,0.2 -8390-S2-1,74.289,0.56289,0.08,0.0,0.4 -8390-S2-1,74.714,0.4295600000000001,0.04,0.0,0.2 -8390-S2-1,75.73,0.526,0.0,0.2,0.2 -8412-S2-0,60.083000000000006,0.48156,0.48,0.1,0.2 -8412-S2-0,60.580000000000005,0.4,0.24,0.1,0.6 -8412-S2-0,61.077000000000005,0.62956,0.24,0.1,0.6 -8412-S2-0,61.599000000000004,0.71844,0.28,0.1,0.8 -8418-S2-1,78.42399999999998,0.51844,0.04,0.1,0.0 -8418-S2-1,78.894,0.54067,0.04,0.0,0.2 -8418-S2-1,79.42399999999998,0.62222,0.0,0.1,0.0 -8418-S2-1,79.927,0.5111100000000001,0.04,0.2,0.0 -8418-S2-1,80.46899999999998,0.50378,0.08,0.0,0.2 -8442-S2-1,76.685,0.53333,0.2,0.1,0.4 -8442-S2-1,77.18,0.62222,0.16,0.2,0.4 -8442-S2-1,77.699,0.68889,0.32,0.3,0.8 -8442-S2-1,78.177,0.7851100000000001,0.68,0.3,1.0 -8442-S2-1,78.68,0.75556,0.52,0.2,0.6 -8444-S2-0,86.018,0.33333,0.04,0.1,0.6 -8444-S2-0,86.518,0.41489,0.04,0.1,0.2 -8444-S2-0,87.024,0.4,0.08,0.1,0.6 -8444-S2-0,87.494,0.46667,0.08,0.1,0.4 -8462-S2-1,72.83,0.4371100000000001,0.0,0.0,0.4 -8462-S2-1,73.286,0.51844,0.0,0.1,0.2 -8462-S2-1,73.747,0.55556,0.04,0.0,0.2 -8462-S2-1,74.408,0.51844,0.04,0.0,0.4 -8462-S2-1,74.824,0.62222,0.08,0.1,0.4 -8470-S2-1,83.891,0.24444,0.0,0.0,0.2 -8470-S2-1,84.391,0.44444,0.0,0.0,0.0 -8470-S2-1,84.908,0.45178,0.0,0.1,0.4 -8470-S2-1,85.408,0.40733,0.0,0.0,0.2 -8470-S2-1,85.94600000000003,0.54067,0.0,0.0,0.0 -8470-S2-1,86.964,0.54067,0.0,0.1,0.0 -8474-S2-1,83.63600000000001,0.6148899999999999,0.04,0.0,0.0 -8474-S2-1,84.122,0.48889,0.12,0.0,0.2 -8474-S2-1,84.655,0.60733,0.28,0.0,0.0 -8474-S2-1,85.15200000000002,0.66667,0.08,0.1,0.2 -8474-S2-1,85.811,0.57044,0.28,0.0,0.2 -8488-S2-0,82.46100000000003,0.62956,0.08,0.2,0.6 -8488-S2-0,82.986,0.69622,0.08,0.2,1.0 -8488-S2-0,83.55,0.56289,0.12,0.1,0.4 -8488-S2-0,83.986,0.7406699999999999,0.24,0.2,0.4 -8498-S2-1,76.703,0.4371100000000001,0.04,0.0,0.2 -8498-S2-1,77.19600000000003,0.53333,0.0,0.0,0.4 -8498-S2-1,77.71100000000003,0.45933,0.0,0.0,0.4 -8500-S2-0,73.297,0.59267,0.0,0.1,0.2 -8500-S2-0,73.797,0.45178,0.0,0.0,0.4 -8500-S2-0,74.324,0.42222,0.0,0.0,0.2 -8500-S2-0,74.852,0.50378,0.0,0.1,0.4 -8500-S2-0,75.294,0.5482199999999999,0.04,0.1,0.6 -8502-S2-1,77.063,0.326,0.2,0.0,0.4 -8502-S2-1,77.55300000000003,0.58511,0.32,0.1,0.4 -8502-S2-1,78.047,0.37044,0.28,0.1,0.6 -8502-S2-1,78.736,0.36289,0.48,0.1,0.6 -8502-S2-1,79.066,0.44444,0.52,0.2,0.8 -8504-S2-0,69.05300000000001,0.46667,0.0,0.1,0.4 -8504-S2-0,69.58800000000001,0.38511,0.0,0.2,0.4 -8504-S2-0,70.05,0.46667,0.0,0.1,0.6 -8504-S2-0,70.427,0.45933,0.08,0.2,0.4 -8504-S2-0,71.066,0.45178,0.04,0.3,0.6 -8504-S2-0,72.08,0.56289,0.08,0.2,0.8 -8518-S2-1,86.75500000000001,0.34822,0.0,0.1,0.2 -8518-S2-1,87.25500000000001,0.20733,0.0,0.1,0.0 -8518-S2-1,87.691,0.326,0.0,0.0,0.0 -8518-S2-1,88.26299999999998,0.4,0.04,0.2,0.2 -8518-S2-1,88.73299999999999,0.37044,0.0,0.1,0.2 -8518-S2-1,89.73,0.33333,0.0,0.1,0.0 -8518-S2-1,90.75799999999998,0.2,0.0,0.1,0.4 -8522-S2-1,59.607,0.53333,0.0,0.1,0.4 -8522-S2-1,60.105000000000004,0.48156,0.08,0.1,0.6 -8522-S2-1,60.569,0.68889,0.04,0.1,0.6 -8522-S2-1,61.094,0.5777800000000001,0.24,0.2,0.8 -8522-S2-1,61.574000000000005,0.674,0.28,0.3,1.0 -8522-S2-1,62.577000000000005,0.75556,0.56,0.7,0.8 -8524-S2-0,83.822,0.42222,0.0,0.3,0.4 -8524-S2-0,84.33,0.34067,0.0,0.1,0.2 -8524-S2-0,84.794,0.51844,0.0,0.1,0.2 -8524-S2-0,85.33,0.50378,0.0,0.1,0.4 -8524-S2-0,85.96899999999998,0.5111100000000001,0.0,0.1,0.4 -8554-S2-1,78.994,0.37778,0.04,0.0,0.0 -8554-S2-1,79.47500000000001,0.5777800000000001,0.04,0.1,0.4 -8554-S2-1,79.96899999999998,0.4295600000000001,0.04,0.2,0.4 -8554-S2-1,80.516,0.474,0.0,0.1,0.0 -8554-S2-1,81.01,0.56289,0.0,0.1,0.2 -8556-S2-0,73.16300000000001,0.35556,0.04,0.2,0.2 -8556-S2-0,73.68,0.26667,0.08,0.1,0.2 -8556-S2-0,74.161,0.5482199999999999,0.0,0.0,0.0 -8556-S2-0,75.792,0.62956,0.12,0.1,0.2 -8562-S2-1,78.152,0.38511,0.0,0.0,0.4 -8562-S2-1,78.702,0.5482199999999999,0.04,0.1,0.6 -8562-S2-1,79.17399999999998,0.54067,0.08,0.0,0.8 -8562-S2-1,79.693,0.73333,0.24,0.1,0.6 -8562-S2-1,80.21100000000003,0.85178,0.2,0.2,0.8 -8592-S2-0,71.244,0.22222,0.0,0.0,0.2 -8592-S2-0,71.738,0.36289,0.0,0.0,0.4 -8592-S2-0,72.236,0.42222,0.0,0.0,0.2 -8592-S2-0,72.738,0.34822,0.08,0.0,0.2 -8592-S2-0,73.236,0.37044,0.12,0.1,0.4 -8592-S2-0,74.308,0.50378,0.32,0.1,1.0 -8608-S2-0,84.47199999999998,0.4,0.04,0.0,0.4 -8608-S2-0,84.905,0.35556,0.0,0.0,0.4 -8608-S2-0,85.50799999999998,0.34822,0.04,0.0,0.6 -8608-S2-0,86.066,0.31111,0.0,0.0,0.2 -8608-S2-0,86.488,0.4,0.0,0.1,0.4 -8608-S2-0,87.553,0.45178,0.04,0.0,0.4 -8612-S2-0,70.435,0.46667,0.04,0.1,0.2 -8612-S2-0,70.911,0.40733,0.04,0.1,0.4 -8612-S2-0,71.458,0.56289,0.0,0.0,0.2 -8612-S2-0,71.943,0.6,0.0,0.0,0.4 -8612-S2-0,72.46100000000001,0.64444,0.0,0.1,0.6 -8618-S2-1,75.891,0.4295600000000001,0.0,0.2,0.4 -8618-S2-1,76.36800000000001,0.51844,0.0,0.2,0.4 -8618-S2-1,76.866,0.65178,0.12,0.2,0.2 -8618-S2-1,77.397,0.56289,0.04,0.1,0.6 -8618-S2-1,77.98,0.65933,0.08,0.1,0.6 -8620-S2-0,85.569,0.33333,0.04,0.1,0.0 -8620-S2-0,86.08500000000001,0.29622,0.04,0.0,0.0 -8620-S2-0,86.569,0.36289,0.12,0.0,0.0 -8620-S2-0,87.066,0.34822,0.12,0.0,0.0 -8620-S2-0,87.583,0.42222,0.24,0.1,0.0 -8620-S2-0,88.639,0.51844,0.12,0.2,0.0 -8626-S2-1,79.66300000000003,0.55556,0.0,0.0,0.0 -8626-S2-1,80.144,0.59267,0.28,0.1,0.2 -8626-S2-1,80.682,0.68156,0.24,0.0,0.0 -8626-S2-1,81.177,0.8222200000000001,0.36,0.1,0.6 -8654-S2-1,80.11,0.4295600000000001,0.0,0.1,0.0 -8654-S2-1,80.572,0.35556,0.04,0.1,0.4 -8654-S2-1,81.199,0.53333,0.04,0.0,0.2 -8654-S2-1,81.59100000000001,0.39267,0.08,0.0,0.4 -8662-S2-1,75.214,0.42222,0.08,0.1,0.4 -8662-S2-1,75.75199999999998,0.60733,0.2,0.1,0.4 -8662-S2-1,76.24899999999998,0.48156,0.08,0.2,0.2 -8662-S2-1,76.747,0.6371100000000001,0.08,0.1,0.2 -8662-S2-1,77.23,0.54067,0.08,0.1,0.2 -8662-S2-1,78.22199999999998,0.6,0.12,0.0,0.4 -8666-S2-1,72.497,0.36289,0.04,0.1,0.0 -8666-S2-1,72.991,0.33333,0.04,0.1,0.0 -8666-S2-1,73.59399999999998,0.39267,0.0,0.1,0.2 -8666-S2-1,74.039,0.4371100000000001,0.0,0.1,0.0 -8666-S2-1,74.516,0.5482199999999999,0.0,0.1,0.4 -8680-S2-0,86.76,0.45933,0.04,0.2,0.2 -8680-S2-0,87.25799999999998,0.54067,0.08,0.1,0.4 -8680-S2-0,87.75500000000001,0.50378,0.08,0.1,0.4 -8680-S2-0,88.22500000000001,0.5777800000000001,0.08,0.2,0.4 -8680-S2-0,88.75200000000001,0.6,0.08,0.1,0.4 -8680-S2-0,89.786,0.6148899999999999,0.04,0.1,0.6 -8684-S2-0,85.99899999999998,0.4,0.08,0.1,0.2 -8684-S2-0,86.47200000000001,0.41489,0.04,0.1,0.2 -8684-S2-0,86.96899999999998,0.58511,0.12,0.1,0.0 -8684-S2-0,87.46600000000001,0.6,0.08,0.1,0.4 -8684-S2-0,87.98,0.58511,0.08,0.1,0.4 -8684-S2-0,89.018,0.71111,0.12,0.3,0.8 -8688-S2-0,80.988,0.57044,0.0,0.1,0.6 -8688-S2-0,81.491,0.80733,0.24,0.1,0.8 -8688-S2-0,82.024,0.81489,0.16,0.1,0.8 -8688-S2-0,82.536,0.88889,0.04,0.2,0.8 -8690-S2-1,62.777,0.326,0.04,0.1,0.2 -8690-S2-1,63.294000000000004,0.40733,0.0,0.0,0.2 -8690-S2-1,63.771000000000015,0.34067,0.0,0.1,0.0 -8708-S2-0,72.819,0.45933,0.0,0.1,0.2 -8708-S2-0,73.319,0.48889,0.04,0.1,0.0 -8708-S2-0,73.816,0.50378,0.04,0.1,0.0 diff --git a/example/start/inputs/data_univariate.csv b/example/start/inputs/data_univariate.csv deleted file mode 100644 index 2bde45b7e..000000000 --- a/example/start/inputs/data_univariate.csv +++ /dev/null @@ -1,34 +0,0 @@ -ID,TIME,MMSE -100_S_0006,80.4,0.16666666666666663 -100_S_0006,80.90410958904108,0.30000000000000004 -100_S_0006,81.37534246575343,0.1333333333333333 -100_S_0006,81.85753424657536,0.19999999999999996 -100_S_0006,83.42739726027398,0.2666666666666667 -018_S_0103,87.3,0.19999999999999996 -018_S_0103,87.8,0.4 -027_S_0179,82.8,0.5 -027_S_0179,80.9,0.2 -027_S_0179,81.9,0.2 -027_S_0179,82.4,0.3 -035_S_0204,71.1,0.16666666666666663 -035_S_0204,71.67534246575342,0.19999999999999996 -035_S_0204,72.0972602739726,0.19999999999999996 -035_S_0204,72.61506849315067,0.19999999999999996 -035_S_0204,73.05342465753424,0.09999999999999998 -035_S_0204,74.13013698630138,0.16666666666666663 -035_S_0204,75.05342465753424,0.30000000000000004 -068_S_0210,72.4,0.033333333333333215 -068_S_0210,72.97260273972603,0.0 -068_S_0210,73.44657534246576,0.033333333333333215 -068_S_0210,74.77808219178083,0.0 -068_S_0210,75.64109589041097,0.09999999999999998 -068_S_0210,76.63561643835617,0.06666666666666676 -005_S_0223,78.0,0.0 -005_S_0223,78.47397260273972,0.06666666666666676 -005_S_0223,79.0054794520548,0.16666666666666663 -005_S_0223,79.98630136986301,0.09999999999999998 -005_S_0223,80.98356164383561,0.09999999999999998 -130_S_0232,78.0,0.033333333333333215 -130_S_0232,78.49041095890409,0.0 -130_S_0232,79.0054794520548,0.0 -130_S_0232,82.0,0.033333333333333215 diff --git a/example/start/inputs/simulation_settings.json b/example/start/inputs/simulation_settings.json deleted file mode 100644 index cdbc89f8e..000000000 --- a/example/start/inputs/simulation_settings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "simulation", - "seed": 0, - "parameters": { - "n_individuals": 20 - } -} diff --git a/example/start/outputs/logs/parameter_convergence/betas_0.csv b/example/start/outputs/logs/parameter_convergence/betas_0.csv deleted file mode 100644 index 0501deec9..000000000 --- a/example/start/outputs/logs/parameter_convergence/betas_0.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,0.0036313540767878294,0.0,-0.006764283403754234 -50,0.024245668202638626,0.01924913562834263,-0.007455635815858841 -100,0.039093855768442154,0.035655394196510315,0.038215864449739456 -150,0.04649075120687485,0.03774353116750717,0.050309982150793076 -200,0.045106418430805206,0.0398268885910511,0.06336145848035812 -250,0.04588941112160683,0.0359269417822361,0.06011149287223816 -300,0.042403966188430786,0.03906107693910599,0.06469884514808655 -350,0.05006316304206848,0.039480336010456085,0.06504678726196289 -400,0.04726032540202141,0.04221725091338158,0.06366434693336487 -450,0.04924973100423813,0.0372336246073246,0.06332963705062866 -500,0.06071770191192627,0.038451746106147766,0.06318915635347366 -550,0.0539611279964447,0.03611193597316742,0.06723000854253769 -600,0.05007458105683327,0.034598104655742645,0.06908503919839859 -650,0.05714109167456627,0.04065753147006035,0.06687898188829422 -700,0.04962728172540665,0.043201521039009094,0.0682360902428627 -750,0.04442808777093887,0.029815007001161575,0.06445413827896118 -800,0.03795664757490158,0.04197068512439728,0.07596655935049057 -850,0.04037156701087952,0.039231933653354645,0.06718184798955917 -900,0.05202767997980118,0.04333239048719406,0.06864667683839798 -950,0.04934924095869064,0.03811277449131012,0.06345049291849136 -1000,0.052663404494524,0.03852108493447304,0.06753695756196976 -1050,0.042253222316503525,0.035002727061510086,0.06533931940793991 -1100,0.025057263672351837,0.03646673634648323,0.06543925404548645 -1150,0.031032320111989975,0.040293075144290924,0.0674302726984024 -1200,0.03703631833195686,0.04085741564631462,0.06464669853448868 -1250,0.04279625043272972,0.04602371156215668,0.07286379486322403 -1300,0.04977000132203102,0.04038127139210701,0.06183375418186188 -1350,0.03749116510152817,0.04118117317557335,0.0734323039650917 -1400,0.033184874802827835,0.03659182786941528,0.06479726731777191 -1450,0.040722232311964035,0.03757721558213234,0.06800447404384613 -1500,0.0483698695898056,0.04099322110414505,0.07319249957799911 -1550,0.05291418731212616,0.033567920327186584,0.07167070358991623 -1600,0.046943701803684235,0.038305558264255524,0.0679822638630867 -1650,0.04574082791805267,0.03983781486749649,0.06708378344774246 -1700,0.04524518921971321,0.03717217594385147,0.06883049756288528 -1750,0.04240503907203674,0.03607308864593506,0.05731908231973648 -1800,0.049911241978406906,0.036552585661411285,0.060786351561546326 -1850,0.05166242644190788,0.034050583839416504,0.06106783077120781 -1900,0.061728864908218384,0.03842692822217941,0.0636325255036354 -1950,0.06708026677370071,0.043601714074611664,0.06588352471590042 -2000,0.05322542041540146,0.03888813033699989,0.05961645022034645 -2050,0.05532664805650711,0.037011679261922836,0.060488563030958176 -2100,0.047027431428432465,0.03376711532473564,0.061604902148246765 -2150,0.056597866117954254,0.03361546993255615,0.06034977361559868 -2200,0.04799996316432953,0.03448564186692238,0.06293032318353653 -2250,0.04321670904755592,0.0351179838180542,0.060527123510837555 -2300,0.051726728677749634,0.0403938926756382,0.06193295121192932 -2350,0.05082434043288231,0.03654281049966812,0.05917343869805336 -2400,0.05301028490066528,0.04212239384651184,0.06832367926836014 -2450,0.05087658390402794,0.04731670394539833,0.06636756658554077 -2500,0.06135430559515953,0.04493696987628937,0.06804239749908447 -2550,0.06700045615434647,0.044881902635097504,0.06545939296483994 -2600,0.055217985063791275,0.04222742095589638,0.05902012065052986 -2650,0.05793917924165726,0.03759045526385307,0.05841415002942085 -2700,0.061648961156606674,0.03783532604575157,0.06705015152692795 -2750,0.06274749338626862,0.041567761451005936,0.06646180152893066 -2800,0.05831564590334892,0.03981751948595047,0.06418349593877792 -2850,0.058101754635572433,0.039913225919008255,0.059908635914325714 -2900,0.058538395911455154,0.038439858704805374,0.06144218519330025 -2950,0.056453950703144073,0.0373743511736393,0.0627295970916748 -3000,0.057215407490730286,0.03731274604797363,0.061814554035663605 diff --git a/example/start/outputs/logs/parameter_convergence/betas_1.csv b/example/start/outputs/logs/parameter_convergence/betas_1.csv deleted file mode 100644 index aaf0e054a..000000000 --- a/example/start/outputs/logs/parameter_convergence/betas_1.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,0.01100859884172678,-0.006867836695164442,0.0 -50,0.059473976492881775,-0.00823834165930748,-0.01155159529298544 -100,0.08115288615226746,-0.0045250714756548405,-0.013037421740591526 -150,0.09766378998756409,0.0015256694750860333,-0.015628870576620102 -200,0.09308931231498718,0.008500831201672554,-0.01342160813510418 -250,0.09746971726417542,0.014612981118261814,-0.0028908513486385345 -300,0.10240869224071503,0.01026123482733965,-0.0072968583554029465 -350,0.10664980858564377,0.00943662691861391,-0.00783482100814581 -400,0.10890858620405197,0.011549959890544415,-0.013938493095338345 -450,0.10225892812013626,0.006804237142205238,-0.019419830292463303 -500,0.11095954477787018,0.005917962174862623,-0.010876404121518135 -550,0.10809005051851273,0.01062588207423687,-0.011499166488647461 -600,0.09809905290603638,0.005017868243157864,-0.00631683086976409 -650,0.08516092598438263,0.0004778350703418255,-0.0153706856071949 -700,0.09616733342409134,0.009608572348952293,-0.015005202032625675 -750,0.09551315009593964,0.01067299023270607,-0.005563403479754925 -800,0.10454367101192474,0.007271683309227228,-0.010619614273309708 -850,0.10262883454561234,0.011106438934803009,-0.009376241825520992 -900,0.10409942269325256,0.011172173544764519,-0.005871576257050037 -950,0.09678073972463608,0.003120190929621458,-0.01283810194581747 -1000,0.09945758432149887,0.006477690767496824,-0.010310451500117779 -1050,0.08885032683610916,0.008820858784019947,-0.017860516905784607 -1100,0.09703558683395386,0.006496880203485489,-0.012948878109455109 -1150,0.11072413623332977,0.017745856195688248,-0.000626404769718647 -1200,0.10055962949991226,0.012770663015544415,-0.005338279064744711 -1250,0.09433232247829437,0.006161298602819443,-0.01004825346171856 -1300,0.10314806550741196,0.0042300159111619,-0.006033370271325111 -1350,0.10096637904644012,0.010309843346476555,-0.0071463435888290405 -1400,0.10431893914937973,0.00777145940810442,-0.003584684571251273 -1450,0.09554313868284225,0.002760548610240221,-0.010551593266427517 -1500,0.11034906655550003,0.00487311789765954,-0.00410487363114953 -1550,0.109175905585289,0.004545579664409161,-0.007029177155345678 -1600,0.10335404425859451,-0.00013659195974469185,-0.018234113231301308 -1650,0.09448833763599396,-0.0018563212361186743,-0.00913209281861782 -1700,0.10006612539291382,-0.0008336097234860063,-0.004590592347085476 -1750,0.09200029820203781,-0.00163578474894166,-0.0063171908259391785 -1800,0.08883481472730637,-0.0007389825768768787,-0.018552307039499283 -1850,0.08237908035516739,-0.001532585360109806,-0.019730305299162865 -1900,0.08855533599853516,-0.002132085617631674,-0.019900988787412643 -1950,0.09333110600709915,0.0019763452000916004,-0.020390024408698082 -2000,0.08907715976238251,0.005346368066966534,-0.02080056257545948 -2050,0.08845192193984985,-0.0043574972078204155,-0.017322920262813568 -2100,0.08289578557014465,-0.003579622134566307,-0.01985597237944603 -2150,0.08041959255933762,-0.00488209817558527,-0.01571897603571415 -2200,0.08549277484416962,0.000544336624443531,-0.012822225689888 -2250,0.09521831572055817,0.004351241514086723,-0.018419859930872917 -2300,0.0910111591219902,0.004339888226240873,-0.015038905665278435 -2350,0.09277616441249847,0.008809558115899563,-0.014169814065098763 -2400,0.09665271639823914,0.011902590282261372,-0.009960350580513477 -2450,0.0958918035030365,0.009648691862821579,-0.011602463200688362 -2500,0.09112949669361115,0.0053504160605371,-0.013128267601132393 -2550,0.08372560888528824,0.005106079392135143,-0.014247090555727482 -2600,0.08865470439195633,0.011583435349166393,-0.012544828467071056 -2650,0.07885099947452545,0.00358669925481081,-0.012539993971586227 -2700,0.0816255658864975,0.002403461141511798,-0.02230689488351345 -2750,0.09091434627771378,0.002990337088704109,-0.0129244364798069 -2800,0.09487224370241165,0.007498361635953188,-0.007109433878213167 -2850,0.09612898528575897,0.006238390225917101,-0.010687174275517464 -2900,0.09642930328845978,0.0061608292162418365,-0.01172624807804823 -2950,0.0948362648487091,0.005629631225019693,-0.011827915906906128 -3000,0.09361007809638977,0.004822447430342436,-0.010769529268145561 diff --git a/example/start/outputs/logs/parameter_convergence/g.csv b/example/start/outputs/logs/parameter_convergence/g.csv deleted file mode 100644 index 50740f388..000000000 --- a/example/start/outputs/logs/parameter_convergence/g.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,0.05343346670269966,2.480224609375,2.1640048027038574,1.78643798828125 -50,0.049792997539043427,2.6939496994018555,2.315984010696411,1.8368407487869263 -100,0.05554766207933426,2.8370954990386963,2.4515697956085205,1.8061027526855469 -150,0.05635593831539154,2.9138991832733154,2.486599922180176,1.8013132810592651 -200,0.06172416731715202,2.9462757110595703,2.4792394638061523,1.9009747505187988 -250,0.048579055815935135,2.9031405448913574,2.479367971420288,1.9012728929519653 -300,0.04251709580421448,2.9215080738067627,2.4996843338012695,1.9026556015014648 -350,0.03318166732788086,2.9298417568206787,2.536280870437622,1.924271583557129 -400,0.05348099768161774,2.9637343883514404,2.5242483615875244,1.9525480270385742 -450,0.04220949485898018,2.9693679809570312,2.503281593322754,1.9342162609100342 -500,0.02596944570541382,2.9845948219299316,2.4482083320617676,1.9028784036636353 -550,0.013789807446300983,2.975463390350342,2.469820022583008,1.9072341918945312 -600,-0.030757199972867966,2.998568296432495,2.4210257530212402,1.868499755859375 -650,-0.0635596513748169,3.015852212905884,2.4401743412017822,1.8330122232437134 -700,-0.03243209421634674,2.97017765045166,2.4076809883117676,1.820212960243225 -750,-0.06883308291435242,2.938493013381958,2.386324167251587,1.8550901412963867 -800,-0.06080509349703789,2.9143166542053223,2.3578250408172607,1.8319673538208008 -850,-0.05055324733257294,2.9003539085388184,2.3992481231689453,1.8187897205352783 -900,-0.036486268043518066,2.881896734237671,2.362701892852783,1.7918860912322998 -950,-0.05431505665183067,2.8768389225006104,2.3540396690368652,1.7938987016677856 -1000,-0.04877438023686409,2.8943443298339844,2.343946695327759,1.8158406019210815 -1050,-0.0820712000131607,2.913516044616699,2.399977207183838,1.8693714141845703 -1100,-0.0746605172753334,2.929006576538086,2.4026894569396973,1.8583840131759644 -1150,-0.09501496702432632,2.971696138381958,2.461132526397705,1.8557822704315186 -1200,-0.10309389978647232,2.941389560699463,2.44360089302063,1.8223918676376343 -1250,-0.09674318134784698,2.9466559886932373,2.4097554683685303,1.8175312280654907 -1300,-0.13309040665626526,2.9842402935028076,2.3797433376312256,1.8460438251495361 -1350,-0.1356162577867508,2.9883170127868652,2.375391721725464,1.8092445135116577 -1400,-0.10364653915166855,3.015315055847168,2.396979808807373,1.7837141752243042 -1450,-0.09980911761522293,3.016237497329712,2.3569486141204834,1.7845396995544434 -1500,-0.09886538237333298,3.045147657394409,2.336655616760254,1.7997795343399048 -1550,-0.10466556251049042,3.0178604125976562,2.291341543197632,1.7822259664535522 -1600,-0.15110017359256744,2.9742448329925537,2.324378490447998,1.7620398998260498 -1650,-0.08527129888534546,3.0147006511688232,2.3288726806640625,1.7201539278030396 -1700,-0.1225140318274498,3.0507454872131348,2.3273544311523438,1.7605493068695068 -1750,-0.10578715801239014,3.054884195327759,2.3429653644561768,1.7619725465774536 -1800,-0.12494415044784546,3.082552194595337,2.3879873752593994,1.7935417890548706 -1850,-0.08784079551696777,3.039700508117676,2.35648512840271,1.7621781826019287 -1900,-0.10686612874269485,3.023696184158325,2.3536746501922607,1.736155390739441 -1950,-0.11040722578763962,3.0276949405670166,2.3465142250061035,1.7716630697250366 -2000,-0.10817715525627136,2.996213436126709,2.3923256397247314,1.8088289499282837 -2050,-0.09238671511411667,2.9830591678619385,2.384357452392578,1.787896990776062 -2100,-0.0709526389837265,2.9994025230407715,2.372036933898926,1.792670726776123 -2150,-0.05504213273525238,3.0012354850769043,2.380331039428711,1.8220608234405518 -2200,-0.054672785103321075,3.0030677318573,2.4173028469085693,1.8533705472946167 -2250,-0.07939181476831436,3.0052602291107178,2.409663200378418,1.8724812269210815 -2300,-0.0842888206243515,2.993518114089966,2.412316083908081,1.8551968336105347 -2350,-0.05569678172469139,2.9902734756469727,2.4431188106536865,1.8443528413772583 -2400,-0.01622876524925232,2.942833185195923,2.4321353435516357,1.8790329694747925 -2450,-0.05169885605573654,2.935530662536621,2.471468687057495,1.8317146301269531 -2500,-0.009855076670646667,2.92749285697937,2.4642462730407715,1.8849691152572632 -2550,0.02723158709704876,2.9379825592041016,2.4738993644714355,1.883621335029602 -2600,0.04667270556092262,2.9896509647369385,2.520883798599243,1.8633556365966797 -2650,-0.00035452842712402344,2.993412733078003,2.5000603199005127,1.9175044298171997 -2700,-0.03411896526813507,2.984661817550659,2.472510814666748,1.8984310626983643 -2750,-0.022759471088647842,2.9874424934387207,2.451587677001953,1.8772696256637573 -2800,-0.029934704303741455,2.9801714420318604,2.456278085708618,1.8798185586929321 -2850,-0.034607645124197006,2.9783334732055664,2.4591500759124756,1.8880130052566528 -2900,-0.035194963216781616,2.985041618347168,2.455502986907959,1.886785864830017 -2950,-0.03531316667795181,2.984510660171509,2.4547605514526367,1.8865162134170532 -3000,-0.035903580486774445,2.9895029067993164,2.455995798110962,1.8869861364364624 diff --git a/example/start/outputs/logs/parameter_convergence/noise_std.csv b/example/start/outputs/logs/parameter_convergence/noise_std.csv deleted file mode 100644 index 6447227de..000000000 --- a/example/start/outputs/logs/parameter_convergence/noise_std.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,0.3204902112483978,0.3914504647254944,0.2706356644630432,0.3497457802295685 -50,0.10388366132974625,0.058476053178310394,0.08624792844057083,0.09964850544929504 -100,0.07885529100894928,0.052892088890075684,0.08300109207630157,0.08470897376537323 -150,0.0749315395951271,0.050177525728940964,0.08415290713310242,0.07832130789756775 -200,0.07506223022937775,0.04916901886463165,0.0856955349445343,0.07587186247110367 -250,0.07491447776556015,0.0482902005314827,0.08375885337591171,0.07622842490673065 -300,0.0764164850115776,0.04836062341928482,0.08284155279397964,0.07615972310304642 -350,0.07674140483140945,0.0474582277238369,0.08065184205770493,0.07701360434293747 -400,0.07365329563617706,0.047972310334444046,0.0844571590423584,0.07457093894481659 -450,0.07504710555076599,0.047983720898628235,0.08273237943649292,0.07586957514286041 -500,0.07413777709007263,0.04838822782039642,0.08252973854541779,0.0772743821144104 -550,0.07467563450336456,0.04747975990176201,0.08437409996986389,0.0739341452717781 -600,0.0751306489109993,0.04778404161334038,0.08281457424163818,0.07566412538290024 -650,0.07530511915683746,0.04811999946832657,0.08251181244850159,0.0757843405008316 -700,0.07364529371261597,0.048363275825977325,0.08343284577131271,0.07502254843711853 -750,0.07449605315923691,0.048157788813114166,0.08405747264623642,0.07418543845415115 -800,0.07296539098024368,0.04892999678850174,0.08306150138378143,0.07859949767589569 -850,0.07347089052200317,0.04807448387145996,0.08301647752523422,0.07656154781579971 -900,0.07234013825654984,0.04790552332997322,0.08157562464475632,0.07690956443548203 -950,0.07393785566091537,0.047283317893743515,0.08267879486083984,0.07591138035058975 -1000,0.07329544425010681,0.04701298847794533,0.08296173810958862,0.07603941857814789 -1050,0.07304557412862778,0.0475444458425045,0.08439294248819351,0.074733667075634 -1100,0.07387349754571915,0.04731069877743721,0.08223210275173187,0.07661240547895432 -1150,0.07459700852632523,0.048325952142477036,0.0820440724492073,0.07659480720758438 -1200,0.0725204274058342,0.04850153625011444,0.0822349563241005,0.07695666700601578 -1250,0.07465505599975586,0.04841557890176773,0.08237659931182861,0.07560770213603973 -1300,0.07396133244037628,0.047608278691768646,0.0820443257689476,0.0779346451163292 -1350,0.07577665150165558,0.047694433480501175,0.08258997648954391,0.07526262104511261 -1400,0.07431448251008987,0.04846520721912384,0.08392493426799774,0.0758424624800682 -1450,0.0726926326751709,0.04811980947852135,0.08384974300861359,0.07738654315471649 -1500,0.07388503104448318,0.048215366899967194,0.08137528598308563,0.077193483710289 -1550,0.07458756119012833,0.0479770265519619,0.08271820843219757,0.0749506875872612 -1600,0.0729857087135315,0.04768793284893036,0.08190558105707169,0.07614405453205109 -1650,0.07410772889852524,0.04808971285820007,0.08117620646953583,0.07742315530776978 -1700,0.07518305629491806,0.04809213802218437,0.08090122789144516,0.07752883434295654 -1750,0.07358598709106445,0.0480494424700737,0.08148759603500366,0.07761357724666595 -1800,0.07307149469852448,0.04760463908314705,0.08303502202033997,0.07825043797492981 -1850,0.0735444650053978,0.04872559756040573,0.08187820017337799,0.07619378715753555 -1900,0.07554035633802414,0.047600943595170975,0.08098113536834717,0.07747665792703629 -1950,0.0719590112566948,0.047898370772600174,0.08098730444908142,0.07846707105636597 -2000,0.07425452023744583,0.04800810664892197,0.0833422839641571,0.07656972855329514 -2050,0.0744723230600357,0.04838241636753082,0.0815889835357666,0.078148752450943 -2100,0.0755496397614479,0.04856201633810997,0.08185780793428421,0.07656478136777878 -2150,0.07313902676105499,0.04799685254693031,0.08152082562446594,0.07659012824296951 -2200,0.07493923604488373,0.048057641834020615,0.08266931772232056,0.07615069299936295 -2250,0.07527787238359451,0.047981735318899155,0.08220160007476807,0.07599924504756927 -2300,0.07274232804775238,0.047481488436460495,0.08289261907339096,0.07828955352306366 -2350,0.07352301478385925,0.04751089587807655,0.08321727812290192,0.0773271769285202 -2400,0.0735028013586998,0.048017468303442,0.08319135010242462,0.07702264934778214 -2450,0.07323943078517914,0.048151176422834396,0.08213510364294052,0.07688111811876297 -2500,0.07312028110027313,0.047744423151016235,0.08187419176101685,0.0764068141579628 -2550,0.07352835685014725,0.0483490452170372,0.08267847448587418,0.077145054936409 -2600,0.07364019751548767,0.04869893938302994,0.08265575021505356,0.07600115239620209 -2650,0.07532468438148499,0.04810212180018425,0.08144227415323257,0.07717229425907135 -2700,0.07525946199893951,0.04715028032660484,0.08322980999946594,0.07726611196994781 -2750,0.0739942193031311,0.04724019765853882,0.08269605785608292,0.07703458517789841 -2800,0.0739675909280777,0.047785259783267975,0.08217465132474899,0.07694750279188156 -2850,0.07372511178255081,0.04780234396457672,0.08196879178285599,0.07747160643339157 -2900,0.07420250028371811,0.048189692199230194,0.08222052454948425,0.0771753191947937 -2950,0.0743379071354866,0.04841138422489166,0.08252716064453125,0.07667206227779388 -3000,0.07424536347389221,0.04837438091635704,0.08233640342950821,0.07684528082609177 diff --git a/example/start/outputs/logs/parameter_convergence/sources0.csv b/example/start/outputs/logs/parameter_convergence/sources0.csv deleted file mode 100644 index b631b177e..000000000 --- a/example/start/outputs/logs/parameter_convergence/sources0.csv +++ /dev/null @@ -1,100 +0,0 @@ -2901,-0.4360693693161011,-1.9706275463104248,-0.3326113820075989,-0.2252560257911682,-0.9864414930343628,-0.405828058719635,0.008725792169570923,-0.13660937547683716,0.4130328595638275,1.3862248659133911,-0.6437795162200928,-0.07911789417266846,1.062204122543335,0.11315064132213593,1.4983384609222412,0.2390660047531128,0.7049620151519775,-0.3912273049354553,-0.052460867911577225,-0.7770302295684814,1.0201904773712158,-0.3780629634857178,-0.9704468846321106,0.5683732628822327,-0.8289094567298889,-1.2349153757095337,-0.01205374300479889,0.4545961320400238,-0.2957637906074524,-0.3247774839401245,-0.344485342502594,0.3114665150642395,0.302506685256958,-0.8373239636421204,0.2844577133655548,0.668872058391571,-0.06827235221862793,0.024456292390823364,-2.7737369537353516,-0.21130438148975372,2.683269500732422,-0.21835315227508545,-0.18379729986190796,-1.2796592712402344,1.091336965560913,-0.6482709050178528,1.0452077388763428,0.6015187501907349,0.8672167658805847,-3.7343742847442627,-1.1158385276794434,0.6227533221244812,-0.3400994837284088,-0.16284286975860596,-0.18555697798728943,1.042317271232605,-1.598445177078247,-1.5398476123809814,0.1162039041519165,-0.05670285224914551,1.3539915084838867,-2.6180579662323,-0.5034577250480652,-0.7191850543022156,-0.5718270540237427,1.074877142906189,0.9008809328079224,0.257912278175354,0.44530028104782104,-0.4572727680206299,0.9352827072143555,0.42649930715560913,0.01178501546382904,-0.6032208800315857,-1.9701111316680908,-0.6475858092308044,0.816609263420105,0.7485413551330566,-0.9776024222373962,-0.4040643274784088,-0.29900771379470825,-1.5074617862701416,1.1355679035186768,0.2567954659461975,-0.5820136666297913,0.47003453969955444,1.4315317869186401,0.08710697293281555,1.4022952318191528,0.32288363575935364,0.7672478556632996,0.3554763197898865,0.6299445629119873,-0.6276494264602661,1.8769335746765137,0.005328059196472168,1.293192744255066,-0.6167973279953003,0.3719930052757263,-0.47954344749450684,-0.30093657970428467,0.744429349899292,-0.7060208320617676,-1.1255031824111938,-1.3142035007476807,-0.739294707775116,-1.3302891254425049,-0.5076859593391418,-0.16307060420513153,-0.595284104347229,0.5843477845191956,0.7185890674591064,-0.5312121510505676,-0.23260676860809326,-1.3340078592300415,1.7535921335220337,-0.47581422328948975,0.557752788066864,-1.6334168910980225,-0.14044973254203796,0.3920034170150757,-1.3378862142562866,-1.1674251556396484,-0.11893703043460846,-2.1117992401123047,-1.841658592224121,0.18489989638328552,-0.6005064249038696,-0.29540812969207764,-0.35398516058921814,1.3564271926879883,1.2076914310455322,1.5473535060882568,1.915647029876709,0.7587957382202148,0.705255389213562,0.361926406621933,-1.2631921768188477,0.191848486661911,-0.8452523946762085,0.21369946002960205,1.225858449935913,1.2379921674728394,0.25712841749191284,-0.6117014288902283,-0.6083444952964783,-0.029011718928813934,-0.5790165662765503,-0.07338282465934753,-1.5340584516525269,1.1687690019607544,-1.0314971208572388,0.03470350801944733,-1.1336941719055176,1.09994375705719,1.8572137355804443,-0.011413384228944778,0.3734930455684662,-0.3790617883205414,1.1117604970932007,1.5435022115707397,-0.2398548126220703,0.6937771439552307,0.421499103307724,-1.1559638977050781,0.4176877737045288,-0.16368138790130615,-0.9450785517692566,-0.6818079352378845,0.8058648109436035,-1.192335605621338,-1.805732250213623,-1.483773946762085,-0.3254665732383728,-0.11869063973426819,-1.3402643203735352,2.217658281326294,-1.4556655883789062,-2.5130624771118164,0.7642026543617249,1.1736435890197754,-0.6100245714187622,2.0822410583496094,0.09810274839401245,-1.418619155883789,-1.2970260381698608,-1.276186227798462,-0.005723200738430023,-0.33066463470458984,0.37357237935066223,1.250529170036316,1.0101186037063599,1.210014820098877,0.6133430004119873,-1.3958344459533691,-0.7531580924987793,-0.3854824900627136,-0.12840285897254944,-0.14508792757987976,-0.9001433849334717,0.17365843057632446,2.8677661418914795,-0.4205290675163269,0.7549797296524048,1.2952229976654053,1.0303239822387695,0.6599065065383911,0.08711609244346619,0.43085014820098877,-0.12649023532867432,1.959215521812439,1.8245662450790405,-0.28488001227378845,1.394535779953003,-0.5345017313957214,-0.0014660060405731201,0.46051520109176636,-1.4833581447601318,0.04515945911407471,0.5616163015365601,-0.6341209411621094,-0.026777975261211395,-1.2970147132873535,0.67039954662323,0.717462956905365,-0.711242139339447,0.9505781531333923,1.5489166975021362,-0.7160340547561646,0.4304351806640625,0.20878684520721436,0.19147895276546478,-0.8228546380996704,0.6813536882400513,0.9413716197013855,1.1384727954864502,0.5775640606880188,0.8434175252914429,-0.7216273546218872,-0.7700384855270386,0.19053515791893005,-0.13091540336608887,-0.598260760307312,0.4246724247932434,0.1393681764602661,0.6084920763969421,-0.3919603228569031,-1.715369462966919 -2902,-0.4360693693161011,-1.9706275463104248,-0.3326113820075989,-0.2252560257911682,-1.2096165418624878,-0.405828058719635,0.008725792169570923,-0.13660937547683716,0.22596780955791473,1.3862248659133911,-0.6437795162200928,-0.07911789417266846,0.7017204761505127,0.11315064132213593,1.4983384609222412,-0.354333758354187,0.7049620151519775,-0.3912273049354553,-0.052460867911577225,-0.7770302295684814,1.0201904773712158,-0.3780629634857178,-0.9704468846321106,0.5683732628822327,-0.8289094567298889,-1.2349153757095337,-0.01205374300479889,0.4545961320400238,-0.2957637906074524,-0.3247774839401245,-0.344485342502594,0.3114665150642395,0.302506685256958,-1.158675193786621,0.6103518605232239,0.668872058391571,-0.06827235221862793,-0.24862855672836304,-3.0127713680267334,0.17757512629032135,2.4509148597717285,-0.376675009727478,-0.18379729986190796,-0.789780855178833,0.8288412094116211,-0.6482709050178528,1.0452077388763428,0.6015187501907349,0.36093437671661377,-3.7343742847442627,-1.1158385276794434,0.6227533221244812,-0.3400994837284088,-0.1870664358139038,0.055169716477394104,1.042317271232605,-1.1801291704177856,-1.5398476123809814,0.1162039041519165,-0.05670285224914551,1.1214741468429565,-2.6180579662323,-0.5034577250480652,-0.7191850543022156,-0.5718270540237427,1.074877142906189,0.9008809328079224,0.257912278175354,0.44530028104782104,-0.4572727680206299,0.6380196213722229,-0.3350446820259094,0.01178501546382904,-0.6032208800315857,-1.9701111316680908,-0.6475858092308044,0.816609263420105,0.8252794742584229,-0.9776024222373962,-0.4040643274784088,-0.29900771379470825,-1.8975870609283447,1.1355679035186768,0.008907601237297058,-0.621076762676239,0.676498293876648,1.4315317869186401,0.08710697293281555,1.4022952318191528,0.32288363575935364,0.7672478556632996,0.4242926239967346,0.27987703680992126,-1.5400341749191284,1.8769335746765137,0.005328059196472168,1.293192744255066,-0.6167973279953003,0.3719930052757263,-0.47954344749450684,-0.30093657970428467,0.744429349899292,-0.7060208320617676,-1.1255031824111938,-1.3142035007476807,-0.49666738510131836,-1.3302891254425049,-0.5076859593391418,-0.16307060420513153,-0.595284104347229,-0.10495954751968384,0.7185890674591064,-0.5312121510505676,0.19606828689575195,-0.8134793043136597,1.7535921335220337,-0.5950794219970703,0.557752788066864,-1.6334168910980225,-0.10959617048501968,0.3920034170150757,-1.3378862142562866,-2.132864475250244,-0.11893703043460846,-2.1117992401123047,-1.1167585849761963,0.18489989638328552,-0.6005064249038696,-0.29540812969207764,0.16363486647605896,1.3564271926879883,1.4290956258773804,1.5473535060882568,2.2737255096435547,0.6163914203643799,0.705255389213562,-0.36324378848075867,-1.2631921768188477,0.191848486661911,-0.8452523946762085,0.21369946002960205,1.225858449935913,1.2379921674728394,0.6752443909645081,-0.6117014288902283,-0.4586181640625,-0.029011718928813934,-0.3403834402561188,-0.07338282465934753,-1.5340584516525269,1.1687690019607544,-0.9845668077468872,0.03470350801944733,-1.1336941719055176,1.09994375705719,1.8572137355804443,-0.011413384228944778,0.3734930455684662,-0.3790617883205414,1.1117604970932007,1.5435022115707397,-0.2398548126220703,0.20779258012771606,0.421499103307724,-1.1559638977050781,0.4176877737045288,-0.16368138790130615,-0.9450785517692566,-0.6818079352378845,0.8058648109436035,-1.192335605621338,-1.805732250213623,-1.483773946762085,-0.3254665732383728,-0.9612771272659302,-0.97959965467453,2.217658281326294,-1.4556655883789062,-2.5130624771118164,0.7642026543617249,2.13521146774292,-0.6100245714187622,2.0822410583496094,-0.5540607571601868,-1.418619155883789,-1.2970260381698608,-1.276186227798462,-0.005723200738430023,-0.33066463470458984,0.37357237935066223,1.250529170036316,1.0101186037063599,1.4003159999847412,0.8768720030784607,-1.4943082332611084,-0.7531580924987793,-0.3854824900627136,-0.12840285897254944,-0.14508792757987976,-1.1312460899353027,0.17365843057632446,2.8677661418914795,0.65702885389328,0.7549797296524048,1.2952229976654053,0.981057345867157,0.6599065065383911,0.08711609244346619,0.43085014820098877,-0.8811424970626831,1.959215521812439,1.7887381315231323,-0.28488001227378845,1.4223283529281616,-0.5345017313957214,0.22389738261699677,0.46051520109176636,-1.4833581447601318,0.04515945911407471,0.7039496302604675,-0.6341209411621094,-0.5405980944633484,-1.2970147132873535,0.67039954662323,0.717462956905365,-0.711242139339447,0.9505781531333923,1.5489166975021362,-0.7160340547561646,0.4304351806640625,0.20878684520721436,0.19147895276546478,-0.8228546380996704,0.6813536882400513,0.9413716197013855,1.1384727954864502,0.8612881302833557,0.8434175252914429,-0.7216273546218872,-0.7700384855270386,0.2849855124950409,-1.0520390272140503,-0.598260760307312,0.769792914390564,0.049459442496299744,0.17083942890167236,-0.3919603228569031,-0.7697630524635315 -2903,-0.4360693693161011,-2.325390577316284,-0.16435647010803223,-0.2252560257911682,-1.2096165418624878,-0.405828058719635,0.008725792169570923,-0.13660937547683716,-0.20275823771953583,1.3862248659133911,-0.6437795162200928,-0.7977504134178162,0.7645143270492554,0.11315064132213593,1.4983384609222412,-0.354333758354187,0.7049620151519775,-0.3912273049354553,0.2850744426250458,-0.7770302295684814,1.415010690689087,-0.3780629634857178,-0.9704468846321106,0.5683732628822327,-0.5371376276016235,-1.2349153757095337,-0.01205374300479889,0.4545961320400238,-0.25130021572113037,-0.3247774839401245,-0.344485342502594,0.3114665150642395,0.302506685256958,-1.1312227249145508,0.6103518605232239,0.47574806213378906,0.12112800776958466,-0.24862855672836304,-3.0127713680267334,0.17757512629032135,2.4509148597717285,-0.376675009727478,-0.08356261253356934,-0.789780855178833,0.8288412094116211,-0.6482709050178528,1.0452077388763428,0.6015187501907349,0.36093437671661377,-3.5917348861694336,-1.1158385276794434,0.6227533221244812,-0.3400994837284088,-0.1870664358139038,0.055169716477394104,1.042317271232605,-1.1801291704177856,-1.5398476123809814,-0.42047762870788574,-0.05670285224914551,1.1214741468429565,-2.6180579662323,-0.30492424964904785,-0.7191850543022156,-0.5718270540237427,1.074877142906189,0.9008809328079224,0.257912278175354,0.44530028104782104,-0.4572727680206299,0.6380196213722229,-0.3350446820259094,0.01178501546382904,-0.6032208800315857,-1.9701111316680908,-0.6475858092308044,0.816609263420105,0.8252794742584229,-0.9776024222373962,-0.4040643274784088,-0.8640689849853516,-1.8975870609283447,1.1355679035186768,0.49323511123657227,-0.621076762676239,0.676498293876648,1.4315317869186401,0.22784414887428284,1.4022952318191528,0.32288363575935364,0.7672478556632996,0.4242926239967346,0.27987703680992126,-1.5400341749191284,1.7905910015106201,0.005328059196472168,1.293192744255066,-0.6167973279953003,0.3719930052757263,-0.47954344749450684,0.1707513928413391,0.744429349899292,-0.7060208320617676,-1.1255031824111938,-1.3142035007476807,-0.49666738510131836,-1.3302891254425049,-0.5076859593391418,-0.16307060420513153,-0.595284104347229,-0.015412025153636932,0.7185890674591064,-0.5312121510505676,-0.3193551301956177,-0.8134793043136597,1.7535921335220337,-0.5950794219970703,0.12157976627349854,-0.9441951513290405,-0.10959617048501968,0.3920034170150757,-1.4805485010147095,-2.1749305725097656,-0.11893703043460846,-2.1117992401123047,-1.1167585849761963,0.18489989638328552,-0.8852630853652954,-0.29540812969207764,0.16363486647605896,1.3564271926879883,1.4290956258773804,1.5473535060882568,2.2845919132232666,0.6163914203643799,0.705255389213562,-0.36324378848075867,-1.2631921768188477,0.191848486661911,-0.8452523946762085,0.40677720308303833,1.225858449935913,1.2379921674728394,0.6752443909645081,-1.1256988048553467,-0.4586181640625,-0.029011718928813934,-0.3403834402561188,-0.21958182752132416,-1.5340584516525269,1.1687690019607544,-0.9845668077468872,0.03470350801944733,-1.4314777851104736,1.09994375705719,1.8572137355804443,-0.5495966076850891,0.3734930455684662,-0.3790617883205414,1.1117604970932007,1.5435022115707397,-0.2398548126220703,0.20779258012771606,0.18433192372322083,-1.7374813556671143,0.4176877737045288,-0.3648969829082489,-0.9450785517692566,-0.6226986646652222,0.8058648109436035,-1.192335605621338,-1.1776714324951172,-1.6123813390731812,-1.1230597496032715,-0.9970203638076782,-0.97959965467453,2.2773067951202393,-1.5222513675689697,-2.5130624771118164,0.7642026543617249,2.050654172897339,-0.6100245714187622,2.0822410583496094,-0.2600327730178833,-1.418619155883789,-1.2970260381698608,-1.276186227798462,0.14086276292800903,-0.33066463470458984,0.37357237935066223,1.250529170036316,1.0101186037063599,1.4003159999847412,0.8768720030784607,-1.4943082332611084,-0.7531580924987793,-0.3854824900627136,-0.12840285897254944,-0.14508792757987976,-0.9277817010879517,-0.23672306537628174,2.8677661418914795,0.6623287200927734,0.7549797296524048,1.2952229976654053,0.981057345867157,0.6599065065383911,0.08711609244346619,0.43085014820098877,0.011688828468322754,1.959215521812439,1.7887381315231323,-0.28488001227378845,1.4736871719360352,-0.2719089984893799,-0.29527217149734497,0.41510170698165894,-1.4833581447601318,0.04515945911407471,0.7039496302604675,-0.6341209411621094,-0.5253502130508423,-1.2936792373657227,-0.32833045721054077,0.717462956905365,-0.6876267194747925,0.8686385154724121,1.5489166975021362,-0.7160340547561646,0.4311148226261139,0.5180420875549316,0.19147895276546478,-0.8228546380996704,0.6813536882400513,0.9413716197013855,1.1384727954864502,0.989579975605011,0.8434175252914429,-0.7216273546218872,-0.7700384855270386,0.2849855124950409,-0.5702798366546631,-0.13965046405792236,0.769792914390564,0.31338924169540405,0.17083942890167236,-0.3919603228569031,-0.7697630524635315 -2904,-0.4360693693161011,-2.234297275543213,-0.16435647010803223,-0.29392340779304504,-1.0730286836624146,-0.405828058719635,0.008725792169570923,0.002449542284011841,-0.39760008454322815,1.3862248659133911,-0.6437795162200928,-1.09758460521698,0.7645143270492554,0.11315064132213593,1.4983384609222412,-0.354333758354187,0.7049620151519775,-0.3912273049354553,0.2850744426250458,-0.3914480209350586,1.415010690689087,-0.3780629634857178,-0.9704468846321106,0.5683732628822327,-0.5371376276016235,-1.2349153757095337,-0.01205374300479889,-0.040570735931396484,-0.1426525115966797,-0.449165940284729,-0.344485342502594,0.3114665150642395,0.302506685256958,-1.023724913597107,0.37969163060188293,0.2700290083885193,0.12112800776958466,-0.24862855672836304,-2.1315789222717285,0.17757512629032135,2.4509148597717285,-0.376675009727478,-0.08356261253356934,-0.789780855178833,0.8288412094116211,-1.1846755743026733,1.0452077388763428,0.6015187501907349,0.36093437671661377,-3.5917348861694336,-1.1158385276794434,0.6227533221244812,-0.3400994837284088,-0.1870664358139038,0.055169716477394104,1.126813292503357,-1.1801291704177856,-1.5398476123809814,-0.42047762870788574,0.15211056172847748,1.1214741468429565,-2.6180579662323,0.17853966355323792,-1.340080976486206,-0.5718270540237427,1.074877142906189,0.9008809328079224,0.257912278175354,0.44530028104782104,-0.4572727680206299,0.28515323996543884,-0.3350446820259094,0.3622443675994873,-0.6032208800315857,-1.9701111316680908,-0.6475858092308044,0.816609263420105,0.8252794742584229,-0.9776024222373962,-0.4040643274784088,-0.8640689849853516,-1.8975870609283447,1.1355679035186768,1.0628266334533691,-0.621076762676239,0.676498293876648,1.4315317869186401,0.22784414887428284,1.4022952318191528,0.32288363575935364,0.794062614440918,0.4242926239967346,0.27987703680992126,-1.5400341749191284,1.7905910015106201,0.005328059196472168,1.293192744255066,-0.6167973279953003,0.3719930052757263,-0.47954344749450684,0.1707513928413391,0.6420856714248657,-0.7060208320617676,-1.6194897890090942,-1.3142035007476807,-0.6976902484893799,-0.07545089721679688,-0.5076859593391418,-0.16307060420513153,-0.595284104347229,-0.015412025153636932,0.23850017786026,-0.5312121510505676,-0.3193551301956177,-1.3002121448516846,1.381484031677246,-0.5950794219970703,0.12157976627349854,-0.9441951513290405,0.16556492447853088,0.3920034170150757,-1.4805485010147095,-2.204233169555664,0.1413836032152176,-2.1117992401123047,-1.1167585849761963,0.18489989638328552,-0.8852630853652954,-1.939825415611267,0.16363486647605896,1.3564271926879883,1.5274181365966797,1.5473535060882568,2.2845919132232666,1.023253083229065,0.705255389213562,-0.36324378848075867,-1.2631921768188477,0.8694757223129272,-1.891829252243042,-0.5780343413352966,1.225858449935913,1.2379921674728394,-0.2245158553123474,-1.1256988048553467,-0.4586181640625,-0.029011718928813934,-0.3403834402561188,-0.21958182752132416,-1.5340584516525269,1.1687690019607544,-0.9845668077468872,0.03470350801944733,-1.4314777851104736,1.09994375705719,1.8572137355804443,-0.5495966076850891,-0.4595213830471039,-0.3790617883205414,1.1117604970932007,1.575610637664795,-0.2398548126220703,0.20779258012771606,0.18433192372322083,-1.7374813556671143,-0.16595327854156494,-0.3648969829082489,-0.9450785517692566,-0.6226986646652222,0.8058648109436035,-1.192335605621338,-0.9540691375732422,-1.5178580284118652,-1.1230597496032715,-0.9970203638076782,-0.13675349950790405,2.2773067951202393,-1.5222513675689697,-2.5130624771118164,0.7642026543617249,2.050654172897339,-0.6100245714187622,2.0822410583496094,-0.2600327730178833,-1.418619155883789,-0.5452594757080078,-1.276186227798462,-0.42387938499450684,-0.3535059094429016,0.37357237935066223,1.250529170036316,0.7883201837539673,1.4003159999847412,0.8768720030784607,-0.6184865236282349,-1.0836148262023926,-0.3854824900627136,-0.12840285897254944,-0.4856710731983185,-0.9277817010879517,-0.23672306537628174,2.558533191680908,0.0547674298286438,0.7549797296524048,1.2952229976654053,0.981057345867157,0.6599065065383911,0.8709993362426758,0.43085014820098877,0.19533419609069824,1.959215521812439,1.5879650115966797,-0.28488001227378845,1.4736871719360352,-0.2719089984893799,-0.29527217149734497,0.41510170698165894,-1.4833581447601318,0.04515945911407471,0.7039496302604675,-0.48223215341567993,-0.5253502130508423,-1.2936792373657227,-0.32833045721054077,0.717462956905365,-0.6876267194747925,0.8686385154724121,1.5269285440444946,-0.7160340547561646,0.4311148226261139,0.9734864234924316,-0.14263220131397247,-0.8228546380996704,0.6813536882400513,1.1506247520446777,0.8392664790153503,0.28203946352005005,0.8434175252914429,-0.7216273546218872,-0.7700384855270386,0.2849855124950409,-0.5702798366546631,-0.13965046405792236,0.769792914390564,0.31338924169540405,0.17083942890167236,-0.3919603228569031,-0.7697630524635315 -2905,-0.4360693693161011,-2.4627845287323,-0.16435647010803223,-0.29392340779304504,-1.0730286836624146,-0.405828058719635,0.008725792169570923,0.002449542284011841,-0.22613920271396637,1.3862248659133911,-0.6437795162200928,-1.09758460521698,0.7645143270492554,0.11315064132213593,1.4983384609222412,-0.354333758354187,0.7602552771568298,-0.3912273049354553,0.2755658030509949,-0.3914480209350586,1.415010690689087,-0.3780629634857178,-0.9704468846321106,0.5683732628822327,-0.9838451147079468,-1.2349153757095337,-0.01205374300479889,0.1501363068819046,-0.1426525115966797,-0.449165940284729,-0.344485342502594,0.4782934784889221,0.302506685256958,-1.023724913597107,0.37969163060188293,0.25604286789894104,-0.1789005845785141,-0.24862855672836304,-1.4546228647232056,0.17757512629032135,2.4509148597717285,-0.376675009727478,-0.08356261253356934,-0.789780855178833,0.8288412094116211,-1.1846755743026733,0.97855544090271,0.6015187501907349,0.36093437671661377,-3.5917348861694336,-1.1158385276794434,0.6227533221244812,-0.3400994837284088,-0.1870664358139038,0.055169716477394104,1.126813292503357,-1.1801291704177856,-1.5398476123809814,-0.42047762870788574,-0.7640341520309448,1.1214741468429565,-2.8322668075561523,0.17853966355323792,-1.340080976486206,-0.5718270540237427,0.5516422986984253,1.3316845893859863,0.886153519153595,0.44530028104782104,-0.3715132772922516,0.3175809979438782,-0.05623617768287659,0.3622443675994873,-0.6032208800315857,-1.9701111316680908,-0.6475858092308044,0.816609263420105,0.8252794742584229,-0.9776024222373962,-0.4040643274784088,-0.8640689849853516,-1.8975870609283447,0.8332263827323914,1.0628266334533691,-0.621076762676239,0.676498293876648,1.4315317869186401,0.22784414887428284,0.46202611923217773,0.32288363575935364,0.794062614440918,0.4242926239967346,1.1504888534545898,-1.5400341749191284,1.4958727359771729,-0.5752668976783752,1.293192744255066,-0.6167973279953003,0.3719930052757263,-0.15226149559020996,0.1707513928413391,0.6420856714248657,-0.7060208320617676,-1.9364968538284302,-1.3142035007476807,-0.6976902484893799,-0.016108211129903793,-0.6351847648620605,-0.16307060420513153,-0.595284104347229,-0.015412025153636932,0.23850017786026,-0.5312121510505676,-0.3193551301956177,-1.3002121448516846,1.381484031677246,-0.5950794219970703,0.12157976627349854,-0.9441951513290405,0.19044750928878784,0.3920034170150757,-1.2588679790496826,-3.015383005142212,0.1413836032152176,-2.1117992401123047,-1.6215746402740479,0.18489989638328552,-0.8852630853652954,-1.939825415611267,0.16363486647605896,1.3564271926879883,1.6438783407211304,1.5473535060882568,2.2845919132232666,1.5557963848114014,0.9160727262496948,-0.36324378848075867,-1.2631921768188477,0.8694757223129272,-1.891829252243042,-0.5780343413352966,1.225858449935913,1.2379921674728394,0.011827930808067322,-2.1624817848205566,1.0750981569290161,-0.029011718928813934,-0.3403834402561188,-0.21958182752132416,-0.25317203998565674,1.1687690019607544,-0.9845668077468872,0.03470350801944733,-1.4314777851104736,1.09994375705719,1.8572137355804443,-0.5495966076850891,-0.4595213830471039,-0.3790617883205414,1.1117604970932007,1.575610637664795,-0.2398548126220703,0.20779258012771606,0.32692593336105347,-1.7374813556671143,0.010642603039741516,-0.3648969829082489,-0.9450785517692566,-0.6226986646652222,0.8058648109436035,-0.9513747692108154,-0.7486963868141174,-1.5178580284118652,-1.1230597496032715,-0.9970203638076782,-0.4831490218639374,2.2773067951202393,-1.510605812072754,-1.965465784072876,0.7642026543617249,2.050654172897339,-0.6100245714187622,2.385011672973633,-0.2600327730178833,-0.949532151222229,-0.5452594757080078,-1.276186227798462,-0.0015469789505004883,-0.3535059094429016,0.10387510061264038,1.250529170036316,0.7883201837539673,1.4003159999847412,0.8768720030784607,-0.861247718334198,-1.0836148262023926,-0.3854824900627136,-0.12840285897254944,-0.4856710731983185,-0.9277817010879517,-0.23672306537628174,2.558533191680908,0.0547674298286438,0.7549797296524048,1.331049919128418,0.981057345867157,0.6599065065383911,0.8709993362426758,0.17432773113250732,-0.32296061515808105,1.959215521812439,1.5879650115966797,-0.49417099356651306,1.4736871719360352,-0.2719089984893799,-0.29527217149734497,0.26993632316589355,-1.4833581447601318,0.04515945911407471,0.7039496302604675,-0.9657493829727173,-0.500241219997406,-1.2936792373657227,-0.32833045721054077,0.717462956905365,-1.2010397911071777,0.8997469544410706,1.5269285440444946,-0.7160340547561646,0.4311148226261139,0.9734864234924316,-0.14263220131397247,-0.8963977694511414,0.48650938272476196,1.1506247520446777,0.8392664790153503,0.28203946352005005,0.8434175252914429,-0.7216273546218872,-0.7700384855270386,0.7209646105766296,-0.5702798366546631,-0.7397810816764832,0.769792914390564,0.31338924169540405,0.020770058035850525,0.2749983072280884,0.009814023971557617 -2906,-0.4360693693161011,-2.4627845287323,0.07808849215507507,-0.29392340779304504,-0.9966868162155151,-0.405828058719635,0.008725792169570923,0.002449542284011841,-0.22613920271396637,1.3862248659133911,-0.6437795162200928,-1.09758460521698,1.1961361169815063,0.15233998000621796,1.4983384609222412,-0.354333758354187,0.7602552771568298,-0.5713350772857666,0.28093835711479187,-0.3914480209350586,1.415010690689087,-0.3780629634857178,-0.9704468846321106,0.5683732628822327,-0.9838451147079468,-1.2349153757095337,-0.01205374300479889,0.1501363068819046,-0.2313079833984375,-0.449165940284729,-0.344485342502594,0.4782934784889221,0.302506685256958,-0.6595457792282104,0.37969163060188293,0.25604286789894104,-0.1789005845785141,-0.24862855672836304,-1.2066771984100342,0.17757512629032135,2.591381311416626,-0.6886284947395325,-0.08356261253356934,-0.789780855178833,0.8288412094116211,-1.1846755743026733,-0.5377827882766724,0.6015187501907349,0.36093437671661377,-3.5917348861694336,-1.252835750579834,0.6227533221244812,-0.3400994837284088,-0.4589574635028839,0.055169716477394104,1.126813292503357,-1.1801291704177856,-1.5398476123809814,-0.42047762870788574,-0.5660585165023804,1.1214741468429565,-3.117414951324463,0.17853966355323792,-1.340080976486206,-0.5718270540237427,0.5516422986984253,1.3316845893859863,1.0208684206008911,0.44530028104782104,-0.3715132772922516,0.3175809979438782,-0.05623617768287659,0.3622443675994873,-0.9706165194511414,-1.9701111316680908,-0.5228866338729858,0.5447534322738647,0.9057501554489136,-0.9776024222373962,-0.4040643274784088,-1.2589651346206665,-1.8975870609283447,1.0867888927459717,1.0628266334533691,-0.621076762676239,0.676498293876648,-0.3488802909851074,0.22784414887428284,0.46202611923217773,0.32288363575935364,0.794062614440918,0.9703725576400757,1.1504888534545898,-1.5400341749191284,1.4958727359771729,-0.5752668976783752,1.293192744255066,-0.6167973279953003,0.3719930052757263,-0.15226149559020996,0.1707513928413391,0.6420856714248657,-0.7060208320617676,-1.9364968538284302,-1.3142035007476807,-0.6976902484893799,-0.016108211129903793,-0.6351847648620605,-0.16307060420513153,-0.595284104347229,-0.015412025153636932,0.23850017786026,-0.5312121510505676,-0.21935252845287323,-1.3002121448516846,1.381484031677246,-0.5950794219970703,0.12157976627349854,-1.4005134105682373,0.19044750928878784,0.3920034170150757,-1.2588679790496826,-3.015383005142212,0.1413836032152176,-2.1117992401123047,-1.6215746402740479,0.18489989638328552,-0.8852630853652954,-1.939825415611267,-0.19287574291229248,1.3564271926879883,1.6438783407211304,1.5473535060882568,2.2845919132232666,0.9841949343681335,0.9160727262496948,-0.36324378848075867,-1.2631921768188477,0.8694757223129272,-2.0093884468078613,-0.5780343413352966,1.225858449935913,1.2379921674728394,-1.1189097166061401,-1.8536217212677002,1.0750981569290161,-0.029011718928813934,-0.785342812538147,-0.21958182752132416,-0.25317203998565674,1.1687690019607544,-0.23920685052871704,0.27895641326904297,-1.001173734664917,1.09994375705719,1.8572137355804443,-0.5495966076850891,-1.0321680307388306,-0.3790617883205414,1.1117604970932007,1.575610637664795,-0.2398548126220703,0.20779258012771606,0.32692593336105347,-1.7374813556671143,0.010642603039741516,-0.3648969829082489,-0.9450785517692566,-0.6226986646652222,0.8058648109436035,-0.8460317254066467,-1.2021207809448242,-1.5178580284118652,-1.1230597496032715,-0.9970203638076782,-1.0174567699432373,2.2773067951202393,-1.4070112705230713,-1.965465784072876,0.7642026543617249,2.050654172897339,-0.6100245714187622,2.385011672973633,-0.2600327730178833,0.20963096618652344,-0.5452594757080078,-1.276186227798462,-0.0015469789505004883,-0.6033986806869507,0.7822741270065308,1.1916567087173462,1.5607681274414062,1.4003159999847412,0.9002059102058411,-0.861247718334198,-1.0836148262023926,-0.3854824900627136,-0.12840285897254944,-0.4116259515285492,-0.9277817010879517,-0.23672306537628174,3.079740047454834,0.0547674298286438,0.7549797296524048,1.4883054494857788,0.981057345867157,0.6599065065383911,0.8709993362426758,0.17432773113250732,-0.32296061515808105,1.959215521812439,1.5879650115966797,-0.49417099356651306,1.4736871719360352,-0.5869392156600952,-0.29527217149734497,0.26993632316589355,-1.4833581447601318,0.04515945911407471,0.7039496302604675,-0.7316448092460632,-0.500241219997406,-1.2936792373657227,-0.32833045721054077,0.717462956905365,-0.8367749452590942,0.8997469544410706,1.5269285440444946,-0.7160340547561646,0.8471969366073608,0.9734864234924316,-0.14263220131397247,-0.8963977694511414,0.48650938272476196,1.1506247520446777,0.8392664790153503,0.28203946352005005,0.8434175252914429,-0.7216273546218872,-0.7700384855270386,-0.5258527398109436,-0.5702798366546631,-0.7397810816764832,0.769792914390564,0.31338924169540405,0.7070724368095398,0.2749983072280884,-0.7566940188407898 -2907,-0.4360693693161011,-2.4627845287323,-0.42403271794319153,-0.29392340779304504,-0.9966868162155151,-0.405828058719635,0.32683107256889343,0.002449542284011841,-0.28655147552490234,1.3862248659133911,-0.6437795162200928,-1.09758460521698,1.1961361169815063,0.15233998000621796,1.4983384609222412,-0.354333758354187,0.7602552771568298,-0.5713350772857666,0.28093835711479187,-0.5083816051483154,1.415010690689087,-0.9509578347206116,-1.2294591665267944,0.5683732628822327,-0.9838451147079468,-1.2349153757095337,-0.01205374300479889,0.1501363068819046,-0.2313079833984375,-0.449165940284729,-0.344485342502594,0.4782934784889221,0.302506685256958,-0.6595457792282104,0.37969163060188293,0.25604286789894104,-0.1789005845785141,-0.24862855672836304,-1.27884042263031,0.17757512629032135,2.591381311416626,-0.6886284947395325,-0.08356261253356934,-0.789780855178833,0.8288412094116211,-0.8474147915840149,-0.5377827882766724,0.6015187501907349,0.36093437671661377,-3.5917348861694336,-1.5070276260375977,0.7945212721824646,-0.3400994837284088,-0.4589574635028839,0.029783789068460464,1.126813292503357,-1.1801291704177856,-1.5398476123809814,-0.42047762870788574,-0.5660585165023804,1.4024134874343872,-3.117414951324463,0.13820625841617584,-1.340080976486206,-0.5718270540237427,0.8193321228027344,1.3316845893859863,1.241666316986084,0.44530028104782104,-0.08232545852661133,0.3175809979438782,-0.05623617768287659,0.30444151163101196,-0.9706165194511414,-1.9701111316680908,-0.5228866338729858,0.8342893719673157,0.8324215412139893,-1.3801623582839966,-0.4040643274784088,-1.2589651346206665,-1.8975870609283447,1.0867888927459717,1.0628266334533691,-0.621076762676239,0.676498293876648,-0.49814140796661377,-0.6532765626907349,1.4056886434555054,0.32288363575935364,1.1511476039886475,0.9703725576400757,0.9865354299545288,-1.668832540512085,1.4958727359771729,-0.5752668976783752,1.293192744255066,-0.6167973279953003,0.3719930052757263,-0.15226149559020996,0.10040538758039474,0.31639203429222107,-0.7060208320617676,-1.5963380336761475,-0.6951462626457214,-0.7309024930000305,-0.016108211129903793,-0.6351847648620605,0.0524541437625885,-0.595284104347229,-0.18521735072135925,0.7754980325698853,-1.0707542896270752,-0.21935252845287323,-1.3002121448516846,1.381484031677246,-0.4750700891017914,0.9862538576126099,-1.2955430746078491,-0.09255656599998474,-0.19381320476531982,-1.3659933805465698,-3.015383005142212,0.23611390590667725,-2.1117992401123047,-0.8197882771492004,0.549266517162323,-0.8852630853652954,-1.939825415611267,0.07218816876411438,1.3564271926879883,1.6438783407211304,1.4512444734573364,2.2845919132232666,0.9841949343681335,0.9160727262496948,0.41605761647224426,-1.2631921768188477,0.8839353919029236,-2.0093884468078613,-0.5780343413352966,1.225858449935913,1.2379921674728394,-1.1189097166061401,-1.8536217212677002,1.0750981569290161,-0.029011718928813934,0.07128161191940308,-0.21958182752132416,-0.25317203998565674,1.1687690019607544,-0.23920685052871704,0.27895641326904297,-1.001173734664917,1.09994375705719,1.8572137355804443,-0.5495966076850891,-1.0321680307388306,-0.3790617883205414,1.1117604970932007,1.4240788221359253,-0.2398548126220703,0.20779258012771606,0.32692593336105347,-1.7374813556671143,0.010642603039741516,-0.3648969829082489,-0.44894298911094666,-0.6226986646652222,0.8058648109436035,-0.8488236665725708,-1.2021207809448242,-1.5178580284118652,-1.1230597496032715,-0.9970203638076782,-1.0174567699432373,2.2773067951202393,-1.4070112705230713,-1.965465784072876,0.7642026543617249,1.8925601243972778,-0.6100245714187622,2.4797167778015137,-0.022510245442390442,0.6721804141998291,-0.5452594757080078,-1.276186227798462,-0.3271421790122986,-1.308957576751709,0.7822741270065308,1.1916567087173462,1.5607681274414062,0.9325505495071411,0.9002059102058411,-0.861247718334198,-1.0836148262023926,-0.3854824900627136,-0.12840285897254944,-0.4116259515285492,-0.9277817010879517,-0.23672306537628174,2.6943185329437256,0.0547674298286438,0.7549797296524048,1.4599826335906982,0.981057345867157,0.6599065065383911,0.23679381608963013,0.17432773113250732,-0.32296061515808105,1.959215521812439,1.5879650115966797,-0.49417099356651306,1.4736871719360352,-0.5869392156600952,-0.29527217149734497,0.26993632316589355,-1.4833581447601318,0.04515945911407471,1.8337597846984863,0.1396322250366211,-0.500241219997406,-1.2936792373657227,0.9118312001228333,-0.528586208820343,-0.8367749452590942,0.8997469544410706,1.5269285440444946,-0.7160340547561646,0.8471969366073608,0.9734864234924316,-0.14263220131397247,-0.9621445536613464,0.48650938272476196,1.1506247520446777,0.8421984314918518,0.28203946352005005,0.8434175252914429,-0.7216273546218872,-1.1527189016342163,-0.5258527398109436,-0.5702798366546631,-1.0686386823654175,0.8350173830986023,0.16246938705444336,-0.06275027990341187,0.2749983072280884,-0.7566940188407898 -2908,-0.4360693693161011,-2.4627845287323,-0.42403271794319153,-0.29392340779304504,-0.9865704774856567,-0.405828058719635,0.32683107256889343,0.002449542284011841,-0.28655147552490234,1.4665279388427734,-0.6437795162200928,-1.09758460521698,1.1961361169815063,0.15233998000621796,1.4983384609222412,-0.354333758354187,0.24468469619750977,-0.5225312113761902,0.28093835711479187,-0.5083816051483154,1.415010690689087,-0.602778434753418,-1.2294591665267944,0.5683732628822327,-0.9838451147079468,-1.8225924968719482,-0.01205374300479889,0.1501363068819046,-0.2313079833984375,-0.449165940284729,-0.344485342502594,0.4782934784889221,0.302506685256958,-0.6170929074287415,0.37969163060188293,0.25604286789894104,-0.5357509255409241,-0.1441699117422104,-1.392749547958374,-0.004435494542121887,2.591381311416626,-0.6886284947395325,-0.08356261253356934,-0.789780855178833,0.8288412094116211,-0.7487263679504395,-0.48408445715904236,0.5364164113998413,0.23313209414482117,-3.5917348861694336,-1.5070276260375977,1.5936493873596191,-0.3400994837284088,-0.5285937190055847,0.029783789068460464,1.3857539892196655,-1.1801291704177856,-1.2036203145980835,-0.05407607555389404,-1.1831436157226562,1.4024134874343872,-3.117414951324463,0.13820625841617584,-1.2558752298355103,-0.5718270540237427,0.8193321228027344,1.3316845893859863,0.9106436967849731,0.44530028104782104,-0.08232545852661133,0.3175809979438782,0.4523647129535675,0.30444151163101196,-0.3710091710090637,-1.4145123958587646,-0.2670423984527588,0.8342893719673157,0.9279310703277588,-1.3801623582839966,-0.6124694347381592,-0.6225422620773315,-1.8975870609283447,1.0867888927459717,1.0628266334533691,-0.621076762676239,0.676498293876648,0.7692947387695312,-0.06679880619049072,1.1884804964065552,0.32288363575935364,1.1511476039886475,0.7602788209915161,0.9370577931404114,-1.668832540512085,1.4958727359771729,-0.7740170359611511,1.293192744255066,-0.021824777126312256,0.3719930052757263,-0.15226149559020996,0.10040538758039474,0.31639203429222107,-0.7060208320617676,-1.5963380336761475,-0.9067426919937134,-0.5026536583900452,-0.016108211129903793,0.6054956912994385,0.0524541437625885,-1.395883321762085,0.3150762617588043,0.28404727578163147,-1.0707542896270752,-0.21935252845287323,-0.7742300629615784,1.381484031677246,-0.4750700891017914,1.3645018339157104,-1.2955430746078491,-0.09255656599998474,-0.19381320476531982,-1.3659933805465698,-3.015383005142212,0.23611390590667725,-2.1117992401123047,-0.8197882771492004,0.13782423734664917,-0.7350589036941528,-1.7353006601333618,0.07218816876411438,1.3564271926879883,1.6438783407211304,1.4512444734573364,2.2845919132232666,0.9841949343681335,1.2719968557357788,0.41605761647224426,-1.2631921768188477,0.13553261756896973,-2.0093884468078613,-0.5780343413352966,1.225858449935913,1.2379921674728394,-1.1189097166061401,-1.8712166547775269,1.0750981569290161,-0.029011718928813934,0.07128161191940308,-0.15219232439994812,-0.25317203998565674,1.1687690019607544,-0.23920685052871704,-0.09477844834327698,-1.001173734664917,1.09994375705719,1.8572137355804443,-0.5495966076850891,-1.0321680307388306,-0.3790617883205414,1.1117604970932007,1.4240788221359253,-0.2398548126220703,0.20779258012771606,0.32692593336105347,-1.7745678424835205,0.010642603039741516,-0.1265072524547577,-0.44894298911094666,-1.008389949798584,0.8058648109436035,-0.8488236665725708,-1.2021207809448242,-1.5178580284118652,-0.9555695056915283,-0.9970203638076782,-1.0174567699432373,2.4400453567504883,-1.4070112705230713,-1.965465784072876,0.7642026543617249,1.8263243436813354,-0.6100245714187622,2.4797167778015137,-0.022510245442390442,0.6721804141998291,-0.5452594757080078,-0.7890264987945557,-0.3271421790122986,-1.308957576751709,0.6713850498199463,1.1916567087173462,1.5607681274414062,0.9325505495071411,0.9002059102058411,-0.971794605255127,-0.05696702003479004,-0.3854824900627136,-0.12840285897254944,0.07126274704933167,-0.9277817010879517,-0.23672306537628174,2.6943185329437256,0.0547674298286438,1.2030423879623413,1.4599826335906982,0.8358325362205505,0.6599065065383911,0.23679381608963013,0.17432773113250732,0.02468886971473694,1.959215521812439,1.5879650115966797,-0.49417099356651306,1.4736871719360352,-0.5869392156600952,-0.29527217149734497,0.26993632316589355,-1.4833581447601318,0.03182203322649002,1.8337597846984863,0.1396322250366211,-1.3858230113983154,-1.2936792373657227,0.9118312001228333,-0.528586208820343,0.06468808650970459,1.3157042264938354,1.5269285440444946,-0.7160340547561646,0.8471969366073608,0.9734864234924316,-0.14263220131397247,-0.24038630723953247,0.48650938272476196,1.1506247520446777,0.8421984314918518,0.28203946352005005,0.8434175252914429,-0.7216273546218872,-1.1527189016342163,-0.5258527398109436,-0.7632650136947632,-0.8544670343399048,0.8350173830986023,-0.00013779103755950928,-0.06275027990341187,0.2749983072280884,-0.7566940188407898 -2909,-0.4360693693161011,-2.4627845287323,-1.1650309562683105,-0.29392340779304504,-0.9865704774856567,-0.405828058719635,0.14358004927635193,-0.869338870048523,-0.28655147552490234,1.4665279388427734,-0.6437795162200928,-0.9582297801971436,1.1961361169815063,0.15233998000621796,1.4983384609222412,-0.16173046827316284,0.24468469619750977,-0.5395660400390625,0.28093835711479187,-0.5083816051483154,1.7841331958770752,-0.7660399079322815,-1.2294591665267944,0.34150564670562744,-0.7768368721008301,-1.8225924968719482,-0.01205374300479889,0.6426843404769897,-0.2313079833984375,-0.449165940284729,-0.344485342502594,0.3262619972229004,0.302506685256958,-0.6170929074287415,0.37969163060188293,0.6132557392120361,-0.5357509255409241,-0.1441699117422104,-2.3398702144622803,-0.004435494542121887,2.591381311416626,-0.6886284947395325,-0.03295884281396866,-0.44262346625328064,0.8288412094116211,-0.7487263679504395,0.8235067129135132,0.9016631841659546,0.23313209414482117,-3.5917348861694336,-1.5070276260375977,1.5936493873596191,-0.3400994837284088,-0.5285937190055847,0.029783789068460464,1.3857539892196655,-1.3298437595367432,-2.0445826053619385,-0.05407607555389404,-1.436633586883545,1.4024134874343872,-3.117414951324463,0.13820625841617584,-1.25021493434906,-0.4841976761817932,0.8193321228027344,1.3316845893859863,0.9106436967849731,0.44530028104782104,-1.0278557538986206,0.3175809979438782,0.4523647129535675,0.30444151163101196,-0.3710091710090637,-1.4145123958587646,-0.3613858222961426,0.8342893719673157,0.9279310703277588,-1.3801623582839966,-0.6124694347381592,-0.6225422620773315,-1.8975870609283447,1.0867888927459717,1.0628266334533691,-1.0232512950897217,0.676498293876648,0.7692947387695312,-0.06679880619049072,1.1884804964065552,0.32288363575935364,1.1511476039886475,0.5834609866142273,0.9370577931404114,-1.668832540512085,1.6335986852645874,-0.7740170359611511,1.293192744255066,-0.021824777126312256,0.3719930052757263,-0.15226149559020996,0.10040538758039474,0.31639203429222107,-0.7060208320617676,-1.5963380336761475,-0.9067426919937134,-0.379290372133255,-0.016108211129903793,0.6054956912994385,0.12698179483413696,-1.395883321762085,0.5003647208213806,0.1601152867078781,-1.0707542896270752,-0.21935252845287323,-0.7742300629615784,1.381484031677246,-0.4750700891017914,1.3645018339157104,-1.2955430746078491,-0.09255656599998474,-0.31999272108078003,-1.3659933805465698,0.17542672157287598,0.23611390590667725,-1.6883794069290161,-0.8197882771492004,0.6767355799674988,-0.7350589036941528,-1.7353006601333618,0.07218816876411438,1.3564271926879883,1.6438783407211304,1.4512444734573364,2.2845919132232666,0.9841949343681335,1.2719968557357788,0.9947943687438965,-1.2631921768188477,0.002392008900642395,-2.0093884468078613,-0.5780343413352966,1.225858449935913,1.2379921674728394,-1.1189097166061401,-1.8712166547775269,1.0750981569290161,-0.029011718928813934,-0.025390274822711945,-0.15219232439994812,-0.25317203998565674,1.1687690019607544,-0.7478104829788208,-0.09477844834327698,-0.7709041833877563,1.09994375705719,1.6986663341522217,-0.5495966076850891,-1.0321680307388306,-0.3790617883205414,1.1117604970932007,1.2165663242340088,-0.2398548126220703,1.1989712715148926,1.2534693479537964,-1.7745678424835205,0.010642603039741516,-0.1265072524547577,-0.44894298911094666,-1.008389949798584,0.9093817472457886,-0.454141229391098,-1.2021207809448242,-1.5178580284118652,-1.2556226253509521,-0.9970203638076782,-1.0174567699432373,2.4400453567504883,-1.4070112705230713,-2.202808380126953,0.7642026543617249,1.8263243436813354,-0.6100245714187622,2.4797167778015137,-0.022510245442390442,0.6721804141998291,-0.5452594757080078,-0.7890264987945557,-0.564345121383667,-1.253902792930603,0.7580316662788391,1.1916567087173462,1.7090482711791992,1.2105704545974731,0.9002059102058411,-0.971794605255127,-0.05696702003479004,-0.3854824900627136,-0.12840285897254944,0.07126274704933167,-0.9277817010879517,-0.28624600172042847,2.6943185329437256,0.893395721912384,1.2030423879623413,1.4599826335906982,0.03861510753631592,0.6599065065383911,0.9049023389816284,0.17432773113250732,0.02468886971473694,1.959215521812439,1.5879650115966797,-0.49417099356651306,1.5026209354400635,-0.5869392156600952,-0.29527217149734497,0.15701068937778473,-1.0950710773468018,0.2888185977935791,1.8337597846984863,0.1396322250366211,-1.3858230113983154,-1.423972487449646,0.9118312001228333,-0.528586208820343,0.815753161907196,1.3157042264938354,1.5269285440444946,-0.7160340547561646,0.8471969366073608,0.9734864234924316,-0.14263220131397247,-0.24038630723953247,0.48650938272476196,1.1506247520446777,0.8421984314918518,0.28203946352005005,0.8434175252914429,-0.7216273546218872,-1.1527189016342163,-0.5258527398109436,-0.7632650136947632,-0.8544670343399048,0.03503161668777466,-0.00013779103755950928,-0.06275027990341187,0.2749983072280884,-0.07813829183578491 -2910,-0.2876245081424713,-2.212738037109375,-1.1650309562683105,-0.471871018409729,-0.9865704774856567,-0.405828058719635,0.14358004927635193,-0.869338870048523,-0.28655147552490234,1.5973676443099976,-0.6437795162200928,-0.9582297801971436,1.1961361169815063,0.575690507888794,1.4983384609222412,-0.16173046827316284,0.01679125428199768,-0.5395660400390625,0.28093835711479187,-0.5083816051483154,1.4367927312850952,-0.7660399079322815,-1.2294591665267944,0.34150564670562744,-0.7768368721008301,-1.8225924968719482,-0.01205374300479889,0.6426843404769897,-0.2313079833984375,-0.2504574656486511,-0.344485342502594,0.3262619972229004,0.302506685256958,-0.6170929074287415,0.37969163060188293,0.18059277534484863,-0.5357509255409241,-0.1103912740945816,-2.3398702144622803,0.09563145041465759,2.950597047805786,-0.6886284947395325,-0.03295884281396866,-0.44262346625328064,0.8288412094116211,-0.7487263679504395,0.8235067129135132,0.9016631841659546,0.6040060520172119,-3.2087671756744385,-2.035722494125366,1.410696029663086,-0.7109957933425903,-0.5285937190055847,0.029783789068460464,1.3857539892196655,-1.3298437595367432,-2.0445826053619385,-0.05407607555389404,-1.436633586883545,1.4024134874343872,-3.117414951324463,0.13820625841617584,-1.25021493434906,-0.4841976761817932,0.8193321228027344,1.3316845893859863,0.9106436967849731,0.44530028104782104,-1.0278557538986206,0.3175809979438782,0.4523647129535675,0.30444151163101196,-0.3710091710090637,-1.4145123958587646,-0.3613858222961426,0.8342893719673157,0.9279310703277588,-1.3801623582839966,-0.70791095495224,-1.0425605773925781,-1.8975870609283447,0.9940505027770996,1.0628266334533691,-1.0232512950897217,0.676498293876648,0.7692947387695312,-0.6613863110542297,0.40437155961990356,0.32288363575935364,1.2341837882995605,0.5834609866142273,1.1122745275497437,-1.668832540512085,1.6335986852645874,-0.7740170359611511,1.293192744255066,-0.021824777126312256,0.3719930052757263,-0.19357451796531677,0.2794979214668274,0.31639203429222107,-0.7060208320617676,-1.5963380336761475,-0.9067426919937134,-0.379290372133255,-0.016108211129903793,0.24216681718826294,0.12698179483413696,-1.395883321762085,0.5003647208213806,0.1601152867078781,-1.0707542896270752,-0.21935252845287323,-0.17691707611083984,1.381484031677246,-0.4750700891017914,1.3645018339157104,-1.2955430746078491,-0.09255656599998474,-0.31999272108078003,-0.9947786927223206,0.17542672157287598,0.23611390590667725,-1.6883794069290161,-0.8197882771492004,0.6767355799674988,-0.7350589036941528,-0.3478107452392578,0.07218816876411438,1.3564271926879883,1.7686152458190918,1.4512444734573364,2.2845919132232666,0.9841949343681335,1.2719968557357788,1.4990434646606445,-1.2631921768188477,0.002392008900642395,-2.0093884468078613,-0.6820994019508362,1.4045552015304565,1.2379921674728394,-1.1189097166061401,-1.8712166547775269,1.0750981569290161,-0.029011718928813934,-0.740744411945343,-0.15219232439994812,-0.25317203998565674,1.5051448345184326,-0.5924097895622253,0.03577315807342529,-0.9774770736694336,1.09994375705719,1.6986663341522217,-0.5495966076850891,-1.0321680307388306,-0.3790617883205414,1.1117604970932007,1.3833906650543213,-0.2398548126220703,1.1989712715148926,1.2534693479537964,-1.7745678424835205,0.010642603039741516,-0.1265072524547577,-0.44894298911094666,-1.2149051427841187,0.5260154008865356,-0.454141229391098,-1.2021207809448242,-1.5178580284118652,-0.9960111379623413,-0.9970203638076782,-0.8787559270858765,2.4400453567504883,-1.4070112705230713,-2.202808380126953,0.5184825658798218,1.8263243436813354,-0.6100245714187622,2.4797167778015137,-0.022510245442390442,0.47017109394073486,-0.5452594757080078,-0.7890264987945557,-0.9640408754348755,-1.1007368564605713,0.7580316662788391,1.1916567087173462,1.7090482711791992,1.2105704545974731,0.9793762564659119,-0.971794605255127,-0.05696702003479004,-0.3854824900627136,-0.12840285897254944,0.07126274704933167,-0.9277817010879517,-0.28624600172042847,2.6943185329437256,0.893395721912384,1.2030423879623413,1.4599826335906982,0.03861510753631592,0.6599065065383911,0.9049023389816284,0.17432773113250732,0.02468886971473694,1.959215521812439,1.5879650115966797,-0.5491217970848083,1.5026209354400635,0.25142645835876465,-0.32084158062934875,-0.1378636509180069,-1.0950710773468018,0.2888185977935791,1.8626865148544312,0.1396322250366211,-1.3858230113983154,-1.8227859735488892,-0.2168293595314026,-0.528586208820343,-0.17123067378997803,1.3157042264938354,1.205310344696045,-0.3405856788158417,1.0727044343948364,1.1784658432006836,-0.14263220131397247,-0.11806976050138474,0.6187424063682556,1.436606526374817,0.8421984314918518,0.6878297328948975,0.8434175252914429,-0.7216273546218872,-1.1527189016342163,-0.569370448589325,-0.7632650136947632,-0.20387107133865356,0.03503161668777466,-0.00013779103755950928,-0.06275027990341187,-0.7267857789993286,-0.07813829183578491 -2911,-0.2876245081424713,-2.433222770690918,-1.1650309562683105,-0.471871018409729,-0.6387401819229126,-0.405828058719635,0.14358004927635193,-1.3796958923339844,-0.28655147552490234,1.5973676443099976,-0.6437795162200928,-0.6428254842758179,1.2528423070907593,0.8191736936569214,1.4983384609222412,0.08021438121795654,0.01679125428199768,-0.5855656266212463,-0.05537545680999756,0.2958418130874634,1.4367927312850952,-0.7660399079322815,-1.2294591665267944,0.6713041067123413,-0.7768368721008301,-1.7060494422912598,-0.01205374300479889,0.6426843404769897,-0.2313079833984375,-0.2504574656486511,-0.19961398839950562,0.3262619972229004,0.302506685256958,-0.8414273262023926,0.37969163060188293,0.26414868235588074,-0.5357509255409241,-0.1103912740945816,-2.3398702144622803,0.1017318069934845,2.6752548217773438,-0.6886284947395325,-0.04057617112994194,-0.44262346625328064,0.8288412094116211,-0.7487263679504395,-0.03122168779373169,0.9016631841659546,0.6040060520172119,-2.488466739654541,-2.035722494125366,1.0048611164093018,-0.5696239471435547,-0.5285937190055847,0.029783789068460464,1.3857539892196655,-1.447739839553833,-2.0445826053619385,-0.05407607555389404,-1.436633586883545,1.1296124458312988,-3.117414951324463,0.13820625841617584,-1.25021493434906,-0.4841976761817932,0.8193321228027344,1.246224284172058,0.3174366354942322,0.44530028104782104,-1.0278557538986206,0.3175809979438782,0.4523647129535675,0.30444151163101196,-0.3710091710090637,-1.587036371231079,-0.3613858222961426,0.8374150395393372,0.5485031604766846,-1.3801623582839966,-0.70791095495224,-1.0425605773925781,-1.5237255096435547,0.9940505027770996,1.008533000946045,-1.0232512950897217,0.6057958602905273,-0.31111979484558105,-0.6613863110542297,0.7402627468109131,0.32288363575935364,1.2341837882995605,0.5834609866142273,1.1361300945281982,-0.5877654552459717,2.305154323577881,-0.4850590229034424,1.293192744255066,-0.4064042866230011,0.18929873406887054,-0.19357451796531677,0.2794979214668274,0.31639203429222107,-0.7060208320617676,-1.5963380336761475,-0.6709838509559631,-0.379290372133255,-0.444752961397171,-1.00148606300354,-0.0793108344078064,-1.395883321762085,0.013727962970733643,0.1601152867078781,-1.0707542896270752,-0.21935252845287323,-0.17691707611083984,1.381484031677246,-0.5431645512580872,1.3645018339157104,-1.2955430746078491,-0.09255656599998474,0.27253830432891846,-0.5289541482925415,0.45152249932289124,0.23611390590667725,-1.6883794069290161,-0.8197882771492004,0.6767355799674988,-0.7350589036941528,-1.1994845867156982,0.07218816876411438,1.3564271926879883,1.7412563562393188,1.424430251121521,2.2845919132232666,2.0548179149627686,1.3229351043701172,1.0008137226104736,-1.2631921768188477,0.002392008900642395,-2.0093884468078613,-0.6820994019508362,2.0300092697143555,1.3423569202423096,-1.1189097166061401,-1.8712166547775269,-0.22266685962677002,-0.029011718928813934,-0.740744411945343,-0.15219232439994812,-0.25317203998565674,1.5051448345184326,-0.5711706876754761,0.03577315807342529,-0.9774770736694336,1.288210391998291,1.6986663341522217,-0.5495966076850891,-1.0321680307388306,-0.3790617883205414,1.1117604970932007,1.3833906650543213,-0.2398548126220703,1.254357099533081,1.2534693479537964,-0.6757243871688843,0.28386908769607544,-0.1265072524547577,-0.44894298911094666,-1.2149051427841187,0.5260154008865356,-0.454141229391098,-1.2021207809448242,-1.5178580284118652,-0.9960111379623413,-0.9970203638076782,-0.8787559270858765,2.5186703205108643,-0.7835860848426819,-2.202808380126953,0.5184825658798218,2.023524045944214,-0.6100245714187622,2.4797167778015137,-0.022510245442390442,-0.7291127443313599,-0.5034605264663696,-0.11791002750396729,-0.9640408754348755,-1.0817440748214722,0.7580316662788391,1.1916567087173462,1.7090482711791992,1.2105704545974731,0.9793762564659119,-1.2307560443878174,-0.05696702003479004,-0.3854824900627136,-0.12840285897254944,0.07126274704933167,-0.9277817010879517,0.602008581161499,2.6943185329437256,0.893395721912384,1.2030423879623413,1.4599826335906982,-0.3914436399936676,0.6659684777259827,0.9049023389816284,0.17432773113250732,0.02468886971473694,1.959215521812439,1.5879650115966797,-0.5491217970848083,1.5026209354400635,0.25142645835876465,0.30627813935279846,0.05480906367301941,-1.0950710773468018,0.2888185977935791,1.2536611557006836,0.1396322250366211,-0.1996399164199829,-1.5178735256195068,-0.2168293595314026,-0.24777215719223022,-0.22262586653232574,1.3157042264938354,1.3322250843048096,-0.3405856788158417,1.0727044343948364,1.1784658432006836,-0.14263220131397247,-0.10915301740169525,0.6187424063682556,1.436606526374817,0.8016899824142456,0.6878297328948975,0.8434175252914429,-0.8379849791526794,-1.1527189016342163,-0.569370448589325,-0.7632650136947632,-0.20387107133865356,0.03503161668777466,-0.00013779103755950928,-0.06275027990341187,-0.7267857789993286,-0.07813829183578491 -2912,-0.1673002690076828,-2.433222770690918,-1.1650309562683105,-0.471871018409729,-0.2927769124507904,-0.405828058719635,-0.28968843817710876,-1.6500731706619263,-0.28655147552490234,1.5973676443099976,-0.6437795162200928,-0.6428254842758179,1.2528423070907593,0.8274747133255005,1.4983384609222412,0.3498571813106537,0.01679125428199768,-0.5855656266212463,-0.05537545680999756,0.2958418130874634,1.3719068765640259,-0.6505309343338013,-0.43751025199890137,0.22648221254348755,-0.7768368721008301,-1.7060494422912598,-0.25766533613204956,0.6426843404769897,-0.2313079833984375,-0.2504574656486511,-0.19961398839950562,0.34527111053466797,0.1040668785572052,-0.8414273262023926,0.37969163060188293,0.26414868235588074,-0.3440670371055603,-0.1103912740945816,-2.3398702144622803,0.1017318069934845,2.257533073425293,-0.8492295742034912,-0.04057617112994194,-0.3084423840045929,0.8288412094116211,-0.7487263679504395,-0.03122168779373169,0.3736364245414734,0.6040060520172119,-2.488466739654541,-2.035722494125366,1.0048611164093018,-0.5696239471435547,-0.5285937190055847,0.029783789068460464,0.6346851587295532,-1.2071888446807861,-1.0980634689331055,0.008507832884788513,-1.500451922416687,1.1296124458312988,-2.277536392211914,0.13820625841617584,-1.25021493434906,-0.4841976761817932,0.8193321228027344,1.4252018928527832,0.3174366354942322,0.36712104082107544,-1.0278557538986206,0.3175809979438782,1.6848251819610596,0.30444151163101196,-0.3710091710090637,-1.587036371231079,-0.3613858222961426,0.8374150395393372,0.5485031604766846,-1.3801623582839966,-0.70791095495224,-1.0425605773925781,-1.5237255096435547,0.9940505027770996,0.9888831377029419,-0.33359503746032715,0.6057958602905273,-0.23302564024925232,-0.6613863110542297,0.7402627468109131,0.32288363575935364,1.2341837882995605,0.5834609866142273,1.1149638891220093,-0.5877654552459717,1.962238073348999,-1.2763235569000244,1.293192744255066,-0.4064042866230011,0.18929873406887054,-0.19357451796531677,0.2794979214668274,0.31639203429222107,-0.7060208320617676,-1.5963380336761475,-0.6709838509559631,-0.379290372133255,-1.1060134172439575,-1.00148606300354,-0.21993806958198547,-1.395883321762085,0.013727962970733643,0.27297112345695496,-1.0707542896270752,-0.21935252845287323,-0.17691707611083984,1.381484031677246,-0.5431645512580872,1.0399150848388672,-1.123108148574829,-0.09255656599998474,0.27253830432891846,-0.5289541482925415,-0.27082768082618713,0.23611390590667725,-1.6883794069290161,-0.8197882771492004,0.6767355799674988,-0.7350589036941528,-1.1994845867156982,0.07218816876411438,1.3564271926879883,1.7412563562393188,1.1266987323760986,2.2845919132232666,1.7384960651397705,1.3229351043701172,1.0008137226104736,-1.2631921768188477,1.3084428310394287,-2.0093884468078613,-0.6820994019508362,2.0300092697143555,1.3423569202423096,-1.1189097166061401,-1.8712166547775269,-0.22266685962677002,0.41426289081573486,-0.8255244493484497,-0.15219232439994812,-1.4002881050109863,1.5051448345184326,-0.5711706876754761,0.6456992626190186,-0.9774770736694336,1.288210391998291,1.6986663341522217,-0.5495966076850891,-1.0321680307388306,-0.3790617883205414,1.2021057605743408,1.7671421766281128,-0.606336772441864,1.254357099533081,1.2534693479537964,-0.6757243871688843,0.28386908769607544,-0.1265072524547577,-0.44894298911094666,-1.2149051427841187,0.5260154008865356,-0.1931387484073639,-1.7924001216888428,-1.5178580284118652,-0.9960111379623413,-0.9970203638076782,-0.857227623462677,2.015134811401367,-1.1964476108551025,-2.202808380126953,0.5184825658798218,2.023524045944214,-0.6100245714187622,2.4797167778015137,-0.022510245442390442,-0.7291127443313599,-0.5034605264663696,-0.11791002750396729,0.17511045932769775,-1.1713345050811768,0.7580316662788391,1.1916567087173462,1.7090482711791992,1.5996980667114258,0.9793762564659119,0.3162510395050049,-0.05696702003479004,-0.3854824900627136,-0.12840285897254944,0.12372097373008728,-0.5163587927818298,0.602008581161499,2.587768077850342,0.893395721912384,1.2030423879623413,1.4599826335906982,-0.0383320152759552,0.6659684777259827,0.9049023389816284,-0.15402624011039734,0.02468886971473694,1.959215521812439,1.5007785558700562,-0.5491217970848083,1.5026209354400635,0.25142645835876465,0.5810132622718811,0.05480906367301941,-1.0950710773468018,0.2888185977935791,1.2536611557006836,-0.1298156976699829,-0.7467150092124939,-1.3919150829315186,-0.2168293595314026,-0.4883412718772888,-0.22262586653232574,1.1855311393737793,1.6425176858901978,-0.404677152633667,0.5072917938232422,1.1784658432006836,-0.14263220131397247,-0.10915301740169525,0.6187424063682556,1.436606526374817,0.8016899824142456,0.6878297328948975,0.8434175252914429,-0.3211456537246704,-1.1527189016342163,-0.569370448589325,-0.2700776755809784,-0.20387107133865356,0.03503161668777466,0.07566135376691818,-0.06275027990341187,-0.7267857789993286,-0.07813829183578491 -2913,-0.1673002690076828,-2.447599411010742,-1.0987591743469238,-0.1741369664669037,-0.2927769124507904,-0.405828058719635,-0.48252660036087036,-2.0799686908721924,-0.28655147552490234,1.414630651473999,-0.6437795162200928,0.27884554862976074,1.2528423070907593,0.38773801922798157,1.4983384609222412,0.3498571813106537,0.01679125428199768,-0.5855656266212463,-0.05537545680999756,0.23288649320602417,1.340908408164978,-0.6505309343338013,-0.20030418038368225,0.22648221254348755,-0.7768368721008301,-1.7060494422912598,-0.25766533613204956,0.6426843404769897,-0.2313079833984375,-0.5649836659431458,-0.2603208124637604,0.34527111053466797,0.1040668785572052,-0.8414273262023926,0.37969163060188293,0.26414868235588074,-0.3440670371055603,-0.1103912740945816,-2.3493776321411133,0.1017318069934845,2.257533073425293,-0.48160678148269653,0.08449271321296692,-0.3084423840045929,0.8288412094116211,-0.9663125872612,-0.03122168779373169,0.3736364245414734,0.39794421195983887,-2.488466739654541,-1.4790695905685425,1.3237522840499878,-0.5696239471435547,-0.5285937190055847,0.029783789068460464,0.6679053902626038,-1.440147042274475,-1.4560267925262451,0.008507832884788513,-1.500451922416687,1.3271005153656006,-2.277536392211914,0.13820625841617584,-1.1675691604614258,-0.20393654704093933,0.887306809425354,1.1062099933624268,0.44779759645462036,0.2722725570201874,-1.0278557538986206,0.3175809979438782,0.14467644691467285,0.30444151163101196,-0.3710091710090637,-1.587036371231079,-0.3613858222961426,0.8374150395393372,0.7399026155471802,-0.28986382484436035,-0.70791095495224,-1.0425605773925781,-1.5237255096435547,0.9263054728507996,0.9888831377029419,-0.9083511233329773,0.03692638874053955,-0.23302564024925232,-0.6613863110542297,0.7402627468109131,0.11557993292808533,1.2341837882995605,0.5834609866142273,1.1149638891220093,-0.12335342168807983,1.962238073348999,-1.2826052904129028,1.293192744255066,-0.4064042866230011,0.18929873406887054,-0.19357451796531677,0.2794979214668274,0.31639203429222107,-0.7538626194000244,-1.5963380336761475,-0.6709838509559631,-0.15781576931476593,-1.1060134172439575,-1.00148606300354,-0.9466990232467651,-1.395883321762085,0.5360211133956909,0.27297112345695496,-1.0707542896270752,-0.21935252845287323,-0.08336908370256424,1.4546198844909668,0.7781177163124084,1.0399150848388672,-1.123108148574829,0.1684814691543579,0.27253830432891846,-0.5289541482925415,-0.27082768082618713,0.23611390590667725,-1.6883794069290161,-0.8197882771492004,0.7258298993110657,-0.7350589036941528,-1.1994845867156982,0.07218816876411438,1.3564271926879883,1.7412563562393188,1.147363305091858,2.2845919132232666,1.7384960651397705,1.3229351043701172,1.0008137226104736,-1.2631921768188477,1.3084428310394287,-2.013503074645996,-0.6820994019508362,1.1621979475021362,1.3423569202423096,-0.8985447883605957,-1.8712166547775269,-0.22266685962677002,0.7079182863235474,-0.6572486162185669,-0.15219232439994812,-1.1884615421295166,1.5051448345184326,-0.5711706876754761,0.6456992626190186,-1.3909631967544556,1.1046786308288574,1.3767898082733154,-0.9254626035690308,-1.0321680307388306,-0.3790617883205414,1.2021057605743408,1.7671421766281128,-0.606336772441864,1.254357099533081,0.5501074194908142,-0.6757243871688843,0.28386908769607544,-0.1265072524547577,-0.8141812086105347,-1.5105154514312744,0.5260154008865356,-0.1931387484073639,-1.5160112380981445,-1.5178580284118652,-0.9960111379623413,-1.1057825088500977,-0.857227623462677,2.015134811401367,-1.1964476108551025,-1.7276197671890259,0.8561424016952515,2.023524045944214,-0.8506073951721191,2.4797167778015137,-0.022510245442390442,-1.240949273109436,-0.5034605264663696,-0.11791002750396729,0.17511045932769775,-1.1713345050811768,0.6229990720748901,1.1799942255020142,1.7090482711791992,1.5996980667114258,0.9793762564659119,0.3162510395050049,-0.05696702003479004,-0.3854824900627136,-0.12840285897254944,0.12372097373008728,-0.5163587927818298,0.602008581161499,2.587768077850342,0.893395721912384,1.2030423879623413,1.4599826335906982,-0.8953789472579956,0.6659684777259827,0.9049023389816284,-0.15402624011039734,0.02468886971473694,1.959215521812439,1.5007785558700562,-0.5491217970848083,0.6344061493873596,0.25142645835876465,0.5810132622718811,0.05480906367301941,-1.0950710773468018,0.2888185977935791,1.2536611557006836,-0.20123201608657837,-0.7467150092124939,-1.3919150829315186,-0.2168293595314026,-0.4883412718772888,-0.1716301143169403,1.608716607093811,1.6425176858901978,0.001556098461151123,0.32623642683029175,1.1784658432006836,-0.14263220131397247,0.2507423162460327,0.6187424063682556,1.436606526374817,1.27462637424469,0.6878297328948975,0.4560130536556244,-0.4775959849357605,-1.1527189016342163,-0.569370448589325,-0.08192424476146698,-0.7352241277694702,0.03503161668777466,0.27564388513565063,-0.06275027990341187,-0.7267857789993286,-0.07813829183578491 -2914,-0.47310394048690796,-2.447599411010742,-1.0987591743469238,-0.1741369664669037,-0.6468179225921631,-0.405828058719635,-0.35655903816223145,-2.0799686908721924,-0.28655147552490234,1.5768437385559082,-0.7089664936065674,0.27884554862976074,1.2528423070907593,0.38773801922798157,1.902437686920166,0.3498571813106537,-0.5808736085891724,-0.5855656266212463,-0.05537545680999756,0.23288649320602417,1.6668128967285156,-0.6505309343338013,-0.20030418038368225,0.024506792426109314,-0.7768368721008301,-1.7060494422912598,0.3955375552177429,0.4166613817214966,-0.16321110725402832,-0.5649836659431458,-0.2603208124637604,0.34527111053466797,0.1040668785572052,-0.8414273262023926,0.37969163060188293,-0.052882224321365356,-0.14579935371875763,-0.1103912740945816,-2.3493776321411133,-0.09945788979530334,2.257533073425293,0.0006459057331085205,-0.002998821437358856,-0.3084423840045929,0.8288412094116211,-0.754671037197113,-0.03122168779373169,0.3736364245414734,0.39794421195983887,-2.488466739654541,-1.4790695905685425,1.3237522840499878,-0.5696239471435547,-0.3143584728240967,0.011698560789227486,0.6679053902626038,-1.440147042274475,-1.9174644947052002,0.008507832884788513,-1.500451922416687,1.0478224754333496,-2.067498207092285,-0.3106476664543152,0.10018694400787354,-0.6008437275886536,1.0028493404388428,1.1062099933624268,0.19978024065494537,0.2722725570201874,-1.0278557538986206,0.27005535364151,0.3931884169578552,0.30444151163101196,-0.3710091710090637,-1.8139368295669556,-0.11086952686309814,0.8374150395393372,0.7399026155471802,-0.28986382484436035,-0.7851266264915466,-1.0425605773925781,-1.5237255096435547,0.9263054728507996,0.9888831377029419,-0.9083511233329773,0.3746204376220703,-0.23302564024925232,-0.6613863110542297,0.7402627468109131,0.11557993292808533,1.113685965538025,0.5834609866142273,1.1149638891220093,-0.12335342168807983,1.962238073348999,-1.2826052904129028,1.293192744255066,-0.4064042866230011,0.18929873406887054,0.3909411132335663,0.0039063990116119385,0.31639203429222107,-0.7538626194000244,-1.5963380336761475,-0.6709838509559631,0.08724556863307953,-1.7166286706924438,-0.47560369968414307,-0.8475915789604187,-1.395883321762085,0.5360211133956909,0.5820380449295044,-1.676044225692749,0.8716468214988708,-0.08336908370256424,1.9687740802764893,0.7781177163124084,1.0399150848388672,-1.123108148574829,0.1684814691543579,0.27253830432891846,-0.5289541482925415,-0.27082768082618713,0.23611390590667725,-1.6883794069290161,-0.8197882771492004,0.3956908583641052,-0.7350589036941528,-1.1994845867156982,0.07218816876411438,1.3564271926879883,1.4117333889007568,1.6317483186721802,2.2845919132232666,1.7384960651397705,1.0333960056304932,0.6696322560310364,-1.2631921768188477,1.3084428310394287,-2.013503074645996,0.7035892605781555,1.4827959537506104,1.3423569202423096,-0.8985447883605957,-1.8712166547775269,-0.22266685962677002,0.7079182863235474,-0.3210901916027069,0.13054931163787842,-0.6584194898605347,1.5051448345184326,-0.5711706876754761,0.6456992626190186,-1.3909631967544556,1.1046786308288574,1.3767898082733154,-1.2311310768127441,0.16494035720825195,-0.3790617883205414,1.5578323602676392,1.7671421766281128,-0.606336772441864,1.254357099533081,0.5501074194908142,-0.8774674534797668,0.28386908769607544,-0.1265072524547577,-1.0456438064575195,-1.121220350265503,0.1872008740901947,-0.1931387484073639,-2.4227747917175293,-1.2399603128433228,-1.219836950302124,-1.1057825088500977,-0.857227623462677,2.015134811401367,-1.1964476108551025,-1.7276197671890259,0.7421044111251831,2.023524045944214,-0.8506073951721191,2.4797167778015137,0.07850037515163422,-1.240949273109436,-0.5034605264663696,-0.11791002750396729,0.4797130823135376,-1.1713345050811768,0.8456134796142578,1.0880722999572754,0.9889305830001831,1.5996980667114258,0.9290868043899536,0.3348309397697449,-0.05696702003479004,-0.3854824900627136,-0.12840285897254944,0.5907875299453735,-0.5163587927818298,0.15671032667160034,2.587768077850342,0.893395721912384,0.9966750741004944,1.4599826335906982,-0.8953789472579956,0.6659684777259827,0.37298160791397095,-0.16350898146629333,0.35291293263435364,1.959215521812439,1.5007785558700562,-0.5491217970848083,0.6344061493873596,0.33327406644821167,0.5810132622718811,0.05480906367301941,-1.318946123123169,-0.006884545087814331,1.3364921808242798,-0.20123201608657837,-0.7467150092124939,-1.8145979642868042,-0.2168293595314026,0.09297990798950195,-0.1716301143169403,1.608716607093811,1.6425176858901978,-0.09713258594274521,0.4838811755180359,1.1784658432006836,-0.14263220131397247,0.2507423162460327,0.99274742603302,1.436606526374817,1.27462637424469,0.6878297328948975,0.4560130536556244,-0.9165176153182983,-1.1527189016342163,0.5403416752815247,-0.08192424476146698,-0.649854838848114,0.03503161668777466,0.27564388513565063,0.2303670346736908,-0.7267857789993286,0.030942589044570923 -2915,-0.47310394048690796,-2.447599411010742,-1.5736750364303589,-0.1741369664669037,-0.4238063097000122,-0.405828058719635,-0.35655903816223145,-1.7304264307022095,0.42856448888778687,1.280466914176941,-0.7089664936065674,0.27884554862976074,1.2528423070907593,0.38773801922798157,1.7398273944854736,0.3498571813106537,-0.5808736085891724,-0.5855656266212463,-0.05537545680999756,0.23288649320602417,1.0892860889434814,-0.9529308676719666,-0.20030418038368225,0.024506792426109314,-0.7768368721008301,-1.7060494422912598,0.3955375552177429,0.4166613817214966,-0.43422508239746094,-0.5649836659431458,-0.010118484497070312,0.37278857827186584,0.1040668785572052,-0.8414273262023926,0.7365555763244629,-0.052882224321365356,0.0434093177318573,0.4694846272468567,-2.3493776321411133,-0.09945788979530334,2.8900396823883057,0.0006459057331085205,-0.002998821437358856,-0.3084423840045929,0.7371551990509033,-0.3538885712623596,-0.042798709124326706,0.3736364245414734,0.39794421195983887,-2.488466739654541,-1.4790695905685425,1.3237522840499878,-0.5696239471435547,0.15172222256660461,0.011698560789227486,0.6679053902626038,-1.440147042274475,-1.4249783754348755,0.008507832884788513,-1.500451922416687,1.0600954294204712,-2.067498207092285,-0.3106476664543152,0.20585916936397552,-0.6008437275886536,1.0746304988861084,1.1062099933624268,0.19978024065494537,0.4114423394203186,-1.0278557538986206,0.27005535364151,0.3931884169578552,0.30444151163101196,-0.3710091710090637,-1.842284917831421,-0.11086952686309814,0.32624679803848267,0.7399026155471802,-0.25130197405815125,-0.7851266264915466,-1.0425605773925781,-1.5237255096435547,0.9263054728507996,0.9888831377029419,-0.788287341594696,0.3746204376220703,-0.23302564024925232,-0.6165587306022644,0.7402627468109131,0.11557993292808533,1.113685965538025,0.5834609866142273,0.8988742828369141,-0.12335342168807983,1.962238073348999,-1.2826052904129028,1.293192744255066,-0.4064042866230011,0.18929873406887054,0.3909411132335663,0.0039063990116119385,0.31639203429222107,-0.7538626194000244,-1.5963380336761475,-0.6709838509559631,-0.47012484073638916,-2.2331418991088867,-0.47560369968414307,-0.6126502156257629,-1.395883321762085,0.5360211133956909,0.5820380449295044,-1.7774261236190796,0.8716468214988708,-0.08336908370256424,1.5038189888000488,0.8504223227500916,1.0399150848388672,-1.123108148574829,0.3608459234237671,0.27253830432891846,-0.5289541482925415,-0.27082768082618713,0.5446287393569946,-1.6883794069290161,-0.8197882771492004,0.3956908583641052,-0.5050122737884521,-1.1994845867156982,-0.2373117208480835,1.3564271926879883,1.4117333889007568,1.6317483186721802,2.2845919132232666,1.7384960651397705,1.0333960056304932,-0.6620169281959534,-1.2631921768188477,0.8113898634910583,-1.8765777349472046,-0.32880324125289917,1.4827959537506104,1.3423569202423096,-0.596853494644165,-1.8712166547775269,0.36309200525283813,0.7079182863235474,-0.3210901916027069,-0.2933800220489502,-0.6584194898605347,1.5051448345184326,-0.5711706876754761,0.6456992626190186,-1.853756308555603,0.8801189064979553,1.2675031423568726,-1.6404355764389038,-1.0134882926940918,-0.3790617883205414,1.5578323602676392,1.5598689317703247,-0.606336772441864,0.9642791152000427,0.5501074194908142,-0.895732581615448,0.10798798501491547,-0.1265072524547577,-1.0456438064575195,-1.121220350265503,0.1872008740901947,0.2103573977947235,-2.4227747917175293,-0.9029121398925781,-1.219836950302124,-1.1057825088500977,-1.0858407020568848,2.015134811401367,-1.1964476108551025,-1.7276197671890259,0.7421044111251831,1.841884970664978,-0.4055235981941223,2.4797167778015137,0.07850037515163422,-1.240949273109436,-1.2692770957946777,-0.11791002750396729,0.2926061153411865,-1.1713345050811768,0.8456134796142578,1.0880722999572754,0.9889305830001831,1.5996980667114258,0.9290868043899536,0.3348309397697449,-0.05696702003479004,0.1260332465171814,-0.4932830035686493,0.4254660904407501,-0.5163587927818298,0.15671032667160034,2.587768077850342,0.7148559093475342,0.9966750741004944,1.4599826335906982,-0.8953789472579956,0.6659684777259827,0.04910507798194885,-0.16350898146629333,0.35291293263435364,1.959215521812439,1.5007785558700562,-0.5491217970848083,0.6344061493873596,0.33327406644821167,0.24456214904785156,-0.03997776657342911,-1.318946123123169,-0.006884545087814331,1.3364921808242798,0.13713139295578003,-0.02113962173461914,-1.8145979642868042,-0.2168293595314026,-0.32951393723487854,-0.1716301143169403,1.608716607093811,1.6425176858901978,0.5272618532180786,0.4838811755180359,0.3664964437484741,-0.26398932933807373,0.2507423162460327,0.99274742603302,1.436606526374817,1.142262578010559,0.6878297328948975,0.4560130536556244,-0.9165176153182983,-1.1527189016342163,0.5403416752815247,-0.20034024119377136,-0.649854838848114,0.03503161668777466,0.27564388513565063,0.5968120694160461,-0.7267857789993286,0.030942589044570923 -2916,-0.3152947425842285,-2.3781847953796387,-1.5736750364303589,-0.1741369664669037,-0.4238063097000122,-0.3949630558490753,-0.35655903816223145,-1.7304264307022095,0.42856448888778687,1.3110569715499878,-0.7089664936065674,0.27884554862976074,1.2528423070907593,-0.6206755638122559,1.7398273944854736,0.3498571813106537,0.20454704761505127,-0.5855656266212463,-0.05537545680999756,0.23288649320602417,1.8550957441329956,-0.9529308676719666,-0.20030418038368225,0.2826712131500244,-0.7768368721008301,-1.7060494422912598,-0.15133392810821533,0.4166613817214966,-0.43422508239746094,-0.5649836659431458,0.012128865346312523,0.37278857827186584,0.1040668785572052,-0.8414273262023926,0.7365555763244629,-0.052882224321365356,0.0434093177318573,0.4694846272468567,-2.3493776321411133,0.1964963972568512,2.420850992202759,0.0006459057331085205,-0.002998821437358856,-0.3084423840045929,0.7371551990509033,-0.5114304423332214,-0.042798709124326706,0.4649248421192169,0.39794421195983887,-1.7204020023345947,-1.4790695905685425,1.4818127155303955,-0.5696239471435547,0.15172222256660461,0.011698560789227486,0.5041068196296692,-1.440147042274475,-1.5534698963165283,0.008507832884788513,-1.1219024658203125,1.0600954294204712,-2.066574811935425,0.0673089325428009,0.20585916936397552,-0.6008437275886536,1.0746304988861084,1.1062099933624268,0.19978024065494537,0.4114423394203186,-1.0278557538986206,0.285395085811615,0.3931884169578552,0.30444151163101196,-0.32110434770584106,-1.7549031972885132,-0.11086952686309814,0.32624679803848267,1.02582848072052,-0.25130197405815125,-0.7851266264915466,-0.7758402228355408,-1.723850131034851,0.9263054728507996,0.9888831377029419,-0.6548831462860107,0.3746204376220703,-0.23302564024925232,-0.38167285919189453,0.7402627468109131,-0.6853909492492676,1.113685965538025,-0.14255791902542114,0.8988742828369141,-0.12335342168807983,2.323347330093384,-1.2826052904129028,0.6656481623649597,-0.4064042866230011,0.18929873406887054,-0.2290177047252655,0.0039063990116119385,0.31639203429222107,-0.7538626194000244,-1.5963380336761475,-0.6709838509559631,-0.47012484073638916,-1.6544249057769775,-0.47560369968414307,-0.6126502156257629,-1.395883321762085,0.5360211133956909,0.1793973445892334,-1.7774261236190796,0.8716468214988708,-0.08336908370256424,1.5038189888000488,-0.09279817342758179,1.0399150848388672,-0.4568489193916321,0.3608459234237671,0.27253830432891846,-0.5289541482925415,-0.27082768082618713,0.6191566586494446,-1.0588929653167725,-0.8197882771492004,0.42844703793525696,-0.5050122737884521,-1.1994845867156982,-0.2373117208480835,1.3564271926879883,1.4117333889007568,1.062559723854065,2.2845919132232666,1.7384960651397705,1.0333960056304932,-0.6620169281959534,-1.2631921768188477,0.8113898634910583,-1.8765777349472046,-0.32880324125289917,1.4827959537506104,1.411195993423462,-1.3403706550598145,-1.8712166547775269,0.36309200525283813,0.7079182863235474,-0.3210901916027069,-0.2933800220489502,-0.6584194898605347,1.5051448345184326,-0.5711706876754761,0.6456992626190186,-1.3358535766601562,0.8801189064979553,1.2625597715377808,-1.403975248336792,-1.0134882926940918,0.21310338377952576,1.5578323602676392,1.5598689317703247,0.031923890113830566,0.9642791152000427,0.5501074194908142,-0.895732581615448,0.10798798501491547,-0.1265072524547577,-1.4257848262786865,-1.121220350265503,0.1872008740901947,0.2103573977947235,-2.2540507316589355,-0.9029121398925781,-0.8922398090362549,-1.1057825088500977,-1.0858407020568848,2.0376341342926025,-1.1964476108551025,-1.7276197671890259,0.7421044111251831,1.841884970664978,0.10075676441192627,2.7170474529266357,0.07850037515163422,-1.240949273109436,-1.2692770957946777,-0.11791002750396729,-0.053758442401885986,-1.1713345050811768,0.5636653900146484,1.0880722999572754,0.9889305830001831,1.5996980667114258,0.8297180533409119,0.3348309397697449,-0.05696702003479004,-0.3479638993740082,-0.4932830035686493,0.3622928261756897,-1.0595848560333252,0.15671032667160034,2.587768077850342,-0.28649675846099854,0.6588047742843628,1.4599826335906982,-0.8953789472579956,0.013660788536071777,0.04910507798194885,-0.16350898146629333,0.7159731388092041,1.959215521812439,1.8152945041656494,-0.13892307877540588,0.6344061493873596,0.33327406644821167,0.24456214904785156,0.5037305951118469,-1.4099050760269165,-0.006884545087814331,1.3364921808242798,0.13713139295578003,-0.02113962173461914,-1.1258411407470703,-0.2825455069541931,-0.32951393723487854,0.7445043325424194,1.2956128120422363,1.6425176858901978,0.5272618532180786,0.4838811755180359,0.5785843133926392,0.015467464923858643,0.2507423162460327,0.20606344938278198,0.7223086357116699,1.142262578010559,0.9396293759346008,0.4560130536556244,-0.9165176153182983,-1.1527189016342163,0.7321804761886597,-0.20034024119377136,0.3036494851112366,-0.10725902020931244,0.27564388513565063,0.5968120694160461,-0.7267857789993286,0.030942589044570923 -2917,-0.3152947425842285,-2.3781847953796387,-1.5736750364303589,-0.1741369664669037,-1.3007359504699707,-0.3949630558490753,-0.35655903816223145,-1.8694980144500732,0.42856448888778687,1.2960535287857056,-1.4506889581680298,0.27884554862976074,1.4293627738952637,-0.6206755638122559,1.2974188327789307,0.08753865957260132,0.20454704761505127,-0.3015739321708679,-0.7176820635795593,0.23288649320602417,1.32273530960083,-0.9529308676719666,-0.20030418038368225,0.4650598168373108,-0.7768368721008301,-1.5748839378356934,-0.15133392810821533,0.5555505752563477,-0.43422508239746094,-0.5649836659431458,0.012128865346312523,0.37278857827186584,0.1040668785572052,-0.8414273262023926,0.8376815915107727,-0.052882224321365356,0.0434093177318573,0.4694846272468567,-2.3493776321411133,0.3775663375854492,2.420850992202759,0.0006459057331085205,-0.002998821437358856,-0.3084423840045929,0.7371551990509033,-0.5114304423332214,-0.042798709124326706,0.4649248421192169,0.39794421195983887,-1.7204020023345947,-1.4790695905685425,1.4818127155303955,-0.5696239471435547,-0.11058196425437927,-0.19958817958831787,0.5041068196296692,-1.440147042274475,-1.5534698963165283,0.008507832884788513,-1.0019865036010742,1.0600954294204712,-2.066574811935425,0.0673089325428009,0.20585916936397552,-0.6008437275886536,1.0746304988861084,1.1062099933624268,0.5623227953910828,0.4114423394203186,-1.0278557538986206,0.37591928243637085,0.9092903733253479,0.5520790815353394,-0.32110434770584106,-1.7549031972885132,-0.11086952686309814,0.32624679803848267,1.02582848072052,-0.25130197405815125,-0.7851266264915466,-0.9385634064674377,-1.777073860168457,0.49838656187057495,0.9888831377029419,-0.6548831462860107,0.3746204376220703,1.2392292022705078,-0.12821638584136963,0.6421301364898682,-0.6853909492492676,1.113685965538025,-0.14255791902542114,1.134625792503357,-0.12335342168807983,2.323347330093384,-0.6506466269493103,0.6656481623649597,-0.4064042866230011,0.18929873406887054,-0.2290177047252655,0.0039063990116119385,0.31639203429222107,-0.7538626194000244,-1.5963380336761475,-0.6709838509559631,-0.6256437301635742,-1.6544249057769775,-0.47560369968414307,-0.6126502156257629,-1.395883321762085,0.5360211133956909,0.07757717370986938,-0.8712476491928101,0.8716468214988708,-0.42579004168510437,1.5889264345169067,-0.09279817342758179,1.0399150848388672,-0.9074400067329407,0.3608459234237671,0.27253830432891846,-0.5289541482925415,-0.27082768082618713,0.6191566586494446,-1.0588929653167725,-0.8197882771492004,0.1964600384235382,-0.5050122737884521,-1.1994845867156982,-0.2373117208480835,1.3564271926879883,1.4117333889007568,1.062559723854065,2.2845919132232666,1.1729568243026733,1.0333960056304932,-0.5030089616775513,-1.2631921768188477,-0.529427707195282,-1.8765777349472046,-0.32880324125289917,1.4827959537506104,1.1366044282913208,-1.3403706550598145,-0.6557694673538208,0.36680352687835693,0.7079182863235474,-0.3210901916027069,-0.2933800220489502,-0.6584194898605347,1.2815848588943481,-0.20693013072013855,0.6456992626190186,-1.2228940725326538,0.9710453152656555,1.7267298698425293,-1.3160455226898193,-1.0134882926940918,0.21310338377952576,1.3743079900741577,1.5598689317703247,0.3570929765701294,0.9642791152000427,0.5501074194908142,-0.895732581615448,0.3753620982170105,-0.1265072524547577,-1.4257848262786865,-1.121220350265503,0.22300665080547333,0.2103573977947235,-2.585325241088867,-0.9029121398925781,-0.766090989112854,-1.1057825088500977,-1.0858407020568848,2.0376341342926025,-1.1964476108551025,-1.7276197671890259,0.7421044111251831,1.841884970664978,-0.4865038990974426,2.7170474529266357,0.030829325318336487,-1.240949273109436,-1.2692770957946777,-0.11791002750396729,-0.589934766292572,-1.1713345050811768,0.5636653900146484,1.0880722999572754,1.857682228088379,1.5996980667114258,0.6741494536399841,0.3348309397697449,-0.05696702003479004,-0.3479638993740082,-0.4932830035686493,-0.38380593061447144,-1.0595848560333252,0.15671032667160034,2.587768077850342,-0.28649675846099854,0.6588047742843628,1.4599826335906982,-0.8953789472579956,0.40742260217666626,0.04910507798194885,-0.16350898146629333,-0.10869622230529785,1.959215521812439,1.8152945041656494,-0.39607760310173035,0.6344061493873596,-0.49249887466430664,0.24456214904785156,0.5037305951118469,-1.4099050760269165,-0.006884545087814331,1.3364921808242798,0.13713139295578003,-0.02113962173461914,-1.1258411407470703,-0.4212881922721863,-0.9732619524002075,0.7445043325424194,1.0761427879333496,1.6425176858901978,0.5272618532180786,0.4838811755180359,0.7007263898849487,-0.046437982469797134,0.3342519998550415,0.46485579013824463,0.7223086357116699,1.142262578010559,0.9396293759346008,0.4560130536556244,-0.9165176153182983,-1.1527189016342163,0.7321804761886597,-0.20034024119377136,0.06553082168102264,-0.10725902020931244,0.27564388513565063,0.5968120694160461,-0.7267857789993286,0.030942589044570923 -2918,-0.5441401600837708,-2.727848768234253,-1.5736750364303589,-0.1741369664669037,-1.3007359504699707,-0.3692830502986908,-0.35655903816223145,-1.8694980144500732,0.42856448888778687,1.2960535287857056,-1.3944435119628906,0.27884554862976074,1.4293627738952637,-0.6206755638122559,1.2974188327789307,0.08753865957260132,0.20454704761505127,-0.6333117485046387,-0.6482179760932922,0.23288649320602417,1.32273530960083,-1.1051301956176758,-0.20030418038368225,0.678612470626831,-1.1646767854690552,-1.5748839378356934,-0.15133392810821533,0.5555505752563477,-0.43422508239746094,-0.5649836659431458,0.012128865346312523,0.37278857827186584,0.6017788648605347,-0.8414273262023926,0.8376815915107727,0.4072589576244354,0.0434093177318573,0.4694846272468567,-2.309321165084839,0.3775663375854492,2.420850992202759,0.0006459057331085205,-0.11167503893375397,-0.3084423840045929,0.7371551990509033,-0.5114304423332214,-0.042798709124326706,0.4649248421192169,0.39794421195983887,-1.7204020023345947,-1.4790695905685425,1.1424190998077393,-1.0867366790771484,-0.11058196425437927,-0.19958817958831787,0.5041068196296692,-1.440147042274475,-1.5534698963165283,0.008507832884788513,-1.001241683959961,1.0600954294204712,-2.066574811935425,0.10700234770774841,0.34715449810028076,-0.6008437275886536,1.0746304988861084,0.8087949156761169,0.5623227953910828,0.4114423394203186,-0.13347113132476807,0.37591928243637085,0.5277256965637207,0.5520790815353394,-0.32110434770584106,-1.7549031972885132,-0.11086952686309814,0.32624679803848267,0.7133748531341553,-0.25130197405815125,-0.7851266264915466,-0.9385634064674377,-1.777073860168457,0.45570605993270874,0.9888831377029419,-0.6548831462860107,0.3746204376220703,1.2392292022705078,-0.12821638584136963,0.6421301364898682,-0.6853909492492676,1.113685965538025,0.3944966197013855,1.134625792503357,-0.12335342168807983,2.008507013320923,-0.6506466269493103,0.6656481623649597,-0.4064042866230011,0.18929873406887054,-0.2290177047252655,0.0039063990116119385,0.31639203429222107,-0.7538626194000244,-1.5963380336761475,-0.6709838509559631,-0.5118309259414673,-1.868852138519287,-0.571000874042511,-0.6126502156257629,-1.395883321762085,0.7916275262832642,0.07757717370986938,-0.8712476491928101,0.8716468214988708,-0.32467344403266907,1.5889264345169067,-0.09279817342758179,1.0399150848388672,-1.0370732545852661,0.7919883728027344,0.27253830432891846,-0.5289541482925415,-0.27082768082618713,0.6191566586494446,-1.0588929653167725,-0.8197882771492004,-0.8054767847061157,-0.5050122737884521,-1.1994845867156982,-0.2013809233903885,1.3564271926879883,1.4117333889007568,1.062559723854065,2.2845919132232666,1.0074588060379028,1.0333960056304932,-0.5030089616775513,-0.25307321548461914,-0.529427707195282,-1.8765777349472046,-0.32880324125289917,1.4827959537506104,0.7016857862472534,-0.7846941351890564,-0.5493665933609009,0.36680352687835693,0.7079182863235474,-0.3210901916027069,-0.2933800220489502,-0.6584194898605347,1.2815848588943481,-0.20693013072013855,0.7040634751319885,-1.2228940725326538,0.9710453152656555,1.7267298698425293,-1.0329225063323975,-1.0134882926940918,0.21310338377952576,1.3743079900741577,1.5598689317703247,0.3570929765701294,0.32176458835601807,0.5501074194908142,-0.895732581615448,-0.8273699879646301,-0.1265072524547577,-0.9599811434745789,-1.2347899675369263,0.22300665080547333,0.2103573977947235,-2.585325241088867,-0.9029121398925781,-0.3434883952140808,-1.1057825088500977,-1.354246973991394,2.0376341342926025,-1.2697597742080688,-1.7513095140457153,0.7421044111251831,1.9170118570327759,-0.9950163960456848,2.2851719856262207,0.030829325318336487,0.3202493190765381,-1.2692770957946777,-0.11791002750396729,-0.589934766292572,-1.1713345050811768,0.5636653900146484,1.0880722999572754,1.857682228088379,1.5996980667114258,0.6741494536399841,0.3348309397697449,-0.05696702003479004,-0.3479638993740082,-0.4847780168056488,-0.38380593061447144,-1.0595848560333252,-0.9028903841972351,2.530632972717285,-0.28649675846099854,0.6588047742843628,1.4599826335906982,-0.8953789472579956,0.40742260217666626,0.04910507798194885,-0.15031114220619202,-0.19436997175216675,1.959215521812439,1.8152945041656494,-0.8642011284828186,0.6344061493873596,-0.49249887466430664,0.24456214904785156,-0.001452624797821045,-1.4099050760269165,0.17787034809589386,1.3364921808242798,0.23151668906211853,-0.02113962173461914,-1.1258411407470703,-0.4212881922721863,0.004361093044281006,0.7445043325424194,1.0761427879333496,1.6425176858901978,0.5272618532180786,1.1348786354064941,0.7007263898849487,-0.046437982469797134,-0.8521432876586914,0.24997714161872864,0.6555047035217285,1.142262578010559,1.196700096130371,0.4560130536556244,-0.9165176153182983,-1.447350263595581,0.7321804761886597,-0.20034024119377136,0.4487352967262268,-0.10725902020931244,0.27564388513565063,0.5968120694160461,-0.7267857789993286,0.030942589044570923 -2919,-0.39293989539146423,-2.727848768234253,-1.5736750364303589,-0.6476814150810242,-1.3007359504699707,-0.3692830502986908,-0.35655903816223145,-1.8694980144500732,0.42856448888778687,1.2960535287857056,-1.3944435119628906,0.27884554862976074,1.4293627738952637,-0.6206755638122559,0.9783449172973633,0.08753865957260132,0.20454704761505127,-0.6333117485046387,-0.6482179760932922,0.23288649320602417,1.32273530960083,-1.1051301956176758,-0.8233354091644287,0.6077460050582886,-0.20888102054595947,-1.5748839378356934,-0.15133392810821533,0.3329930007457733,-0.43422508239746094,-0.5649836659431458,0.012128865346312523,0.37278857827186584,0.6017788648605347,-0.8414273262023926,0.8376815915107727,0.2660523056983948,0.0434093177318573,0.006947129964828491,-2.309321165084839,0.3775663375854492,2.420850992202759,-0.2996358275413513,-0.11167503893375397,-0.3084423840045929,0.8580695390701294,-0.37261080741882324,-0.042798709124326706,1.0301806926727295,0.39794421195983887,-1.7204020023345947,-0.9208268523216248,1.1424190998077393,-1.0867366790771484,0.1578693687915802,-0.391737163066864,0.5041068196296692,-1.440147042274475,-1.5534698963165283,-0.3603364825248718,-1.001241683959961,1.0600954294204712,-2.066574811935425,0.10700234770774841,0.34715449810028076,-0.6008437275886536,1.0746304988861084,0.8087949156761169,0.5623227953910828,0.4505847096443176,-0.13347113132476807,0.37591928243637085,1.0367038249969482,0.5520790815353394,-0.5220550894737244,-1.7549031972885132,-0.44351935386657715,0.32624679803848267,0.7133748531341553,-0.25130197405815125,-0.7851266264915466,-0.7295781373977661,-1.777073860168457,1.1948801279067993,0.9888831377029419,-0.2213115096092224,0.3746204376220703,1.2392292022705078,-0.7629479169845581,0.6421301364898682,-0.6853909492492676,1.113685965538025,0.5457116365432739,1.134625792503357,-0.12335342168807983,2.2172398567199707,-0.6506466269493103,0.6656481623649597,-0.7676011323928833,0.18929873406887054,0.22502830624580383,0.11885999143123627,0.31639203429222107,-0.7538626194000244,-1.5963380336761475,-0.6709838509559631,-0.5118309259414673,-1.868852138519287,-0.571000874042511,-0.6126502156257629,-1.395883321762085,1.1097652912139893,0.07757717370986938,-0.8712476491928101,0.8716468214988708,-0.32467344403266907,1.5889264345169067,0.11180746555328369,1.0399150848388672,-1.0370732545852661,0.21263408660888672,0.27253830432891846,-0.5289541482925415,-0.2010684609413147,0.6191566586494446,-1.0588929653167725,-0.8197882771492004,-0.8054767847061157,-0.5050122737884521,-1.1994845867156982,-0.2013809233903885,1.3564271926879883,1.4117333889007568,1.062559723854065,2.2845919132232666,1.0074588060379028,1.0333960056304932,-0.5030089616775513,-0.25307321548461914,-0.529427707195282,-2.1925437450408936,-0.32880324125289917,1.4827959537506104,0.7016857862472534,-0.7846941351890564,-0.5493665933609009,-1.2683985233306885,0.7079182863235474,-0.3210901916027069,-0.3011553883552551,-0.6584194898605347,1.2815848588943481,-0.20693013072013855,0.7040634751319885,-1.2228940725326538,0.9710453152656555,1.7267298698425293,-1.0329225063323975,-1.0134882926940918,0.21310338377952576,1.3743079900741577,1.28548002243042,0.01973879337310791,0.32176458835601807,0.5501074194908142,-0.895732581615448,-0.8273699879646301,-0.1265072524547577,-2.073668956756592,-1.2347899675369263,0.22300665080547333,0.2103573977947235,-2.7897520065307617,-0.9029121398925781,-0.3434883952140808,-1.1057825088500977,-0.8845521807670593,2.0376341342926025,-1.2697597742080688,-1.9652665853500366,0.7421044111251831,1.83672034740448,-0.9950163960456848,2.2851719856262207,0.030829325318336487,0.3202493190765381,-0.5073412656784058,-0.11791002750396729,-0.589934766292572,-0.8803907632827759,0.5636653900146484,1.0880722999572754,1.857682228088379,1.5996980667114258,0.6741494536399841,0.3348309397697449,-0.05696702003479004,-0.4714476466178894,-0.4847780168056488,-0.38380593061447144,-1.0595848560333252,-0.9028903841972351,2.530632972717285,-0.28649675846099854,0.6588047742843628,1.4599826335906982,-0.5178278684616089,0.40742260217666626,0.04910507798194885,-0.15031114220619202,-0.19436997175216675,1.9771385192871094,1.2124524116516113,-0.8642011284828186,0.6344061493873596,-0.1672799289226532,-0.19208446145057678,-0.001452624797821045,-1.4099050760269165,0.17787034809589386,1.3364921808242798,-0.3628436028957367,-0.02113962173461914,-1.1258411407470703,0.00067177414894104,0.004361093044281006,0.4283652901649475,1.0761427879333496,1.6425176858901978,0.47268009185791016,1.1348786354064941,0.7007263898849487,-0.046437982469797134,-0.8521432876586914,0.4122249484062195,0.6555047035217285,1.142262578010559,1.196700096130371,0.4560130536556244,-0.9165176153182983,-1.447350263595581,0.7321804761886597,-0.20034024119377136,0.4487352967262268,-0.10725902020931244,0.2737550735473633,0.5968120694160461,-0.8488878011703491,-0.1729336827993393 -2920,-0.39293989539146423,-2.727848768234253,-1.5736750364303589,-0.8191322684288025,-1.3007359504699707,-0.3692830502986908,-0.02998495101928711,-1.8694980144500732,0.42856448888778687,1.2960535287857056,-1.3944435119628906,-0.44732820987701416,1.3434970378875732,-0.6206755638122559,0.9783449172973633,0.08753865957260132,0.20454704761505127,-0.6333117485046387,-0.6482179760932922,0.14442285895347595,1.4638381004333496,-1.216781497001648,-0.8233354091644287,0.25106966495513916,-0.20888102054595947,-1.2872673273086548,-0.15133392810821533,0.46332305669784546,-0.43422508239746094,-0.5649836659431458,0.012128865346312523,0.37278857827186584,0.6017788648605347,-0.8414273262023926,0.8376815915107727,0.2660523056983948,0.0434093177318573,0.10745251923799515,-1.0594699382781982,0.14987380802631378,2.420850992202759,-0.11765354871749878,-0.11167503893375397,-0.4844350814819336,0.8580695390701294,-0.37261080741882324,-0.042798709124326706,1.049218773841858,0.39794421195983887,-1.7204020023345947,-0.9208268523216248,1.1368120908737183,-1.0867366790771484,0.1578693687915802,-0.391737163066864,1.3096187114715576,-1.2386165857315063,-0.8116222620010376,-0.5492624044418335,-1.5495846271514893,1.0600954294204712,-2.32351016998291,0.10700234770774841,0.34715449810028076,-0.939213752746582,1.0746304988861084,0.8087949156761169,0.8162635564804077,-0.1207665205001831,-0.9453541040420532,0.37591928243637085,1.0367038249969482,0.6259554624557495,-0.5220550894737244,-1.7549031972885132,-0.44351935386657715,0.5437209010124207,0.7133748531341553,-1.085652470588684,-0.12774980068206787,-0.7048687934875488,-1.5431346893310547,1.1948801279067993,0.9725121855735779,-0.04607844352722168,0.3746204376220703,1.2392292022705078,-0.39572760462760925,0.6421301364898682,-0.6853909492492676,0.9905692338943481,0.5457116365432739,1.134625792503357,-0.12335342168807983,2.428575038909912,-0.8316876292228699,0.6656481623649597,-0.7676011323928833,0.18929873406887054,0.22502830624580383,0.11885999143123627,0.31639203429222107,-1.3545353412628174,-1.5963380336761475,-0.6709838509559631,-0.5118309259414673,-1.868852138519287,-0.7050766944885254,-0.6126502156257629,-1.395883321762085,1.9293899536132812,0.07757717370986938,-0.8712476491928101,0.8716468214988708,-0.32467344403266907,1.5889264345169067,0.12865225970745087,1.0399150848388672,-1.0370732545852661,0.4025430679321289,-0.3440815806388855,-0.5289541482925415,-0.6978021860122681,0.6191566586494446,-1.0588929653167725,-0.8197882771492004,-0.8054767847061157,-0.5050122737884521,-0.4305649399757385,-0.2013809233903885,0.48574936389923096,1.4117333889007568,1.062559723854065,2.2845919132232666,1.7298154830932617,1.1142401695251465,-0.4541771709918976,-0.25307321548461914,-0.78722083568573,-2.1925437450408936,0.15607112646102905,1.4827959537506104,0.7016857862472534,-0.7846941351890564,-0.07529279589653015,-1.2683985233306885,0.7079182863235474,-0.46933186054229736,-0.14750289916992188,-0.6584194898605347,1.2815848588943481,-0.20693013072013855,0.7040634751319885,-1.2228940725326538,1.0315362215042114,1.4048233032226562,-0.9201772212982178,-0.6032719612121582,0.5679008960723877,1.2422208786010742,1.28548002243042,0.01973879337310791,0.6569426655769348,0.5501074194908142,-0.03177446126937866,-0.8273699879646301,-0.418450266122818,-2.073668956756592,-2.0868208408355713,0.22300665080547333,0.19696247577667236,-2.7897520065307617,-0.9029121398925781,-0.3434883952140808,-1.1057825088500977,-0.8845521807670593,2.0376341342926025,-0.8781178593635559,-1.9652665853500366,0.7421044111251831,1.83672034740448,-0.9950163960456848,2.2851719856262207,0.030829325318336487,0.3202493190765381,-0.9915108680725098,0.043898940086364746,0.055978238582611084,-0.8803907632827759,-0.04675948619842529,1.6290860176086426,1.857682228088379,1.5996980667114258,0.6741494536399841,0.3348309397697449,-0.05696702003479004,-0.4714476466178894,-0.4847780168056488,-0.38380593061447144,-1.923429012298584,-0.9028903841972351,2.4499213695526123,0.04975485801696777,0.6588047742843628,1.4599826335906982,-0.5178278684616089,0.40742260217666626,0.04910507798194885,-0.15031114220619202,-0.19436997175216675,1.5513696670532227,1.732184886932373,-0.6286959648132324,0.6344061493873596,-0.1672799289226532,-0.34335359930992126,0.1736515462398529,-1.4099050760269165,-0.08464224636554718,1.5307166576385498,-0.3628436028957367,-0.02113962173461914,-1.1258411407470703,0.5117857456207275,0.004361093044281006,0.4283652901649475,1.0761427879333496,1.8843895196914673,0.47268009185791016,1.1348786354064941,0.7007263898849487,-0.6305221915245056,-0.8521432876586914,0.4122249484062195,0.6555047035217285,1.142262578010559,1.196700096130371,0.4560130536556244,-0.9165176153182983,-1.447350263595581,0.6627605557441711,-0.20034024119377136,0.4487352967262268,-0.10725902020931244,0.2737550735473633,0.5968120694160461,-0.4791119396686554,-0.1729336827993393 -2921,-0.39293989539146423,-2.727848768234253,-1.5736750364303589,-0.8191322684288025,-1.3007359504699707,-0.3692830502986908,-0.02998495101928711,-2.145604372024536,0.42856448888778687,1.6040185689926147,-1.3944435119628906,-0.44732820987701416,1.2197036743164062,-0.6206755638122559,0.9783449172973633,0.08753865957260132,0.25543108582496643,-0.44326096773147583,-0.0886845588684082,0.14442285895347595,1.647491455078125,-1.216781497001648,-0.7494108080863953,0.25106966495513916,-0.5156431794166565,-1.2872673273086548,-0.15133392810821533,0.254214346408844,-0.43422508239746094,-0.5649836659431458,0.012128865346312523,0.45487138628959656,0.6017788648605347,-0.8414273262023926,0.8376815915107727,0.2660523056983948,0.0434093177318573,0.10745251923799515,-1.0594699382781982,-0.031226694583892822,2.8896024227142334,-0.11765354871749878,-0.11167503893375397,-0.4844350814819336,0.7611355185508728,-0.37261080741882324,-0.042798709124326706,1.049218773841858,0.39794421195983887,-1.7204020023345947,-0.9208268523216248,1.1368120908737183,-1.0867366790771484,0.1578693687915802,-0.391737163066864,1.3096187114715576,-1.428481101989746,-0.8685331344604492,-0.4722037613391876,-1.2954338788986206,1.206146001815796,-2.32351016998291,0.10700234770774841,0.34715449810028076,-0.939213752746582,1.0746304988861084,0.8087949156761169,0.8162635564804077,-0.023450061678886414,-0.9453541040420532,0.41463014483451843,0.7695519924163818,0.6259554624557495,-0.5220550894737244,-1.529673457145691,-0.14624935388565063,0.5437209010124207,0.7133748531341553,-1.085652470588684,0.017045259475708008,-0.5528232455253601,-1.5431346893310547,1.1948801279067993,0.9725121855735779,-0.7265836000442505,0.7315688133239746,0.36297792196273804,-0.18776069581508636,0.6421301364898682,-0.6853909492492676,1.0673192739486694,0.5457116365432739,1.134625792503357,-0.12335342168807983,2.4385738372802734,-0.8316876292228699,1.3201569318771362,-0.6238071918487549,0.8139758706092834,0.22502830624580383,0.11885999143123627,0.31639203429222107,-1.2455205917358398,-1.4944326877593994,-0.6709838509559631,-0.5118309259414673,-1.868852138519287,-0.7050766944885254,-0.6126502156257629,-1.395883321762085,1.4303832054138184,0.07757717370986938,-0.2268892526626587,0.4387565553188324,-0.32467344403266907,1.5889264345169067,0.12865225970745087,1.0399150848388672,-1.0370732545852661,0.4025430679321289,-0.3440815806388855,-0.5289541482925415,-0.6978021860122681,0.2551026940345764,-1.4058585166931152,-0.8197882771492004,-0.8034800887107849,-0.5050122737884521,-0.9191990494728088,-0.2013809233903885,0.48574936389923096,1.5554524660110474,1.062559723854065,2.1928977966308594,1.5714441537857056,0.585310161113739,-0.28864938020706177,-0.13578671216964722,-0.78722083568573,-2.1925437450408936,0.15607112646102905,0.5359530448913574,0.7016857862472534,-0.7846941351890564,-0.07529279589653015,-1.2683985233306885,0.7079182863235474,-0.46933186054229736,-1.0826961994171143,-0.4203295409679413,1.2815848588943481,-0.20693013072013855,0.7040634751319885,-1.2228940725326538,1.0315362215042114,1.4048233032226562,-0.9201772212982178,-0.6032719612121582,0.5679008960723877,1.2422208786010742,1.28548002243042,0.3804657757282257,0.7628998756408691,0.5501074194908142,-0.9357932806015015,-0.8273699879646301,-0.418450266122818,-1.228305697441101,-2.336308240890503,0.5906021595001221,0.19696247577667236,-2.5674381256103516,-0.9029121398925781,-0.8334599733352661,-0.8209251165390015,-1.3291665315628052,2.4456048011779785,-0.8781178593635559,-1.9652665853500366,0.7421044111251831,1.83672034740448,-0.9950163960456848,2.434519052505493,0.030829325318336487,0.3202493190765381,-0.9167735576629639,0.043898940086364746,-0.3910929262638092,-0.8803907632827759,0.5312690138816833,1.6290860176086426,1.1551460027694702,0.8225415349006653,0.952817440032959,-0.09042984247207642,-0.05696702003479004,-0.4714476466178894,-0.4847780168056488,-0.38380593061447144,-1.923429012298584,-0.9028903841972351,2.4499213695526123,0.04975485801696777,1.219416618347168,1.4599826335906982,-0.6477569341659546,0.2758089303970337,0.04910507798194885,-0.15031114220619202,-0.19436997175216675,1.5513696670532227,1.732184886932373,-0.6286959648132324,0.6344061493873596,-0.1683749109506607,0.45515939593315125,0.1736515462398529,-1.4099050760269165,-0.08464224636554718,1.5307166576385498,0.13592854142189026,0.3098045587539673,-1.1258411407470703,0.5117857456207275,0.004361093044281006,0.4283652901649475,1.0761427879333496,1.8843895196914673,0.47268009185791016,1.1348786354064941,0.9177005887031555,-0.5764227509498596,-0.8521432876586914,0.4122249484062195,0.6555047035217285,1.142262578010559,1.196700096130371,0.4560130536556244,-0.9165176153182983,-1.447350263595581,0.6627605557441711,-0.41134440898895264,-0.2753870487213135,-0.16217929124832153,0.2737550735473633,0.5968120694160461,-0.4791119396686554,-0.8799782395362854 -2922,-0.30447864532470703,-2.727848768234253,-1.5736750364303589,-0.8191322684288025,-1.5598886013031006,-0.19112443923950195,-0.1197371780872345,-2.145604372024536,0.3673318922519684,0.9970051050186157,-1.3944435119628906,0.1306740641593933,1.3456579446792603,-0.6206755638122559,1.5942795276641846,0.0653274655342102,0.25543108582496643,-0.44326096773147583,-0.0886845588684082,0.14442285895347595,1.4878536462783813,-1.2868577241897583,-0.7494108080863953,0.25106966495513916,-0.22459331154823303,-0.9538081884384155,-0.15133392810821533,0.254214346408844,-0.4832099676132202,-0.6311070919036865,0.012128865346312523,0.44976621866226196,0.6017788648605347,-1.1010938882827759,0.4200136065483093,0.2660523056983948,0.2582271993160248,0.10745251923799515,-1.0594699382781982,-0.2757330536842346,2.8896024227142334,-0.11765354871749878,-0.11167503893375397,-0.4844350814819336,0.7611355185508728,-0.37261080741882324,-0.042798709124326706,1.049218773841858,0.42379507422447205,-1.7204020023345947,-0.9208268523216248,1.1368120908737183,-1.0867366790771484,0.1578693687915802,-0.391737163066864,0.6146271228790283,-0.8902194499969482,-1.17264986038208,-0.4722037613391876,-1.2954338788986206,1.4195280075073242,-2.32351016998291,0.10700234770774841,0.34715449810028076,-0.939213752746582,1.0066556930541992,0.6521700620651245,0.8162635564804077,-0.031511858105659485,-0.9453541040420532,0.41463014483451843,0.7695519924163818,0.6259554624557495,-0.5220550894737244,-1.529673457145691,-0.14624935388565063,0.28458231687545776,1.0006780624389648,-1.007854700088501,0.017045259475708008,-0.5528232455253601,-1.5431346893310547,1.1948801279067993,0.9725121855735779,-0.7265836000442505,0.8006011843681335,0.6306842565536499,-0.18776069581508636,0.5400674343109131,-0.6853909492492676,1.0673192739486694,0.9917668700218201,1.134625792503357,-0.12335342168807983,2.4385738372802734,-0.8316876292228699,1.3201569318771362,-0.6238071918487549,0.8139758706092834,0.47970274090766907,0.11885999143123627,0.31639203429222107,-0.7621387243270874,-1.4944326877593994,-0.6709838509559631,-0.5118309259414673,-1.0339890718460083,0.050743699073791504,-0.6126502156257629,-1.395883321762085,1.30269455909729,0.07757717370986938,-0.2268892526626587,0.4387565553188324,-0.32467344403266907,2.0674946308135986,0.12865225970745087,1.0399150848388672,-1.0370732545852661,-0.292926549911499,-0.3440815806388855,-0.5289541482925415,-0.2017790675163269,0.2551026940345764,-1.4058585166931152,-0.8197882771492004,-1.0811941623687744,-0.5050122737884521,-0.9191990494728088,-0.2013809233903885,0.48574936389923096,1.5554524660110474,1.062559723854065,2.1928977966308594,1.5714441537857056,0.585310161113739,-0.28864938020706177,-1.1649439334869385,-0.78722083568573,-2.598982810974121,0.15607112646102905,0.5359530448913574,0.7016857862472534,-0.7846941351890564,-0.07529279589653015,-1.2683985233306885,-0.45818817615509033,-0.46933186054229736,-0.7375012636184692,-0.4203295409679413,1.2815848588943481,-0.20693013072013855,0.7040634751319885,-1.2228940725326538,1.0315362215042114,1.4048233032226562,-0.8439377546310425,-0.6032719612121582,0.5679008960723877,1.0035187005996704,1.3396801948547363,0.3804657757282257,0.6643123626708984,0.48895543813705444,-0.9357932806015015,-0.8273699879646301,-0.418450266122818,-1.228305697441101,-2.336308240890503,0.5906021595001221,0.19696247577667236,-2.5674381256103516,-1.7590813636779785,-0.8334599733352661,-0.5356210470199585,-1.3291665315628052,2.4456048011779785,-0.8781178593635559,-1.9652665853500366,0.7421044111251831,1.7024223804473877,-0.9950163960456848,2.434519052505493,0.030829325318336487,0.3202493190765381,-0.9167735576629639,0.043898940086364746,-0.3910929262638092,-0.8803907632827759,0.5312690138816833,1.6290860176086426,0.8843395709991455,0.8225415349006653,0.952817440032959,-0.09042984247207642,-0.05696702003479004,-0.4714476466178894,-0.4847780168056488,-0.38380593061447144,-1.923429012298584,-0.9028903841972351,2.4499213695526123,0.04975485801696777,1.219416618347168,1.4599826335906982,-0.6477569341659546,0.2758089303970337,0.07851619273424149,-0.15031114220619202,-0.07982894033193588,1.5513696670532227,1.732184886932373,-0.24494773149490356,0.6344061493873596,-0.1683749109506607,0.4390676021575928,0.1684933602809906,-1.4099050760269165,0.3483605980873108,1.5307166576385498,0.6899795532226562,0.6539554595947266,-1.1258411407470703,0.7104761600494385,0.004361093044281006,0.4283652901649475,1.0761427879333496,1.9133907556533813,0.47268009185791016,1.1348786354064941,0.9177005887031555,-0.5764227509498596,-0.06963944435119629,0.4122249484062195,0.6555047035217285,1.142262578010559,0.5916094779968262,0.4560130536556244,-0.9165176153182983,-1.447350263595581,0.6627605557441711,-0.24666905403137207,-0.2753870487213135,0.6043161153793335,0.3545409142971039,0.5968120694160461,-0.4791119396686554,-0.8799782395362854 -2923,-0.5875203013420105,-2.727848768234253,-1.5736750364303589,-0.5425293445587158,-1.5700492858886719,-0.19112443923950195,-0.04804116487503052,-2.145604372024536,0.3673318922519684,1.3288047313690186,-1.3944435119628906,0.1306740641593933,1.3456579446792603,-0.8635348081588745,1.5942795276641846,0.0653274655342102,0.25543108582496643,0.03924769163131714,0.14600954949855804,0.14442285895347595,1.4878536462783813,-1.2868577241897583,-0.7494108080863953,0.40165555477142334,-0.22459331154823303,-0.3397664427757263,-0.15133392810821533,0.6026527881622314,-0.4832099676132202,-0.43141552805900574,-0.3665350377559662,0.44976621866226196,0.49056878685951233,-1.1010938882827759,0.34058573842048645,0.2660523056983948,0.13243652880191803,0.10745251923799515,-1.0594699382781982,0.15254345536231995,2.8896024227142334,-0.258056104183197,-0.11167503893375397,-0.4844350814819336,0.7611355185508728,-0.37261080741882324,-0.042798709124326706,1.049218773841858,0.42379507422447205,-2.3994204998016357,-0.9208268523216248,1.1368120908737183,-0.8560062646865845,0.1578693687915802,-0.391737163066864,0.6146271228790283,-0.8902194499969482,-1.17264986038208,-0.12315139174461365,-1.2954338788986206,1.3631603717803955,-2.32351016998291,0.10700234770774841,0.34715449810028076,-1.1907358169555664,1.0066556930541992,0.6521700620651245,0.8162635564804077,-0.031511858105659485,-0.9453541040420532,0.41463014483451843,0.5355270504951477,0.6259554624557495,-0.5220550894737244,-1.529673457145691,-0.3173816502094269,0.28458231687545776,1.0006780624389648,-1.007854700088501,-0.559476375579834,-0.5528232455253601,-1.5431346893310547,1.1948801279067993,0.9725121855735779,-0.7265836000442505,0.7523492574691772,0.6306842565536499,-0.18776069581508636,0.5400674343109131,-0.6853909492492676,1.0673192739486694,0.9384910464286804,1.134625792503357,-0.12335342168807983,2.1243245601654053,-0.8316876292228699,0.8689045906066895,-0.6238071918487549,0.8139758706092834,0.47970274090766907,0.11885999143123627,0.31639203429222107,-0.7621387243270874,-1.4944326877593994,-0.6709838509559631,-0.09000822901725769,-1.0339890718460083,0.050743699073791504,-0.8180100917816162,-1.1248143911361694,1.439088225364685,0.07757717370986938,-1.2118979692459106,0.4387565553188324,-0.32467344403266907,2.0674946308135986,-0.05954672396183014,1.0399150848388672,-1.0370732545852661,-0.292926549911499,-0.3440815806388855,-0.5289541482925415,-0.2017790675163269,0.2551026940345764,-1.4058585166931152,-0.8197882771492004,-0.05819141864776611,-1.2280573844909668,-0.9611281156539917,-0.2013809233903885,0.48574936389923096,1.5374376773834229,1.062559723854065,2.1928977966308594,1.5714441537857056,0.585310161113739,-0.28864938020706177,-1.1649439334869385,-0.78722083568573,-2.5128891468048096,0.15607112646102905,1.453704595565796,1.8374018669128418,-0.8234078288078308,-1.025075912475586,-1.2683985233306885,-0.10491076111793518,-0.46933186054229736,-0.7375012636184692,-0.4203295409679413,1.2815848588943481,-0.20693013072013855,0.6570985317230225,-0.7672784924507141,0.9044886827468872,1.4048233032226562,-0.5751725435256958,-0.6032719612121582,0.5679008960723877,1.0035187005996704,1.3396801948547363,0.3804657757282257,0.6643123626708984,0.48895543813705444,-0.9357932806015015,-0.8273699879646301,-0.418450266122818,-1.228305697441101,-2.336308240890503,0.5906021595001221,0.6520625352859497,-2.2303950786590576,-1.7590813636779785,-1.0808241367340088,-0.5356210470199585,-1.3291665315628052,2.4456048011779785,-0.35799938440322876,-1.9652665853500366,0.7421044111251831,1.9883575439453125,-0.9950163960456848,2.434519052505493,0.030829325318336487,0.3202493190765381,-0.9167735576629639,0.043898940086364746,-0.5543181300163269,-0.8803907632827759,0.5312690138816833,1.9927456378936768,0.8843395709991455,0.3616192042827606,0.952817440032959,-0.09042984247207642,-0.06114736199378967,-0.4714476466178894,-0.1457517445087433,-0.38380593061447144,-1.923429012298584,-0.9028903841972351,2.4499213695526123,0.04975485801696777,1.219416618347168,1.429585337638855,-0.6477569341659546,0.2758089303970337,0.07851619273424149,-0.15031114220619202,0.2807537019252777,1.5513696670532227,1.732184886932373,-0.24494773149490356,0.6344061493873596,-0.1683749109506607,0.4390676021575928,-0.1675928831100464,-1.4099050760269165,0.3483605980873108,1.5307166576385498,0.6899795532226562,0.6539554595947266,-1.1258411407470703,0.4790818691253662,0.004361093044281006,0.4283652901649475,1.0761427879333496,1.6093451976776123,0.47268009185791016,1.1348786354064941,0.40134304761886597,-0.5764227509498596,-0.06963944435119629,0.4122249484062195,1.5597277879714966,1.142262578010559,0.5916094779968262,0.4560130536556244,-0.8219295740127563,-1.447350263595581,0.6627605557441711,-0.24666905403137207,-0.2753870487213135,0.7279516458511353,0.3545409142971039,0.5968120694160461,-0.2244521975517273,-0.8799782395362854 -2924,-0.5875203013420105,-2.727848768234253,-1.5736750364303589,-0.5425293445587158,-1.0940954685211182,-0.19112443923950195,0.016619764268398285,-2.145604372024536,0.22108902037143707,1.3288047313690186,-1.3944435119628906,0.1306740641593933,1.3456579446792603,-0.8635348081588745,1.2668606042861938,0.0653274655342102,0.25543108582496643,0.27631473541259766,0.14600954949855804,-0.39098843932151794,1.4878536462783813,-1.2868577241897583,-0.7494108080863953,0.40165555477142334,-0.22459331154823303,-0.3397664427757263,-0.24351274967193604,0.6026527881622314,-0.4832099676132202,-0.43141552805900574,-0.3665350377559662,0.6022517085075378,0.49056878685951233,-1.1010938882827759,0.7867506742477417,0.06863471865653992,0.13243652880191803,0.10745251923799515,-1.0594699382781982,0.15254345536231995,2.8896024227142334,-0.258056104183197,-0.11167503893375397,-0.4844350814819336,0.7611355185508728,-0.37261080741882324,-0.042798709124326706,1.049218773841858,0.6146032214164734,-2.3994204998016357,-1.1469672918319702,1.1368120908737183,-0.7410848140716553,-0.4938361942768097,-0.6070843935012817,0.6146271228790283,-0.8902194499969482,-1.17264986038208,-0.12315139174461365,-1.3394047021865845,1.3379991054534912,-2.32351016998291,0.10700234770774841,0.34715449810028076,-0.9673104882240295,1.0066556930541992,0.7352631092071533,0.8162635564804077,-0.031511858105659485,-0.9453541040420532,0.41463014483451843,0.5355270504951477,0.6259554624557495,-0.7075197100639343,-1.529673457145691,-0.5437185764312744,0.2883074879646301,1.0006780624389648,-1.007854700088501,-0.42910850048065186,-0.5528232455253601,-1.5202982425689697,1.1733015775680542,1.0063539743423462,-0.7265836000442505,0.7523492574691772,0.6306842565536499,-0.18776069581508636,0.5400674343109131,-1.2961719036102295,1.0673192739486694,0.9384910464286804,1.134625792503357,0.05399082601070404,2.1243245601654053,-0.49881869554519653,0.8689045906066895,-0.6238071918487549,0.8139758706092834,0.47970274090766907,0.11885999143123627,0.31639203429222107,-0.06602376699447632,-1.4944326877593994,-0.6709838509559631,-0.09000822901725769,-1.0339890718460083,0.050743699073791504,-0.9429972767829895,-1.1248143911361694,1.386726975440979,0.12464112043380737,-1.2118979692459106,-0.15166214108467102,-0.9259607791900635,2.0674946308135986,-0.05954672396183014,1.0399150848388672,-1.0370732545852661,-0.1940520703792572,-0.5327125787734985,0.15207922458648682,-0.1912737339735031,1.0326948165893555,-1.4051661491394043,-1.6096665859222412,-0.05819141864776611,-1.2280573844909668,-0.9611281156539917,-0.2013809233903885,0.48574936389923096,1.4045028686523438,1.2889399528503418,2.1928977966308594,1.5518138408660889,1.1208252906799316,0.2044425904750824,-1.1649439334869385,0.5417364835739136,-2.5128891468048096,0.15607112646102905,1.453704595565796,1.8374018669128418,-0.8234078288078308,-1.025075912475586,-1.2683985233306885,-0.10491076111793518,-0.46933186054229736,-0.04770451784133911,-0.4203295409679413,1.2815848588943481,-0.07731683552265167,0.6570985317230225,-0.7672784924507141,0.8383497595787048,1.565067172050476,-0.5751725435256958,-0.6032719612121582,0.24092602729797363,1.4040782451629639,2.0998353958129883,0.3804657757282257,0.5767911672592163,0.48895543813705444,0.13738656044006348,-0.4153245687484741,-0.418450266122818,-1.228305697441101,-2.336308240890503,0.5906021595001221,0.6520625352859497,-2.4763762950897217,-1.7590813636779785,-1.0808241367340088,-0.5356210470199585,-1.3291665315628052,2.4456048011779785,-0.35799938440322876,-1.9503421783447266,0.44299933314323425,1.9713643789291382,-0.9950163960456848,2.434519052505493,0.030829325318336487,0.3202493190765381,-0.9167735576629639,-0.38800856471061707,-0.5543181300163269,-0.8803907632827759,0.3188893795013428,1.9927456378936768,0.8843395709991455,1.5726968050003052,0.952817440032959,-0.12174639850854874,-1.2114903926849365,-0.4714476466178894,-0.1457517445087433,0.07151031494140625,-1.3366668224334717,-2.09976863861084,2.3400142192840576,0.04975485801696777,1.219416618347168,1.429585337638855,-1.0451325178146362,0.2758089303970337,0.07851619273424149,-0.15031114220619202,-0.3274555504322052,1.5898312330245972,1.732184886932373,-0.21516674757003784,0.6344061493873596,-0.1683749109506607,-0.24793380498886108,-0.1675928831100464,-1.4099050760269165,0.3483605980873108,1.5307166576385498,-0.6096214056015015,0.6539554595947266,-1.1258411407470703,0.4790818691253662,0.004361093044281006,0.7729296684265137,1.0761427879333496,1.2947659492492676,0.47268009185791016,1.1348786354064941,1.1167001724243164,-0.4594382047653198,-0.06963944435119629,0.4122249484062195,1.5597277879714966,1.142262578010559,0.5916094779968262,0.4560130536556244,-0.6702005863189697,-1.447350263595581,0.6627605557441711,-0.24666905403137207,-0.2753870487213135,0.7279516458511353,0.3545409142971039,0.3156000077724457,-0.2244521975517273,-0.8799782395362854 -2925,-0.5875203013420105,-2.727848768234253,-1.5736750364303589,-0.5425293445587158,-1.0940954685211182,-0.19112443923950195,0.016619764268398285,-2.0830044746398926,0.22108902037143707,1.3288047313690186,-1.3944435119628906,0.1306740641593933,1.4264414310455322,0.2539616823196411,1.1669365167617798,0.15044134855270386,0.25543108582496643,0.363567978143692,0.14600954949855804,-0.39098843932151794,1.5552669763565063,-1.2868577241897583,-0.5152163505554199,0.471787691116333,-0.22459331154823303,-0.3397664427757263,-0.24351274967193604,0.6026527881622314,-0.4832099676132202,-0.43141552805900574,-0.3665350377559662,0.5480895042419434,0.2395784854888916,-1.1010938882827759,0.7867506742477417,0.06863471865653992,0.13243652880191803,0.10745251923799515,-1.0995283126831055,0.15254345536231995,3.15912127494812,-0.258056104183197,-0.11167503893375397,-0.4844350814819336,0.7611355185508728,-0.40232667326927185,-0.2070789635181427,1.049218773841858,0.6146032214164734,-3.016111373901367,-1.1469672918319702,1.1368120908737183,-0.7410848140716553,-0.4938361942768097,-0.6070843935012817,0.6146271228790283,-0.8902194499969482,-1.4660553932189941,-0.12315139174461365,-1.3394047021865845,1.3379991054534912,-2.32351016998291,0.10700234770774841,0.34715449810028076,-0.4589501619338989,1.0066556930541992,0.7352631092071533,0.8162635564804077,0.028211474418640137,-0.9453541040420532,0.41463014483451843,0.5355270504951477,0.6259554624557495,-0.9851546287536621,-1.529673457145691,-0.4057709872722626,0.37272921204566956,1.0006780624389648,-1.007854700088501,-0.42910850048065186,-0.5528232455253601,-1.5202982425689697,1.1733015775680542,1.0063539743423462,-0.7265836000442505,0.7523492574691772,0.6306842565536499,0.11383678019046783,0.5400674343109131,-1.2961719036102295,1.0673192739486694,0.9384910464286804,1.134625792503357,0.8012810945510864,2.1243245601654053,-0.49881869554519653,1.7973272800445557,-0.6238071918487549,0.8139758706092834,0.47970274090766907,0.11885999143123627,0.31639203429222107,-0.06602376699447632,-1.4944326877593994,-0.6709838509559631,-0.09000822901725769,-1.058659315109253,-1.5171098709106445,-0.9429972767829895,-0.8406395316123962,1.386726975440979,0.5421226024627686,-1.2118979692459106,-0.15166214108467102,-0.9259607791900635,2.0674946308135986,-0.05954672396183014,1.0399150848388672,-1.1822367906570435,-0.1940520703792572,-0.5327125787734985,0.15207922458648682,0.1625491827726364,0.5453857183456421,-1.4051661491394043,-1.4921954870224,0.9466559886932373,-1.2280573844909668,-0.9611281156539917,-0.2013809233903885,0.48574936389923096,1.4045028686523438,0.36374151706695557,2.4214859008789062,1.5518138408660889,1.1208252906799316,0.2044425904750824,-1.1649439334869385,0.5682533383369446,-2.429816722869873,-0.25372254848480225,1.453704595565796,1.8374018669128418,-0.8234078288078308,0.14048683643341064,-1.1241358518600464,-0.10491076111793518,-0.46933186054229736,-0.04770451784133911,-0.4203295409679413,1.2815848588943481,-0.07731683552265167,0.6570985317230225,-0.7672784924507141,0.8383497595787048,1.565067172050476,-0.5751725435256958,-0.6032719612121582,-0.1598266065120697,1.4040782451629639,2.0998353958129883,0.3804657757282257,0.5767911672592163,0.48895543813705444,0.13738656044006348,-0.4153245687484741,-0.418450266122818,-1.228305697441101,-2.586491346359253,0.9290186166763306,-0.21631073951721191,-2.001138210296631,-1.7590813636779785,-1.3502826690673828,-0.5356210470199585,-1.622621774673462,2.3988845348358154,-0.35799938440322876,-1.9503421783447266,0.21744899451732635,1.9400190114974976,-1.0792714357376099,2.488553524017334,0.030829325318336487,0.3202493190765381,-1.3208472728729248,-0.38800856471061707,-0.5543181300163269,-0.8803907632827759,0.3188893795013428,1.9927456378936768,0.8843395709991455,0.6811059713363647,0.5051072835922241,-0.12174639850854874,0.03599894046783447,0.3827258348464966,-0.37891995906829834,0.07151031494140625,-1.307551622390747,-2.09976863861084,2.3400142192840576,0.04975485801696777,1.219416618347168,1.429585337638855,-1.0451325178146362,0.2758089303970337,0.07851619273424149,-0.15031114220619202,-0.3274555504322052,1.6745418310165405,1.732184886932373,-0.648189902305603,0.6344061493873596,-0.1683749109506607,-0.24793380498886108,-0.1675928831100464,-1.4099050760269165,0.3483605980873108,1.5307166576385498,-0.6096214056015015,0.6539554595947266,-1.3213664293289185,0.4790818691253662,0.004361093044281006,0.7729296684265137,1.0761427879333496,1.2947659492492676,0.47268009185791016,1.1348786354064941,1.1323317289352417,-0.4594382047653198,-0.06963944435119629,0.8046188354492188,1.5597277879714966,1.142262578010559,0.5916094779968262,0.4560130536556244,-0.854938268661499,-1.447350263595581,0.6627605557441711,-0.24666905403137207,-0.2753870487213135,0.7279516458511353,0.4079609513282776,0.19772514700889587,-1.223902940750122,-0.8799782395362854 -2926,-0.06185382604598999,-2.727848768234253,-1.5736750364303589,-0.5425293445587158,-1.0940954685211182,0.06739377975463867,-0.1170789822936058,-2.0830044746398926,0.22108902037143707,1.3288047313690186,-1.3944435119628906,0.1306740641593933,1.4264414310455322,-0.8133130073547363,1.1669365167617798,0.15044134855270386,0.25543108582496643,-0.20014211535453796,0.14600954949855804,-0.17255261540412903,1.5552669763565063,-1.2868577241897583,-0.5199886560440063,0.471787691116333,-0.6680842638015747,-1.3053510189056396,-0.24351274967193604,0.6026527881622314,-0.4832099676132202,-0.43141552805900574,-0.3665350377559662,0.5480895042419434,0.2395784854888916,-1.1010938882827759,0.7867506742477417,0.06863471865653992,0.13243652880191803,-0.3750131130218506,-1.0995283126831055,0.15254345536231995,3.15912127494812,-0.258056104183197,-0.11167503893375397,-0.4844350814819336,0.7611355185508728,-0.40232667326927185,-0.2070789635181427,1.049218773841858,0.6146032214164734,-3.095951795578003,-1.1469672918319702,1.0032358169555664,-0.9958845376968384,-0.4938361942768097,-0.6070843935012817,0.8103935718536377,-0.934374213218689,-1.4660553932189941,-0.12315139174461365,-1.3394047021865845,1.2233881950378418,-2.32351016998291,0.10700234770774841,0.3423331677913666,-0.4589501619338989,1.0066556930541992,0.7352631092071533,0.8162635564804077,0.028211474418640137,-0.9453541040420532,0.41463014483451843,0.5355270504951477,0.6259554624557495,-0.9851546287536621,-1.529673457145691,-0.4057709872722626,0.28663170337677,1.0926059484481812,-1.007854700088501,-0.42910850048065186,-0.5528232455253601,-1.1866813898086548,0.5166940689086914,1.0063539743423462,-0.7265836000442505,0.8076329827308655,0.6306842565536499,0.11383678019046783,0.6407936811447144,-1.2961719036102295,1.0673192739486694,0.9384910464286804,1.134625792503357,0.960365891456604,2.1243245601654053,-0.49881869554519653,1.7973272800445557,-0.6238071918487549,0.8139758706092834,0.33068138360977173,0.11885999143123627,0.31639203429222107,-0.06602376699447632,-1.4944326877593994,-0.6709838509559631,0.019899457693099976,-1.058659315109253,-1.5171098709106445,-0.9429972767829895,-0.6748766899108887,1.386726975440979,0.5421226024627686,-0.6387317776679993,0.08043000102043152,-0.9259607791900635,2.262692451477051,0.5808559060096741,1.255427598953247,-1.1822367906570435,-0.1940520703792572,-0.5327125787734985,0.15207922458648682,0.5971211194992065,0.8044693470001221,-1.4051661491394043,-0.08750510215759277,0.7105668783187866,-0.6493154764175415,0.11363351345062256,-0.2013809233903885,0.48574936389923096,1.4045028686523438,0.36374151706695557,2.4214859008789062,1.5518138408660889,1.1208252906799316,0.2044425904750824,-1.1649439334869385,0.5682533383369446,-2.429816722869873,0.5290923714637756,1.9199473857879639,1.8374018669128418,-1.453019142150879,0.14048683643341064,-1.1241358518600464,-0.10491076111793518,-0.5945252180099487,-1.1672205924987793,-0.4203295409679413,1.2815848588943481,-0.12908580899238586,0.6570985317230225,-1.0118231773376465,0.8383497595787048,1.565067172050476,-0.5751725435256958,-0.6032719612121582,-0.1598266065120697,1.01125168800354,1.7621198892593384,0.3804657757282257,0.7521219253540039,1.0111010074615479,-0.8551650047302246,-0.4153245687484741,-0.418450266122818,-1.0593500137329102,-2.586491346359253,0.9290186166763306,-0.21631073951721191,-2.001138210296631,-1.7590813636779785,-1.3502826690673828,-1.1475965976715088,-1.622621774673462,2.3988845348358154,-0.35799938440322876,-1.9503421783447266,-0.0005826056003570557,1.9400190114974976,-0.35969382524490356,2.488553524017334,0.030829325318336487,-0.06837788224220276,-0.8258504271507263,-0.38800856471061707,-0.5543181300163269,-0.8053699731826782,0.3188893795013428,1.9927456378936768,1.3811320066452026,0.6811059713363647,0.5051072835922241,-0.12174639850854874,0.03599894046783447,0.22283631563186646,-0.37891995906829834,-0.13863790035247803,-0.8002340793609619,-2.1512906551361084,2.3400142192840576,0.04975485801696777,0.8378914594650269,1.429585337638855,-0.07207638025283813,0.2758089303970337,0.8302830457687378,-0.15031114220619202,-0.3274555504322052,1.6745418310165405,1.732184886932373,-0.648189902305603,0.6344061493873596,-0.1683749109506607,0.2451307475566864,-0.1675928831100464,-1.177079677581787,0.3483605980873108,1.5307166576385498,-0.6096214056015015,-0.503014087677002,-1.3213664293289185,0.4790818691253662,0.004361093044281006,0.7729296684265137,1.204368233680725,1.2947659492492676,0.47268009185791016,1.1265727281570435,1.1323317289352417,-1.424818515777588,0.0721302330493927,0.8046188354492188,1.671309471130371,1.142262578010559,0.5916094779968262,0.4560130536556244,-0.854938268661499,-1.133954405784607,0.6627605557441711,-0.3476065993309021,-0.3552364706993103,0.7279516458511353,0.3141762614250183,0.19772514700889587,-1.223902940750122,-0.8799782395362854 -2927,-0.5918474793434143,-2.6869680881500244,-1.008004903793335,-0.5425293445587158,-1.0940954685211182,0.06739377975463867,-0.1170789822936058,-2.092496395111084,0.22108902037143707,1.3288047313690186,-1.3944435119628906,0.1306740641593933,1.387726068496704,-0.8133130073547363,1.1669365167617798,-0.10996407270431519,0.0808657705783844,-0.20014211535453796,0.14600954949855804,-0.17255261540412903,1.5552669763565063,-1.2868577241897583,-0.5199886560440063,0.471787691116333,-0.6680842638015747,-1.3053510189056396,-0.24351274967193604,0.6026527881622314,-0.6473061442375183,-0.9795149564743042,-0.5432788133621216,0.5480895042419434,0.7784542441368103,-1.1010938882827759,0.7867506742477417,0.06863471865653992,-0.1941879242658615,-0.3750131130218506,-1.0995283126831055,0.15254345536231995,2.871142625808716,-0.258056104183197,-0.11167503893375397,-0.4230910539627075,0.973619282245636,-0.7594031691551208,-0.2070789635181427,0.7201148271560669,0.6146032214164734,-3.095951795578003,-1.1469672918319702,1.0032358169555664,-0.5075876712799072,-0.39161503314971924,-0.7412030100822449,0.8103935718536377,-1.1135187149047852,-1.5418627262115479,-0.12315139174461365,-1.3394047021865845,1.4745020866394043,-2.3075127601623535,0.10700234770774841,0.3423331677913666,-0.4589501619338989,1.0066556930541992,0.7352631092071533,0.8162635564804077,0.028211474418640137,-0.9453541040420532,0.7034206390380859,0.5355270504951477,0.4592597484588623,-0.9851546287536621,-1.529673457145691,-0.4057709872722626,0.28663170337677,0.9279207587242126,-1.007854700088501,-0.42910850048065186,-0.6624572277069092,-2.0037050247192383,0.5166940689086914,1.0063539743423462,-0.7265836000442505,0.8076329827308655,0.7649109363555908,0.11383678019046783,0.6407936811447144,-0.780414342880249,0.7178975939750671,0.9384910464286804,1.134625792503357,0.960365891456604,1.7976770401000977,-0.08122527599334717,1.7973272800445557,-0.6238071918487549,0.8139758706092834,0.482344388961792,0.11885999143123627,0.31639203429222107,-0.06602376699447632,-1.4944326877593994,-0.6709838509559631,0.27578204870224,-1.058659315109253,-1.5171098709106445,-0.9429972767829895,-0.6748766899108887,1.386726975440979,0.5421226024627686,-0.6387317776679993,0.45326346158981323,-0.9259607791900635,1.6521785259246826,0.5808559060096741,0.8035210371017456,-1.1822367906570435,-0.1940520703792572,-0.5327125787734985,-0.1357066035270691,0.5593199133872986,0.8044693470001221,-1.4051661491394043,-0.33799245953559875,0.743657112121582,-0.6476647257804871,0.11363351345062256,0.24432824552059174,0.48574936389923096,1.4045028686523438,0.7978758811950684,2.4214859008789062,1.5518138408660889,1.1208252906799316,0.2044425904750824,-1.1649439334869385,0.5682533383369446,-2.429816722869873,0.5290923714637756,1.9199473857879639,1.2488391399383545,-1.453019142150879,0.14048683643341064,-1.1241358518600464,-0.10491076111793518,-0.5945252180099487,-1.1672205924987793,-0.4203295409679413,1.2815848588943481,-0.12908580899238586,0.6570985317230225,-1.0118231773376465,0.8383497595787048,1.565067172050476,-0.5751725435256958,-0.6032719612121582,-0.1598266065120697,1.01125168800354,1.6790716648101807,0.3293275237083435,0.3958958387374878,1.0111010074615479,-0.4245423972606659,-0.4803653359413147,-0.418450266122818,-1.0593500137329102,-2.8071072101593018,0.9290186166763306,-0.6842465400695801,-2.001138210296631,-1.7590813636779785,-1.3502826690673828,-1.1475965976715088,-1.5690152645111084,2.3988845348358154,-0.35799938440322876,-0.8055967092514038,0.12392459064722061,1.9400190114974976,-0.4941067099571228,2.488553524017334,0.030829325318336487,-0.06837788224220276,-0.23307961225509644,-0.38800856471061707,0.21411144733428955,-0.8053699731826782,0.3188893795013428,1.2718987464904785,1.3811320066452026,0.6811059713363647,0.19852468371391296,0.17755120992660522,-0.6574925184249878,0.097266286611557,-0.37891995906829834,0.06496968865394592,-0.8002340793609619,-2.1512906551361084,2.3400142192840576,0.04975485801696777,0.8378914594650269,1.429585337638855,0.046272389590740204,0.2758089303970337,0.8302830457687378,-0.15031114220619202,0.11632663011550903,1.6745418310165405,1.732184886932373,-0.40828433632850647,0.6344061493873596,-0.1683749109506607,0.2451307475566864,-0.1675928831100464,-1.177079677581787,0.3483605980873108,1.5307166576385498,-0.6096214056015015,-0.503014087677002,-1.3213664293289185,0.4790818691253662,0.004361093044281006,0.7729296684265137,1.204368233680725,1.8143372535705566,0.47268009185791016,1.3785605430603027,0.45162320137023926,-1.424818515777588,0.0010955706238746643,1.0913739204406738,1.2061717510223389,1.142262578010559,0.5916094779968262,0.4560130536556244,-0.8624938726425171,-1.133954405784607,0.6627605557441711,-0.3476065993309021,-0.3552364706993103,0.7279516458511353,0.3141762614250183,0.19772514700889587,-1.223902940750122,-0.8799782395362854 -2928,-0.8145323395729065,-2.6869680881500244,-1.514808177947998,-0.5425293445587158,-1.0940954685211182,0.06739377975463867,-0.1170789822936058,-1.6847045421600342,0.22108902037143707,1.3288047313690186,-1.3944435119628906,-0.6722654700279236,1.387726068496704,-0.8133130073547363,1.1669365167617798,-0.10996407270431519,0.33259063959121704,-0.24162888526916504,0.14600954949855804,-0.17255261540412903,1.5552669763565063,-1.2868577241897583,-0.5199886560440063,0.471787691116333,-0.9727516174316406,-0.8501566052436829,-0.24351274967193604,0.6026527881622314,-0.6473061442375183,-0.6354250907897949,-0.5432788133621216,0.09873005747795105,0.7784542441368103,-1.1010938882827759,0.39056310057640076,-0.19092097878456116,-0.11862267553806305,-0.3750131130218506,-1.0995283126831055,0.15254345536231995,2.871142625808716,-0.03366926312446594,-0.11167503893375397,-0.4230910539627075,0.973619282245636,-0.7594031691551208,-0.2070789635181427,0.7201148271560669,0.6146032214164734,-3.3497934341430664,-1.1469672918319702,0.5149490833282471,-0.5957432985305786,-0.3310818672180176,-0.7412030100822449,1.1483747959136963,-1.1135187149047852,-1.549903392791748,-0.12315139174461365,-1.3394047021865845,1.4745020866394043,-2.3075127601623535,0.10700234770774841,0.3423331677913666,-0.4589501619338989,1.0066556930541992,0.7352631092071533,0.8999480605125427,0.028211474418640137,-0.9453541040420532,0.4038929045200348,0.5355270504951477,0.5560033917427063,-0.9851546287536621,-1.356786847114563,-0.4057709872722626,0.28663170337677,0.9279207587242126,-1.007854700088501,-0.42910850048065186,-0.6624572277069092,-2.0037050247192383,0.5166940689086914,1.0063539743423462,-0.9212050437927246,0.8076329827308655,0.7649109363555908,0.11383678019046783,0.6407936811447144,-0.780414342880249,1.0706439018249512,0.9384910464286804,1.134625792503357,0.960365891456604,1.7976770401000977,-0.08122527599334717,1.5246379375457764,-0.6238071918487549,0.8139758706092834,0.482344388961792,0.11885999143123627,-0.26298871636390686,-0.7572229504585266,-1.4944326877593994,-0.6709838509559631,0.27578204870224,-1.058659315109253,-2.128836154937744,-0.9429972767829895,-0.6748766899108887,1.386726975440979,0.32726144790649414,-0.6387317776679993,-0.24007195234298706,-0.3255966901779175,1.6521785259246826,-0.3894592523574829,0.8035210371017456,-1.1822367906570435,-0.1940520703792572,-0.5327125787734985,-0.1357066035270691,0.5593199133872986,0.8044693470001221,-1.4051661491394043,-0.33799245953559875,-0.07693213224411011,-0.6476647257804871,0.11363351345062256,0.24432824552059174,0.1566273272037506,1.4045028686523438,0.7978758811950684,2.4214859008789062,0.9361534118652344,1.4425822496414185,0.2044425904750824,-1.1649439334869385,0.5682533383369446,-2.429816722869873,0.6489541530609131,1.9008885622024536,0.8511440753936768,-2.4379069805145264,0.14048683643341064,-0.26409322023391724,-0.10491076111793518,-0.5945252180099487,-0.4643193483352661,-0.4203295409679413,1.289178729057312,-0.12908580899238586,0.5990164279937744,-0.3396832346916199,1.0444201231002808,1.410239815711975,-0.5751725435256958,-0.6230747699737549,-0.1598266065120697,1.01125168800354,1.6790716648101807,0.3293275237083435,0.22030943632125854,1.0111010074615479,-1.5980515480041504,-0.4803653359413147,-0.418450266122818,-1.0593500137329102,-2.8071072101593018,0.6650104522705078,-0.48663797974586487,-2.001138210296631,-1.7590813636779785,-1.483041524887085,-1.5751338005065918,-1.5690152645111084,2.3988845348358154,-0.35799938440322876,-0.8055967092514038,0.12392459064722061,1.9400190114974976,-0.980305552482605,2.488553524017334,-0.41453319787979126,-0.2092520296573639,-0.9926283955574036,-0.38800856471061707,0.21411144733428955,-0.7676657438278198,0.3188893795013428,1.2718987464904785,1.3811320066452026,0.6811059713363647,0.2250634878873825,0.8603416085243225,-0.5505569577217102,0.097266286611557,-0.3517012894153595,0.06496968865394592,-0.8002340793609619,-2.1512906551361084,2.3400142192840576,0.04975485801696777,0.8378914594650269,1.4010851383209229,0.12259618937969208,0.2758089303970337,0.8302830457687378,-0.3003194332122803,0.6198203563690186,1.6745418310165405,1.732184886932373,-0.40828433632850647,0.7781194448471069,-0.9473344087600708,0.11528505384922028,-0.1675928831100464,-1.177079677581787,0.3483605980873108,1.5307166576385498,-0.4819304347038269,-0.3192845582962036,-1.3213664293289185,0.4790818691253662,0.004361093044281006,0.7729296684265137,1.204368233680725,1.8143372535705566,0.47268009185791016,1.3785605430603027,-0.21581029891967773,-1.424818515777588,0.0010955706238746643,0.5128206610679626,1.2061717510223389,1.142262578010559,0.5916094779968262,0.4560130536556244,-0.8624938726425171,-1.133954405784607,-0.5639631152153015,-0.3476065993309021,-0.6141332983970642,0.7279516458511353,0.3141762614250183,0.19772514700889587,-1.223902940750122,-0.8799782395362854 -2929,-0.8145323395729065,-2.6869680881500244,-1.514808177947998,-0.7458575367927551,-1.0940954685211182,-0.19057592749595642,-0.1170789822936058,-1.7701750993728638,0.22108902037143707,1.3288047313690186,-1.471303939819336,-0.30583488941192627,1.2211503982543945,-0.8133130073547363,1.2168115377426147,-0.10996407270431519,0.33259063959121704,-0.24162888526916504,0.3003597855567932,0.1286899745464325,1.5552669763565063,-1.2868577241897583,-0.5199886560440063,0.471787691116333,-0.9727516174316406,-0.8501566052436829,-0.24351274967193604,0.6026527881622314,-0.6473061442375183,-0.6354250907897949,-0.5432788133621216,0.1354106366634369,0.7784542441368103,-1.1010938882827759,0.39056310057640076,0.0947151780128479,-0.11862267553806305,-0.48866787552833557,-1.0995283126831055,0.15254345536231995,2.858025312423706,-0.03366926312446594,-0.11167503893375397,-1.0038566589355469,0.9597328305244446,-0.7594031691551208,-0.2070789635181427,0.7201148271560669,0.6146032214164734,-3.3497934341430664,-0.5149350166320801,0.5149490833282471,-0.2096039056777954,-0.3310818672180176,-0.3860444128513336,1.1483747959136963,-0.852470874786377,-1.549903392791748,-0.12315139174461365,-0.6771447062492371,1.4745020866394043,-2.277585029602051,0.10700234770774841,0.3423331677913666,-0.4589501619338989,1.277755856513977,0.7352631092071533,0.8999480605125427,0.30355575680732727,-0.9453541040420532,-0.15023741126060486,0.5355270504951477,0.5560033917427063,-0.9851546287536621,-1.356786847114563,-0.4057709872722626,0.28663170337677,0.6102123260498047,-1.007854700088501,-0.10303670167922974,-0.6624572277069092,-1.610548496246338,0.5166940689086914,1.0063539743423462,-0.9212050437927246,0.8076329827308655,0.7649109363555908,0.11383678019046783,0.6407936811447144,-0.780414342880249,1.0706439018249512,0.9384910464286804,-0.06270551681518555,0.46108895540237427,1.7976770401000977,-0.08122527599334717,1.5246379375457764,0.829520583152771,0.8139758706092834,0.482344388961792,0.11885999143123627,-0.26298871636390686,-0.7572229504585266,-1.4944326877593994,-0.6709838509559631,0.27578204870224,-0.33690106868743896,-1.6191617250442505,-0.5856285691261292,-0.6748766899108887,1.386726975440979,0.32726144790649414,-0.6387317776679993,-0.24007195234298706,-0.6881675720214844,1.6521785259246826,-0.3894592523574829,0.910720944404602,-1.1822367906570435,-0.1940520703792572,-0.5327125787734985,-0.1357066035270691,0.5593199133872986,0.8044693470001221,-1.4051661491394043,-0.33799245953559875,-0.07693213224411011,-0.6476647257804871,0.11363351345062256,0.24432824552059174,1.3548595905303955,1.4045028686523438,1.7391300201416016,2.4214859008789062,0.9361534118652344,1.4425822496414185,0.2044425904750824,-1.1649439334869385,0.5682533383369446,-2.090782403945923,0.146245539188385,1.9008885622024536,0.8511440753936768,-2.4379069805145264,0.14048683643341064,-0.0617789626121521,1.3012895584106445,-0.12003406882286072,-0.6797162294387817,-0.4203295409679413,1.8023478984832764,-0.12908580899238586,0.5990164279937744,-0.457271933555603,1.0444201231002808,1.8291414976119995,-0.5751725435256958,-0.6230747699737549,-0.1598266065120697,1.01125168800354,1.6790716648101807,0.18329760432243347,0.36270612478256226,1.0111010074615479,-1.5980515480041504,-0.4803653359413147,-0.418450266122818,-1.0593500137329102,-2.8071072101593018,0.6650104522705078,0.09654638171195984,-2.001138210296631,-1.7590813636779785,-0.6573566794395447,-1.5420310497283936,-1.5690152645111084,2.3988845348358154,-0.35799938440322876,-1.2407822608947754,0.12392459064722061,1.9400190114974976,-0.980305552482605,2.488553524017334,-0.41453319787979126,-0.2092520296573639,-0.9926283955574036,-0.03799879550933838,0.21411144733428955,-0.4865143597126007,0.3188893795013428,1.2718987464904785,1.8827013969421387,0.7751813530921936,0.2250634878873825,0.8603416085243225,-0.5505569577217102,0.097266286611557,-0.3517012894153595,0.09510944038629532,-0.8002340793609619,-2.9543819427490234,2.3400142192840576,0.04975485801696777,0.8378914594650269,1.0139586925506592,0.12259618937969208,0.2758089303970337,0.8302830457687378,-0.3003194332122803,0.6198203563690186,2.381624460220337,1.732184886932373,-0.40828433632850647,0.7781194448471069,-1.1604077816009521,0.11528505384922028,-0.09940367937088013,-1.177079677581787,0.42144975066185,1.5307166576385498,-0.4877471625804901,-0.02595621347427368,-0.9217737913131714,0.5438443422317505,1.0910210609436035,0.7729296684265137,1.204368233680725,1.8143372535705566,0.7824452519416809,1.2374863624572754,-0.31790071725845337,-1.3118250370025635,0.0010955706238746643,0.5128206610679626,1.2061717510223389,1.142262578010559,0.5916094779968262,0.4560130536556244,-0.20924514532089233,-0.9299281239509583,0.6925134062767029,-0.3476065993309021,-1.0912755727767944,0.7279516458511353,0.3141762614250183,0.19772514700889587,-1.223902940750122,-0.8799782395362854 -2930,0.2566336989402771,-2.6869680881500244,-1.514808177947998,-0.43495434522628784,-1.0940954685211182,-0.19057592749595642,-0.1170789822936058,-1.6648880243301392,0.22108902037143707,1.3910727500915527,-1.471303939819336,-0.30583488941192627,1.2211503982543945,-0.49222511053085327,1.2168115377426147,-0.10996407270431519,0.33259063959121704,-0.24547192454338074,0.3003597855567932,0.1286899745464325,1.3791874647140503,-1.2868577241897583,-0.5199886560440063,0.666774332523346,-0.8482335209846497,-0.8501566052436829,-0.24351274967193604,0.6026527881622314,-0.6473061442375183,-0.6515860557556152,-0.5432788133621216,0.1354106366634369,0.40380796790122986,-0.5913523435592651,0.05712077021598816,0.5550877451896667,-0.11862267553806305,-0.1826992630958557,-0.5989185571670532,0.15254345536231995,2.984445810317993,-0.03366926312446594,-0.11167503893375397,-1.0038566589355469,1.0241177082061768,-0.7594031691551208,-0.2070789635181427,0.7201148271560669,0.6146032214164734,-3.12390398979187,-0.5149350166320801,0.4955300986766815,-0.2096039056777954,0.20251846313476562,-0.46837401390075684,1.1483747959136963,-0.852470874786377,-1.549903392791748,-0.12315139174461365,-0.36141347885131836,1.4745020866394043,-2.277585029602051,0.10700234770774841,0.31279003620147705,-0.4589501619338989,1.277755856513977,0.7352631092071533,0.8999480605125427,0.040478020906448364,-0.9453541040420532,-0.15023741126060486,0.9542503356933594,0.5560033917427063,-0.9851546287536621,-1.356786847114563,-0.4057709872722626,0.5798100233078003,0.7905076146125793,-1.007854700088501,-0.10303670167922974,-0.9488927125930786,-1.610548496246338,0.5166940689086914,1.0063539743423462,-0.9212050437927246,0.8076329827308655,-0.32466650009155273,0.11383678019046783,1.5280141830444336,-0.780414342880249,0.8757643699645996,0.9384910464286804,-0.06270551681518555,0.46108895540237427,2.1503794193267822,-0.19165587425231934,1.1722146272659302,0.829520583152771,0.6156717538833618,0.482344388961792,0.11885999143123627,-0.020436182618141174,-0.7572229504585266,-1.4944326877593994,-0.2798917591571808,0.27578204870224,-0.33690106868743896,-1.6191617250442505,-0.5856285691261292,-0.27559274435043335,1.386726975440979,0.32726144790649414,-0.6387317776679993,-0.24007195234298706,-0.6881675720214844,1.6521785259246826,-0.3894592523574829,0.910720944404602,-1.8104357719421387,0.1873546540737152,-0.5327125787734985,-0.1357066035270691,0.5593199133872986,0.8044693470001221,-0.7350072264671326,-0.33799245953559875,-0.07693213224411011,-0.6476647257804871,0.11363351345062256,0.24432824552059174,1.3548595905303955,1.4045028686523438,1.3005952835083008,2.4214859008789062,0.9361534118652344,1.4425822496414185,0.2044425904750824,-1.1253530979156494,0.5682533383369446,-2.090782403945923,0.1233975887298584,1.9008885622024536,0.8511440753936768,-0.6053065061569214,0.37331098318099976,0.5278502106666565,1.3012895584106445,-0.12003406882286072,-0.6797162294387817,-0.4203295409679413,1.8023478984832764,-0.12908580899238586,0.817076563835144,-0.457271933555603,1.0444201231002808,1.8291414976119995,-0.7127396464347839,-0.6230747699737549,-0.1598266065120697,1.4053019285202026,1.6790716648101807,0.18329760432243347,0.36270612478256226,0.7486146688461304,-1.5980515480041504,0.10676711797714233,-0.418450266122818,-1.0593500137329102,-2.8071072101593018,0.6650104522705078,0.09654638171195984,-1.5629613399505615,-1.7590813636779785,-0.6573566794395447,-1.5420310497283936,-1.5315160751342773,2.3988845348358154,-0.35799938440322876,-1.2407822608947754,0.12392459064722061,1.746599793434143,-1.3426271677017212,2.172895669937134,-0.3548178970813751,-0.6732074022293091,-1.1883184909820557,-0.7486686706542969,0.21411144733428955,-0.4865143597126007,0.3188893795013428,1.3137298822402954,1.8827013969421387,0.7751813530921936,0.0625598132610321,0.8603416085243225,-0.6900741457939148,-0.19762322306632996,-0.3517012894153595,0.09510944038629532,-0.8002340793609619,-2.9543819427490234,2.3918590545654297,0.04975485801696777,0.8378914594650269,1.0139586925506592,0.12259618937969208,0.15312698483467102,0.8302830457687378,0.0529782772064209,0.7513559460639954,2.375718355178833,1.732184886932373,-0.40828433632850647,0.7781194448471069,-1.1604077816009521,0.11528505384922028,-0.17132839560508728,-1.177079677581787,0.317030131816864,1.5307166576385498,-0.4877471625804901,0.05283110588788986,-0.9598059058189392,0.5438443422317505,1.0910210609436035,0.7729296684265137,1.204368233680725,1.7187002897262573,0.7824452519416809,1.2374863624572754,-0.31790071725845337,-1.2821860313415527,-0.27596184611320496,0.5128206610679626,1.2061717510223389,1.142262578010559,0.5916094779968262,0.3425225019454956,-0.666445255279541,-0.7048617601394653,0.6925134062767029,-0.5733374953269958,-1.0912755727767944,0.7279516458511353,0.3141762614250183,0.7123847007751465,-1.223902940750122,-0.7072103023529053 -2931,0.2566336989402771,-2.6869680881500244,-1.514808177947998,-0.43495434522628784,-1.0940954685211182,-0.19057592749595642,-0.36604389548301697,-1.6648880243301392,0.22108902037143707,1.3910727500915527,-1.471303939819336,-0.30583488941192627,1.2211503982543945,-0.49222511053085327,1.2362849712371826,-0.2722899913787842,0.33259063959121704,-0.24547192454338074,0.3003597855567932,0.1286899745464325,1.3791874647140503,-1.2868577241897583,-0.5199886560440063,0.6649705767631531,-0.8482335209846497,-0.8501566052436829,-0.24351274967193604,0.4661722779273987,-0.393998920917511,-0.6515860557556152,-0.5705413818359375,0.1354106366634369,0.40380796790122986,-0.5582085251808167,0.05712077021598816,0.5550877451896667,-0.5171364545822144,0.04628606140613556,-0.5989185571670532,0.15254345536231995,2.984445810317993,-0.03366926312446594,-0.11167503893375397,-0.9537103176116943,1.0241177082061768,-0.920559287071228,-0.3116251230239868,0.7201148271560669,0.6146032214164734,-3.12390398979187,-0.5149350166320801,0.4955300986766815,-0.2096039056777954,0.20251846313476562,-0.46837401390075684,1.1483747959136963,-0.8561910390853882,-1.549903392791748,-0.12315139174461365,-0.36141347885131836,1.4745020866394043,-2.277585029602051,0.10700234770774841,0.31279003620147705,-0.4589501619338989,1.0791981220245361,0.7352631092071533,0.8999480605125427,0.040478020906448364,-0.9956443905830383,-0.15023741126060486,0.9542503356933594,0.5560033917427063,-0.9851546287536621,-1.356786847114563,-0.4057709872722626,0.5798100233078003,0.9499977827072144,-1.2134599685668945,-0.10303670167922974,-0.9075598120689392,-1.1284234523773193,0.5166940689086914,1.0063539743423462,-0.9212050437927246,0.8076329827308655,-0.32466650009155273,0.11383678019046783,1.5280141830444336,-0.780414342880249,0.8757643699645996,0.9384910464286804,0.943611741065979,0.46108895540237427,1.773850440979004,-0.19165587425231934,1.1722146272659302,0.829520583152771,0.5820083022117615,0.482344388961792,0.12061037123203278,-0.020436182618141174,-0.7572229504585266,-1.4944326877593994,-0.7842787504196167,0.27578204870224,-0.6709712743759155,-1.6952793598175049,0.01786983013153076,-0.8077906370162964,1.386726975440979,0.32726144790649414,-0.6387317776679993,0.2892768979072571,-0.6881675720214844,1.4228451251983643,-0.3894592523574829,0.910720944404602,-1.1445019245147705,-0.17101424932479858,-0.5327125787734985,-0.1357066035270691,0.5593199133872986,0.8044693470001221,-0.7350072264671326,-0.33799245953559875,-0.07693213224411011,-0.6476647257804871,-0.2196582853794098,0.24432824552059174,1.3548595905303955,1.4045028686523438,1.3523813486099243,2.4214859008789062,0.9361534118652344,0.940823495388031,0.2044425904750824,-1.1253530979156494,0.5954654812812805,-2.280512809753418,0.1233975887298584,1.9008885622024536,0.7597739100456238,-0.6053065061569214,0.37331098318099976,0.5091291666030884,1.3012895584106445,-0.12003406882286072,-0.6797162294387817,-0.4203295409679413,1.8023478984832764,-0.12908580899238586,0.817076563835144,-0.5523977875709534,1.0444201231002808,1.8291414976119995,-0.7127396464347839,-0.6230747699737549,-0.49759361147880554,1.4053019285202026,1.6790716648101807,0.18329760432243347,0.36270612478256226,0.7486146688461304,-1.5980515480041504,0.10676711797714233,-0.418450266122818,-0.7421051859855652,-2.8071072101593018,0.6650104522705078,0.09654638171195984,-1.5629613399505615,-1.7590813636779785,-0.6573566794395447,-1.5420310497283936,-1.3227816820144653,2.3988845348358154,-0.35799938440322876,-1.2407822608947754,0.12392459064722061,1.746599793434143,-1.3426271677017212,2.172895669937134,-0.3548178970813751,-0.6732074022293091,-1.1883184909820557,-0.7486686706542969,0.21411144733428955,-0.4865143597126007,0.3188893795013428,1.3137298822402954,2.1107137203216553,0.7751813530921936,0.02284684032201767,0.8603416085243225,-0.6900741457939148,-0.19762322306632996,-0.3517012894153595,0.09510944038629532,-0.8002340793609619,-1.375848650932312,2.9258151054382324,0.04975485801696777,0.8441030979156494,1.0139586925506592,0.12259618937969208,0.7266225814819336,1.094319224357605,0.07268613576889038,0.7513559460639954,2.375718355178833,1.732184886932373,-0.09465241432189941,0.7781194448471069,-1.1604077816009521,0.7302855849266052,-0.17132839560508728,-1.177079677581787,0.317030131816864,1.5307166576385498,-0.5198391675949097,0.05283110588788986,-0.9598059058189392,0.5438443422317505,0.013130545616149902,0.7729296684265137,1.204368233680725,1.7187002897262573,0.7824452519416809,1.2374863624572754,-0.31790071725845337,0.022217750549316406,-0.27596184611320496,0.5128206610679626,1.2061717510223389,1.142262578010559,0.4682683050632477,0.5926101207733154,-0.666445255279541,-0.7048617601394653,0.10236132144927979,-0.5733374953269958,-1.0912755727767944,0.7279516458511353,0.3141762614250183,0.6691978573799133,0.31927013397216797,-0.7072103023529053 -2932,0.18755167722702026,-2.6869680881500244,-1.514808177947998,-0.43495434522628784,-1.0940954685211182,0.15754744410514832,-0.24582545459270477,-1.6648880243301392,0.22108902037143707,1.3910727500915527,-1.3917263746261597,-0.03546372056007385,1.2211503982543945,-0.49222511053085327,1.2362849712371826,-0.20126694440841675,0.33259063959121704,-0.24547192454338074,0.3450118601322174,-0.19653448462486267,1.3791874647140503,-1.019320011138916,-0.5199886560440063,0.6649705767631531,-0.8482335209846497,-0.8501566052436829,0.19096779823303223,0.2662511169910431,-0.393998920917511,-0.6515860557556152,-0.9135469794273376,0.1354106366634369,0.31844431161880493,-0.6312866806983948,0.05712077021598816,0.5550877451896667,-0.17396661639213562,0.2236567735671997,-1.006366491317749,0.02208895981311798,2.802058219909668,-0.03366926312446594,-0.11167503893375397,-0.9537103176116943,1.0241177082061768,-0.9677705764770508,-0.3116251230239868,0.7201148271560669,0.6146032214164734,-3.105644464492798,-0.5149350166320801,0.36945047974586487,-0.32592231035232544,0.05568750202655792,-0.4251008629798889,1.1483747959136963,-0.8561910390853882,-1.549903392791748,-0.12315139174461365,-0.36141347885131836,1.2697298526763916,-2.277585029602051,0.10700234770774841,0.31279003620147705,-0.9220950603485107,1.0791981220245361,0.7352631092071533,0.8999480605125427,0.040478020906448364,-0.9956443905830383,-0.0518932119011879,0.9542503356933594,0.5560033917427063,-0.9851546287536621,-1.514806866645813,-0.4057709872722626,0.7974894046783447,0.6823071241378784,-1.2692131996154785,-0.10303670167922974,-0.9075598120689392,-1.1284234523773193,0.5166940689086914,1.0063539743423462,-0.9212050437927246,0.8664905428886414,-0.32466650009155273,0.11383678019046783,1.5280141830444336,-0.780414342880249,0.8757643699645996,0.9384910464286804,0.8799231052398682,0.46108895540237427,1.773850440979004,-0.19165587425231934,0.8082014918327332,0.829520583152771,0.5820083022117615,0.482344388961792,-0.32258713245391846,0.448050856590271,-0.7572229504585266,-1.4944326877593994,-0.7842787504196167,0.27578204870224,-0.6709712743759155,-1.6952793598175049,0.01786983013153076,-0.8077906370162964,1.386726975440979,0.3486372232437134,-0.6387317776679993,0.2892768979072571,-0.6881675720214844,1.4228451251983643,-0.4060930907726288,0.910720944404602,-1.1445019245147705,-0.17101424932479858,-0.5327125787734985,-0.3051144480705261,0.5593199133872986,0.8044693470001221,-0.7350072264671326,-0.2988435626029968,-0.07693213224411011,-0.45026689767837524,-0.5054736137390137,0.24432824552059174,1.3548595905303955,1.4045028686523438,1.3523813486099243,2.4214859008789062,0.9361534118652344,0.940823495388031,0.2044425904750824,-1.1253530979156494,0.5954654812812805,-1.0873692035675049,0.1233975887298584,1.9008885622024536,1.501192331314087,-0.6053065061569214,0.37331098318099976,0.5091291666030884,1.3012895584106445,-0.12003406882286072,-0.6797162294387817,-1.0495704412460327,1.8023478984832764,-0.499877005815506,0.817076563835144,-0.5523977875709534,1.0444201231002808,1.8291414976119995,-0.5566756725311279,-0.6230747699737549,-0.49759361147880554,1.4053019285202026,1.9413840770721436,0.18329760432243347,0.36270612478256226,0.7486146688461304,-1.4277631044387817,0.02507110685110092,-0.04501953721046448,-0.7421051859855652,-2.8071072101593018,0.6682425141334534,0.09654638171195984,-1.5629613399505615,-1.7590813636779785,-0.6573566794395447,-1.5420310497283936,-1.3793880939483643,2.3988845348358154,-0.35799938440322876,-1.2407822608947754,0.14291253685951233,1.746599793434143,-1.3426271677017212,2.172895669937134,-0.3548178970813751,-0.6732074022293091,-1.1501522064208984,-0.7486686706542969,0.21411144733428955,-0.9569779634475708,0.5908061861991882,1.6711015701293945,2.1107137203216553,0.7751813530921936,0.02284684032201767,0.8603416085243225,-0.6900741457939148,-0.14420536160469055,-0.3517012894153595,0.09510944038629532,-0.8002340793609619,-1.2385858297348022,2.9258151054382324,0.01728043705224991,1.5601284503936768,1.0139586925506592,-0.2624770402908325,0.7266225814819336,0.7967825531959534,0.07268613576889038,0.7513559460639954,2.375718355178833,1.4766020774841309,-0.07573189586400986,0.2324565052986145,-1.1604077816009521,0.7302855849266052,0.6135410070419312,-0.6995236873626709,0.317030131816864,1.5307166576385498,-1.0604650974273682,0.05283110588788986,-1.1380150318145752,0.5438443422317505,0.12943431735038757,0.7729296684265137,1.204368233680725,1.2583246231079102,0.7824452519416809,1.286800742149353,-0.31790071725845337,0.022217750549316406,0.388030081987381,0.4677092134952545,1.2061717510223389,1.142262578010559,0.4682683050632477,0.9223407506942749,-0.5665842890739441,-0.9702646732330322,0.10236132144927979,-0.5733374953269958,-0.8997165560722351,0.998087465763092,0.3141762614250183,0.3920421898365021,0.31927013397216797,-0.7072103023529053 -2933,0.023189008235931396,-2.5575058460235596,-1.514808177947998,-0.43495434522628784,-1.0940954685211182,0.15754744410514832,-0.6749544739723206,-1.6648880243301392,0.22108902037143707,1.1797137260437012,-1.3917263746261597,-0.03546372056007385,1.2211503982543945,0.4289260506629944,1.2362849712371826,-0.20126694440841675,0.33259063959121704,-0.24547192454338074,0.3450118601322174,-0.35177165269851685,1.3791874647140503,-1.019320011138916,-0.22205090522766113,0.7521382570266724,-0.7975670695304871,-0.8501566052436829,0.19096779823303223,0.04882234334945679,-0.393998920917511,-0.6515860557556152,-0.9135469794273376,0.2311536818742752,0.31844431161880493,-0.6312866806983948,0.008120700716972351,0.5550877451896667,-0.17396661639213562,0.08987018465995789,-1.006366491317749,-0.7465265989303589,2.7885000705718994,-0.03366926312446594,0.00389862060546875,-1.1576753854751587,1.0241177082061768,-0.9677705764770508,-0.3116251230239868,0.7201148271560669,0.6146032214164734,-3.105644464492798,-0.5149350166320801,0.4040021002292633,-0.32592231035232544,0.05568750202655792,-0.3432883024215698,1.1483747959136963,-1.3642394542694092,-1.549903392791748,-0.12315139174461365,-0.36141347885131836,0.9065446853637695,-2.277585029602051,-0.16421270370483398,0.31279003620147705,-0.9220950603485107,1.0791981220245361,0.7352631092071533,0.9443337917327881,0.14697104692459106,-0.9956443905830383,-0.0518932119011879,0.4077538847923279,0.5560033917427063,-0.9851546287536621,-1.514806866645813,-0.5318188667297363,0.16691160202026367,0.5738149285316467,-1.2692131996154785,-0.0669911578297615,-0.9075598120689392,-1.1284234523773193,0.5166940689086914,1.0063539743423462,-0.9212050437927246,0.8664905428886414,-0.32466650009155273,0.11383678019046783,1.5280141830444336,-0.7581810355186462,0.6797914505004883,0.9384910464286804,0.8799231052398682,-0.18987995386123657,1.773850440979004,-0.3367605209350586,0.8082014918327332,0.6146787405014038,0.5820083022117615,0.482344388961792,-0.5652029514312744,0.4557230472564697,-0.7572229504585266,-1.736194133758545,-0.7842787504196167,0.27578204870224,-0.6709712743759155,-1.6952793598175049,-0.12585516273975372,-0.8077906370162964,1.386726975440979,0.3486372232437134,-0.6387317776679993,0.2892768979072571,-0.6881675720214844,1.4228451251983643,0.7772220373153687,0.910720944404602,-1.2962299585342407,-0.17101424932479858,-0.5327125787734985,-0.44875258207321167,0.032952725887298584,0.8044693470001221,-0.7350072264671326,-0.17036423087120056,-0.07693213224411011,-0.45026689767837524,-0.7902090549468994,0.24432824552059174,1.3548595905303955,1.4045028686523438,1.0828990936279297,2.4214859008789062,1.5355111360549927,0.5767133235931396,0.2044425904750824,-1.1253530979156494,0.0237312912940979,-1.0873692035675049,-0.30680662393569946,0.9941180348396301,1.501192331314087,-0.10117721557617188,0.37331098318099976,0.5091291666030884,1.3012895584106445,-0.12003406882286072,-0.6797162294387817,-1.0495704412460327,1.520268440246582,-0.499877005815506,0.817076563835144,-0.4970865845680237,1.0444201231002808,1.8291414976119995,-1.3282475471496582,-0.6230747699737549,-0.48721399903297424,1.4053019285202026,2.1393184661865234,0.18329760432243347,0.6648089289665222,0.895717978477478,-1.4277631044387817,0.02507110685110092,-0.04501953721046448,-0.7421051859855652,-2.8071072101593018,0.6682425141334534,-0.12806031107902527,-1.5629613399505615,-1.7590813636779785,-0.6573566794395447,-1.5420310497283936,-1.2731460332870483,2.3988845348358154,-0.4543742835521698,-1.2407822608947754,0.14291253685951233,1.746599793434143,-1.3426271677017212,2.172895669937134,-0.3548178970813751,-0.3410022556781769,-1.2610069513320923,-0.7486686706542969,0.21411144733428955,-0.9569779634475708,0.5908061861991882,1.6711015701293945,2.1107137203216553,0.7751813530921936,0.10597527027130127,0.8603416085243225,-0.6900741457939148,-0.14420536160469055,-0.3517012894153595,0.09510944038629532,-0.8002340793609619,-1.2385858297348022,2.9258151054382324,0.01728043705224991,1.5601284503936768,1.0139586925506592,-0.2624770402908325,0.5509211421012878,1.1620380878448486,0.8519068956375122,0.7513559460639954,2.375718355178833,1.5365514755249023,-0.07573189586400986,0.2324565052986145,-1.1604077816009521,-0.2340559959411621,0.6135410070419312,-0.6995236873626709,0.13035258650779724,1.5307166576385498,-1.0604650974273682,-0.552764892578125,-1.1380150318145752,0.5438443422317505,0.12943431735038757,0.7729296684265137,1.204368233680725,1.2583246231079102,0.7824452519416809,0.9887577295303345,0.7225843071937561,0.022217750549316406,0.388030081987381,0.4677092134952545,1.2061717510223389,1.142262578010559,0.4682683050632477,0.9223407506942749,-0.5665842890739441,-0.9702646732330322,0.10236132144927979,-1.7207798957824707,-0.8997165560722351,0.998087465763092,0.3141762614250183,0.3920421898365021,0.31927013397216797,-0.7072103023529053 -2934,0.023189008235931396,-2.5575058460235596,-1.4878215789794922,-0.43495434522628784,-1.1346657276153564,0.08890970051288605,-0.6749544739723206,-1.895164966583252,0.22108902037143707,1.310418963432312,-0.870686948299408,-0.03546372056007385,1.2211503982543945,0.5545501708984375,1.2362849712371826,-0.20126694440841675,0.33259063959121704,-0.24547192454338074,0.08751097321510315,-0.35177165269851685,1.8842198848724365,-1.019320011138916,-0.22205090522766113,0.7521382570266724,-0.7975670695304871,-0.9235302805900574,0.19096779823303223,0.5459216833114624,-0.393998920917511,-0.6515860557556152,-0.9135469794273376,-0.17109517753124237,0.2555863559246063,-0.6312866806983948,0.0839214026927948,0.5550877451896667,-0.17396661639213562,0.08987018465995789,-1.006366491317749,-0.7465265989303589,2.7885000705718994,-0.03366926312446594,-0.3103536069393158,-1.1576753854751587,1.0241177082061768,-0.9677705764770508,-0.3116251230239868,0.7201148271560669,0.6146032214164734,-3.105644464492798,-0.5149350166320801,0.7266950011253357,-0.4366918206214905,0.05568750202655792,-0.15726248919963837,1.1483747959136963,-1.9232696294784546,-1.549903392791748,-0.12315139174461365,-0.8030455112457275,0.9065446853637695,-2.277585029602051,0.6992676258087158,0.25452589988708496,-0.6116307377815247,1.0791981220245361,0.7352631092071533,0.9443337917327881,0.14697104692459106,-0.9956443905830383,-0.0518932119011879,0.6488399505615234,0.5560033917427063,-0.9851546287536621,-1.514806866645813,-0.47397682070732117,0.27990394830703735,0.5738149285316467,-0.9725171327590942,-0.0669911578297615,-0.9075598120689392,-0.7494949102401733,0.5166940689086914,1.0063539743423462,-0.9212050437927246,0.8664905428886414,-0.32466650009155273,0.11383678019046783,1.5280141830444336,-0.7581810355186462,0.6797914505004883,1.0887866020202637,0.8799231052398682,-0.18987995386123657,1.773850440979004,-0.3367605209350586,1.1566556692123413,0.6146787405014038,0.6373406052589417,0.482344388961792,-0.5652029514312744,0.4557230472564697,-0.7572229504585266,-1.5532164573669434,-0.7842787504196167,0.27578204870224,-0.6709712743759155,-1.6952793598175049,-0.12585516273975372,-0.4053247570991516,1.386726975440979,0.6037234663963318,-0.6387317776679993,0.2892768979072571,-0.01518946886062622,1.9092528820037842,0.4431740641593933,0.910720944404602,-1.2962299585342407,-0.17101424932479858,-0.5327125787734985,-0.8318630456924438,0.032952725887298584,0.8044693470001221,-0.7350072264671326,-0.17036423087120056,0.6542989015579224,-0.45026689767837524,-0.18430346250534058,0.24432824552059174,1.3548595905303955,1.4045028686523438,1.0828990936279297,2.4214859008789062,1.5355111360549927,0.5767133235931396,0.4960240423679352,-1.1253530979156494,0.0237312912940979,-0.9271655082702637,0.27785181999206543,0.9941180348396301,1.501192331314087,-0.10117721557617188,0.37331098318099976,0.5091291666030884,0.372039794921875,-0.12003406882286072,-0.32152318954467773,-1.1447367668151855,1.520268440246582,-0.499877005815506,0.817076563835144,-0.5907480716705322,1.0444201231002808,1.8678802251815796,-1.3282475471496582,-1.4816961288452148,-0.48721399903297424,1.4053019285202026,2.1393184661865234,0.18329760432243347,0.6648089289665222,1.3997600078582764,-1.0820417404174805,0.02507110685110092,-0.04501953721046448,-0.7421051859855652,-2.8071072101593018,0.6682425141334534,-0.12806031107902527,-1.5629613399505615,-1.2238751649856567,-1.1123830080032349,-1.6326652765274048,-0.9700338840484619,2.489201545715332,-1.5294607877731323,-1.4821676015853882,0.14291253685951233,1.746599793434143,-1.3426271677017212,2.172895669937134,-0.398113489151001,-0.3410022556781769,-1.1529666185379028,-0.7486686706542969,0.21411144733428955,-0.9315609335899353,0.5908061861991882,1.6711015701293945,2.1107137203216553,0.7751813530921936,0.10597527027130127,0.8603416085243225,-0.6900741457939148,-0.14420536160469055,-0.3517012894153595,0.09510944038629532,-0.9996799826622009,-1.2385858297348022,2.9258151054382324,0.01728043705224991,1.4435763359069824,1.0139586925506592,-0.2624770402908325,0.5509211421012878,1.1620380878448486,0.8519068956375122,0.7513559460639954,2.375718355178833,1.5365514755249023,-0.6153630018234253,0.2324565052986145,-1.1604077816009521,-0.2340559959411621,0.6135410070419312,-1.352247714996338,0.13035258650779724,1.5307166576385498,-1.0604650974273682,-0.7758055925369263,-0.7851383686065674,0.5438443422317505,0.4499553143978119,0.30896201729774475,1.204368233680725,1.5651601552963257,0.7824452519416809,0.9887577295303345,0.7225843071937561,0.022217750549316406,-1.1566969156265259,0.4677092134952545,1.2466591596603394,1.142262578010559,0.4682683050632477,0.9223407506942749,-0.5665842890739441,-1.0263142585754395,-0.27526238560676575,-1.6050474643707275,-0.548508882522583,0.998087465763092,0.3141762614250183,0.07537037134170532,0.31927013397216797,-0.7072103023529053 -2935,0.023189008235931396,-2.5575058460235596,-1.4878215789794922,-1.0100336074829102,-1.1346657276153564,0.08890970051288605,-0.6749544739723206,-1.895164966583252,0.4333333373069763,1.310418963432312,-0.870686948299408,-0.03546372056007385,1.2211503982543945,0.5545501708984375,1.0319963693618774,0.49423301219940186,-0.13012108206748962,-0.24547192454338074,0.08751097321510315,-0.35177165269851685,1.8842198848724365,-1.019320011138916,-0.4083985686302185,0.7163779139518738,-0.7975670695304871,-0.9235302805900574,0.19096779823303223,0.5459216833114624,-0.393998920917511,-0.6515860557556152,-0.9135469794273376,0.27961695194244385,0.2555863559246063,-0.6312866806983948,0.0839214026927948,0.5550877451896667,-0.17396661639213562,0.08987018465995789,-1.006366491317749,-0.41998445987701416,2.7885000705718994,-0.03366926312446594,-0.3103536069393158,-1.1576753854751587,1.0241177082061768,-0.9677705764770508,-0.3116251230239868,0.7201148271560669,0.6146032214164734,-3.105644464492798,-0.5149350166320801,0.7266950011253357,-0.4953939914703369,0.05568750202655792,-0.15726248919963837,1.1483747959136963,-1.9232696294784546,-1.9470422267913818,-0.12315139174461365,-0.8030455112457275,0.9065446853637695,-1.7615559101104736,0.6992676258087158,0.25452589988708496,-0.6116307377815247,1.0791981220245361,0.7352631092071533,0.7619043588638306,0.14697104692459106,-0.9956443905830383,-0.16804665327072144,0.6488399505615234,0.5660866498947144,-0.9851546287536621,-1.514806866645813,-0.47397682070732117,0.27990394830703735,0.5738149285316467,-0.8559737801551819,-0.18601515889167786,-0.9075598120689392,-0.7494949102401733,0.5166940689086914,0.7466405630111694,-0.9212050437927246,0.8472301959991455,-0.32466650009155273,0.11383678019046783,0.8954233527183533,-0.2877196669578552,0.6797914505004883,1.0887866020202637,1.452093243598938,-0.18987995386123657,1.773850440979004,-0.3367605209350586,1.1566556692123413,0.6146787405014038,0.31343764066696167,0.482344388961792,-0.5652029514312744,0.4557230472564697,-0.7572229504585266,-1.4857089519500732,-0.7842787504196167,-0.0805378258228302,-0.6709712743759155,-1.6952793598175049,-0.05121120810508728,-0.34696173667907715,1.5222790241241455,0.6037234663963318,-0.6387317776679993,0.2892768979072571,-0.661140501499176,2.0291378498077393,0.6126129627227783,0.7094959616661072,-1.2962299585342407,-0.17101424932479858,0.08858591318130493,-0.8318630456924438,0.032952725887298584,0.8044693470001221,-0.7350072264671326,-0.0652007982134819,0.6789903044700623,-0.45026689767837524,-0.18430346250534058,-0.16541244089603424,1.3548595905303955,1.4045028686523438,1.7152495384216309,1.63157320022583,1.5355111360549927,0.8204461336135864,0.4960240423679352,-1.1253530979156494,0.0237312912940979,-0.9271655082702637,0.27785181999206543,0.9941180348396301,1.3518321514129639,-0.564714789390564,-0.25428301095962524,-0.4020022749900818,0.19124379754066467,-0.12003406882286072,-0.33125704526901245,-1.1447367668151855,1.520268440246582,-0.499877005815506,0.817076563835144,-0.5907480716705322,1.0444201231002808,1.8678802251815796,-1.1963942050933838,-1.4816961288452148,-0.48721399903297424,1.4053019285202026,1.8357212543487549,0.18329760432243347,0.6648089289665222,1.3997600078582764,-1.0820417404174805,0.02507110685110092,-0.6744205951690674,-0.7421051859855652,-2.8071072101593018,0.6930434107780457,-0.12806031107902527,-0.8322586417198181,-1.2238751649856567,-1.1123830080032349,-1.6326652765274048,-0.9700338840484619,2.489201545715332,-1.2141629457473755,-1.4343421459197998,0.16759982705116272,1.746599793434143,-1.3426271677017212,2.172895669937134,-0.3465630114078522,-0.3410022556781769,-1.1250742673873901,-0.7486686706542969,0.21411144733428955,-0.9315609335899353,1.313377022743225,1.3120330572128296,2.1107137203216553,0.4868415892124176,0.3478933572769165,0.8603416085243225,0.09226113557815552,-0.44320759177207947,-0.3517012894153595,0.09510944038629532,-0.9996799826622009,-0.3005945682525635,2.9258151054382324,0.01728043705224991,1.4435763359069824,1.0139586925506592,0.1307348608970642,0.5509211421012878,1.1620380878448486,0.8519068956375122,-0.16547918319702148,2.375718355178833,1.5365514755249023,-0.6153630018234253,0.2324565052986145,-0.703614354133606,-0.2340559959411621,0.4936642050743103,-0.5296854376792908,0.13035258650779724,1.5307166576385498,-1.0604650974273682,-0.7758055925369263,-0.7851383686065674,0.5438443422317505,0.4499553143978119,0.36522185802459717,0.9892441630363464,1.5651601552963257,0.7824452519416809,1.0159868001937866,0.7225843071937561,0.022217750549316406,-1.042925238609314,1.2963093519210815,1.2466591596603394,1.142262578010559,0.4682683050632477,0.9223407506942749,-0.5665842890739441,-1.3590495586395264,-0.27526238560676575,-1.6050474643707275,0.666712760925293,0.998087465763092,0.3141762614250183,0.3775455057621002,0.31927013397216797,-0.7072103023529053 -2936,-0.6173253059387207,-2.5575058460235596,-1.4878215789794922,-1.0100336074829102,-1.1346657276153564,0.08890970051288605,-0.6749544739723206,-1.895164966583252,0.4333333373069763,1.310418963432312,-1.7666707038879395,-0.03546372056007385,1.2211503982543945,0.4941835403442383,1.0319963693618774,0.7266581058502197,-0.13012108206748962,-0.24547192454338074,0.3284354507923126,-0.35177165269851685,1.8842198848724365,-0.5639598965644836,-0.4083985686302185,0.7163779139518738,-0.29408252239227295,-1.0841760635375977,0.19096779823303223,0.5459216833114624,-0.393998920917511,-0.6515860557556152,-0.9135469794273376,0.27961695194244385,0.2555863559246063,-0.6312866806983948,0.02456299588084221,0.5550877451896667,-0.17396661639213562,0.08987018465995789,-1.006366491317749,-0.41998445987701416,2.786057233810425,0.4484897553920746,-0.3103536069393158,-1.1576753854751587,1.0415011644363403,-0.9677705764770508,-0.3116251230239868,0.7201148271560669,-0.091053307056427,-3.105644464492798,-0.5149350166320801,0.7266950011253357,-0.7290027737617493,-0.4894139766693115,-0.5047709345817566,1.1483747959136963,-1.252490758895874,-1.9470422267913818,-0.12315139174461365,-0.8030455112457275,0.9065446853637695,-1.7615559101104736,0.4862484931945801,0.25452589988708496,-0.7954421043395996,1.0791981220245361,0.7352631092071533,0.7049810290336609,0.14697104692459106,-0.9956443905830383,0.05026102066040039,1.5830504894256592,-0.20803743600845337,-0.9851546287536621,-1.514806866645813,-0.47397682070732117,0.27990394830703735,0.73600834608078,-0.8559737801551819,-0.18601515889167786,-0.7406430840492249,-0.7494949102401733,0.5166940689086914,0.7466405630111694,-1.056610107421875,0.8472301959991455,-0.24113905429840088,0.11383678019046783,0.3672959804534912,-0.2877196669578552,0.6797914505004883,1.0887866020202637,1.452093243598938,-0.18987995386123657,2.3135571479797363,-1.1501424312591553,1.1566556692123413,0.6146787405014038,0.024973422288894653,0.24407586455345154,-0.5652029514312744,-0.11746513843536377,-0.7572229504585266,-1.4857089519500732,-0.7842787504196167,-0.0805378258228302,-0.6709712743759155,-1.2467482089996338,-0.05121120810508728,-0.34696173667907715,1.3455238342285156,0.6037234663963318,-0.6387317776679993,0.2892768979072571,-0.661140501499176,2.0291378498077393,0.5750223994255066,0.7094959616661072,-1.2051174640655518,-0.17101424932479858,0.08858591318130493,-0.8318630456924438,-0.42804330587387085,0.8044693470001221,-0.7350072264671326,-0.0652007982134819,0.6789903044700623,-0.45026689767837524,-0.18430346250534058,-0.16541244089603424,1.3548595905303955,1.4045028686523438,1.7152495384216309,2.3632419109344482,1.306028127670288,0.8204461336135864,0.4960240423679352,-1.1253530979156494,0.6209937930107117,-0.9271655082702637,-0.6716029644012451,0.9941180348396301,1.3518321514129639,-0.564714789390564,-0.25428301095962524,-0.07171100378036499,0.19124379754066467,-0.12003406882286072,-0.33125704526901245,-1.1447367668151855,1.520268440246582,-0.499877005815506,0.6272170543670654,-1.1810731887817383,1.0811560153961182,1.8678802251815796,-1.1963942050933838,-1.1219393014907837,-0.48721399903297424,1.4053019285202026,1.8357212543487549,0.18329760432243347,0.6648089289665222,1.3997600078582764,-1.0820417404174805,-0.2787041962146759,-0.6744205951690674,-0.7421051859855652,-2.8071072101593018,0.5376861095428467,-0.12806031107902527,-0.5628526210784912,-1.2238751649856567,-1.1123830080032349,-1.6326652765274048,-1.222830891609192,2.489201545715332,-1.2141629457473755,-1.4343421459197998,0.5242087244987488,1.746599793434143,-1.3426271677017212,2.172895669937134,-0.3465630114078522,-0.3410022556781769,0.10385692119598389,-0.7828118205070496,0.21411144733428955,-0.19720005989074707,1.0068804025650024,1.3120330572128296,2.1107137203216553,0.7881757616996765,0.3478933572769165,-0.16988521814346313,-0.35234951972961426,-0.36669713258743286,-0.45151734352111816,0.09510944038629532,-1.1289386749267578,-0.3005945682525635,2.8121492862701416,0.5773381590843201,1.4435763359069824,1.0139586925506592,0.11448654532432556,0.5509211421012878,1.1620380878448486,0.8519068956375122,-0.16547918319702148,2.375718355178833,1.7385807037353516,-0.49965351819992065,0.2324565052986145,-0.0204925537109375,-0.2340559959411621,0.4936642050743103,-0.5296854376792908,-0.19206225872039795,1.2640827894210815,-0.7352977991104126,-0.5453346967697144,-0.7851383686065674,0.5438443422317505,0.4499553143978119,0.7662214040756226,1.2483490705490112,1.5651601552963257,0.7824452519416809,1.0159868001937866,0.7225843071937561,0.3024306893348694,-1.042925238609314,1.2963093519210815,1.2466591596603394,1.142262578010559,0.4682683050632477,0.5972756743431091,-0.5665842890739441,-1.200728416442871,0.17640399932861328,-1.1778008937835693,0.666712760925293,0.682758092880249,0.3141762614250183,0.3775455057621002,0.31927013397216797,-0.932753324508667 -2937,-0.6173253059387207,-2.5575058460235596,-1.4878215789794922,-1.0100336074829102,-0.6395848989486694,0.08890970051288605,-0.6579219102859497,-1.895164966583252,0.9714305996894836,1.310418963432312,-1.9891331195831299,-0.5128738880157471,1.3932321071624756,0.4941835403442383,1.0319963693618774,0.6308774352073669,-0.13012108206748962,-0.24547192454338074,0.025803983211517334,0.2519769072532654,1.3662445545196533,-0.7882134318351746,-0.4083985686302185,0.49784964323043823,-0.29408252239227295,-1.0841760635375977,0.19096779823303223,0.5459216833114624,-0.393998920917511,-0.6160432696342468,-0.9135469794273376,0.27961695194244385,0.2555863559246063,-0.7213319540023804,0.02456299588084221,0.5550877451896667,-0.312095046043396,-0.18039748072624207,-1.006366491317749,-0.41998445987701416,2.786057233810425,0.4484897553920746,-0.3103536069393158,-1.1576753854751587,1.0415011644363403,-0.9677705764770508,-0.3116251230239868,0.7201148271560669,-0.091053307056427,-3.105644464492798,-0.5149350166320801,1.3158588409423828,-0.7290027737617493,-0.4894139766693115,-0.48878517746925354,1.1483747959136963,-1.252490758895874,-1.8663681745529175,-0.12315139174461365,-0.8030455112457275,0.9065446853637695,-1.7615559101104736,0.4452666938304901,0.33698803186416626,-0.7954421043395996,1.0791981220245361,0.7352631092071533,0.7049810290336609,0.14697104692459106,-0.9956443905830383,0.05026102066040039,1.5830504894256592,0.2052869200706482,-0.8049817681312561,-1.514806866645813,-0.47397682070732117,0.27990394830703735,0.73600834608078,-0.6229357719421387,-0.18601515889167786,-0.7406430840492249,-0.7494949102401733,0.5166940689086914,0.5546600222587585,-1.056610107421875,0.8472301959991455,-0.24113905429840088,0.11383678019046783,0.3672959804534912,-0.2877196669578552,1.6083462238311768,1.0887866020202637,1.452093243598938,-0.18987995386123657,2.3135571479797363,-0.43670833110809326,1.1566556692123413,0.6146787405014038,0.024973422288894653,-0.17208507657051086,-0.5857937335968018,-0.3983295261859894,-0.7572229504585266,-1.6271213293075562,-0.7842787504196167,-0.9337478876113892,-0.8294711709022522,-1.2467482089996338,-0.05121120810508728,-0.34696173667907715,1.3455238342285156,0.15302720665931702,-0.6387317776679993,0.07531768083572388,-0.661140501499176,2.0291378498077393,0.5750223994255066,0.7094959616661072,-1.2051174640655518,-0.1690651774406433,0.08858591318130493,-0.8318630456924438,-0.42804330587387085,0.900190532207489,-0.7350072264671326,-0.0652007982134819,-0.29415154457092285,-0.45026689767837524,-0.5600774884223938,-0.16541244089603424,1.722619652748108,1.4045028686523438,1.0136793851852417,2.3632419109344482,1.5980108976364136,0.8204461336135864,0.4960240423679352,-1.1253530979156494,0.43013665080070496,-0.9271655082702637,-0.6716029644012451,0.9941180348396301,1.3518321514129639,-0.564714789390564,-0.6325969099998474,-0.07171100378036499,0.19124379754066467,-0.6475998163223267,-0.56092369556427,-0.9912555813789368,1.520268440246582,-0.6380712389945984,0.6272170543670654,-1.1810731887817383,0.2953082323074341,1.8678802251815796,-1.1963942050933838,-1.1219393014907837,0.08608117699623108,1.4053019285202026,1.8357212543487549,0.18329760432243347,0.6648089289665222,1.3997600078582764,-0.871495246887207,0.25345322489738464,-0.6744205951690674,-0.7421051859855652,-2.8071072101593018,0.528286337852478,-0.12806031107902527,-0.5628526210784912,-1.4166557788848877,-1.1123830080032349,-1.6326652765274048,-0.6170066595077515,2.489201545715332,-1.2141629457473755,-1.4343421459197998,0.6615210175514221,1.746599793434143,-1.0455381870269775,2.172895669937134,-0.3465630114078522,-0.3410022556781769,-0.1666688621044159,-0.7828118205070496,0.21411144733428955,-0.19720005989074707,0.15549218654632568,1.3120330572128296,1.6638318300247192,0.7881757616996765,-0.1596645712852478,-0.16988521814346313,-0.35234951972961426,-0.1459672600030899,-0.4915101230144501,0.09510944038629532,-1.1289386749267578,-0.3005945682525635,2.8121492862701416,0.5773381590843201,1.4435763359069824,1.0139586925506592,0.11448654532432556,0.24099284410476685,1.1620380878448486,0.8519068956375122,-0.16547918319702148,2.375718355178833,1.7385807037353516,-1.0216162204742432,0.2324565052986145,0.03421810269355774,-0.2340559959411621,0.5135467052459717,-0.9298296570777893,-0.19206225872039795,1.2640827894210815,-0.7352977991104126,-1.2992792129516602,-0.7851383686065674,0.5438443422317505,0.4499553143978119,0.7662214040756226,1.200683355331421,2.19858455657959,0.7824452519416809,1.0159868001937866,0.7225843071937561,0.3024306893348694,-1.042925238609314,1.258223533630371,1.2466591596603394,1.142262578010559,0.6631934642791748,0.42569029331207275,-0.2525448799133301,-1.200728416442871,0.17640399932861328,-1.1778008937835693,0.666712760925293,0.5310492515563965,0.3141762614250183,0.3775455057621002,0.31927013397216797,-0.015792369842529297 -2938,0.22439593076705933,-2.5575058460235596,-1.4878215789794922,-1.0100336074829102,-0.755589485168457,0.08890970051288605,-0.6579219102859497,-1.6413993835449219,0.9714305996894836,1.310418963432312,-1.9891331195831299,-0.5128738880157471,1.3932321071624756,0.4941835403442383,1.0319963693618774,0.6308774352073669,-0.13012108206748962,-0.25643420219421387,0.025803983211517334,0.2519769072532654,1.3662445545196533,-0.7882134318351746,-0.4083985686302185,0.49784964323043823,-0.29408252239227295,-1.0841760635375977,0.19096779823303223,0.6797668933868408,-0.393998920917511,-0.6160432696342468,-0.9135469794273376,0.4433262050151825,0.4247378706932068,-1.0529775619506836,0.02456299588084221,0.6723911762237549,-0.312095046043396,-0.18039748072624207,-1.2431949377059937,-0.41998445987701416,2.786057233810425,0.4484897553920746,-0.3103536069393158,-1.1576753854751587,0.8964508771896362,-0.9677705764770508,-0.3116251230239868,0.7201148271560669,0.12269532680511475,-2.547236442565918,-0.8536632061004639,1.8324897289276123,-0.7290027737617493,-0.4894139766693115,-0.3792279362678528,1.1483747959136963,-1.252490758895874,-1.0992298126220703,-0.12315139174461365,-0.8030455112457275,0.9065446853637695,-2.025602102279663,0.4352751076221466,0.33698803186416626,-0.7954421043395996,1.0791981220245361,0.7352631092071533,0.7049810290336609,0.14697104692459106,-0.9956443905830383,0.05026102066040039,1.5830504894256592,0.2052869200706482,-0.8049817681312561,-1.514806866645813,-0.02952900528907776,0.27990394830703735,0.73600834608078,-0.32331666350364685,-0.18601515889167786,-0.7406430840492249,-0.7494949102401733,0.5166940689086914,0.4422317445278168,-1.056610107421875,0.8472301959991455,0.6615909934043884,0.2719307839870453,0.3672959804534912,-0.8877540230751038,1.6083462238311768,1.0887866020202637,1.452093243598938,-0.18987995386123657,2.141167163848877,-1.6841646432876587,1.105139970779419,0.6146787405014038,0.024973422288894653,-0.17208507657051086,-0.5857937335968018,-0.8215805292129517,-0.7572229504585266,-1.1174074411392212,-0.7842787504196167,-0.9337478876113892,-1.1306575536727905,-1.2467482089996338,-0.05121120810508728,-0.34696173667907715,1.3455238342285156,0.15302720665931702,-1.985828161239624,0.07531768083572388,-0.661140501499176,2.0291378498077393,0.7347039580345154,0.7094959616661072,-1.2051174640655518,-0.1690651774406433,0.08858591318130493,-0.8025530576705933,-0.42804330587387085,0.8284903764724731,-0.7350072264671326,-0.7624834775924683,-0.29415154457092285,-0.45026689767837524,-0.5600774884223938,-0.46466922760009766,1.722619652748108,1.4045028686523438,1.0136793851852417,2.3632419109344482,1.5980108976364136,0.8204461336135864,0.4960240423679352,-1.1253530979156494,0.03909829258918762,-0.9271655082702637,-0.6689620018005371,1.0176312923431396,1.3518321514129639,-0.564714789390564,-0.6325969099998474,-0.7782237529754639,0.19124379754066467,-0.6475998163223267,0.07699966430664062,-0.9912555813789368,1.2031593322753906,-0.8913129568099976,0.1952107846736908,-1.1810731887817383,0.27412712574005127,1.8678802251815796,-1.1963942050933838,-1.706141471862793,0.08608117699623108,1.4053019285202026,1.8357212543487549,-0.23337581753730774,0.6648089289665222,0.482826292514801,-0.871495246887207,0.25345322489738464,-0.6744205951690674,-0.7421051859855652,-2.8071072101593018,0.528286337852478,-0.549795389175415,-1.3827064037322998,-1.4166557788848877,-1.1123830080032349,-1.401914358139038,-0.6170066595077515,2.489201545715332,-1.3897939920425415,-1.4139059782028198,0.3694792687892914,1.578176736831665,-1.0455381870269775,2.172895669937134,-0.3465630114078522,-0.3410022556781769,-0.1666688621044159,-0.7828118205070496,0.21411144733428955,0.06740120053291321,1.1486523151397705,1.3120330572128296,1.6638318300247192,0.7881757616996765,-0.1596645712852478,-0.16988521814346313,-0.719947338104248,0.22657276690006256,-0.4915101230144501,0.5419082045555115,-1.1289386749267578,-0.3005945682525635,2.8121492862701416,0.2007167637348175,1.4435763359069824,1.2240710258483887,-0.23043787479400635,0.24707603454589844,0.7475951910018921,0.8519068956375122,-0.16547918319702148,2.375718355178833,1.663817048072815,-1.0216162204742432,-0.40869373083114624,0.03421810269355774,-0.2340559959411621,0.5135467052459717,-0.9298296570777893,-0.19206225872039795,1.2640827894210815,-0.5449378490447998,-1.2992792129516602,-0.7851383686065674,0.5438443422317505,0.4499553143978119,0.7662214040756226,1.200683355331421,2.288099765777588,0.7824452519416809,1.0159868001937866,0.8514856100082397,0.3024306893348694,-1.042925238609314,1.258223533630371,1.2466591596603394,1.5122720003128052,0.865627646446228,0.42569029331207275,-0.735722541809082,-1.200728416442871,0.17640399932861328,-1.1778008937835693,0.666712760925293,0.8221008777618408,0.3141762614250183,0.3468121588230133,0.31927013397216797,-0.015792369842529297 -2939,0.07325132191181183,-1.7540602684020996,-1.4878215789794922,-1.0100336074829102,-0.5564727783203125,0.08890970051288605,-0.6579219102859497,-1.6413993835449219,0.6788486838340759,1.310418963432312,-1.7410246133804321,-0.974535346031189,1.3932321071624756,0.4941835403442383,1.4759522676467896,0.3525775074958801,-0.13012108206748962,-0.25643420219421387,0.025803983211517334,0.2519769072532654,1.3662445545196533,-0.7882134318351746,-0.7388473749160767,0.7749017477035522,-0.29408252239227295,-1.0841760635375977,0.15739160776138306,0.6797668933868408,-0.393998920917511,-0.6160432696342468,-0.5733417272567749,0.4433262050151825,0.4247378706932068,-1.0529775619506836,-0.2893020212650299,0.6723911762237549,-0.312095046043396,-0.10492303222417831,-1.2431949377059937,-0.41998445987701416,2.786057233810425,0.4484897553920746,-0.3103536069393158,-1.1576753854751587,0.9933041334152222,-0.9677705764770508,-0.3116251230239868,0.7201148271560669,0.12269532680511475,-3.096743106842041,-0.8536632061004639,1.825355052947998,-0.3442401885986328,0.13098931312561035,-0.3792279362678528,1.1483747959136963,-1.252490758895874,-1.0992298126220703,-0.12315139174461365,-0.8030455112457275,0.9065446853637695,-1.4726823568344116,-0.03022623062133789,-0.5378545522689819,-0.7954421043395996,1.0791981220245361,0.7352631092071533,0.7049810290336609,0.23741137981414795,-0.9956443905830383,0.05026102066040039,1.5830504894256592,0.2052869200706482,-0.8049817681312561,-0.9291189312934875,-0.02952900528907776,0.741032600402832,0.5781095027923584,-0.5942683219909668,-0.18601515889167786,-0.609309196472168,-0.7494949102401733,0.5166940689086914,0.4422317445278168,-1.056610107421875,0.8472301959991455,0.6615909934043884,0.2719307839870453,0.3672959804534912,-0.8877540230751038,1.5567086935043335,1.0887866020202637,1.7002626657485962,-0.18987995386123657,2.141167163848877,-0.9771730303764343,1.105139970779419,-0.9215165376663208,0.07083752751350403,-0.17208507657051086,-0.5857937335968018,-0.18773961067199707,-1.4012725353240967,-1.1174074411392212,-1.0278679132461548,-0.7795913815498352,-1.1306575536727905,-0.6434711813926697,-0.11309759318828583,-0.34696173667907715,1.0844221115112305,0.15302720665931702,-1.985828161239624,0.07531768083572388,-0.661140501499176,2.0291378498077393,0.7347039580345154,0.7094959616661072,-1.2051174640655518,-0.1690651774406433,0.08858591318130493,-0.8025530576705933,0.7237563729286194,0.8284903764724731,-0.7350072264671326,-0.29279136657714844,-0.29415154457092285,-0.7911003828048706,-0.3118298649787903,-0.46466922760009766,1.722619652748108,1.4045028686523438,1.0136793851852417,2.3632419109344482,1.5980108976364136,0.8204461336135864,0.28450196981430054,-1.2260620594024658,0.03909829258918762,-0.9271655082702637,-0.6581089496612549,1.0176312923431396,1.3518321514129639,0.7895618677139282,-1.6332354545593262,-0.7782237529754639,0.6205124855041504,-0.6475998163223267,0.07699966430664062,-0.9912555813789368,1.2031593322753906,-0.8913129568099976,0.1952107846736908,-0.8399367332458496,0.27412712574005127,1.8678802251815796,-1.1963942050933838,-1.706141471862793,0.08608117699623108,1.6928702592849731,1.8357212543487549,-0.47832953929901123,0.6648089289665222,0.20990720391273499,-0.871495246887207,0.25345322489738464,-0.6744205951690674,-0.7421051859855652,-2.8071072101593018,0.528286337852478,-0.36305198073387146,-1.3827064037322998,-1.4166557788848877,-0.9168145060539246,-0.898469865322113,-0.6170066595077515,2.489201545715332,-1.3897939920425415,-1.9317989349365234,0.3694792687892914,1.578176736831665,-1.0455381870269775,2.172895669937134,-0.3465630114078522,-0.3410022556781769,-0.35503512620925903,-0.7828118205070496,-0.38184940814971924,-0.7340965270996094,0.802831768989563,1.3120330572128296,1.3880317211151123,0.7881757616996765,-0.1596645712852478,-0.16988521814346313,-0.719947338104248,0.7515141367912292,-0.4915101230144501,0.5419082045555115,-1.1289386749267578,-0.3005945682525635,2.8121492862701416,-0.08598318696022034,1.4435763359069824,1.2240710258483887,-0.1908702850341797,0.24707603454589844,0.7475951910018921,0.8519068956375122,-0.16547918319702148,2.375718355178833,1.663817048072815,-1.0216162204742432,-0.40869373083114624,0.07976411283016205,-0.033274680376052856,0.5135467052459717,-1.886061191558838,-0.19206225872039795,1.2640827894210815,-0.31753480434417725,-1.2992792129516602,-0.7874186038970947,0.6550323963165283,0.5032153129577637,0.5195671319961548,1.200683355331421,1.5490103960037231,0.7824452519416809,1.2380566596984863,0.8514856100082397,0.3024306893348694,-1.042925238609314,1.0566926002502441,1.2466591596603394,1.5122720003128052,0.865627646446228,0.42569029331207275,-0.735722541809082,-1.200728416442871,0.17640399932861328,-1.1778008937835693,0.666712760925293,0.13530904054641724,0.3141762614250183,0.2021181285381317,0.31927013397216797,-0.015792369842529297 -2940,0.07325132191181183,-2.2686069011688232,-1.5769426822662354,-1.0100336074829102,-0.5564727783203125,0.08890970051288605,-0.6579219102859497,-1.6413993835449219,0.6788486838340759,1.310418963432312,-1.4682693481445312,-0.974535346031189,0.759090006351471,0.4941835403442383,1.4759522676467896,0.3525775074958801,-0.7976328134536743,0.116853266954422,0.025803983211517334,0.07171423733234406,1.3662445545196533,-0.7882134318351746,-0.7388473749160767,0.7749017477035522,-0.07399563491344452,-1.0841760635375977,0.15739160776138306,1.0215106010437012,-0.393998920917511,-0.9958662390708923,-0.4638364911079407,0.4433262050151825,0.14325007796287537,-1.0736280679702759,-0.2893020212650299,0.6723911762237549,-0.312095046043396,0.5888013243675232,-1.2431949377059937,-0.41998445987701416,2.838848114013672,0.4484897553920746,-0.3103536069393158,-1.1576753854751587,0.9933041334152222,-0.9677705764770508,-0.8382789492607117,0.7201148271560669,0.12269532680511475,-3.096743106842041,-0.8536632061004639,1.825355052947998,-0.3442401885986328,0.13098931312561035,-0.3939439356327057,0.6042709350585938,-1.252490758895874,-1.3547687530517578,-0.12315139174461365,0.3341217041015625,1.0701606273651123,-1.4726823568344116,-0.03022623062133789,-0.5378545522689819,-0.7954421043395996,0.8891397714614868,0.7352631092071533,0.7049810290336609,0.6876205205917358,-0.49311816692352295,0.3347046673297882,1.5830504894256592,0.2052869200706482,-0.6082268357276917,-0.9291189312934875,-0.02952900528907776,0.741032600402832,0.5781095027923584,-0.5942683219909668,-0.18601515889167786,-0.6278135776519775,-0.7494949102401733,0.7806133031845093,0.4422317445278168,-1.056610107421875,0.8472301959991455,0.6615909934043884,0.2719307839870453,0.3672959804534912,0.14071768522262573,1.5567086935043335,1.0887866020202637,1.7002626657485962,-0.18987995386123657,2.141167163848877,-0.682418704032898,1.105139970779419,-0.9215165376663208,0.07083752751350403,-0.17208507657051086,-0.5857937335968018,-0.18773961067199707,-1.6641310453414917,-1.1174074411392212,-1.0129578113555908,-0.30373507738113403,-1.1306575536727905,-0.6434711813926697,-0.11309759318828583,-0.8259025812149048,1.0844221115112305,0.15302720665931702,-1.153627634048462,0.07531768083572388,-1.4801911115646362,1.8098304271697998,0.7347039580345154,0.7094959616661072,-1.006385326385498,-0.1690651774406433,0.12898270785808563,-2.6757287979125977,0.7237563729286194,1.0232160091400146,-0.7350072264671326,-0.29279136657714844,0.6132024526596069,-0.7911003828048706,-0.10189670324325562,-0.46466922760009766,1.722619652748108,1.7820591926574707,1.0136793851852417,1.5391714572906494,0.6214383840560913,0.8204461336135864,-0.15143519639968872,-1.2260620594024658,0.7325652837753296,-0.4738289713859558,-0.6950713992118835,0.6740056872367859,1.3518321514129639,-0.44303905963897705,-1.6332354545593262,-0.3292117714881897,0.6205124855041504,-0.6475998163223267,0.07699966430664062,-0.9912555813789368,1.2031593322753906,-0.28131377696990967,0.1952107846736908,-0.19485247135162354,0.5020207166671753,1.8678802251815796,-1.1963942050933838,-1.706141471862793,0.08608117699623108,1.9228929281234741,1.8357212543487549,-0.37203583121299744,0.9167972803115845,0.20990720391273499,-0.871495246887207,0.25345322489738464,-0.6744205951690674,-1.5064404010772705,-2.8071072101593018,0.528286337852478,-0.36305198073387146,-1.3827064037322998,-1.4166557788848877,-0.9168145060539246,-0.898469865322113,-0.6170066595077515,2.489201545715332,-1.2768309116363525,-1.9317989349365234,0.3694792687892914,1.2619706392288208,-1.0455381870269775,2.172895669937134,-0.5519543290138245,-0.3410022556781769,-0.35503512620925903,0.1876654028892517,-0.38184940814971924,-0.7340965270996094,0.802831768989563,1.3120330572128296,1.3880317211151123,0.7881757616996765,-0.1596645712852478,-0.3171091675758362,-0.5935592651367188,0.36184069514274597,-0.4915101230144501,0.5419082045555115,-1.1289386749267578,-0.3005945682525635,2.8121492862701416,-0.08598318696022034,1.3184360265731812,1.2240710258483887,-0.7506299018859863,0.24707603454589844,0.7475951910018921,0.8519068956375122,-0.3394847810268402,2.375718355178833,1.663817048072815,-0.9410586953163147,-0.40869373083114624,-0.45452797412872314,-0.033274680376052856,0.5135467052459717,-1.886061191558838,-0.19206225872039795,1.2640827894210815,-0.27876943349838257,-1.2992792129516602,-1.3584835529327393,0.6550323963165283,0.5032153129577637,0.5195671319961548,1.200683355331421,1.4523965120315552,0.7824452519416809,0.9895195960998535,0.8514856100082397,0.3024306893348694,-1.042925238609314,1.0772080421447754,1.0003361701965332,1.5122720003128052,0.865627646446228,0.42569029331207275,-0.735722541809082,-1.6147222518920898,0.17640399932861328,-1.1778008937835693,0.7049939632415771,0.13530904054641724,0.21768450736999512,0.2021181285381317,0.31927013397216797,-0.07739989459514618 -2941,-0.8439379334449768,-2.2686069011688232,-1.5769426822662354,-1.0100336074829102,-0.5564727783203125,0.08890970051288605,-0.7651934623718262,-1.6413993835449219,0.6788486838340759,1.310418963432312,-1.704927921295166,-1.5340198278427124,0.759090006351471,0.4941835403442383,1.4759522676467896,0.3525775074958801,-0.7976328134536743,0.116853266954422,0.025803983211517334,0.07171423733234406,1.3662445545196533,-0.3884916305541992,-0.7388473749160767,0.7749017477035522,-0.9556046724319458,-1.0841760635375977,0.15739160776138306,1.0215106010437012,-0.393998920917511,-0.9958662390708923,-0.3878231942653656,0.4433262050151825,0.14325007796287537,-1.0736280679702759,-0.2893020212650299,0.17989933490753174,-0.312095046043396,0.5888013243675232,-1.5555708408355713,-0.41998445987701416,2.838848114013672,0.4484897553920746,-0.46243757009506226,-1.1576753854751587,0.9933041334152222,-0.9677705764770508,-0.8382789492607117,0.7201148271560669,0.24071122705936432,-3.096743106842041,-0.8536632061004639,1.825355052947998,-0.5231649875640869,0.13098931312561035,-0.522098183631897,0.6065270900726318,-1.6490020751953125,-1.7380483150482178,-0.19318458437919617,0.3341217041015625,1.0701606273651123,-2.0110950469970703,-0.03022623062133789,-0.5378545522689819,-0.7954421043395996,0.8891397714614868,0.7352631092071533,0.7049810290336609,0.75676029920578,-0.12589353322982788,0.3347046673297882,0.9922457337379456,0.2052869200706482,-0.6082268357276917,-1.152958631515503,-0.02952900528907776,0.741032600402832,0.5781095027923584,-0.5942683219909668,-0.18601515889167786,-0.6278135776519775,-0.9498828649520874,0.7806133031845093,0.4422317445278168,-1.056610107421875,0.8472301959991455,0.6615909934043884,-0.61882483959198,0.3672959804534912,-1.1826329231262207,1.5567086935043335,1.0887866020202637,1.7002626657485962,0.19576218724250793,2.141167163848877,-0.682418704032898,1.105139970779419,-0.9215165376663208,0.07083752751350403,-0.17208507657051086,-0.5857937335968018,-0.18773961067199707,-1.6641310453414917,-1.1174074411392212,-1.0129578113555908,-0.30373507738113403,-1.1306575536727905,-1.3550723791122437,-0.48523175716400146,-0.8259025812149048,1.0844221115112305,0.5063549280166626,-1.153627634048462,0.07531768083572388,-1.4801911115646362,1.8098304271697998,0.7347039580345154,0.7094959616661072,-1.006385326385498,0.2553172707557678,-0.7722409963607788,-2.6757287979125977,0.1819344162940979,1.0232160091400146,-0.7350072264671326,-0.29279136657714844,0.6132024526596069,-0.7911003828048706,-0.10189670324325562,-0.46466922760009766,1.543121576309204,1.7820591926574707,0.9459702968597412,1.5391714572906494,0.6214383840560913,0.8204461336135864,-0.15143519639968872,-1.2260620594024658,0.7325652837753296,-0.7198714017868042,-0.6950713992118835,0.6740056872367859,1.3518321514129639,-0.8623796105384827,-1.6332354545593262,-0.3292117714881897,0.6205124855041504,-0.6475998163223267,0.07699966430664062,-0.9912555813789368,1.2031593322753906,-1.1139857769012451,0.1952107846736908,-0.19485247135162354,0.5020207166671753,1.8678802251815796,-1.1963942050933838,-2.0068070888519287,0.08608117699623108,1.9228929281234741,1.8357212543487549,-0.37203583121299744,1.2168197631835938,0.20990720391273499,-0.5209617614746094,0.25345322489738464,-0.6744205951690674,-0.18696165084838867,-2.8071072101593018,0.528286337852478,-0.4328809082508087,-1.3827064037322998,-1.4166557788848877,-0.9168145060539246,-0.898469865322113,-0.6170066595077515,1.8001357316970825,-1.2768309116363525,-1.9317989349365234,0.3694792687892914,1.30325186252594,-1.0455381870269775,2.470710039138794,-0.5519543290138245,-0.3410022556781769,-0.9976661801338196,-0.29261454939842224,-0.38184940814971924,-0.7340965270996094,0.802831768989563,1.3120330572128296,1.3376855850219727,0.7881757616996765,-0.1596645712852478,-0.3171091675758362,-0.5935592651367188,0.36184069514274597,-0.4915101230144501,0.5419082045555115,-1.1289386749267578,-0.3005945682525635,2.8121492862701416,0.10910214483737946,1.3184360265731812,1.2240710258483887,-0.7506299018859863,0.24707603454589844,0.7475951910018921,0.8519068956375122,-0.3394847810268402,1.7952296733856201,1.5290673971176147,-0.9410586953163147,-0.07713431119918823,-0.45452797412872314,-0.033274680376052856,0.5135467052459717,-1.886061191558838,-0.19206225872039795,1.2640827894210815,-0.2197471410036087,-0.3598499298095703,-1.3584835529327393,-0.2551247477531433,0.5032153129577637,0.5195671319961548,1.200683355331421,1.4523965120315552,0.7824452519416809,0.9895195960998535,0.8514856100082397,-0.16605544090270996,-1.042925238609314,1.0772080421447754,1.0003361701965332,1.5122720003128052,0.865627646446228,0.42569029331207275,-0.735722541809082,-1.6147222518920898,0.17640399932861328,-1.1778008937835693,0.7049939632415771,0.13530904054641724,0.21768450736999512,0.2021181285381317,-0.2679230570793152,-0.07739989459514618 -2942,-0.8439379334449768,-2.2686069011688232,-1.5769426822662354,-1.0100336074829102,-0.5564727783203125,0.11484084278345108,-0.7651934623718262,-1.2620697021484375,0.8049713373184204,1.310418963432312,-1.2694448232650757,-1.5340198278427124,1.4446384906768799,0.4941835403442383,1.8468775749206543,-0.14968055486679077,-0.7976328134536743,0.116853266954422,0.025803983211517334,0.07171423733234406,1.8873515129089355,-0.3884916305541992,-0.7388473749160767,0.8105024099349976,-0.5911743640899658,-1.0841760635375977,0.15739160776138306,1.0215106010437012,-0.393998920917511,-0.9958662390708923,-0.3878231942653656,0.4433262050151825,0.7094079256057739,-1.0736280679702759,-0.05178643763065338,-0.1609346568584442,-0.312095046043396,0.5888013243675232,-0.7052674293518066,-0.033985435962677,2.838848114013672,-0.314415842294693,-0.46243757009506226,-0.8573435544967651,0.9933041334152222,-0.9677705764770508,-0.8382789492607117,0.7201148271560669,0.24071122705936432,-3.096743106842041,-0.8536632061004639,1.825355052947998,-0.5231649875640869,0.13098931312561035,-0.47508981823921204,0.6065270900726318,-1.6490020751953125,-1.7380483150482178,-0.19318458437919617,0.33206653594970703,1.0701606273651123,-1.7371708154678345,-0.03022623062133789,-0.6441866159439087,-0.5907981395721436,0.8891397714614868,0.7352631092071533,0.7049810290336609,0.75676029920578,-0.12589353322982788,0.3347046673297882,0.9922457337379456,-0.07010030746459961,-0.6082268357276917,-1.152958631515503,-0.02952900528907776,0.741032600402832,0.9455196857452393,-0.7328445911407471,-0.18601515889167786,-1.0456637144088745,-0.9498828649520874,1.0394785404205322,0.4422317445278168,-1.056610107421875,0.8472301959991455,0.6615909934043884,-0.61882483959198,0.3672959804534912,-0.9405006170272827,1.5567086935043335,0.7141417860984802,1.7002626657485962,-0.2967306077480316,2.0144355297088623,-0.682418704032898,0.8179498314857483,-0.9215165376663208,0.07083752751350403,-0.17208507657051086,-0.5857937335968018,0.5519002079963684,-2.288936138153076,-1.1174074411392212,-1.3000540733337402,-0.30373507738113403,-1.1306575536727905,-1.3550723791122437,-0.48523175716400146,-0.8259025812149048,1.0844221115112305,0.5063549280166626,-1.153627634048462,0.07531768083572388,-1.4801911115646362,1.8098304271697998,0.7347039580345154,0.7094959616661072,-1.006385326385498,0.2553172707557678,-0.7722409963607788,-2.6757287979125977,0.1819344162940979,1.0232160091400146,-0.7350072264671326,-0.29279136657714844,0.6132024526596069,-0.7911003828048706,-0.10189670324325562,-0.46466922760009766,1.543121576309204,1.7820591926574707,0.9459702968597412,1.8217053413391113,0.6214383840560913,0.8052606582641602,-0.15143519639968872,-0.5386558175086975,1.7878913879394531,-0.7198714017868042,0.08383738994598389,1.0218470096588135,1.3518321514129639,0.37474673986434937,-0.7689085006713867,0.08843502402305603,0.6205124855041504,-0.6475998163223267,0.07699966430664062,-0.6618192195892334,1.2031593322753906,-1.1139857769012451,0.10218865424394608,-0.19485247135162354,0.5020207166671753,1.8678802251815796,-1.0221335887908936,-2.0068070888519287,-0.11158913373947144,1.7643916606903076,1.960592269897461,-0.37203583121299744,1.2168197631835938,0.20990720391273499,-0.5209617614746094,0.25345322489738464,-0.6744205951690674,-0.18696165084838867,-2.8071072101593018,0.5095467567443848,-0.4328809082508087,-1.3179271221160889,-1.4166557788848877,-0.9168145060539246,-0.898469865322113,-0.6170066595077515,1.4096343517303467,-1.1342005729675293,-1.9317989349365234,0.3694792687892914,1.30325186252594,-1.402307391166687,2.470710039138794,-0.5519543290138245,-0.05529937148094177,-0.9976661801338196,-0.4187416434288025,-0.38184940814971924,-0.7325618863105774,0.5354295969009399,1.3120330572128296,1.3376855850219727,0.7881757616996765,-0.1596645712852478,-0.3171091675758362,-0.5935592651367188,0.30976903438568115,-0.4915101230144501,0.5419082045555115,-1.1289386749267578,-0.3005945682525635,2.960418462753296,0.87529456615448,0.910964846611023,1.2240710258483887,-0.7506299018859863,0.24707603454589844,0.7475951910018921,0.8519068956375122,-0.3394847810268402,1.9718945026397705,1.5290673971176147,-0.9410586953163147,0.12587806582450867,-0.45452797412872314,-0.033274680376052856,0.3058610260486603,-1.886061191558838,-0.19206225872039795,1.2640827894210815,-0.2197471410036087,-0.3598499298095703,-1.3584835529327393,-0.2551247477531433,0.7664651274681091,0.5195671319961548,1.200683355331421,1.4523965120315552,0.7824452519416809,0.9895195960998535,0.8514856100082397,-0.16605544090270996,-1.042925238609314,1.0772080421447754,0.909846842288971,1.5122720003128052,0.42192772030830383,0.42569029331207275,-0.735722541809082,-1.6147222518920898,0.5532265901565552,-0.583619236946106,0.8613619804382324,0.0520583912730217,0.21768450736999512,0.2021181285381317,-0.2679230570793152,-2.2099127769470215 -2943,-0.5050985813140869,-2.2686069011688232,-1.5769426822662354,-1.0100336074829102,-0.9477266073226929,0.058086153119802475,-0.7651934623718262,-1.2620697021484375,0.8049713373184204,1.4088045358657837,-1.2694448232650757,-1.5340198278427124,1.4446384906768799,0.4941835403442383,1.8468775749206543,0.23284924030303955,-0.14910918474197388,0.07713708281517029,0.025803983211517334,0.07171423733234406,1.2365329265594482,-0.3884916305541992,-0.7388473749160767,0.8105024099349976,-0.10881945490837097,-1.0841760635375977,0.15739160776138306,1.0215106010437012,-0.393998920917511,-0.532387375831604,-0.3878231942653656,0.4433262050151825,0.4620894193649292,-1.0736280679702759,-0.05178643763065338,0.0007146745920181274,-0.312095046043396,0.5888013243675232,-1.1116069555282593,-0.033985435962677,3.0767955780029297,-0.021779954433441162,-0.2917964458465576,-0.8452954292297363,0.9933041334152222,-0.9677705764770508,-0.8382789492607117,0.6403712630271912,0.24071122705936432,-2.5275166034698486,-0.46755507588386536,1.825355052947998,-0.529128909111023,0.13098931312561035,-0.47508981823921204,0.6065270900726318,-1.0826992988586426,-2.1082844734191895,-0.19318458437919617,0.33206653594970703,1.0135598182678223,-1.7371708154678345,-0.03022623062133789,-0.6441866159439087,-0.18782880902290344,0.8891397714614868,0.7352631092071533,0.7049810290336609,0.75676029920578,-0.12589353322982788,0.3347046673297882,0.9922457337379456,-0.07010030746459961,-0.6082268357276917,-1.353926658630371,-0.02952900528907776,0.5646995306015015,1.2565088272094727,-0.7328445911407471,-0.6921584606170654,-0.9859102368354797,-0.9498828649520874,1.0394785404205322,0.8966666460037231,-0.879347562789917,0.8472301959991455,0.6615909934043884,-0.61882483959198,0.3672959804534912,-0.9405006170272827,1.433292269706726,0.7141417860984802,1.7002626657485962,-1.0831187963485718,2.0144355297088623,-0.9366739988327026,0.8179498314857483,-1.1083937883377075,0.3503253161907196,-0.17208507657051086,-0.5857937335968018,0.5519002079963684,-2.288936138153076,-1.3070093393325806,-1.4489463567733765,-0.30373507738113403,-1.1306575536727905,-0.7940981388092041,0.3059418201446533,-0.8259025812149048,1.0105574131011963,0.5063549280166626,-1.153627634048462,0.07531768083572388,-1.4801911115646362,1.8098304271697998,0.7347039580345154,0.7094959616661072,-1.006385326385498,0.2553172707557678,-0.8804702162742615,-2.6757287979125977,0.1819344162940979,1.0418158769607544,-0.7350072264671326,-0.29279136657714844,0.6132024526596069,-0.7911003828048706,-0.10189670324325562,-0.46466922760009766,1.543121576309204,1.7820591926574707,0.9459702968597412,1.8217053413391113,-0.014643073081970215,1.5129204988479614,-0.15143519639968872,-0.5386558175086975,2.1936399936676025,-0.7198714017868042,0.08383738994598389,0.7074459791183472,1.3518321514129639,0.37474673986434937,-0.7689085006713867,0.08843502402305603,1.4474443197250366,-0.08768671751022339,-0.06960536539554596,-0.6618192195892334,1.1718958616256714,-1.1139857769012451,0.10218865424394608,-0.4596472382545471,0.5020207166671753,1.8678802251815796,-0.5857007503509521,-2.0068070888519287,-0.11158913373947144,1.7643916606903076,1.7838149070739746,-0.49079766869544983,0.8679404258728027,0.20990720391273499,-0.5209617614746094,0.25345322489738464,-0.6744205951690674,-0.18696165084838867,-2.8071072101593018,0.5095467567443848,-0.4328809082508087,-1.3179271221160889,-1.4745913743972778,-1.0352716445922852,-0.898469865322113,-0.6170066595077515,1.4096343517303467,-1.1342005729675293,-1.9317989349365234,1.122959852218628,1.30325186252594,-1.402307391166687,2.470710039138794,-0.46655723452568054,-0.05529937148094177,-0.9976661801338196,-0.4187416434288025,-0.38184940814971924,-1.052931308746338,0.5354295969009399,1.3120330572128296,1.3376855850219727,0.7881757616996765,-0.07802142947912216,-0.3171091675758362,-0.30643072724342346,0.24895738065242767,0.006062448024749756,0.5419082045555115,-1.1289386749267578,-0.3005945682525635,2.960418462753296,0.87529456615448,0.910964846611023,1.0686620473861694,-0.7506299018859863,0.24707603454589844,0.7475951910018921,0.8519068956375122,-0.3394847810268402,1.9718945026397705,1.5290673971176147,-0.8765559196472168,0.12587806582450867,-0.45452797412872314,-0.6069639921188354,0.3058610260486603,-1.886061191558838,-0.19206225872039795,1.0883498191833496,-0.2197471410036087,-0.3598499298095703,-1.3584835529327393,-0.2551247477531433,0.24002474546432495,0.5195671319961548,1.200683355331421,1.4523965120315552,0.7824452519416809,0.9895195960998535,0.8514856100082397,0.1321297287940979,-1.042925238609314,1.0399630069732666,1.0364973545074463,1.5122720003128052,0.42192772030830383,0.42569029331207275,-0.81718909740448,-1.6147222518920898,0.5532265901565552,-0.583619236946106,0.8613619804382324,0.4427851736545563,0.23414698243141174,0.2021181285381317,-0.2679230570793152,-2.2099127769470215 -2944,-0.5789163112640381,-2.068814516067505,-3.346118927001953,-0.8698018789291382,-0.9477266073226929,0.058086153119802475,-0.31975528597831726,-1.2620697021484375,0.8049713373184204,1.4088045358657837,-0.8976547718048096,-1.5340198278427124,0.8899536728858948,0.4941835403442383,1.9422411918640137,0.23284924030303955,-0.14910918474197388,0.07713708281517029,0.025803983211517334,0.07171423733234406,1.3344250917434692,-0.3884916305541992,-0.7388473749160767,0.15652447938919067,-0.10881945490837097,-1.0841760635375977,0.15739160776138306,0.8734124302864075,-0.393998920917511,-0.532387375831604,-0.3878231942653656,0.4433262050151825,0.2796400785446167,-1.0736280679702759,-0.05178643763065338,0.0007146745920181274,-0.312095046043396,0.5888013243675232,-1.1116069555282593,-0.033985435962677,2.9608633518218994,-0.021779954433441162,-0.2917964458465576,-0.8452954292297363,0.9933041334152222,-0.9677705764770508,0.3628554940223694,0.33371955156326294,0.24071122705936432,-2.8121256828308105,-0.46755507588386536,1.825355052947998,-0.529128909111023,0.5008740425109863,-0.47508981823921204,0.6065270900726318,-1.0826992988586426,-2.1082844734191895,-0.19318458437919617,-1.0638558864593506,1.3841350078582764,-1.7371708154678345,-0.03022623062133789,-0.6441866159439087,-0.48147323727607727,0.8298674821853638,0.8195350766181946,0.7049810290336609,0.31668853759765625,-0.12589353322982788,0.3347046673297882,0.9922457337379456,-0.006318524479866028,-0.6082268357276917,-1.353926658630371,-0.02952900528907776,0.5646995306015015,0.968575119972229,-0.7328445911407471,-0.6921584606170654,-0.9859102368354797,-0.9498828649520874,1.0394785404205322,1.0535469055175781,-0.9323995113372803,0.8472301959991455,-0.16120117902755737,-0.33791226148605347,0.3672959804534912,-0.9405006170272827,1.433292269706726,0.7141417860984802,1.7002626657485962,-1.0831187963485718,2.0144355297088623,-1.190124273300171,0.8179498314857483,-1.1018412113189697,0.3503253161907196,-0.17208507657051086,-0.7130306959152222,0.5519002079963684,-1.9123008251190186,-1.3070093393325806,-1.4489463567733765,-0.30373507738113403,-1.1306575536727905,-0.7940981388092041,0.3059418201446533,-0.8259025812149048,1.0105574131011963,0.5063549280166626,-1.153627634048462,0.07531768083572388,-1.4801911115646362,1.8098304271697998,0.7347039580345154,0.7094959616661072,-1.006385326385498,0.2553172707557678,-0.8804702162742615,-2.6757287979125977,0.1819344162940979,1.0418158769607544,-0.7350072264671326,-0.29279136657714844,0.6132024526596069,-0.7911003828048706,-0.319629430770874,-0.46466922760009766,0.3333975076675415,1.7820591926574707,0.9459702968597412,1.8217053413391113,0.7700235843658447,1.5129204988479614,-0.15143519639968872,-0.5386558175086975,1.9588286876678467,-0.7198714017868042,0.08383738994598389,1.3987690210342407,1.3518321514129639,0.37474673986434937,-0.7689085006713867,-0.06207980215549469,0.891719400882721,0.0724778026342392,0.0817861557006836,-0.6618192195892334,1.1718958616256714,-0.7098056674003601,0.30182865262031555,-0.4596472382545471,0.687454879283905,2.037463426589966,-0.7104736566543579,-2.284864902496338,-0.11158913373947144,1.7643916606903076,1.9288158416748047,-0.49079766869544983,0.8679404258728027,0.20990720391273499,-0.5209617614746094,0.25345322489738464,-0.6744205951690674,-0.18696165084838867,-2.8071072101593018,0.6765930652618408,-0.4328809082508087,-1.0211066007614136,-1.4745913743972778,-1.0352716445922852,-1.152091145515442,-0.10005152225494385,1.4029959440231323,-1.1342005729675293,-1.9317989349365234,1.122959852218628,1.30325186252594,-1.2925238609313965,2.470710039138794,-0.46655723452568054,-0.05529937148094177,-0.9976661801338196,-0.4187416434288025,-0.38184940814971924,-1.6137360334396362,0.5354295969009399,1.436145305633545,1.3376855850219727,0.9133678078651428,-0.07802142947912216,-0.47461336851119995,-0.30643072724342346,0.24895738065242767,0.006062448024749756,0.5419082045555115,-1.1289386749267578,-0.3005945682525635,3.29300594329834,0.87529456615448,0.910964846611023,1.249903917312622,-0.2316497564315796,0.24707603454589844,0.7475951910018921,0.8519068956375122,-0.3394847810268402,1.7895604372024536,1.5290673971176147,-0.8765559196472168,0.12587806582450867,-0.45452797412872314,-0.6069639921188354,0.3058610260486603,-1.8017586469650269,-0.19206225872039795,1.0883498191833496,0.669083833694458,-0.3598499298095703,-1.3584835529327393,0.4818756580352783,0.24002474546432495,0.5195671319961548,1.200683355331421,1.6449018716812134,0.7824452519416809,0.8112937211990356,0.8514856100082397,0.1321297287940979,-1.042925238609314,1.0399630069732666,1.0364973545074463,1.5122720003128052,0.3853180706501007,0.8711279630661011,-1.0483230352401733,-1.2929130792617798,0.5532265901565552,0.05298805236816406,0.8613619804382324,0.4427851736545563,-0.05533704161643982,0.2021181285381317,-0.2679230570793152,-1.031840205192566 -2945,-0.5789163112640381,-2.068814516067505,-2.5079290866851807,-0.7421789765357971,-0.9477266073226929,0.058086153119802475,-0.31975528597831726,-1.2620697021484375,0.8049713373184204,1.4088045358657837,-1.0385702848434448,-1.5340198278427124,0.8899536728858948,0.4941835403442383,1.6705107688903809,0.23284924030303955,-0.14910918474197388,0.07713708281517029,0.025803983211517334,-0.23419417440891266,1.9829107522964478,-0.12757441401481628,-0.7388473749160767,0.15652447938919067,-0.10881945490837097,-1.0841760635375977,0.15739160776138306,0.8734124302864075,-0.393998920917511,-0.532387375831604,-0.34327417612075806,0.5810618996620178,0.2796400785446167,-1.0736280679702759,-0.05178643763065338,0.0007146745920181274,-0.312095046043396,0.40036147832870483,-1.1116069555282593,-0.033985435962677,2.9608633518218994,-0.021779954433441162,-0.2917964458465576,-0.8452954292297363,1.077847957611084,-0.9677705764770508,0.3628554940223694,0.33371955156326294,0.24071122705936432,-2.8121256828308105,-0.46755507588386536,1.825355052947998,-0.529128909111023,0.5008740425109863,-0.47508981823921204,0.2349296510219574,-1.2336413860321045,-2.1082844734191895,-0.19318458437919617,-1.0638558864593506,1.3841350078582764,-1.7371708154678345,-0.03022623062133789,-0.6441866159439087,-0.5308217406272888,0.8298674821853638,0.8195350766181946,0.7049810290336609,0.3030818700790405,-0.6063265800476074,0.3347046673297882,0.9922457337379456,-0.006318524479866028,-0.6082268357276917,-1.6696528196334839,-0.02952900528907776,0.5646995306015015,0.6822710037231445,-1.5142983198165894,-0.6921584606170654,-0.9859102368354797,-0.5461341142654419,1.0394785404205322,1.0535469055175781,-0.9323995113372803,0.8472301959991455,-0.5567891597747803,-0.33791226148605347,0.3672959804534912,-0.9405006170272827,0.986624002456665,0.7141417860984802,1.7002626657485962,-1.1985530853271484,2.0144355297088623,-0.738325834274292,0.8179498314857483,-0.5376214385032654,0.3503253161907196,-0.17208507657051086,-1.5445916652679443,0.5519002079963684,-1.9123008251190186,-0.5875085592269897,-1.4489463567733765,-0.30373507738113403,-0.13800644874572754,-0.7940981388092041,0.23884932696819305,-0.8259025812149048,1.0105574131011963,0.5063549280166626,-1.153627634048462,0.07531768083572388,-2.0577478408813477,1.8098304271697998,0.632200300693512,0.7094959616661072,-1.006385326385498,0.042354315519332886,-0.8804702162742615,-2.7456493377685547,0.1819344162940979,1.0418158769607544,-0.7350072264671326,-0.29279136657714844,0.6132024526596069,-0.7911003828048706,-0.319629430770874,-0.46466922760009766,0.3333975076675415,1.7820591926574707,0.9459702968597412,2.3309619426727295,1.0531102418899536,1.5129204988479614,-0.15143519639968872,-0.5386558175086975,1.9588286876678467,-0.7198714017868042,0.08383738994598389,1.3987690210342407,1.3518321514129639,0.37474673986434937,-0.7689085006713867,-0.06207980215549469,0.891719400882721,-0.7609812021255493,-0.29592448472976685,-0.8373446464538574,1.2817058563232422,-0.7098056674003601,0.30182865262031555,-0.4596472382545471,0.687454879283905,2.037463426589966,-0.7104736566543579,-2.284864902496338,-0.11158913373947144,1.7643916606903076,1.803107500076294,-0.06754624843597412,0.8679404258728027,0.4882965087890625,-0.5209617614746094,0.25345322489738464,-0.6744205951690674,-0.8866130113601685,-2.8071072101593018,0.3684156835079193,-0.4328809082508087,-0.1588507890701294,-1.4745913743972778,-1.0352716445922852,-1.152091145515442,-0.10005152225494385,1.9867969751358032,-1.1342005729675293,-1.9317989349365234,0.85346519947052,1.30325186252594,-1.2925238609313965,2.470710039138794,-0.46655723452568054,-0.48565182089805603,-0.9016517996788025,-0.8097572326660156,-0.38184940814971924,-1.6137360334396362,0.5354295969009399,1.436145305633545,1.3376855850219727,0.9133678078651428,-0.07802142947912216,-0.47461336851119995,-0.30643072724342346,0.24895738065242767,0.006062448024749756,0.5419082045555115,-1.3238322734832764,-0.3005945682525635,3.29300594329834,0.87529456615448,0.8265427350997925,1.249903917312622,-0.2316497564315796,0.22265924513339996,0.7475951910018921,0.8519068956375122,-0.3394847810268402,1.7895604372024536,1.8320517539978027,-0.5358854532241821,0.12587806582450867,-0.22103169560432434,-0.6069639921188354,0.3058610260486603,-1.0721395015716553,0.2777419984340668,0.9447546005249023,0.669083833694458,-0.3598499298095703,-1.3584835529327393,0.4818756580352783,0.24002474546432495,0.5195671319961548,1.1249635219573975,1.6449018716812134,0.7824452519416809,0.6036739945411682,0.8514856100082397,-0.4449692368507385,-1.042925238609314,1.0399630069732666,1.0364973545074463,1.5122720003128052,0.8908591270446777,0.8711279630661011,-0.6061581969261169,-1.2929130792617798,0.5532265901565552,0.135425865650177,0.8613619804382324,0.4427851736545563,-0.05533704161643982,0.41737306118011475,-0.2679230570793152,-1.031840205192566 -2946,-0.5789163112640381,-2.0769941806793213,-2.9811768531799316,-0.7421789765357971,-0.9477266073226929,0.058086153119802475,0.011595070362091064,-1.2620697021484375,0.8049713373184204,1.4088045358657837,-1.0385702848434448,-1.5340198278427124,0.8282454013824463,0.6238470673561096,1.3488954305648804,0.23284924030303955,-0.06750452518463135,0.07713708281517029,0.025803983211517334,-0.23419417440891266,1.9829107522964478,-0.12757441401481628,-0.7388473749160767,0.15652447938919067,-0.10881945490837097,-1.0841760635375977,-0.09886494278907776,0.6360066533088684,-0.393998920917511,-0.532387375831604,-0.309555321931839,0.5810618996620178,0.19456180930137634,-0.8984692692756653,-0.07849113643169403,0.21725688874721527,-0.312095046043396,0.40036147832870483,-1.1116069555282593,-0.033985435962677,2.9608633518218994,0.11486166715621948,-0.2917964458465576,-1.017690896987915,1.077847957611084,-0.9675225615501404,0.3628554940223694,0.33371955156326294,0.24071122705936432,-2.8121256828308105,-0.46755507588386536,1.825355052947998,-0.529128909111023,0.5008740425109863,-0.47508981823921204,0.2349296510219574,-0.8327897191047668,-2.1082844734191895,-0.19318458437919617,-1.0638558864593506,1.2297519445419312,-1.634149193763733,-0.03022623062133789,-0.6441866159439087,-0.39797675609588623,0.8298674821853638,0.8195350766181946,0.7049810290336609,0.3030818700790405,-0.6063265800476074,0.3347046673297882,0.9922457337379456,-0.006318524479866028,-0.6082268357276917,-1.6696528196334839,-0.37264373898506165,0.5646995306015015,0.6822710037231445,-1.5142983198165894,-0.5300321578979492,-0.9859102368354797,-0.5461341142654419,1.0394785404205322,1.0535469055175781,-0.9323995113372803,0.8472301959991455,0.001216590404510498,-0.33791226148605347,0.3672959804534912,-0.9405006170272827,0.7352118492126465,0.7141417860984802,0.574378252029419,-1.1985530853271484,1.4702379703521729,-1.2960784435272217,0.8179498314857483,-0.5376214385032654,0.4148010015487671,-0.7811992168426514,-1.2077233791351318,0.5519002079963684,-1.9123008251190186,-0.4726340174674988,-1.4489463567733765,-0.2104230523109436,-0.91542649269104,-0.7940981388092041,0.23884932696819305,-0.8259025812149048,1.701064109802246,0.5063549280166626,-1.153627634048462,0.07531768083572388,-2.0577478408813477,1.734037160873413,0.632200300693512,0.7094959616661072,-1.006385326385498,0.042354315519332886,-0.8804702162742615,-2.5677740573883057,0.1819344162940979,1.1776562929153442,-0.7350072264671326,-0.29279136657714844,0.6132024526596069,-0.7911003828048706,-0.319629430770874,0.4388366937637329,1.5900787115097046,1.7820591926574707,0.9459702968597412,2.3309619426727295,1.0531102418899536,0.8615625500679016,-0.15143519639968872,-0.5386558175086975,1.9588286876678467,-0.7198714017868042,-0.5260521173477173,1.3987690210342407,1.3238818645477295,0.37474673986434937,-0.7689085006713867,-0.06207980215549469,0.891719400882721,-0.7609812021255493,-0.29592448472976685,-0.8373446464538574,1.4492557048797607,-0.7098056674003601,0.30182865262031555,-1.081535816192627,0.687454879283905,2.037463426589966,-0.7104736566543579,-2.284864902496338,-0.11158913373947144,1.7643916606903076,1.803107500076294,-0.26691609621047974,0.8679404258728027,0.8890681266784668,-0.5209617614746094,-0.1316206455230713,-0.6794930100440979,-1.7400729656219482,-2.8071072101593018,0.3684156835079193,-0.8315843343734741,-0.1588507890701294,-1.4745913743972778,-1.0352716445922852,-1.0422416925430298,-0.10005152225494385,1.9867969751358032,-1.1918351650238037,-1.9317989349365234,0.7693873047828674,1.4210602045059204,-0.6364235281944275,2.353771209716797,-0.46655723452568054,0.06938698887825012,-0.9016517996788025,-0.15738141536712646,-0.38184940814971924,-1.1297370195388794,0.5354295969009399,1.436145305633545,1.3376855850219727,0.9133678078651428,0.3004199266433716,-0.47461336851119995,-0.30643072724342346,0.24895738065242767,-0.1227400153875351,0.5419082045555115,-0.49332094192504883,-0.8190404772758484,2.799774646759033,0.87529456615448,0.9061915874481201,1.249903917312622,-0.2316497564315796,0.22265924513339996,0.7475951910018921,0.8519068956375122,-0.06526583433151245,2.1397173404693604,1.8320517539978027,-1.088271141052246,0.3509442210197449,-0.22103169560432434,-0.6069639921188354,0.014966070652008057,-1.0721395015716553,-0.030880123376846313,1.092384696006775,0.44043517112731934,-0.3598499298095703,-1.3584835529327393,0.4818756580352783,0.4183955490589142,0.5195671319961548,1.1909600496292114,1.3231439590454102,0.7824452519416809,0.6036739945411682,0.8514856100082397,0.08870065212249756,-1.042925238609314,0.8538510799407959,0.5409508943557739,1.5122720003128052,0.8908591270446777,0.8711279630661011,-0.6061581969261169,-1.2929130792617798,0.8276355862617493,0.135425865650177,0.39302709698677063,0.4427851736545563,-0.05533704161643982,0.41737306118011475,-0.2679230570793152,-1.031840205192566 -2947,-0.5789163112640381,-2.0769941806793213,-2.9811768531799316,-0.8009644746780396,-0.9477266073226929,0.06091921404004097,-0.2135419249534607,-1.2620697021484375,0.5595403909683228,1.4088045358657837,-1.0385702848434448,-1.5340198278427124,1.1436352729797363,0.6238470673561096,1.3488954305648804,0.23284924030303955,0.018053703010082245,0.07713708281517029,0.025803983211517334,0.0396733433008194,1.2931411266326904,-0.12757441401481628,-0.6002973318099976,0.15652447938919067,-0.10881945490837097,-1.0841760635375977,-0.09886494278907776,0.6360066533088684,-0.4706452488899231,-0.532387375831604,-0.7805795669555664,0.10974881052970886,0.19456180930137634,-0.8984692692756653,-0.07849113643169403,0.21725688874721527,0.25884348154067993,0.40036147832870483,-1.1116069555282593,-0.033985435962677,3.0893073081970215,0.10491319745779037,-0.2917964458465576,-1.017690896987915,1.077847957611084,-0.9675225615501404,0.3628554940223694,0.33371955156326294,0.24071122705936432,-2.8121256828308105,-0.04539266228675842,1.4040770530700684,-0.529128909111023,0.5008740425109863,-0.8539807796478271,0.2349296510219574,-0.8327897191047668,-2.1082844734191895,-0.19318458437919617,-1.0638558864593506,1.2297519445419312,-1.634149193763733,-0.11477695405483246,-0.6441866159439087,-0.39797675609588623,0.8298674821853638,0.8195350766181946,0.7049810290336609,0.3030818700790405,-0.6063265800476074,0.3347046673297882,0.9922457337379456,-0.13444578647613525,-0.6082268357276917,-1.6696528196334839,-0.37264373898506165,0.5646995306015015,0.6822710037231445,-1.5142983198165894,-0.5300321578979492,-1.1348499059677124,-1.0156009197235107,1.0417600870132446,1.0535469055175781,-0.35511839389801025,0.35589659214019775,0.001216590404510498,-0.8371358513832092,0.3672959804534912,-0.9405006170272827,0.7352118492126465,0.7141417860984802,0.574378252029419,-0.7768152356147766,1.4253768920898438,-1.2960784435272217,0.8179498314857483,-0.5376214385032654,0.4148010015487671,-0.7811992168426514,-1.2077233791351318,0.5519002079963684,-1.7954295873641968,-1.144432783126831,-1.4489463567733765,-0.2104230523109436,-0.91542649269104,-1.0944992303848267,0.23884932696819305,-0.4766422212123871,1.701064109802246,0.5063549280166626,-1.415296196937561,0.07531768083572388,-2.0577478408813477,1.970725178718567,0.632200300693512,0.5964153409004211,-1.006385326385498,0.042354315519332886,-0.6048369407653809,-2.5677740573883057,-0.3104880154132843,1.1776562929153442,-0.7350072264671326,-0.29279136657714844,0.7213281393051147,-0.7911003828048706,-0.319629430770874,0.7718464136123657,1.5900787115097046,1.7820591926574707,0.9459702968597412,2.3309619426727295,0.7780684232711792,0.8615625500679016,-0.15143519639968872,-0.5386558175086975,1.9588286876678467,-0.7294653654098511,-0.5260521173477173,1.3987690210342407,1.3238818645477295,0.37474673986434937,-0.7689085006713867,-0.06207980215549469,0.891719400882721,-0.9964867830276489,-0.29592448472976685,-0.8373446464538574,1.4492557048797607,-0.7098056674003601,0.30182865262031555,-1.081535816192627,0.687454879283905,2.037463426589966,-0.7104736566543579,-1.4274194240570068,0.16643080115318298,1.7643916606903076,1.803107500076294,-0.26691609621047974,0.8679404258728027,0.8890681266784668,-0.5209617614746094,-0.1316206455230713,-0.6794930100440979,-1.7400729656219482,-2.0695157051086426,0.3684156835079193,-0.8315843343734741,-0.1588507890701294,-1.7059149742126465,-1.0352716445922852,-1.0422416925430298,-0.25200602412223816,1.9867969751358032,-1.1918351650238037,-1.9317989349365234,0.7693873047828674,1.4210602045059204,-0.6364235281944275,2.1154861450195312,-0.46655723452568054,0.22777186334133148,-0.9016517996788025,-0.15738141536712646,-0.38184940814971924,-1.1164541244506836,0.6794064044952393,1.436145305633545,1.3376855850219727,0.9133678078651428,0.3004199266433716,-0.47461336851119995,-0.30643072724342346,0.3043740391731262,-0.1227400153875351,0.5419082045555115,-0.49332094192504883,-0.6982439756393433,2.799774646759033,0.8438584804534912,1.4346390962600708,1.1870052814483643,-0.2316497564315796,0.22265924513339996,0.7475951910018921,-0.054049015045166016,-0.06526583433151245,2.1397173404693604,1.7788522243499756,-0.5612567663192749,1.1765741109848022,-0.22103169560432434,0.21301805973052979,0.6879742741584778,-1.0721395015716553,-0.030880123376846313,1.092384696006775,-0.0010136961936950684,-0.17772409319877625,-1.3584835529327393,0.13974547386169434,-0.554887056350708,0.679510772228241,1.1225234270095825,1.3231439590454102,-0.03874772787094116,0.6036739945411682,0.5644777417182922,0.08870065212249756,-1.042925238609314,0.8538510799407959,0.5409508943557739,1.5122720003128052,-0.3432326316833496,0.8711279630661011,-0.6061581969261169,-1.2929130792617798,0.8276355862617493,0.135425865650177,0.39302709698677063,0.4427851736545563,-0.05533704161643982,0.41737306118011475,-0.6871196031570435,-0.6891894340515137 -2948,-0.5789163112640381,-2.0769941806793213,-2.9811768531799316,-0.3841846287250519,-0.9477266073226929,0.06091921404004097,-0.2135419249534607,-1.2620697021484375,0.5595403909683228,1.4088045358657837,-1.0385702848434448,-1.5340198278427124,1.1436352729797363,0.6238470673561096,1.3488954305648804,0.23284924030303955,0.018053703010082245,0.07713708281517029,0.025803983211517334,-0.3918444514274597,1.43136465549469,0.13071966171264648,-0.6002973318099976,0.11817316710948944,-0.6365939378738403,-1.0841760635375977,-0.09886494278907776,0.6360066533088684,-0.8300671577453613,-0.532387375831604,-0.7805795669555664,0.10974881052970886,0.19456180930137634,-0.9639008641242981,-0.07849113643169403,0.19934573769569397,0.2510482966899872,0.05515211820602417,-1.1116069555282593,-0.033985435962677,2.7803966999053955,-0.211063951253891,-0.2917964458465576,-0.6694368720054626,1.2616301774978638,-0.9675225615501404,0.3628554940223694,0.33371955156326294,0.24071122705936432,-2.8121256828308105,-0.04539266228675842,1.4040770530700684,-0.529128909111023,0.1509656012058258,-0.8539807796478271,0.2349296510219574,-0.8327897191047668,-1.6972506046295166,-0.38450339436531067,-1.0638558864593506,1.2297519445419312,-1.3949533700942993,-0.11477695405483246,-0.6441866159439087,-0.39797675609588623,0.8298674821853638,0.8195350766181946,0.7049810290336609,0.3030818700790405,-1.0085617303848267,0.3347046673297882,-0.24307781457901,0.05093863606452942,-0.6082268357276917,-1.832987904548645,-0.37264373898506165,-0.027718186378479004,0.6822710037231445,-1.5142983198165894,-0.5300321578979492,-1.1348499059677124,-1.0156009197235107,1.0417600870132446,1.0535469055175781,-0.6059127449989319,0.35589659214019775,0.001216590404510498,-0.8371358513832092,0.3672959804534912,-0.9405006170272827,1.3109214305877686,0.7141417860984802,0.5897409319877625,-0.7768152356147766,1.4253768920898438,-1.2960784435272217,0.8179498314857483,-0.5376214385032654,0.4148010015487671,-0.7811992168426514,-0.03881347179412842,0.5519002079963684,-1.627919316291809,-1.144432783126831,-0.5990688800811768,-0.2104230523109436,-0.91542649269104,-1.1042397022247314,0.23884932696819305,-0.4766422212123871,2.395073890686035,0.4449794888496399,-1.415296196937561,0.07531768083572388,-2.0577478408813477,2.042621374130249,0.632200300693512,0.6607052087783813,-1.006385326385498,0.042354315519332886,-0.6048369407653809,-2.5677740573883057,-0.3104880154132843,1.1776562929153442,-0.7350072264671326,-0.29279136657714844,0.7213281393051147,-0.7911003828048706,-0.319629430770874,-0.5956647396087646,1.5900787115097046,1.6975860595703125,0.9459702968597412,2.3309619426727295,0.7780684232711792,0.8615625500679016,-0.15143519639968872,-0.35387393832206726,1.9588286876678467,-0.7294653654098511,0.023277640342712402,1.3987690210342407,1.3238818645477295,0.37474673986434937,-0.7689085006713867,-0.06207980215549469,0.891719400882721,-0.9964867830276489,-0.29592448472976685,-0.8373446464538574,1.0616786479949951,-0.6722936034202576,0.4636366069316864,-1.081535816192627,0.687454879283905,2.037463426589966,-0.7104736566543579,-1.4274194240570068,0.16643080115318298,1.7643916606903076,1.803107500076294,-0.29237744212150574,0.8679404258728027,0.8890681266784668,-0.5209617614746094,-0.3597972095012665,-0.2535932660102844,-1.7400729656219482,-0.39202654361724854,0.3684156835079193,-0.9575142860412598,-0.1588507890701294,-1.5646846294403076,-1.0352716445922852,-1.0422416925430298,-0.25200602412223816,2.50285005569458,-1.1918351650238037,-1.9317989349365234,0.8564320206642151,1.4210602045059204,-0.6364235281944275,2.328197717666626,-0.5279931426048279,0.22777186334133148,-0.9016517996788025,-0.18519464135169983,0.2801837921142578,-1.1164541244506836,0.96784508228302,1.436145305633545,1.3376855850219727,0.9133678078651428,0.3004199266433716,-0.47461336851119995,-0.5865525007247925,0.19278183579444885,-0.6183722019195557,0.5419082045555115,-0.49332094192504883,-0.6982439756393433,2.799774646759033,0.09412169456481934,1.4346390962600708,1.5946190357208252,-0.2316497564315796,0.22265924513339996,0.54654860496521,-0.054049015045166016,-0.06526583433151245,2.1397173404693604,1.7788522243499756,0.5762852430343628,1.1765741109848022,-0.22103169560432434,0.21301805973052979,0.6879742741584778,-0.8611518144607544,-0.030880123376846313,1.092384696006775,-0.0010136961936950684,0.20293086767196655,-1.3584835529327393,-0.1336211860179901,-0.554887056350708,0.679510772228241,1.1225234270095825,1.3231439590454102,-0.03874772787094116,0.6036739945411682,0.5644777417182922,0.08870065212249756,-1.130470871925354,1.2608964443206787,0.5409508943557739,1.6020252704620361,-0.3432326316833496,0.8711279630661011,-0.6061581969261169,-1.2929130792617798,0.8276355862617493,0.10672377794981003,0.39302709698677063,0.4244205951690674,-0.05533704161643982,0.4326673746109009,-0.6871196031570435,-0.6891894340515137 -2949,-0.23334920406341553,-2.0769941806793213,-1.9129447937011719,-0.3841846287250519,-0.9477266073226929,-0.06476020812988281,-0.2135419249534607,-1.2620697021484375,0.5595403909683228,1.4088045358657837,-1.0385702848434448,-1.5340198278427124,1.1436352729797363,0.6238470673561096,1.6422332525253296,0.23284924030303955,0.018053703010082245,0.1664818823337555,0.025803983211517334,-0.3918444514274597,1.43136465549469,0.13071966171264648,-0.6002973318099976,0.11817316710948944,-0.6365939378738403,-1.0841760635375977,-0.09886494278907776,0.6360066533088684,-0.9722399711608887,-0.532387375831604,-0.7805795669555664,0.10974881052970886,0.7931753396987915,-0.9639008641242981,-0.07849113643169403,0.33645904064178467,0.1454644650220871,-0.3043326139450073,-1.1116069555282593,-0.033985435962677,3.0993309020996094,-0.211063951253891,-0.4151565432548523,-0.6694368720054626,1.1256211996078491,-0.9675225615501404,0.3628554940223694,0.33371955156326294,0.24071122705936432,-2.5902042388916016,-0.8617167472839355,1.4040770530700684,-0.529128909111023,0.1509656012058258,-0.278298020362854,0.2349296510219574,-0.8327897191047668,-1.6972506046295166,-0.38450339436531067,-1.0638558864593506,1.2297519445419312,-1.5882145166397095,0.2987104654312134,-0.6441866159439087,-0.39797675609588623,0.8298674821853638,0.8195350766181946,0.6892950534820557,-0.1792295277118683,-1.0085617303848267,0.3347046673297882,-0.24307781457901,0.05093863606452942,-1.0942374467849731,-1.832987904548645,-0.37264373898506165,-0.027718186378479004,0.6822710037231445,-1.5142983198165894,-0.5300321578979492,-1.2672311067581177,-1.0156009197235107,1.0417600870132446,1.293684720993042,-0.6059127449989319,0.35589659214019775,0.001216590404510498,0.029504776000976562,0.3672959804534912,-0.9405006170272827,1.3109214305877686,0.7141417860984802,0.1920105218887329,0.14536982774734497,1.827141523361206,-1.2960784435272217,1.2678637504577637,-0.5376214385032654,0.5494783520698547,-0.7811992168426514,-0.8759596943855286,1.0818144083023071,-1.627919316291809,-1.144432783126831,-0.5990688800811768,0.24998152256011963,-0.91542649269104,-0.05477786064147949,0.23884932696819305,-0.4766422212123871,2.395073890686035,0.4449794888496399,-1.415296196937561,0.07531768083572388,-2.2140207290649414,2.042621374130249,0.4615919888019562,0.6607052087783813,-1.006385326385498,0.042354315519332886,-0.6048369407653809,-0.8312935829162598,-0.3104880154132843,0.8466406464576721,-1.4094197750091553,-0.29279136657714844,0.7213281393051147,-0.7911003828048706,-0.319629430770874,-0.30038854479789734,1.5900787115097046,1.6975860595703125,0.9459702968597412,2.2378015518188477,0.7780684232711792,0.8615625500679016,-0.15143519639968872,-0.35387393832206726,1.9588286876678467,-0.7294653654098511,0.023277640342712402,1.3987690210342407,1.3427934646606445,0.37474673986434937,-0.9632609486579895,-0.06207980215549469,0.891719400882721,-0.8464981317520142,-0.29592448472976685,-0.8373446464538574,1.3389155864715576,-1.2400836944580078,0.4636366069316864,-1.081535816192627,0.687454879283905,1.4780536890029907,-0.7104736566543579,-1.5774260759353638,0.16643080115318298,1.7643916606903076,1.803107500076294,-0.14805716276168823,0.8679404258728027,0.8890681266784668,-0.5209617614746094,-0.3597972095012665,-0.2535932660102844,-1.7400729656219482,-0.39202654361724854,0.5385385751724243,-0.9575142860412598,-0.9917047619819641,-1.5646846294403076,-1.0352716445922852,-1.0422416925430298,-0.25200602412223816,2.50285005569458,-1.1918351650238037,-1.9317989349365234,0.7465625405311584,1.8328710794448853,-0.6364235281944275,2.45552921295166,-0.5279931426048279,-0.5701912045478821,-0.9016517996788025,-0.18519464135169983,-0.01282539963722229,-1.1164541244506836,0.96784508228302,1.436145305633545,1.3376855850219727,0.9272264242172241,0.5553473234176636,-0.47461336851119995,0.36435121297836304,0.19278183579444885,-0.6183722019195557,0.5419082045555115,-0.49332094192504883,-0.6982439756393433,2.9360227584838867,0.09412169456481934,1.4346390962600708,1.5946190357208252,-0.2316497564315796,0.33282461762428284,1.3636021614074707,0.03548315167427063,-0.06526583433151245,2.1397173404693604,1.7788522243499756,-0.21240508556365967,1.1765741109848022,-0.2264188826084137,0.21301805973052979,0.6879742741584778,-0.8611518144607544,-0.030880123376846313,1.092384696006775,-0.0010136961936950684,-0.1354387104511261,-1.7836276292800903,-0.1336211860179901,-0.554887056350708,1.1439226865768433,1.1225234270095825,1.3231439590454102,1.0545778274536133,0.6036739945411682,0.6509695649147034,0.08870065212249756,-1.130470871925354,0.4448329210281372,0.5409508943557739,1.0605707168579102,-0.3432326316833496,0.6884762048721313,-0.6061581969261169,-1.440519094467163,0.8276355862617493,-0.37511909008026123,0.39302709698677063,0.4244205951690674,-0.13098397850990295,0.4326673746109009,-0.9967778325080872,-0.6891894340515137 -2950,-0.23334920406341553,-2.7537097930908203,-1.9129447937011719,-0.3841846287250519,-0.9477266073226929,-0.13441964983940125,-0.16423946619033813,-1.2620697021484375,0.5595403909683228,1.4088045358657837,-1.0385702848434448,-0.884824275970459,1.1040865182876587,0.6238470673561096,1.6422332525253296,0.23284924030303955,0.018053703010082245,0.1664818823337555,0.025803983211517334,-0.570578396320343,1.2826241254806519,0.13071966171264648,-0.6002973318099976,0.11817316710948944,-0.6365939378738403,-1.0841760635375977,-0.09886494278907776,0.6360066533088684,-0.8734785318374634,-0.532387375831604,-0.09599524736404419,0.10974881052970886,0.7931753396987915,-1.0714043378829956,0.1662711799144745,0.2829350531101227,0.1454644650220871,-0.16019321978092194,-1.1116069555282593,0.46457546949386597,3.0993309020996094,-0.211063951253891,-0.4151565432548523,-0.6694368720054626,1.1256211996078491,-0.7927573323249817,0.04989105463027954,0.33371955156326294,0.24071122705936432,-2.5902042388916016,-0.8617167472839355,0.9030726552009583,-0.529128909111023,0.1509656012058258,-0.1492803543806076,0.2349296510219574,-0.8327897191047668,-1.6972506046295166,-0.38450339436531067,-1.0638558864593506,1.2297519445419312,-1.5882145166397095,0.2987104654312134,-0.6441866159439087,-0.39797675609588623,0.8298674821853638,0.8353294730186462,0.6892950534820557,-0.1792295277118683,-1.0085617303848267,0.3347046673297882,-0.5442208647727966,0.05093863606452942,-1.0942374467849731,-1.832987904548645,-0.5487555861473083,-0.027718186378479004,0.6822710037231445,-1.5142983198165894,-0.5300321578979492,-1.2672311067581177,-1.0156009197235107,1.0417600870132446,1.2324879169464111,-0.6059127449989319,0.35589659214019775,0.5612494945526123,0.029504776000976562,0.3672959804534912,-0.49146559834480286,0.9967262744903564,0.7141417860984802,-0.25196629762649536,0.14536982774734497,1.827141523361206,-1.2960784435272217,1.2678637504577637,-0.5376214385032654,0.8098998069763184,-0.7811992168426514,-0.8759596943855286,1.0818144083023071,-1.00728178024292,-1.144432783126831,-0.5990688800811768,0.24998152256011963,-1.2649534940719604,0.013022460043430328,0.40923529863357544,-0.4766422212123871,2.395073890686035,0.4449794888496399,-1.415296196937561,0.07531768083572388,-2.2140207290649414,2.042621374130249,0.4615919888019562,0.6607052087783813,-1.006385326385498,0.042354315519332886,-1.0437276363372803,-0.8312935829162598,-0.7284665107727051,0.7479869723320007,-1.4094197750091553,-0.29279136657714844,0.7213281393051147,-0.7911003828048706,-0.319629430770874,-0.6461505889892578,1.5900787115097046,1.6975860595703125,1.8797860145568848,2.2378015518188477,0.7780684232711792,0.8615625500679016,-0.15143519639968872,-0.35387393832206726,0.8648742437362671,-0.7294653654098511,0.27962565422058105,1.3987690210342407,1.3427934646606445,-0.44927066564559937,-1.4478638172149658,-0.6856972575187683,0.891719400882721,-0.8464981317520142,-0.29592448472976685,-0.8373446464538574,1.3362596035003662,-1.2400836944580078,0.4636366069316864,-1.20479154586792,0.687454879283905,1.7505476474761963,-0.7104736566543579,-1.5774260759353638,0.16643080115318298,1.7643916606903076,1.597601294517517,-0.14805716276168823,0.5079445838928223,0.8890681266784668,-0.5209617614746094,0.11495232582092285,-0.2535932660102844,-1.7400729656219482,-0.5622740983963013,0.5385385751724243,-0.9575142860412598,-0.9917047619819641,-1.5646846294403076,-1.0352716445922852,-1.0422416925430298,-0.25200602412223816,1.7228848934173584,-1.1918351650238037,-1.9317989349365234,0.7465625405311584,1.8986576795578003,-0.6364235281944275,2.45552921295166,-0.037156373262405396,-0.5701912045478821,-0.9016517996788025,-0.8881057500839233,-0.01282539963722229,-0.4326503872871399,0.96784508228302,1.436145305633545,1.5246927738189697,0.9272264242172241,0.5553473234176636,-0.47461336851119995,-0.5288806557655334,0.22877389192581177,-0.6183722019195557,0.5419082045555115,-0.49332094192504883,-0.6982439756393433,2.9360227584838867,0.09412169456481934,1.4346390962600708,1.703537940979004,-0.2316497564315796,0.33282461762428284,1.3930927515029907,0.03548315167427063,-0.06526583433151245,2.1397173404693604,1.7788522243499756,-0.5821527242660522,1.0806605815887451,0.20377957820892334,0.21301805973052979,0.46205008029937744,-1.1129307746887207,-0.030880123376846313,1.3637446165084839,-0.0010136961936950684,-0.1354387104511261,-1.7836276292800903,-0.1336211860179901,0.46119093894958496,1.3003648519515991,1.1225234270095825,1.4697487354278564,1.0545778274536133,0.6036739945411682,0.6509695649147034,0.08870065212249756,-1.130470871925354,0.4448329210281372,0.5409508943557739,1.0605707168579102,0.29844731092453003,0.8360581994056702,-0.6061581969261169,-1.440519094467163,0.8276355862617493,-0.37511909008026123,0.39302709698677063,0.4244205951690674,-0.13098397850990295,0.4326673746109009,-0.9967778325080872,-0.6891894340515137 -2951,-0.36537885665893555,-2.7537097930908203,-1.9129447937011719,-0.3841846287250519,-0.9477266073226929,-0.13441964983940125,-0.16423946619033813,-1.2620697021484375,0.373897522687912,1.6007615327835083,-1.881661295890808,-0.884824275970459,1.1040865182876587,0.6238470673561096,1.6422332525253296,0.23284924030303955,0.4566253125667572,0.1664818823337555,0.025803983211517334,-0.570578396320343,1.2826241254806519,0.13071966171264648,-0.9803137183189392,0.11817316710948944,-0.6365939378738403,-0.5130400657653809,-0.09886494278907776,0.4024635851383209,0.055757343769073486,-0.532387375831604,-0.09599524736404419,0.10974881052970886,0.7931753396987915,-1.0714043378829956,-0.13441482186317444,0.2829350531101227,0.1454644650220871,-0.16019321978092194,-0.3218540549278259,0.10625776648521423,3.0993309020996094,-0.211063951253891,-0.42818787693977356,-0.8917158246040344,1.1256211996078491,-1.4567904472351074,0.04989105463027954,0.6940743923187256,0.09309415519237518,-2.5902042388916016,-0.8617167472839355,0.9030726552009583,-0.5381661057472229,0.1509656012058258,-0.5505852699279785,0.7460471391677856,-0.8327897191047668,-1.6972506046295166,-0.38450339436531067,-1.0638558864593506,1.2297519445419312,-1.5882145166397095,0.33673638105392456,-0.6441866159439087,-0.3624814450740814,0.8298674821853638,0.8353294730186462,0.7450500130653381,-0.1792295277118683,-1.2784528732299805,0.3203655481338501,0.4414510130882263,0.05093863606452942,-1.2341545820236206,-1.984142780303955,-0.5487555861473083,-0.05996640771627426,0.6911472678184509,-1.5142983198165894,-0.5300321578979492,-1.2672311067581177,-0.8394722938537598,1.0417600870132446,1.2324879169464111,-0.6059127449989319,0.35589659214019775,0.5612494945526123,-0.5040766596794128,0.3672959804534912,-0.6019287705421448,0.9967262744903564,0.7141417860984802,0.534328043460846,0.006798222661018372,1.827141523361206,-1.2960784435272217,1.2678637504577637,-0.5376214385032654,-0.11074841022491455,-0.8322202563285828,-0.45548608899116516,-0.2830381393432617,-1.00728178024292,-1.144432783126831,-0.5990688800811768,0.24998152256011963,-1.2244200706481934,-0.07278615981340408,0.21407057344913483,-0.4766422212123871,2.395073890686035,0.4449794888496399,-1.313024878501892,0.07531768083572388,-2.2140207290649414,2.042621374130249,0.4615919888019562,0.6607052087783813,-1.7495830059051514,0.042354315519332886,-1.0437276363372803,-0.8312935829162598,-0.7284665107727051,0.7479869723320007,-1.4094197750091553,-0.29279136657714844,0.7213281393051147,-0.07218271493911743,-0.319629430770874,-0.3969768285751343,1.5900787115097046,1.6975860595703125,1.8797860145568848,2.2378015518188477,0.7780684232711792,0.328738272190094,-0.15143519639968872,-0.35387393832206726,0.9381807446479797,-0.7294653654098511,0.062130048871040344,1.3987690210342407,1.3427934646606445,-0.44927066564559937,-0.5226624608039856,-0.07005620002746582,0.37336093187332153,-0.7290564179420471,-0.29592448472976685,-0.8373446464538574,1.5070583820343018,-1.2400836944580078,0.06881722807884216,-1.20479154586792,0.687454879283905,1.7505476474761963,-0.31006452441215515,-1.5774260759353638,0.16643080115318298,1.7147151231765747,1.4918471574783325,0.0556168258190155,0.5079445838928223,0.9603793621063232,-0.0010530948638916016,0.11495232582092285,-0.23063382506370544,-1.30938720703125,-0.5622740983963013,0.5385385751724243,-0.9575142860412598,-0.9917047619819641,-1.2689777612686157,-1.0352716445922852,-0.8429506421089172,-0.25200602412223816,1.7228848934173584,-1.1918351650238037,-1.9317989349365234,0.6104481220245361,1.8986576795578003,-1.0266653299331665,2.45552921295166,0.14778020977973938,-0.050141870975494385,-0.9016517996788025,-0.8881057500839233,-0.32251405715942383,-0.4326503872871399,1.0870832204818726,1.43715238571167,1.748030424118042,0.9272264242172241,0.5955731868743896,-0.47461336851119995,-0.5288806557655334,0.22877389192581177,-0.6183722019195557,0.5419082045555115,-0.49332094192504883,-1.01846444606781,2.9360227584838867,0.09412169456481934,1.4346390962600708,1.3187493085861206,-0.23103785514831543,0.33282461762428284,0.8650201559066772,0.03548315167427063,-0.06526583433151245,1.997011661529541,1.7788522243499756,-0.5821527242660522,1.2718714475631714,0.20377957820892334,0.21301805973052979,0.21710330247879028,-1.1129307746887207,0.40739697217941284,1.3637446165084839,-0.0010136961936950684,-0.1354387104511261,-1.7836276292800903,-0.13209059834480286,0.46119093894958496,1.3003648519515991,1.1225234270095825,1.4697487354278564,0.8796956539154053,0.6036739945411682,1.3825347423553467,0.08870065212249756,-1.130470871925354,0.4448329210281372,0.5409508943557739,1.0605707168579102,0.09924069046974182,0.7727624773979187,-0.6061581969261169,-1.440519094467163,0.8276355862617493,-0.37511909008026123,0.39302709698677063,0.4244205951690674,-0.13098397850990295,0.4326673746109009,-0.9967778325080872,-0.6891894340515137 -2952,-0.5906435251235962,-2.7537097930908203,-1.9129447937011719,-0.3841846287250519,-0.9477266073226929,0.179021418094635,-0.7289958596229553,-0.8748126029968262,0.373897522687912,1.6007615327835083,-1.881661295890808,-0.884824275970459,1.1040865182876587,0.6238470673561096,1.6422332525253296,0.23284924030303955,0.4566253125667572,0.1664818823337555,-0.09385996311903,-0.3863125443458557,1.8086779117584229,0.13071966171264648,-0.9803137183189392,0.11817316710948944,-0.6365939378738403,-0.5130400657653809,-0.09886494278907776,0.6727283000946045,-0.038299910724163055,-0.532387375831604,-0.09599524736404419,0.3855718672275543,0.7931753396987915,-1.0714043378829956,-0.13441482186317444,0.2829350531101227,0.1454644650220871,-0.16019321978092194,-0.3218540549278259,0.10625776648521423,2.7740705013275146,-0.14692580699920654,-0.5009439587593079,-0.500848114490509,1.1256211996078491,-1.4567904472351074,0.04989105463027954,0.6940743923187256,0.3473750352859497,-2.5902042388916016,-0.8617167472839355,0.9030726552009583,-0.08388626575469971,0.1509656012058258,-0.7520195841789246,1.0928609371185303,-0.8327897191047668,-1.2594751119613647,-0.38450339436531067,-1.0638558864593506,1.2368108034133911,-1.5882145166397095,-0.7504948973655701,-0.6441866159439087,-0.3624814450740814,0.8298674821853638,0.8353294730186462,0.757638156414032,-0.1792295277118683,-1.2784528732299805,0.34328368306159973,-0.4918641448020935,0.05093863606452942,-1.1232739686965942,-1.984142780303955,-0.5487555861473083,0.4510028660297394,0.6911472678184509,-1.5142983198165894,-0.5300321578979492,-1.2672311067581177,-0.8394722938537598,1.0417600870132446,0.9130741357803345,-1.045443058013916,0.35589659214019775,0.5612494945526123,-0.7615278959274292,0.5623989701271057,-0.6019287705421448,1.5813937187194824,0.7141417860984802,-0.0376431941986084,0.006798222661018372,1.827141523361206,-1.2960784435272217,1.2678637504577637,-0.5376214385032654,-0.19239524006843567,-0.8322202563285828,-0.45548608899116516,-0.2830381393432617,-1.00728178024292,-1.0429574251174927,-0.5990688800811768,0.24998152256011963,-1.9552000761032104,-0.07278615981340408,0.21407057344913483,-0.4766422212123871,2.395073890686035,0.4449794888496399,-1.313024878501892,0.07531768083572388,-2.0357937812805176,2.042621374130249,0.20583981275558472,0.6607052087783813,-0.777428925037384,0.042354315519332886,-1.0437276363372803,-0.8312935829162598,-0.7284665107727051,0.7479869723320007,-1.4094197750091553,-0.29279136657714844,0.7099751830101013,-0.07218271493911743,-0.319629430770874,-0.40338897705078125,1.5900787115097046,1.6975860595703125,1.8797860145568848,2.2378015518188477,0.7780684232711792,1.0782115459442139,0.1973244547843933,-0.35387393832206726,0.9381807446479797,-0.7294653654098511,0.0016325786709785461,1.3987690210342407,1.3427934646606445,-0.44927066564559937,-0.5226624608039856,-0.07005620002746582,0.37336093187332153,-0.7290564179420471,-0.29592448472976685,-0.8373446464538574,1.5070583820343018,-1.1471378803253174,0.2046939879655838,-1.20479154586792,0.5918887853622437,1.7505476474761963,-0.02392488718032837,-0.4233870506286621,0.1081036925315857,1.2960565090179443,1.8725451231002808,-0.7254663705825806,0.5079445838928223,0.9603793621063232,-0.0010530948638916016,0.11495232582092285,-0.23063382506370544,-1.30938720703125,-0.06785494089126587,0.5385385751724243,-0.9575142860412598,-0.47519075870513916,-1.2689777612686157,-1.0352716445922852,-0.562615692615509,-1.1690547466278076,2.2018377780914307,-1.1918351650238037,-1.9317989349365234,0.7518908977508545,1.8986576795578003,-1.0266653299331665,2.45552921295166,0.14778020977973938,-0.050141870975494385,-0.9016517996788025,-0.8881057500839233,-0.32251405715942383,-0.4326503872871399,0.018131732940673828,1.0805803537368774,1.748030424118042,1.2341997623443604,0.5955731868743896,-0.47461336851119995,-0.5288806557655334,0.22877389192581177,-0.6183722019195557,0.5419082045555115,-0.49332094192504883,-1.01846444606781,2.9360227584838867,-0.17034241557121277,1.4346390962600708,1.3187493085861206,0.4463731050491333,0.33282461762428284,0.8650201559066772,0.03548315167427063,-0.06526583433151245,1.997011661529541,1.7788522243499756,-0.5821527242660522,1.2718714475631714,0.20377957820892334,0.21301805973052979,0.21710330247879028,-1.1129307746887207,0.70340496301651,1.3637446165084839,-0.0010136961936950684,-0.1354387104511261,-1.7836276292800903,-0.13209059834480286,0.46119093894958496,1.3003648519515991,1.1225234270095825,1.4697487354278564,0.31391745805740356,0.5225445032119751,1.3825347423553467,0.08870065212249756,-1.130470871925354,0.4448329210281372,0.5409508943557739,1.0605707168579102,0.09924069046974182,0.5294541120529175,-0.6061581969261169,-1.440519094467163,0.8276355862617493,-0.37511909008026123,0.39302709698677063,0.4244205951690674,-0.0042889416217803955,0.4326673746109009,-0.9967778325080872,-0.6891894340515137 -2953,-0.5906435251235962,-2.7537097930908203,-1.9129447937011719,-0.3841846287250519,-0.9477266073226929,0.179021418094635,-0.03272825479507446,-0.8748126029968262,0.2785223126411438,1.6007615327835083,-1.881661295890808,-1.7066409587860107,1.1040865182876587,0.4625365138053894,1.6422332525253296,0.07518190145492554,0.4566253125667572,0.20103250443935394,-0.048081520944833755,-0.3863125443458557,1.8086779117584229,0.13071966171264648,-0.9803137183189392,0.46785223484039307,-0.6365939378738403,-0.8876067399978638,-0.019833847880363464,0.6727283000946045,-0.038299910724163055,-0.532387375831604,-0.09599524736404419,0.3855718672275543,0.7931753396987915,-1.0714043378829956,0.20453104376792908,0.252300888299942,0.1454644650220871,0.3468886613845825,-0.3218540549278259,0.10625776648521423,2.7740705013275146,-0.14692580699920654,-0.6430719494819641,-0.500848114490509,1.402052879333496,-1.4567904472351074,0.04989105463027954,0.6940743923187256,0.3473750352859497,-2.747950315475464,-0.8617167472839355,1.262758731842041,-0.08388626575469971,0.1509656012058258,-0.5094488859176636,1.0928609371185303,-0.8327897191047668,-1.8848780393600464,-0.032642215490341187,-1.0638558864593506,1.1647881269454956,-1.5882145166397095,-0.7504948973655701,-0.6441866159439087,-0.3624814450740814,0.5766414403915405,0.8353294730186462,1.2753328084945679,-0.1792295277118683,-1.1335079669952393,0.34328368306159973,-0.4918641448020935,0.05093863606452942,-1.1232739686965942,-1.971727728843689,-0.5487555861473083,0.4510028660297394,0.6911472678184509,-1.5142983198165894,-0.8214637041091919,-1.2672311067581177,-0.8394722938537598,1.0417600870132446,0.11509573459625244,-1.045443058013916,0.35589659214019775,0.5612494945526123,-0.7615278959274292,0.5623989701271057,-0.6019287705421448,1.5813937187194824,0.7141417860984802,0.3066168427467346,0.006798222661018372,1.827141523361206,-1.2960784435272217,1.2678637504577637,-0.306152880191803,-0.19239524006843567,-0.8322202563285828,-0.45548608899116516,-0.2830381393432617,-0.48014289140701294,-2.0474109649658203,-0.5990688800811768,-0.37665116786956787,-1.9552000761032104,-0.7550461292266846,0.21407057344913483,-0.4766422212123871,1.3980122804641724,0.4449794888496399,-1.313024878501892,0.07531768083572388,-1.933457374572754,2.042621374130249,0.0185861736536026,0.6607052087783813,-0.777428925037384,0.042354315519332886,-1.0437276363372803,-0.8312935829162598,-0.7284665107727051,0.7479869723320007,-1.4094197750091553,-0.7173434495925903,0.4219840168952942,-0.07218271493911743,-0.319629430770874,-0.40338897705078125,1.5900787115097046,1.6975860595703125,1.8797860145568848,2.3280997276306152,0.7780684232711792,1.0782115459442139,0.1973244547843933,-0.35387393832206726,0.9381807446479797,-1.347275972366333,0.0016325786709785461,1.3987690210342407,1.3427934646606445,-0.44927066564559937,-0.5226624608039856,-0.07005620002746582,0.37336093187332153,-0.14771896600723267,-0.1077083945274353,-1.1310884952545166,1.396976113319397,-1.1471378803253174,0.2046939879655838,-1.1358705759048462,0.5918887853622437,1.7505476474761963,-0.02392488718032837,-0.4233870506286621,-0.02490033209323883,1.2960565090179443,1.8725451231002808,-0.7254663705825806,0.5079445838928223,0.9603793621063232,-0.0010530948638916016,0.11495232582092285,-0.23063382506370544,-1.7844032049179077,-0.17558689415454865,0.5385385751724243,-0.9575142860412598,-0.47519075870513916,-1.2689777612686157,-1.0352716445922852,-0.8120034337043762,-1.1690547466278076,2.2018377780914307,-1.35288667678833,-1.9317989349365234,0.6119133234024048,1.8986576795578003,-1.1898061037063599,2.45552921295166,-0.2629413604736328,-0.050141870975494385,0.10705143213272095,-0.8881057500839233,-0.32251405715942383,-0.4326503872871399,-0.4178755581378937,1.0805803537368774,1.748030424118042,1.3910194635391235,0.1679028868675232,-0.47461336851119995,-0.5288806557655334,0.22877389192581177,-0.09879171848297119,-0.19100970029830933,-0.49332094192504883,-0.3014713525772095,2.9360227584838867,-0.5103318691253662,1.295419454574585,1.3082090616226196,0.4463731050491333,0.46246397495269775,0.8650201559066772,0.03548315167427063,0.09419645369052887,1.997011661529541,1.7788522243499756,-0.5043306350708008,0.987198531627655,-0.5352036952972412,0.014773115515708923,0.21710330247879028,-1.1129307746887207,0.70340496301651,1.3637446165084839,0.452269971370697,0.23084285855293274,-1.7836276292800903,-0.13209059834480286,0.46119093894958496,1.3003648519515991,1.1225234270095825,1.4697487354278564,-0.40445053577423096,0.5225445032119751,1.131026268005371,0.08870065212249756,-1.130470871925354,0.4448329210281372,0.5409508943557739,1.0605707168579102,0.09924069046974182,0.474375456571579,-0.6061581969261169,-2.0669586658477783,0.0017739534378051758,-0.37511909008026123,0.39302709698677063,0.4244205951690674,-0.0042889416217803955,0.4326673746109009,-0.4358612895011902,-0.6891894340515137 -2954,-0.04298222064971924,-2.7537097930908203,-1.9129447937011719,-0.3841846287250519,-0.9477266073226929,0.179021418094635,-0.03272825479507446,-0.8748126029968262,0.21579140424728394,1.6007615327835083,-1.6249974966049194,-1.3080592155456543,1.2814924716949463,0.4625365138053894,1.6422332525253296,0.07518190145492554,0.4566253125667572,0.20103250443935394,-0.048081520944833755,-0.3863125443458557,1.8086779117584229,0.13071966171264648,-0.9803137183189392,0.46785223484039307,-0.6365939378738403,-0.8876067399978638,0.42291730642318726,0.6727283000946045,-0.038299910724163055,-0.3536074161529541,-0.09599524736404419,0.3288554847240448,0.6412153244018555,-1.0714043378829956,0.6729081869125366,0.13123250007629395,0.1454644650220871,0.3468886613845825,-0.3218540549278259,0.10625776648521423,3.294264793395996,-0.14692580699920654,-0.7643285393714905,-0.500848114490509,1.402052879333496,-1.4567904472351074,0.04989105463027954,0.6961573958396912,0.3473750352859497,-2.4865994453430176,-0.8617167472839355,1.262758731842041,-0.2845815420150757,0.1509656012058258,-0.5094488859176636,0.7758831977844238,-0.8327897191047668,-1.8848780393600464,-0.032642215490341187,-1.0638558864593506,1.1647881269454956,-1.8817319869995117,-0.7504948973655701,-0.6441866159439087,-0.9389194250106812,0.4914476275444031,0.8353294730186462,1.2753328084945679,-0.01903916895389557,-1.3572232723236084,0.34328368306159973,-0.4918641448020935,0.19535857439041138,-1.1232739686965942,-1.971727728843689,-0.2843528687953949,0.01179322600364685,0.8626242280006409,-1.0447591543197632,-0.8214637041091919,-1.2672311067581177,-0.8394722938537598,1.0417600870132446,0.5972726345062256,-1.045443058013916,0.35589659214019775,0.5612494945526123,-0.7615278959274292,0.5623989701271057,-0.4694886803627014,1.5813937187194824,0.1834511160850525,0.3066168427467346,0.006798222661018372,1.827141523361206,-0.5791999697685242,1.2678637504577637,-0.43517035245895386,-0.19239524006843567,-0.8322202563285828,-0.45548608899116516,-0.2830381393432617,-0.6851699352264404,-1.00064218044281,-0.5990688800811768,-0.37665116786956787,-1.9246962070465088,-0.7550461292266846,0.21407057344913483,-0.4766422212123871,1.3980122804641724,0.4836627244949341,-1.313024878501892,0.07531768083572388,-1.933457374572754,2.042621374130249,0.0016287770122289658,0.6607052087783813,-0.777428925037384,-0.049815431237220764,-1.0437276363372803,-0.8312935829162598,-0.7284665107727051,0.6641479134559631,-1.4094197750091553,-0.5162643790245056,0.4219840168952942,-0.22921322286128998,-1.1069272756576538,0.17372125387191772,1.5900787115097046,1.543616533279419,1.8797860145568848,2.4858171939849854,0.7780684232711792,1.0782115459442139,0.8919663429260254,-0.35387393832206726,0.9381807446479797,-1.347275972366333,-0.3177739381790161,1.3987690210342407,1.3427934646606445,-0.44927066564559937,-0.03052350878715515,-0.07005620002746582,0.5239160656929016,-0.44698694348335266,-0.1077083945274353,-1.1310884952545166,1.396976113319397,-1.1471378803253174,0.2046939879655838,-1.1358705759048462,0.5918887853622437,1.7505476474761963,-0.02392488718032837,-0.4233870506286621,-0.02490033209323883,1.2960565090179443,1.8725451231002808,-0.7254663705825806,0.5079445838928223,0.9603793621063232,-0.0010530948638916016,-0.1156313419342041,-0.23063382506370544,-2.088197708129883,-0.08863666653633118,0.8737831115722656,-0.9575142860412598,-0.47519075870513916,-1.2689777612686157,-1.0352716445922852,-0.8120034337043762,-1.1690547466278076,2.503329277038574,-1.35288667678833,-1.3022291660308838,0.6119133234024048,2.031212568283081,-1.1898061037063599,2.45552921295166,-0.2629413604736328,-0.1932365745306015,0.10705143213272095,-0.8881057500839233,0.03862994909286499,-0.0896477997303009,-0.21858181059360504,1.0805803537368774,1.748030424118042,1.3910194635391235,0.1679028868675232,-0.47461336851119995,-1.3803813457489014,0.22877389192581177,-0.09879171848297119,-0.5840612649917603,-1.1974570751190186,-0.3014713525772095,2.9360227584838867,0.625400185585022,1.295419454574585,1.1274155378341675,0.4463731050491333,0.46246397495269775,0.8650201559066772,0.03548315167427063,-0.20398856699466705,1.997011661529541,1.9675084352493286,-0.5043306350708008,0.987198531627655,-0.5352036952972412,0.6790515184402466,0.5680065155029297,-1.1129307746887207,0.70340496301651,1.3637446165084839,0.452269971370697,0.23084285855293274,-2.1979641914367676,-0.13209059834480286,0.46119093894958496,0.8318469524383545,1.1225234270095825,1.9281809329986572,0.3171306848526001,0.5225445032119751,1.3094544410705566,0.08870065212249756,-1.130470871925354,0.4448329210281372,0.6749740839004517,1.0605707168579102,0.09924069046974182,0.474375456571579,-0.4901975691318512,-2.0669586658477783,0.0017739534378051758,-0.37511909008026123,0.39302709698677063,0.4244205951690674,-0.0042889416217803955,0.4326673746109009,-0.4358612895011902,-0.6891894340515137 -2955,-0.04298222064971924,-2.7535603046417236,-1.9129447937011719,-0.3841846287250519,-0.9477266073226929,0.179021418094635,-0.03272825479507446,-0.8748126029968262,0.21579140424728394,1.5868732929229736,-1.606813907623291,-1.3080592155456543,1.1478750705718994,0.29428473114967346,1.8928483724594116,0.07518190145492554,-0.0069997310638427734,0.20103250443935394,-0.048081520944833755,-0.3863125443458557,1.8086779117584229,0.13071966171264648,-1.192926287651062,0.46785223484039307,-0.6365939378738403,-0.8406907916069031,0.5118808150291443,0.6727283000946045,-0.41893571615219116,-0.3536074161529541,-0.09599524736404419,0.366751492023468,0.1773417592048645,-1.0714043378829956,0.6729081869125366,0.13123250007629395,0.1454644650220871,-0.2768540382385254,-1.1780574321746826,0.07584970444440842,3.294264793395996,0.02795085310935974,-0.2985022962093353,-0.500848114490509,1.402052879333496,-1.4567904472351074,0.06945879757404327,0.8393672704696655,0.3473750352859497,-2.4865994453430176,-0.8617167472839355,0.048290252685546875,-0.2845815420150757,0.1509656012058258,-0.5094488859176636,0.7758831977844238,-0.8327897191047668,-1.8848780393600464,-0.032642215490341187,-1.0638558864593506,1.1647881269454956,-1.8817319869995117,-0.6538896560668945,-0.39654502272605896,-0.5866507887840271,0.6918938159942627,0.8353294730186462,1.2753328084945679,-0.01903916895389557,-1.3572232723236084,0.4611145555973053,-0.4918641448020935,0.19535857439041138,-1.1232739686965942,-1.6383056640625,0.08410397171974182,-0.1351592093706131,0.8626242280006409,-1.0447591543197632,-0.8214637041091919,-1.2672311067581177,-0.8394722938537598,1.0417600870132446,0.5972726345062256,-0.3603450655937195,0.35589659214019775,0.017608046531677246,-0.7615278959274292,0.5623989701271057,-0.3983917534351349,1.5700443983078003,0.1834511160850525,0.3066168427467346,0.006798222661018372,1.827141523361206,-0.5791999697685242,1.2678637504577637,-0.43517035245895386,-0.19239524006843567,-0.30518460273742676,-0.45548608899116516,0.3913780450820923,-0.6851699352264404,-1.00064218044281,-0.5990688800811768,-0.37665116786956787,-1.9246962070465088,-0.7550461292266846,0.21407057344913483,-0.4766422212123871,1.3980122804641724,0.4836627244949341,-1.313024878501892,0.07531768083572388,-1.933457374572754,1.659255027770996,0.0016287770122289658,0.6607052087783813,-0.777428925037384,-0.049815431237220764,-1.0437276363372803,-0.8938437700271606,-0.7284665107727051,0.6641479134559631,-1.4094197750091553,-0.5162643790245056,0.4219840168952942,-0.22921322286128998,-1.1069272756576538,0.17372125387191772,1.5900787115097046,1.543616533279419,1.8797860145568848,2.4858171939849854,0.7780684232711792,1.0782115459442139,0.8919663429260254,-0.35387393832206726,0.9381807446479797,-0.5883877873420715,-0.3177739381790161,1.6941328048706055,1.3427934646606445,-0.44927066564559937,-0.03052350878715515,-0.07005620002746582,0.5239160656929016,-0.44698694348335266,-0.38541412353515625,-1.1310884952545166,1.3424667119979858,-1.1471378803253174,0.2046939879655838,-1.1358705759048462,0.5918887853622437,1.7505476474761963,-0.02392488718032837,-0.07984593510627747,-0.02490033209323883,0.9509931206703186,1.8725451231002808,-0.7254663705825806,0.5079445838928223,0.9603793621063232,-0.0010530948638916016,-0.1156313419342041,-0.23063382506370544,-2.088197708129883,-0.3669431805610657,0.8737831115722656,-0.6844759583473206,-0.47519075870513916,-1.2689777612686157,-1.0352716445922852,-0.8120034337043762,-1.1690547466278076,2.503329277038574,-1.5362110137939453,-1.3022291660308838,0.6119133234024048,1.8343135118484497,-1.1898061037063599,2.45552921295166,-0.2629413604736328,-0.1932365745306015,0.10705143213272095,-0.8881057500839233,0.1046392023563385,-0.12303684651851654,-0.21858181059360504,1.0805803537368774,1.748030424118042,1.3910194635391235,0.26085352897644043,-0.47461336851119995,-1.3803813457489014,0.22877389192581177,-0.09879171848297119,-0.5840612649917603,-1.1974570751190186,-0.8155815005302429,2.9360227584838867,0.625400185585022,0.38871878385543823,1.1274155378341675,0.5527045726776123,0.46246397495269775,0.8020943999290466,0.03548315167427063,-0.16213586926460266,1.997011661529541,1.9675084352493286,-0.42724111676216125,0.987198531627655,-0.5352036952972412,0.19473609328269958,0.6958938241004944,-1.1129307746887207,0.70340496301651,1.3637446165084839,0.452269971370697,0.23084285855293274,-1.8118115663528442,-0.13209059834480286,0.46119093894958496,0.8318469524383545,1.1225234270095825,1.9281809329986572,-0.19578337669372559,0.5225445032119751,1.3094544410705566,0.08870065212249756,-1.130470871925354,0.7300475239753723,0.6749740839004517,1.0605707168579102,0.09924069046974182,0.474375456571579,-0.4901975691318512,-1.8665034770965576,0.4514766037464142,-0.37511909008026123,0.5686408281326294,0.4244205951690674,-0.0042889416217803955,0.4326673746109009,-0.4358612895011902,-0.6891894340515137 -2956,-0.04298222064971924,-2.7535603046417236,-1.511643409729004,-0.3841846287250519,-0.9477266073226929,0.179021418094635,-0.03272825479507446,-0.8748126029968262,0.5536379814147949,1.5868732929229736,-1.606813907623291,-1.3080592155456543,1.1478750705718994,0.29428473114967346,1.8928483724594116,0.07518190145492554,-0.008398286066949368,-0.47652655839920044,-0.048081520944833755,-0.3863125443458557,1.8086779117584229,-0.32226452231407166,-1.192926287651062,0.46785223484039307,-0.6365939378738403,-0.8406907916069031,0.5118808150291443,0.6727283000946045,-0.07195037603378296,-0.3536074161529541,-0.09599524736404419,0.28406545519828796,0.1773417592048645,-1.0714043378829956,0.9677383899688721,0.13123250007629395,0.1454644650220871,-0.2768540382385254,-1.1780574321746826,0.07584970444440842,3.294264793395996,0.02795085310935974,0.04421606659889221,-0.5418214797973633,1.402052879333496,-1.0257987976074219,0.06945879757404327,0.8393672704696655,0.3473750352859497,-3.2930731773376465,-1.0740364789962769,0.13841551542282104,-0.2845815420150757,0.18959733843803406,-0.5094488859176636,0.7758831977844238,-0.8327897191047668,-1.921478271484375,-0.032642215490341187,-1.0638558864593506,0.9093284010887146,-1.8704087734222412,-0.5625576972961426,-0.39654502272605896,-0.5866507887840271,0.641301691532135,0.9022136926651001,1.2753328084945679,-0.01903916895389557,-1.6573381423950195,0.07990309596061707,-0.4918641448020935,0.19535857439041138,-1.1232739686965942,-1.0295896530151367,0.14808395504951477,-0.1351592093706131,0.8626242280006409,-1.0447591543197632,-0.7484537959098816,-1.2672311067581177,-1.7160933017730713,1.0417600870132446,0.5972726345062256,-0.4467247724533081,0.35589659214019775,0.017608046531677246,-0.7615278959274292,1.424927830696106,-0.3983917534351349,1.5700443983078003,0.1834511160850525,0.3066168427467346,0.006798222661018372,2.207441568374634,-0.5791999697685242,1.7016936540603638,-0.43517035245895386,0.02837495505809784,-0.5121216773986816,-0.45548608899116516,0.4894157946109772,-0.6851699352264404,-1.00064218044281,-0.5990688800811768,-0.2932998239994049,-1.7642905712127686,-0.7550461292266846,0.5245230197906494,-0.4766422212123871,0.4764419198036194,0.4836627244949341,-1.313024878501892,0.07531768083572388,-1.6718435287475586,1.659255027770996,0.0016287770122289658,0.6607052087783813,-0.777428925037384,-0.5038580894470215,-1.0437276363372803,-0.8938437700271606,-0.4640069603919983,0.6641479134559631,-1.4094197750091553,-0.8014262318611145,0.4219840168952942,-0.22921322286128998,-0.4637736678123474,0.17372125387191772,1.2782325744628906,1.543616533279419,1.8797860145568848,2.385235071182251,0.7780684232711792,1.1724720001220703,0.8919663429260254,-0.3137015104293823,0.9381807446479797,-1.4190335273742676,-0.3177739381790161,1.6941328048706055,1.3427934646606445,-0.20418646931648254,0.07428030669689178,-0.5650434494018555,0.5239160656929016,-1.025192379951477,-0.4734606444835663,-1.1310884952545166,1.3424667119979858,-0.8954281806945801,0.2046939879655838,-1.1358705759048462,0.5454665422439575,1.7505476474761963,-0.7525200843811035,0.39402976632118225,-0.2338477522134781,0.9509931206703186,1.8725451231002808,0.23391586542129517,0.5079445838928223,0.4671684205532074,-0.8320881128311157,-0.7749280333518982,-0.23063382506370544,-1.951875925064087,-0.3669431805610657,0.7352765202522278,-1.6042616367340088,-0.47519075870513916,-1.439766764640808,-1.0352716445922852,-0.8120034337043762,-1.1690547466278076,2.503329277038574,-1.2332768440246582,-1.632111668586731,0.6242421269416809,1.8343135118484497,-1.1898061037063599,2.45552921295166,-0.7837372422218323,-0.1932365745306015,0.10705143213272095,-0.8881057500839233,-0.06834641098976135,-0.12303684651851654,-0.3409673869609833,1.0805803537368774,1.748030424118042,1.3910194635391235,0.5949565768241882,0.013567954301834106,-1.662604570388794,0.22877389192581177,0.26475176215171814,-0.508524477481842,-1.1974570751190186,-1.6462886333465576,3.3082351684570312,0.5986154675483704,0.6528651118278503,1.1274155378341675,0.5527045726776123,0.4328356385231018,0.8020943999290466,0.03548315167427063,-0.16213586926460266,1.5602049827575684,1.9675084352493286,-0.778552770614624,0.987198531627655,-0.5352036952972412,0.19473609328269958,0.6958938241004944,-1.1129307746887207,0.70340496301651,1.3637446165084839,0.452269971370697,-0.7648926973342896,-1.8118115663528442,-0.13209059834480286,0.46119093894958496,0.8318469524383545,1.1225234270095825,1.6505789756774902,-0.25095611810684204,0.5225445032119751,1.3094544410705566,0.08870065212249756,-1.130470871925354,0.7300475239753723,0.6749740839004517,1.0605707168579102,0.09924069046974182,0.26128271222114563,-0.4901975691318512,-1.8665034770965576,0.4146949350833893,-0.37511909008026123,0.48379945755004883,-0.08752644062042236,0.13193756341934204,0.4326673746109009,-0.4358612895011902,-0.6891894340515137 -2957,-0.5217639207839966,-2.7535603046417236,-1.511643409729004,-0.350631445646286,-0.9477266073226929,0.179021418094635,-0.03272825479507446,-0.8748126029968262,0.2764200270175934,1.5868732929229736,-1.9770616292953491,-1.3080592155456543,1.1478750705718994,0.36062705516815186,1.6336086988449097,0.07518190145492554,-0.008398286066949368,-0.47652655839920044,-0.048081520944833755,-0.3863125443458557,1.8086779117584229,-0.32226452231407166,-1.192926287651062,0.46785223484039307,-0.6365939378738403,-0.8406907916069031,0.6507816910743713,0.6727283000946045,-0.07195037603378296,-0.3536074161529541,-0.09599524736404419,0.258848637342453,0.5524139404296875,-1.100807547569275,0.9677383899688721,0.13123250007629395,0.1454644650220871,-0.2768540382385254,-1.1780574321746826,0.07584970444440842,3.294264793395996,0.02795085310935974,0.04421606659889221,-0.5418214797973633,1.402052879333496,-1.0319015979766846,0.09398968517780304,0.8393672704696655,0.3473750352859497,-3.2930731773376465,-1.0740364789962769,0.13841551542282104,-0.2845815420150757,0.6592928171157837,-0.5094488859176636,0.7758831977844238,-0.8327897191047668,-1.921478271484375,-0.032642215490341187,-1.0638558864593506,0.9093284010887146,-1.8704087734222412,-0.5625576972961426,-0.39654502272605896,-0.5866507887840271,0.8634747266769409,0.552112340927124,1.0660438537597656,0.47501254081726074,-1.6573381423950195,-0.10138320922851562,-0.4918641448020935,0.19535857439041138,-0.4161345958709717,-1.245554804801941,0.14808395504951477,-0.23059479892253876,0.8626242280006409,-1.0447591543197632,-0.7484537959098816,-1.2672311067581177,-1.767043948173523,1.0496042966842651,0.8970807790756226,-0.1418139934539795,0.35589659214019775,0.017608046531677246,-0.6017703413963318,1.335602879524231,-0.3983917534351349,1.5700443983078003,0.04443711042404175,0.18477016687393188,0.006798222661018372,2.207441568374634,-0.9774742126464844,1.7016936540603638,-0.43517035245895386,0.02837495505809784,-0.5121216773986816,-0.45548608899116516,0.4894157946109772,-1.4397518634796143,-1.00064218044281,-0.5990688800811768,-0.660555362701416,0.17610478401184082,-0.7550461292266846,0.5245230197906494,-0.4766422212123871,0.4764419198036194,0.4836627244949341,-1.313024878501892,0.07531768083572388,-2.0143213272094727,1.659255027770996,0.0016287770122289658,0.6607052087783813,-0.777428925037384,-0.5038580894470215,-1.0437276363372803,-0.6636031866073608,-0.4640069603919983,0.8635073304176331,-1.4094197750091553,-0.8014262318611145,0.017455607652664185,-0.22921322286128998,-0.4637736678123474,0.17372125387191772,1.2782325744628906,1.0894583463668823,1.8797860145568848,2.385235071182251,0.7780684232711792,0.6252912282943726,-0.18303704261779785,-0.3137015104293823,0.9381807446479797,-1.900109887123108,-0.3177739381790161,1.6941328048706055,1.3427934646606445,-0.20418646931648254,-0.11601336300373077,-0.5650434494018555,0.5239160656929016,-1.025192379951477,-0.4734606444835663,-1.4383305311203003,1.3424667119979858,-0.8954281806945801,0.2046939879655838,-1.1358705759048462,0.5454665422439575,1.7505476474761963,-0.29232582449913025,0.39402976632118225,-0.2338477522134781,1.2180423736572266,1.8725451231002808,0.23391586542129517,0.5079445838928223,0.4671684205532074,-0.8320881128311157,-0.22611206769943237,0.17632770538330078,-1.951875925064087,-0.3669431805610657,0.7352765202522278,-1.6076884269714355,-1.2319626808166504,-1.439766764640808,-1.0352716445922852,-0.8120034337043762,-1.1690547466278076,2.503329277038574,-1.2332768440246582,-1.3859262466430664,0.6242421269416809,1.8343135118484497,-1.1898061037063599,2.075108051300049,-0.49866873025894165,-0.1932365745306015,0.10705143213272095,-0.8881057500839233,0.23294895887374878,-0.12303684651851654,-0.3409673869609833,1.0805803537368774,1.1718722581863403,1.3330894708633423,0.5725804567337036,0.013567954301834106,-0.796981155872345,0.22877389192581177,0.26475176215171814,-0.508524477481842,-0.741345226764679,-1.6462886333465576,3.3082351684570312,0.619559109210968,0.6528651118278503,1.5792245864868164,0.5527045726776123,0.6619299650192261,-0.010002970695495605,0.03548315167427063,-0.16213586926460266,1.5602049827575684,1.6296436786651611,-1.1434886455535889,0.987198531627655,-0.6358157396316528,0.19473609328269958,0.6958938241004944,-1.559119701385498,0.70340496301651,1.2439491748809814,0.452269971370697,-0.7648926973342896,-1.505827784538269,-0.13209059834480286,0.3937850594520569,0.35909679532051086,1.1225234270095825,1.6505789756774902,-0.07961317896842957,0.5225445032119751,0.8979320526123047,0.08870065212249756,-0.8062328696250916,0.7300475239753723,1.036486268043518,1.0605707168579102,0.09924069046974182,0.26128271222114563,-0.4901975691318512,-1.1886379718780518,-0.3175797760486603,-0.37511909008026123,0.48379945755004883,-0.08752644062042236,0.13193756341934204,0.686994194984436,-0.3841332793235779,-1.2043583393096924 -2958,-0.5217639207839966,-2.7535603046417236,-1.2496764659881592,-0.36757081747055054,-0.9477266073226929,0.179021418094635,-0.03272825479507446,-0.8748126029968262,0.2764200270175934,1.5868732929229736,-1.9770616292953491,-1.3080592155456543,1.1478750705718994,0.36062705516815186,1.6336086988449097,0.07518190145492554,-0.008398286066949368,-0.47652655839920044,-0.048081520944833755,-0.3863125443458557,1.5983242988586426,-0.24225354194641113,-1.192926287651062,0.46785223484039307,-0.6365939378738403,-0.9354347586631775,0.6507816910743713,0.6727283000946045,-0.1205856129527092,-0.3536074161529541,-0.22616416215896606,0.258848637342453,0.4579392671585083,-1.100807547569275,0.3469840884208679,0.002872869372367859,-0.5075107216835022,-0.2768540382385254,-1.1780574321746826,0.07584970444440842,3.294264793395996,0.02795085310935974,0.04421606659889221,-0.5418214797973633,1.402052879333496,-2.0459604263305664,0.09398968517780304,0.8393672704696655,0.3473750352859497,-3.2930731773376465,-1.0740364789962769,0.21391542255878448,-0.2845815420150757,0.6592928171157837,0.09307056665420532,0.7758831977844238,-0.8327897191047668,-1.921478271484375,-0.032642215490341187,-1.0638558864593506,0.9093284010887146,-1.8357316255569458,-0.5625576972961426,-0.39654502272605896,-0.41736263036727905,0.8009995222091675,0.552112340927124,1.1850533485412598,0.47501254081726074,-1.6573381423950195,-0.10138320922851562,-0.4918641448020935,0.19535857439041138,-0.4161345958709717,-1.245554804801941,-0.329378217458725,-0.23059479892253876,0.7670642137527466,-1.0447591543197632,-0.7484537959098816,-1.094818353652954,-1.4966135025024414,1.0496042966842651,0.8970807790756226,-0.2669436037540436,0.3005423843860626,0.017608046531677246,-0.6017703413963318,1.335602879524231,-0.3983917534351349,1.5700443983078003,0.04443711042404175,0.18477016687393188,0.3002948760986328,2.207441568374634,-0.9774742126464844,1.7016936540603638,-0.43517035245895386,-0.11362563073635101,-0.5121216773986816,-0.5829464197158813,0.4894157946109772,-1.4397518634796143,-1.00064218044281,-0.5990688800811768,-0.660555362701416,0.17610478401184082,-0.7550461292266846,-0.26824140548706055,-0.4766422212123871,0.4764419198036194,0.4836627244949341,-1.313024878501892,0.07531768083572388,-1.552838921546936,1.659255027770996,0.0016287770122289658,0.6607052087783813,-0.7131689786911011,0.2830581068992615,-0.1914292573928833,-0.6636031866073608,-0.4640069603919983,0.9610291719436646,-0.7738909125328064,-0.8014262318611145,0.017455607652664185,-0.22921322286128998,-0.4637736678123474,0.17372125387191772,1.2782325744628906,1.0894583463668823,1.228006362915039,1.72017502784729,0.8831671476364136,0.33194953203201294,-0.18303704261779785,-0.3137015104293823,0.9381807446479797,-1.8952784538269043,-0.3177739381790161,1.6941328048706055,1.0014041662216187,-0.20418646931648254,-0.11601336300373077,-0.5650434494018555,1.070926308631897,-1.025192379951477,-0.4734606444835663,-1.4383305311203003,1.3424667119979858,-0.722739040851593,0.2046939879655838,-1.1358705759048462,1.095465898513794,1.7505476474761963,-0.29232582449913025,0.3191194534301758,-0.0324583500623703,1.2180423736572266,1.8725451231002808,-0.077246755361557,0.5079445838928223,0.4671684205532074,-0.49811699986457825,-0.22611206769943237,0.17632770538330078,-1.951875925064087,-0.3669431805610657,0.6834776997566223,-1.699399471282959,-1.2319626808166504,-1.439766764640808,-0.40465497970581055,-0.8120034337043762,-1.1690547466278076,2.503329277038574,-1.2332768440246582,-1.3859262466430664,1.0342817306518555,1.8343135118484497,-1.1898061037063599,2.075108051300049,-0.49866873025894165,-1.932042121887207,0.10705143213272095,-0.8881057500839233,-0.5597413182258606,-0.12303684651851654,-0.3409673869609833,0.6390303373336792,1.1718722581863403,1.1797863245010376,0.5725804567337036,0.16287876665592194,-0.796981155872345,0.22877389192581177,0.26475176215171814,-0.1749221384525299,-0.741345226764679,-1.6462886333465576,3.3082351684570312,0.619559109210968,0.8484491109848022,1.5792245864868164,0.5527045726776123,0.6619299650192261,-0.010002970695495605,0.03548315167427063,-0.2033412903547287,1.8354003429412842,2.2216012477874756,-1.0327800512313843,0.987198531627655,-0.6358157396316528,0.19473609328269958,0.6958938241004944,-1.8198271989822388,0.70340496301651,1.2439491748809814,0.452269971370697,-0.7648926973342896,-1.505827784538269,-0.13209059834480286,-0.15563470125198364,0.35909679532051086,1.7499722242355347,1.6505789756774902,-0.07961317896842957,0.5225445032119751,0.8979320526123047,0.08870065212249756,-0.7589607834815979,0.7300475239753723,1.036486268043518,1.0605707168579102,0.09924069046974182,0.26128271222114563,-0.4901975691318512,-1.1886379718780518,-0.42800381779670715,-0.37511909008026123,0.48379945755004883,-0.08752644062042236,0.4369674324989319,0.686994194984436,0.06217139959335327,-0.981956422328949 -2959,-0.5217639207839966,-2.162348747253418,-1.8728886842727661,-0.36757081747055054,-0.9477266073226929,0.179021418094635,-0.03272825479507446,-0.2997249960899353,0.28146737813949585,1.296269178390503,-1.9770616292953491,-0.7301383018493652,1.1478750705718994,0.6246398091316223,1.5800259113311768,0.16429725289344788,-0.008398286066949368,0.27432459592819214,-0.048081520944833755,-0.13334769010543823,1.5983242988586426,-0.24225354194641113,-1.2528573274612427,0.46785223484039307,-0.6365939378738403,-0.9354347586631775,0.6507816910743713,0.6727283000946045,-0.1820279061794281,-0.5933151841163635,-0.22616416215896606,0.258848637342453,0.6403861045837402,-1.100807547569275,0.8028128147125244,0.002872869372367859,-0.7893168926239014,-0.2768540382385254,-1.1780574321746826,0.07584970444440842,3.294264793395996,0.02795085310935974,0.04421606659889221,-0.5418214797973633,1.3173822164535522,-2.0459604263305664,0.09398968517780304,0.8393672704696655,0.6868727207183838,-3.2930731773376465,-1.0740364789962769,0.21391542255878448,-0.2845815420150757,0.6592928171157837,0.09307056665420532,1.605093240737915,-1.104859709739685,-1.921478271484375,-0.032642215490341187,-1.0638558864593506,0.9135724902153015,-1.9578996896743774,-0.5625576972961426,-0.39654502272605896,-0.41736263036727905,0.8009995222091675,0.552112340927124,1.1850533485412598,0.47501254081726074,-0.9990730881690979,-0.10138320922851562,-0.4918641448020935,0.19535857439041138,-0.4161345958709717,-1.8348557949066162,-0.329378217458725,-0.23059479892253876,0.7670642137527466,-1.0447591543197632,-0.7367423176765442,-1.094818353652954,-1.4966135025024414,0.6851589679718018,0.8970807790756226,-0.2669436037540436,0.3005423843860626,0.017608046531677246,-0.2650918662548065,1.335602879524231,-0.3983917534351349,1.5700443983078003,0.04443711042404175,0.5146366357803345,0.3141483962535858,2.207441568374634,-0.9774742126464844,1.7016936540603638,-0.43517035245895386,-0.11362563073635101,-0.3968881666660309,-0.5829464197158813,0.4894157946109772,-1.4397518634796143,-1.00064218044281,-0.5990688800811768,-0.660555362701416,-0.10768008232116699,-0.7550461292266846,-0.26824140548706055,-0.4766422212123871,0.8985730409622192,0.4836627244949341,-1.313024878501892,-0.4188346862792969,-1.552838921546936,1.659255027770996,0.0016287770122289658,0.04245805740356445,-0.7131689786911011,0.2830581068992615,-0.1914292573928833,-1.272475242614746,-0.4640069603919983,0.9610291719436646,-0.3107427954673767,-1.2989444732666016,0.017455607652664185,-0.8624001741409302,-0.4637736678123474,0.17372125387191772,1.2782325744628906,1.0894583463668823,1.228006362915039,1.72017502784729,0.8831671476364136,0.8199068307876587,-0.18303704261779785,-0.11415427923202515,0.9381807446479797,-1.8952784538269043,-0.27247631549835205,1.6941328048706055,1.630401372909546,-0.31998053193092346,-1.3667715787887573,-0.5650434494018555,1.070926308631897,-0.3882753849029541,-0.4734606444835663,-0.7056865692138672,1.3424667119979858,-0.722739040851593,0.2046939879655838,-1.1358705759048462,1.095465898513794,1.7505476474761963,-0.29232582449913025,0.3514645993709564,-0.0448024719953537,0.856778621673584,1.8725451231002808,-0.077246755361557,0.3379526436328888,0.4671684205532074,-0.49811699986457825,-0.22611206769943237,0.17632770538330078,-2.088931083679199,-0.3669431805610657,0.6834776997566223,-1.3304002285003662,-1.2319626808166504,-1.439766764640808,-0.40465497970581055,-0.8120034337043762,-1.1690547466278076,2.516732692718506,-1.2332768440246582,-1.3859262466430664,1.0342817306518555,1.8343135118484497,-1.1898061037063599,2.681946277618408,0.2577051520347595,-1.932042121887207,0.10705143213272095,-0.651101291179657,-0.5597413182258606,-0.12303684651851654,-0.3409673869609833,0.8348120450973511,1.1718722581863403,1.1797863245010376,0.42892658710479736,0.06438562273979187,-0.796981155872345,0.29120853543281555,0.26475176215171814,0.8457878828048706,-0.741345226764679,-1.6462886333465576,3.3082351684570312,0.619559109210968,0.8484491109848022,1.5792245864868164,0.8632820248603821,0.8058977723121643,-0.010002970695495605,0.03548315167427063,-0.2033412903547287,1.8354003429412842,2.221957206726074,-0.84518963098526,1.9754267930984497,-0.6358157396316528,0.19473609328269958,0.6958938241004944,-1.8198271989822388,0.5488848090171814,1.2439491748809814,-0.04892450571060181,-1.1583807468414307,-1.505827784538269,-0.13209059834480286,-0.15563470125198364,0.35909679532051086,1.3563380241394043,1.6505789756774902,-0.07961317896842957,0.049828410148620605,0.8979320526123047,0.08870065212249756,-1.4621623754501343,0.9566214084625244,1.036486268043518,0.907188892364502,0.09924069046974182,0.26128271222114563,-0.4901975691318512,-0.9261192083358765,-0.42800381779670715,-0.37511909008026123,0.48379945755004883,0.5006288886070251,0.4369674324989319,0.686994194984436,0.06217139959335327,-0.981956422328949 -2960,-0.5217639207839966,-2.535808801651001,-1.8728886842727661,-0.36757081747055054,-0.9477266073226929,-0.08065402507781982,-0.03272825479507446,-0.2997249960899353,0.28146737813949585,1.296269178390503,-1.9770616292953491,-0.7301383018493652,1.0011651515960693,0.6246398091316223,2.0145974159240723,0.033651188015937805,-0.008398286066949368,0.27432459592819214,-0.048081520944833755,0.25411975383758545,1.3792850971221924,-0.24225354194641113,-1.2528573274612427,0.46785223484039307,-0.6365939378738403,-0.9354347586631775,-0.292866051197052,0.5707423686981201,-0.44419440627098083,-0.7503440380096436,-0.22616416215896606,0.258848637342453,0.6403861045837402,-1.100807547569275,0.3265785872936249,0.002872869372367859,-0.26336342096328735,-0.2768540382385254,-1.1780574321746826,-0.5154985189437866,3.294264793395996,0.02795085310935974,0.04421606659889221,-0.5418214797973633,0.9654295444488525,-2.0459604263305664,-0.33176469802856445,0.8393672704696655,0.6868727207183838,-3.2930731773376465,-1.0740364789962769,0.9154947400093079,-0.2845815420150757,0.5650644302368164,0.09307056665420532,1.3277654647827148,-1.104859709739685,-1.7398079633712769,-0.032642215490341187,-1.110906958580017,0.9135724902153015,-1.9578996896743774,-0.09285509586334229,-0.39654502272605896,-0.41736263036727905,0.8345128297805786,1.1859688758850098,0.5847825407981873,0.47501254081726074,-0.9990730881690979,0.31106510758399963,-0.4918641448020935,0.19535857439041138,-0.4161345958709717,-1.8348557949066162,0.2294430434703827,-0.23059479892253876,0.7670642137527466,-1.0447591543197632,-0.7363549470901489,-0.5537716150283813,-1.4966135025024414,0.6851589679718018,0.8970807790756226,-0.2669436037540436,0.31846779584884644,0.017608046531677246,-0.16107219457626343,0.4673023819923401,-0.5810779929161072,1.5700443983078003,-0.1003921777009964,0.5146366357803345,0.3141483962535858,2.207441568374634,-0.9638575911521912,1.7016936540603638,-0.43517035245895386,-0.29752039909362793,-0.3968881666660309,0.10365909337997437,0.7206867933273315,-1.416110634803772,-1.00064218044281,-0.5990688800811768,-0.4443361163139343,-0.10768008232116699,-0.7550461292266846,-0.26824140548706055,-0.3331615924835205,1.0988584756851196,0.4836627244949341,-1.313024878501892,0.12356626987457275,-1.0230565071105957,1.7668261528015137,0.060535937547683716,0.04245805740356445,-0.7131689786911011,0.2830581068992615,-0.9392387270927429,-1.272475242614746,-0.4640069603919983,0.9610291719436646,-0.3107427954673767,-1.2989444732666016,0.017455607652664185,-0.7998160123825073,-0.4637736678123474,0.17372125387191772,1.2782325744628906,1.0894583463668823,1.228006362915039,1.8752774000167847,0.8831671476364136,0.8199068307876587,-0.18303704261779785,-0.11415427923202515,0.9381807446479797,-1.093846321105957,-0.27247631549835205,1.6941328048706055,1.2094662189483643,-0.31998053193092346,-1.3667715787887573,-0.5650434494018555,1.070926308631897,-0.3882753849029541,-0.5392859578132629,-0.7056865692138672,1.3424667119979858,-0.722739040851593,0.7397015690803528,-1.1358705759048462,1.095465898513794,1.7505476474761963,-0.29232582449913025,0.3514645993709564,-0.0448024719953537,1.293616771697998,1.8725451231002808,-0.09246151149272919,0.3379526436328888,0.4671684205532074,-0.49811699986457825,0.34257733821868896,-0.34001708030700684,-0.8633847236633301,-0.3669431805610657,0.6834776997566223,-1.9448585510253906,-1.4056373834609985,-1.439766764640808,-0.5726924538612366,-0.8120034337043762,-1.1690547466278076,2.412839412689209,-1.2332768440246582,-1.3859262466430664,0.9051754474639893,1.8343135118484497,-1.1898061037063599,2.681946277618408,0.2577051520347595,-2.100419044494629,0.10705143213272095,-0.651101291179657,-0.5597413182258606,-0.12303684651851654,-0.5430919528007507,2.1881213188171387,1.3744392395019531,1.2052801847457886,0.42892658710479736,0.06438562273979187,-0.796981155872345,0.8099117279052734,0.26475176215171814,0.8457878828048706,-0.742868185043335,-1.558793544769287,3.3082351684570312,0.619559109210968,0.8484491109848022,1.5792245864868164,0.8632820248603821,0.8058977723121643,-0.010002970695495605,-0.7319197654724121,0.14622990787029266,1.8354003429412842,2.221957206726074,-0.21481448411941528,1.2279367446899414,-0.5310561060905457,0.19473609328269958,0.4990692138671875,-1.0457229614257812,0.5488848090171814,0.7068234086036682,0.6373750567436218,-1.1583807468414307,-1.505827784538269,0.09161897003650665,-0.15563470125198364,0.35909679532051086,1.2083237171173096,1.4520891904830933,-0.07961317896842957,0.049828410148620605,0.8979320526123047,-0.05771149694919586,-1.1273678541183472,0.9566214084625244,1.036486268043518,0.907188892364502,0.09924069046974182,0.26128271222114563,-0.4901975691318512,-0.9261192083358765,0.28732427954673767,-0.37511909008026123,1.0341153144836426,0.5006288886070251,0.11972132325172424,-0.35633301734924316,0.06217139959335327,-2.363926649093628 -2961,-0.5217639207839966,-2.535808801651001,-1.8728886842727661,-0.36757081747055054,-0.9477266073226929,-0.038481563329696655,-0.03272825479507446,0.20536059141159058,0.28146737813949585,1.2809858322143555,-1.9770616292953491,-1.0987257957458496,1.0011651515960693,0.6246398091316223,2.0145974159240723,0.033651188015937805,-0.008398286066949368,0.27432459592819214,0.11670120060443878,-0.010706484317779541,1.5474112033843994,-0.0931921899318695,-1.2528573274612427,0.46785223484039307,-0.6365939378738403,-0.9354347586631775,-0.292866051197052,0.5687592029571533,-0.44419440627098083,-0.6207581162452698,-0.22616416215896606,-0.07369813323020935,0.6403861045837402,-1.100807547569275,0.3265785872936249,0.002872869372367859,0.1150815486907959,-0.2768540382385254,-1.1780574321746826,-0.26506415009498596,3.294264793395996,0.02795085310935974,0.04421606659889221,-0.5418214797973633,0.8135467767715454,-2.0459604263305664,-0.33176469802856445,0.6910891532897949,0.6868727207183838,-3.2930731773376465,-1.0740364789962769,0.9154947400093079,-0.2845815420150757,0.5650644302368164,0.09307056665420532,1.3277654647827148,-1.104859709739685,-1.7398079633712769,-0.3511580228805542,-1.110906958580017,0.9135724902153015,-1.9578996896743774,-0.09285509586334229,-0.39654502272605896,-0.41736263036727905,0.8345128297805786,1.0485080480575562,0.46648818254470825,0.17070111632347107,-0.9990730881690979,0.31106510758399963,-0.4918641448020935,0.19535857439041138,-0.4161345958709717,-1.8348557949066162,0.2294430434703827,-0.23059479892253876,0.7670642137527466,-1.0447591543197632,-0.7781519889831543,-0.5537716150283813,-1.4966135025024414,0.7326385378837585,0.8726953268051147,-0.30638962984085083,0.31846779584884644,0.017608046531677246,-0.35087040066719055,0.5562231540679932,-0.5810779929161072,1.5700443983078003,0.4330793023109436,0.7517638206481934,-0.4727226197719574,2.207441568374634,-0.9638575911521912,1.7016936540603638,-0.43517035245895386,-0.28726980090141296,-0.3968881666660309,-0.6474360823631287,0.7206867933273315,-1.416110634803772,-1.6777936220169067,-0.5990688800811768,-0.9322364926338196,-0.10768008232116699,-0.9551796317100525,-0.26824140548706055,-0.3331615924835205,0.6934728026390076,0.4836627244949341,-1.313024878501892,0.12356626987457275,-1.0230565071105957,1.7668261528015137,0.060535937547683716,0.04245805740356445,-0.7131689786911011,0.14259186387062073,-0.9392387270927429,-1.272475242614746,-0.4640069603919983,0.9610291719436646,-0.3107427954673767,-1.2989444732666016,0.017455607652664185,-0.7998160123825073,-0.4637736678123474,-0.04671362042427063,1.2782325744628906,1.1096947193145752,1.228006362915039,1.8752774000167847,0.8831671476364136,-0.011508762836456299,-0.18303704261779785,-0.575648844242096,0.9381807446479797,-1.781693458557129,-0.25011488795280457,1.7540425062179565,1.2094662189483643,-0.31998053193092346,-1.3667715787887573,-0.5650434494018555,0.8752174377441406,-0.8198960423469543,-0.5392859578132629,-0.7965484261512756,0.8736575841903687,-0.722739040851593,0.573572039604187,-1.1358705759048462,1.095465898513794,1.5352470874786377,-0.29232582449913025,0.3514645993709564,-0.0448024719953537,1.293616771697998,1.8725451231002808,0.2240573912858963,0.8991568088531494,0.4671684205532074,-0.49811699986457825,-0.00790393352508545,-0.34001708030700684,-0.8633847236633301,-0.3669431805610657,0.6834776997566223,-1.9448585510253906,-1.4056373834609985,-1.439766764640808,-0.544628381729126,-0.8120034337043762,-1.1690547466278076,2.412839412689209,-1.2332768440246582,-1.3859262466430664,0.9594599008560181,1.8343135118484497,-1.1898061037063599,2.681946277618408,0.2577051520347595,-2.405269145965576,0.10705143213272095,-0.4627104699611664,-0.798776388168335,-0.12303684651851654,-0.5430919528007507,1.9960410594940186,1.3744392395019531,0.5872789025306702,0.42892658710479736,0.30066442489624023,-0.8074859976768494,0.7452616691589355,0.26475176215171814,0.8457878828048706,-0.742868185043335,-1.558793544769287,3.3082351684570312,1.4712969064712524,0.8484491109848022,1.5792245864868164,0.8632820248603821,0.20966017246246338,0.27124419808387756,-0.7319197654724121,0.14622990787029266,1.5704452991485596,2.221957206726074,-0.5867099761962891,1.1748954057693481,-0.9298853874206543,-0.4942440092563629,0.654107391834259,-1.0214909315109253,0.5533297657966614,0.7068234086036682,0.6373750567436218,-1.1583807468414307,-1.1081501245498657,0.7574594616889954,-0.15563470125198364,0.35909679532051086,1.2083237171173096,1.4520891904830933,-0.07961317896842957,0.14807111024856567,0.8979320526123047,-0.05771149694919586,-1.1273678541183472,0.9566214084625244,1.036486268043518,0.907188892364502,0.09924069046974182,0.26128271222114563,-0.4901975691318512,-1.5129666328430176,0.28732427954673767,-0.37511909008026123,0.566706120967865,0.5006288886070251,0.11972132325172424,-0.4900763928890228,0.06217139959335327,-1.0698424577713013 -2962,-0.3328556418418884,-2.535808801651001,-1.8728886842727661,-0.36757081747055054,-0.9477266073226929,-0.101793572306633,0.0830051600933075,0.20536059141159058,0.28146737813949585,1.2809858322143555,-1.9770616292953491,-1.0987257957458496,0.9859669804573059,0.6246398091316223,2.0145974159240723,0.439197301864624,-0.008398286066949368,0.27432459592819214,0.11670120060443878,-0.010706484317779541,1.5474112033843994,0.09453132748603821,-1.2528573274612427,0.46785223484039307,-0.6365939378738403,-0.9354347586631775,-0.292866051197052,0.5687592029571533,-0.44419440627098083,-0.6207581162452698,-0.22616416215896606,0.3055777847766876,0.6403861045837402,-1.4726150035858154,0.3265785872936249,-0.09983614832162857,0.1150815486907959,-0.2768540382385254,-1.1780574321746826,-0.4133681058883667,2.9398510456085205,0.28435179591178894,0.04421606659889221,-0.4784518778324127,0.722568690776825,-1.3036460876464844,-0.2870488464832306,0.38310858607292175,0.6868727207183838,-3.2930731773376465,-1.0740364789962769,0.9154947400093079,-0.2845815420150757,0.15750926733016968,0.09307056665420532,1.3277654647827148,-1.104859709739685,-1.7398079633712769,-0.3511580228805542,-1.110906958580017,0.9135724902153015,-2.2433371543884277,0.002512425184249878,-0.39654502272605896,-0.41736263036727905,0.8345128297805786,1.0485080480575562,0.46648818254470825,0.17070111632347107,-0.9990730881690979,0.31106510758399963,-0.4918641448020935,0.19535857439041138,-0.918570339679718,-1.9474173784255981,0.2294430434703827,-0.23059479892253876,0.869072437286377,-1.1103042364120483,-0.3580161929130554,-1.2353835105895996,-1.4966135025024414,0.7326385378837585,0.8726953268051147,0.019219011068344116,0.31846779584884644,0.017608046531677246,-0.35087040066719055,0.5562231540679932,-0.5810779929161072,1.667261004447937,1.4206675291061401,1.085429310798645,-0.4727226197719574,2.207441568374634,-0.9638575911521912,1.7016936540603638,-0.43517035245895386,-0.28726980090141296,-0.3968881666660309,-0.6474360823631287,0.7848250269889832,-1.416110634803772,-1.6777936220169067,-0.5990688800811768,-0.9322364926338196,-0.10768008232116699,-0.9551796317100525,-0.26824140548706055,-0.3331615924835205,0.6934728026390076,0.4836627244949341,-1.313024878501892,0.12356626987457275,-1.003560185432434,1.7530971765518188,0.060535937547683716,0.6634539365768433,-0.7131689786911011,-0.40300092101097107,-1.125356912612915,-1.272475242614746,0.4923866391181946,0.9610291719436646,-1.618422508239746,-1.2989444732666016,0.3066975176334381,-0.7998160123825073,-0.5072267651557922,-0.04671362042427063,1.2782325744628906,1.1096947193145752,1.7474970817565918,2.0663392543792725,0.8831671476364136,-0.011508762836456299,0.13870781660079956,-0.575648844242096,0.9381807446479797,-1.781693458557129,-0.04722549021244049,1.7540425062179565,1.0238057374954224,-0.31998053193092346,-1.3667715787887573,-0.5650434494018555,-0.48350584506988525,-0.8198960423469543,-0.5392859578132629,-0.7965484261512756,0.8736575841903687,-0.722739040851593,0.573572039604187,-1.317488431930542,0.9293035268783569,1.5352470874786377,-0.059674352407455444,0.3390277028083801,-0.0448024719953537,1.1397087574005127,1.8725451231002808,-0.0792565792798996,0.8991568088531494,0.4671684205532074,-0.49811699986457825,-0.7625678181648254,-0.7506181001663208,-0.8633847236633301,-0.3669431805610657,0.6834776997566223,-1.9279602766036987,-1.4056373834609985,-1.1490023136138916,-0.544628381729126,-0.8120034337043762,-0.7938822507858276,2.412839412689209,-1.2332768440246582,-1.3859262466430664,0.8689442276954651,1.8343135118484497,-1.1898061037063599,2.681946277618408,0.2577051520347595,-1.0962492227554321,-0.5593291521072388,-0.4627104699611664,-0.7166749835014343,-0.12043563276529312,-0.5139535665512085,1.9960410594940186,1.3744392395019531,0.5872789025306702,0.42892658710479736,0.30066442489624023,-0.8074859976768494,0.2083175778388977,0.26475176215171814,0.8457878828048706,-0.742868185043335,-1.558793544769287,3.3082351684570312,0.20064127445220947,0.8484491109848022,1.69861900806427,0.8632820248603821,0.20966017246246338,0.27124419808387756,-0.7319197654724121,-0.7668658494949341,2.3679239749908447,2.221957206726074,-0.5867099761962891,1.1748954057693481,0.19967424869537354,-0.4942440092563629,0.654107391834259,-1.6151318550109863,0.5533297657966614,1.007077932357788,0.7935512065887451,-1.4322706460952759,-1.1081501245498657,0.7574594616889954,-0.15563470125198364,0.37230899930000305,1.2083237171173096,2.068925380706787,-0.28370094299316406,0.22682805359363556,0.8979320526123047,-0.34190505743026733,-1.205090880393982,0.7036259770393372,1.036486268043518,0.8404649496078491,0.09924069046974182,0.26128271222114563,-0.7586714029312134,-1.5129666328430176,0.252526193857193,-0.37511909008026123,0.566706120967865,0.5006288886070251,0.11972132325172424,-0.4900763928890228,0.06217139959335327,-1.0698424577713013 -2963,-0.3328556418418884,-2.535808801651001,-1.8728886842727661,-0.36757081747055054,-0.9477266073226929,-0.3598056435585022,-0.19954848289489746,0.24817660450935364,-0.050522178411483765,0.9295361042022705,-1.9770616292953491,-0.8331852555274963,1.031340479850769,0.210563063621521,2.0145974159240723,0.439197301864624,-0.008398286066949368,0.27432459592819214,0.11670120060443878,-0.010706484317779541,1.5474112033843994,-0.32793989777565,-0.9805463552474976,0.46785223484039307,-0.6365939378738403,-0.9354347586631775,-0.292866051197052,0.5687592029571533,-0.44419440627098083,-0.6207581162452698,-0.22616416215896606,0.20797744393348694,0.1866793930530548,-0.8820222020149231,0.3265785872936249,-0.09983614832162857,0.05230792611837387,-0.09077572822570801,-1.731306552886963,-0.4133681058883667,2.9398510456085205,-0.08759766817092896,0.04421606659889221,-0.4784518778324127,0.27300894260406494,-1.3036460876464844,-0.2870488464832306,0.38310858607292175,0.5504417419433594,-3.2930731773376465,-0.5386563539505005,1.0402061939239502,-0.354734867811203,0.15750926733016968,0.09307056665420532,0.9498469829559326,-1.104859709739685,-1.7398079633712769,-0.3511580228805542,-1.110906958580017,1.279834270477295,-2.2433371543884277,0.4325917363166809,-0.39654502272605896,-0.41736263036727905,0.8345128297805786,1.0485080480575562,1.0178356170654297,0.33952242136001587,-0.9990730881690979,0.02998414635658264,-0.4918641448020935,0.19535857439041138,-0.918570339679718,-1.9474173784255981,0.2294430434703827,-0.01790440082550049,0.898900032043457,-1.1103042364120483,-0.5603494048118591,-1.2353835105895996,-1.084450364112854,0.7326385378837585,1.0785465240478516,-0.6318351030349731,0.31846779584884644,0.017608046531677246,-0.35087040066719055,0.438915491104126,-0.5810779929161072,1.667261004447937,1.4206675291061401,1.085429310798645,-0.4727226197719574,2.207441568374634,-0.9638575911521912,1.7016936540603638,-0.43517035245895386,-0.0662475973367691,-0.3968881666660309,-0.6474360823631287,0.5696591734886169,-1.416110634803772,-1.6777936220169067,-0.5990688800811768,-0.9322364926338196,0.28683406114578247,-0.05184304714202881,-0.26824140548706055,-0.3331615924835205,1.750638484954834,0.4836627244949341,-1.313024878501892,-0.9752368927001953,-1.7053940296173096,1.7530971765518188,0.060535937547683716,0.6634539365768433,-0.7131689786911011,0.9655718803405762,-0.3972773551940918,-1.272475242614746,-0.39857572317123413,0.9610291719436646,-1.5425918102264404,-1.3737784624099731,0.3066975176334381,-0.7998160123825073,-0.5072267651557922,-0.10666316747665405,0.3692243695259094,1.649216651916504,1.626523494720459,2.0663392543792725,0.8831671476364136,1.2170014381408691,-0.289723664522171,-1.1341687440872192,0.9381807446479797,-1.781693458557129,-0.04722549021244049,1.7540425062179565,1.0238057374954224,-0.8013490438461304,-1.3667715787887573,-0.5650434494018555,-0.48350584506988525,-0.8198960423469543,-0.673600435256958,-0.7965484261512756,0.8736575841903687,-0.722739040851593,0.573572039604187,-1.317488431930542,0.7345085740089417,1.4093552827835083,-0.059674352407455444,0.2829935550689697,0.057996176183223724,1.2576549053192139,1.8725451231002808,-0.0792565792798996,0.8991568088531494,0.4671684205532074,-0.49811699986457825,0.5282236933708191,-1.1457173824310303,-0.8633847236633301,-0.3669431805610657,0.7378692626953125,-1.9279602766036987,-1.4056373834609985,-0.9614180326461792,-0.544628381729126,-0.8120034337043762,-0.7938822507858276,2.412839412689209,-1.6300365924835205,-1.3859262466430664,0.8689442276954651,2.089782238006592,-1.1898061037063599,2.681946277618408,0.003626585006713867,-1.0962492227554321,-0.5593291521072388,-0.4627104699611664,-0.7166749835014343,-0.8150671720504761,-0.5139535665512085,1.934515118598938,1.3744392395019531,0.9322549104690552,-0.0535731315612793,0.30066442489624023,-0.8074859976768494,0.2623748183250427,0.26475176215171814,0.8457878828048706,-0.742868185043335,-1.558793544769287,3.3082351684570312,0.20064127445220947,0.8484491109848022,1.5231295824050903,0.8632820248603821,0.20966017246246338,-0.48104128241539,-0.7319197654724121,-0.7668658494949341,1.8475069999694824,2.221957206726074,-1.0535774230957031,1.586366891860962,0.19967424869537354,0.012088805437088013,0.654107391834259,-1.6151318550109863,0.5533297657966614,0.9555816650390625,0.7935512065887451,-1.4322706460952759,-1.1081501245498657,0.801846444606781,-0.15563470125198364,0.37230899930000305,1.2083237171173096,2.106498956680298,0.6120222806930542,0.22682805359363556,0.8979320526123047,-0.34190505743026733,-1.205090880393982,0.7036259770393372,1.036486268043518,0.8535826802253723,0.09924069046974182,0.26128271222114563,-0.7586714029312134,-1.5129666328430176,0.252526193857193,-0.37511909008026123,0.566706120967865,0.5006288886070251,0.36407965421676636,0.1693706214427948,0.06217139959335327,-0.7560023665428162 -2964,-0.1234607845544815,-2.522709369659424,-1.8728886842727661,-0.36757081747055054,-0.8733147978782654,-0.3598056435585022,-0.19954848289489746,0.24817660450935364,-0.050522178411483765,1.2696151733398438,-1.256413221359253,-0.9065151214599609,0.9625559449195862,0.210563063621521,2.0145974159240723,0.439197301864624,0.06833545118570328,0.041024282574653625,0.2151114046573639,-0.010706484317779541,1.5474112033843994,-0.32793989777565,-0.9805463552474976,0.46785223484039307,-0.6365939378738403,-0.9354347586631775,-0.292866051197052,0.5705022811889648,-0.49068719148635864,-0.6207581162452698,-0.22616416215896606,0.20797744393348694,0.1866793930530548,-0.8820222020149231,0.6189451217651367,-0.09983614832162857,-0.2110024094581604,0.12791791558265686,-1.731306552886963,-0.4133681058883667,2.9398510456085205,-0.08759766817092896,-0.06360327452421188,-0.7786597013473511,0.27300894260406494,-1.3036460876464844,-0.2870488464832306,0.38310858607292175,0.296606183052063,-3.2930731773376465,-0.2561153769493103,1.0402061939239502,-0.4449625611305237,0.15750926733016968,0.09307056665420532,0.9498469829559326,-0.5421068072319031,-1.7398079633712769,-0.3511580228805542,-1.110906958580017,1.279834270477295,-2.2433371543884277,0.4325917363166809,-0.39654502272605896,-0.41736263036727905,0.8345128297805786,1.0485080480575562,1.0178356170654297,0.33952242136001587,-0.9990730881690979,0.02998414635658264,-0.5506991147994995,0.19535857439041138,-0.918570339679718,-1.9474173784255981,-0.465527206659317,-0.01790440082550049,0.898900032043457,-1.1103042364120483,-0.5603494048118591,-1.1431039571762085,-1.6083015203475952,0.7326385378837585,0.5839077830314636,-0.6318351030349731,0.31846779584884644,-0.575858473777771,-0.35087040066719055,0.438915491104126,-0.32452237606048584,1.667261004447937,1.4206675291061401,1.085429310798645,-0.1255989670753479,2.362605571746826,0.024882078170776367,1.7016936540603638,-0.5609011054039001,-0.0662475973367691,-0.3968881666660309,-0.6474360823631287,1.0304805040359497,-1.416110634803772,-1.6777936220169067,-0.8522967100143433,-0.9322364926338196,0.28683406114578247,-0.05184304714202881,-0.19917654991149902,-0.7402349710464478,1.750638484954834,0.4836627244949341,-1.313024878501892,-0.9752368927001953,-1.7053940296173096,1.7530971765518188,0.060535937547683716,0.6634539365768433,-0.5209172368049622,0.9655718803405762,-0.3972773551940918,-0.6718319058418274,-0.39857572317123413,0.9610291719436646,-1.5425918102264404,-1.3182352781295776,0.3066975176334381,-0.7998160123825073,-0.5072267651557922,-0.11726998537778854,0.2746680974960327,1.2116303443908691,2.5096912384033203,2.0663392543792725,0.8831671476364136,1.2170014381408691,-0.289723664522171,-1.1341687440872192,0.9381807446479797,-1.781693458557129,-0.1021977961063385,1.7540425062179565,1.0238057374954224,-0.8013490438461304,-1.3667715787887573,-0.5650434494018555,0.7097359895706177,-0.8198960423469543,-0.25055423378944397,-0.7965484261512756,1.1225632429122925,-0.722739040851593,0.573572039604187,-1.317488431930542,0.7345085740089417,1.4093552827835083,-0.059674352407455444,-0.22565758228302002,0.057996176183223724,1.2576549053192139,1.8725451231002808,-0.35500818490982056,1.161504864692688,0.4671684205532074,-0.49811699986457825,0.3462214469909668,-1.1457173824310303,-1.1784355640411377,0.12729737162590027,0.7378692626953125,-1.9279602766036987,-1.4056373834609985,-0.025208711624145508,-0.544628381729126,-0.14443457126617432,-0.8316903710365295,2.412839412689209,-1.834973931312561,-1.3859262466430664,0.8689442276954651,2.089782238006592,-1.021470546722412,2.5526742935180664,0.003626585006713867,-0.5267496109008789,-0.2770631015300751,-0.4627104699611664,-0.7166749835014343,-0.8150671720504761,-0.5139535665512085,1.934515118598938,1.3744392395019531,0.9322549104690552,-0.0535731315612793,0.944642186164856,-0.8074859976768494,0.2623748183250427,0.26475176215171814,0.8457878828048706,-0.4410467743873596,-1.6400924921035767,3.46555495262146,0.20064127445220947,1.3219833374023438,1.5231295824050903,0.8632820248603821,0.20966017246246338,-0.48104128241539,-0.11788791418075562,-0.3174337148666382,2.537317991256714,2.221957206726074,-1.0535774230957031,1.586366891860962,0.19967424869537354,0.012088805437088013,0.24886810779571533,-0.5761483907699585,0.5533297657966614,0.9555816650390625,0.7935512065887451,-1.4322706460952759,-1.1081501245498657,0.2371177077293396,-0.15563470125198364,0.37230899930000305,1.2083237171173096,2.106498956680298,0.6120222806930542,0.30205732583999634,0.8979320526123047,0.4846034049987793,-1.0073922872543335,0.7036259770393372,1.036486268043518,0.8535826802253723,0.09924069046974182,0.26128271222114563,-0.7586714029312134,-1.4799354076385498,0.252526193857193,-0.37511909008026123,0.566706120967865,0.5006288886070251,0.3902457058429718,0.1693706214427948,0.06217139959335327,-1.9122860431671143 -2965,-0.44887667894363403,-2.522709369659424,-1.8728886842727661,-0.36757081747055054,-1.4095942974090576,-0.037237197160720825,-0.17586448788642883,0.24817660450935364,-0.050522178411483765,1.2696151733398438,-1.256413221359253,-0.5257261991500854,0.9625559449195862,0.210563063621521,2.0109591484069824,0.439197301864624,0.06833545118570328,0.041024282574653625,0.36738455295562744,-0.010706484317779541,1.5474112033843994,-0.32793989777565,-1.6528630256652832,0.46785223484039307,-0.6365939378738403,-0.7496430277824402,0.148441344499588,0.5705022811889648,-0.49068719148635864,-0.6207581162452698,-0.10277604311704636,0.20797744393348694,0.1866793930530548,-0.8820222020149231,0.6189451217651367,-0.013085983693599701,-0.2110024094581604,0.12791791558265686,-1.445798397064209,-0.4133681058883667,3.4068832397460938,-0.08759766817092896,-0.20843207836151123,-0.7786597013473511,0.27300894260406494,-1.3036460876464844,-0.2870488464832306,0.38310858607292175,0.296606183052063,-3.2930731773376465,-0.2561153769493103,1.0402061939239502,-0.20327028632164001,0.15750926733016968,0.09307056665420532,0.9498469829559326,-0.8002711534500122,-1.7398079633712769,-0.3511580228805542,-1.5747406482696533,1.279834270477295,-2.2433371543884277,0.4325917363166809,-0.39654502272605896,-0.41736263036727905,0.8345128297805786,1.0485080480575562,1.0178356170654297,0.33952242136001587,-0.9990730881690979,0.02998414635658264,-0.5506991147994995,0.19535857439041138,-0.47114717960357666,-1.9474173784255981,-0.3448951542377472,-0.025023018941283226,0.7985777258872986,-1.1103042364120483,-0.7663220167160034,-0.9975054860115051,-1.6083015203475952,0.7326385378837585,0.7278579473495483,-0.6318351030349731,0.31846779584884644,-0.575858473777771,0.3010384142398834,0.438915491104126,-0.6601762175559998,1.4182125329971313,1.8142694234848022,1.085429310798645,-0.1255989670753479,2.362605571746826,0.024882078170776367,1.7016936540603638,-0.5609011054039001,-0.0662475973367691,-0.3720698952674866,-0.6474360823631287,1.0304805040359497,-1.416110634803772,-1.6777936220169067,-0.8522967100143433,-0.04678565263748169,0.28683406114578247,-0.05184304714202881,-0.19917654991149902,-0.7402349710464478,1.750638484954834,1.019705891609192,-1.313024878501892,-0.9752368927001953,-1.7053940296173096,1.7500722408294678,0.060535937547683716,1.1141126155853271,-0.5209172368049622,-0.6180610656738281,-0.3972773551940918,0.3035408854484558,-0.07509824633598328,0.9610291719436646,-1.5425918102264404,-1.2303894758224487,0.3066975176334381,-0.9582837820053101,-0.5072267651557922,-0.11726998537778854,-0.010853499174118042,1.2116303443908691,2.5096912384033203,2.0663392543792725,0.8831671476364136,1.2170014381408691,-0.289723664522171,-1.1341687440872192,0.9381807446479797,-1.8272374868392944,-0.1021977961063385,1.7540425062179565,1.0238057374954224,-0.8013490438461304,-1.0800552368164062,-0.5650434494018555,0.7097359895706177,-0.8198960423469543,-0.25055423378944397,-0.10412269830703735,1.5397815704345703,-1.0414249897003174,0.573572039604187,-1.317488431930542,0.7345085740089417,1.6396172046661377,-0.059674352407455444,-0.22565758228302002,0.057996176183223724,1.5542714595794678,1.8725451231002808,-0.6310009360313416,1.161504864692688,0.4671684205532074,-0.49811699986457825,0.3462214469909668,-1.1457173824310303,-0.9267356991767883,0.3143090009689331,1.3788917064666748,-1.7232844829559326,-1.4056373834609985,-0.025208711624145508,-0.544628381729126,-0.14443457126617432,-0.8316903710365295,2.412839412689209,-1.7130136489868164,-1.3859262466430664,0.8689442276954651,2.572805643081665,-0.3309018015861511,2.5526742935180664,0.003626585006713867,-0.5267496109008789,-0.2770631015300751,-0.4627104699611664,-0.7166749835014343,-0.8150671720504761,-0.5139535665512085,1.9413844347000122,1.9049313068389893,0.9322549104690552,-0.0535731315612793,-0.11146306991577148,-0.8074859976768494,0.2623748183250427,0.26475176215171814,0.8457878828048706,-0.46237677335739136,-1.6400924921035767,3.43900728225708,0.20064127445220947,1.3219833374023438,1.5231295824050903,0.8632820248603821,0.024321377277374268,0.43661049008369446,-0.11788791418075562,-0.3174337148666382,2.537317991256714,2.221957206726074,-1.0535774230957031,1.586366891860962,0.19967424869537354,0.16754193603992462,0.24886810779571533,-0.5761483907699585,0.12637174129486084,0.9555816650390625,0.28894180059432983,-1.3429735898971558,-1.0983736515045166,0.34711477160453796,-0.15563470125198364,0.37230899930000305,1.2083237171173096,2.106498956680298,0.9317300319671631,0.30205732583999634,0.8979320526123047,0.4846034049987793,-1.0073922872543335,0.7036259770393372,1.163580060005188,0.8535826802253723,0.09924069046974182,0.26128271222114563,-0.7586714029312134,-1.8003971576690674,0.252526193857193,-0.04133579134941101,0.566706120967865,0.851775050163269,0.29936710000038147,0.2866370677947998,-0.23230791091918945,-2.181910991668701 -2966,-0.3138670325279236,-2.522709369659424,-1.8728886842727661,-0.36757081747055054,-1.760325312614441,-0.07567387074232101,-0.17586448788642883,0.24817660450935364,0.7590453624725342,1.2696151733398438,-1.256413221359253,-0.5257261991500854,0.9625559449195862,0.210563063621521,1.592482328414917,0.04059869050979614,0.06833545118570328,0.041024282574653625,0.36738455295562744,0.3717916011810303,1.7031176090240479,-0.5949785709381104,-2.118772506713867,0.18748599290847778,-0.6365939378738403,-0.7496430277824402,0.148441344499588,0.4304686188697815,-0.49068719148635864,-0.6207581162452698,-0.5948372483253479,0.20797744393348694,0.1866793930530548,-0.7100878953933716,0.6189451217651367,-0.013085983693599701,-0.2110024094581604,0.12791791558265686,-1.445798397064209,-0.4133681058883667,3.4068832397460938,-0.08759766817092896,-0.20843207836151123,-0.7786597013473511,0.5661941766738892,-1.3036460876464844,-0.2870488464832306,0.38310858607292175,0.296606183052063,-3.2930731773376465,-1.1229491233825684,1.2715996503829956,-0.13000407814979553,0.15750926733016968,0.09307056665420532,0.9498469829559326,-0.7064490914344788,-1.7398079633712769,-0.3511580228805542,-1.5541484355926514,1.3231843709945679,-2.2433371543884277,0.4325917363166809,-0.39654502272605896,-0.41736263036727905,0.5253428220748901,1.0485080480575562,1.0178356170654297,0.8149315714836121,-0.5842920541763306,0.5682767629623413,-0.5506991147994995,0.19535857439041138,-0.47114717960357666,-1.9474173784255981,-0.3448951542377472,0.30984219908714294,0.7985777258872986,-1.1103042364120483,-0.5228592753410339,-0.9975054860115051,-1.6083015203475952,1.1569404602050781,1.2611196041107178,-0.3549708425998688,0.35146650671958923,-0.575858473777771,0.3010384142398834,0.438915491104126,-0.6601762175559998,1.4182125329971313,1.8142694234848022,1.085429310798645,0.6692121028900146,2.362605571746826,0.024882078170776367,1.7016936540603638,-0.5609011054039001,0.014545165002346039,-0.1506255567073822,-0.39632323384284973,1.0304805040359497,-1.416110634803772,-1.2495604753494263,-0.8522967100143433,-0.6660281419754028,0.28683406114578247,-0.05184304714202881,-0.19917654991149902,-0.7402349710464478,1.750638484954834,0.46597743034362793,-1.313024878501892,-0.6539180278778076,-1.7753897905349731,1.7500722408294678,0.060535937547683716,1.1141126155853271,-1.0671730041503906,-0.6180610656738281,-0.3972773551940918,-0.8388105034828186,-0.07509824633598328,0.9610291719436646,-1.5425918102264404,-1.2303894758224487,0.3031679689884186,-0.9582837820053101,-0.5072267651557922,-0.11726998537778854,0.9864801168441772,0.9459192752838135,2.1758153438568115,2.0663392543792725,0.8831671476364136,1.2170014381408691,-0.289723664522171,-1.1341687440872192,0.9381807446479797,-0.7414364814758301,-0.1021977961063385,1.7540425062179565,1.0238057374954224,-0.8013490438461304,-1.5220264196395874,-0.5650434494018555,0.7097359895706177,-1.0214473009109497,-0.8958845138549805,-0.10412269830703735,1.776086449623108,-1.0414249897003174,0.4735769033432007,-1.317488431930542,0.7345085740089417,1.6396172046661377,-0.059674352407455444,-0.4025160074234009,0.057996176183223724,0.7992440462112427,1.6450012922286987,-0.6310009360313416,1.161504864692688,0.7180674076080322,-0.49811699986457825,-0.9145337343215942,-0.21952307224273682,-0.9267356991767883,0.9070158004760742,1.3788917064666748,-1.7232844829559326,-1.4056373834609985,-1.217877984046936,-0.544628381729126,-0.27730220556259155,-0.8316903710365295,2.412839412689209,-2.3527088165283203,-1.3859262466430664,0.48652470111846924,2.572805643081665,-0.3309018015861511,2.5526742935180664,0.003626585006713867,-0.5267496109008789,-0.2770631015300751,-0.4627104699611664,-0.7166749835014343,-0.8150671720504761,0.7218866348266602,1.9413844347000122,1.9049313068389893,0.9322549104690552,0.0378703847527504,-0.11146306991577148,-0.8074859976768494,-0.12852147221565247,0.26475176215171814,0.8457878828048706,-0.8495680093765259,-1.1135350465774536,3.43900728225708,0.20064127445220947,1.3219833374023438,1.5231295824050903,0.8632820248603821,0.14422276616096497,1.1056791543960571,-0.11788791418075562,-0.07925017178058624,2.993762969970703,2.306448221206665,-1.0535774230957031,1.586366891860962,0.19967424869537354,0.16754193603992462,0.07132011651992798,-0.5761483907699585,0.12637174129486084,1.354823112487793,0.28894180059432983,-1.3429735898971558,-1.4540218114852905,0.34711477160453796,-0.15563470125198364,0.37230899930000305,1.2083237171173096,2.106498956680298,-0.3108072280883789,0.30205732583999634,0.816756010055542,0.07496622204780579,-1.0073922872543335,0.12730491161346436,1.356811285018921,0.8535826802253723,0.09924069046974182,0.609266459941864,-0.7586714029312134,-1.8003971576690674,0.252526193857193,-0.47088027000427246,0.566706120967865,0.851775050163269,0.29936710000038147,0.2866370677947998,-0.15869437158107758,-1.9997217655181885 -2967,0.09610059857368469,-2.522709369659424,-1.8728886842727661,-0.36757081747055054,-1.3428218364715576,-0.07567387074232101,-0.013638675212860107,0.24817660450935364,0.7590453624725342,1.2696151733398438,-1.256413221359253,-0.5257261991500854,0.9625559449195862,-0.03529120981693268,1.5469505786895752,-0.03142046183347702,0.06833545118570328,-0.021998487412929535,0.36738455295562744,0.3717916011810303,1.0219577550888062,-0.5949785709381104,-2.118772506713867,0.16934418678283691,-0.6365939378738403,-0.6643034815788269,0.148441344499588,0.4304686188697815,-0.49068719148635864,-0.687103271484375,-0.5948372483253479,0.15900442004203796,0.1866793930530548,-0.7100878953933716,0.6189451217651367,-0.013085983693599701,-0.1320616602897644,0.12791791558265686,-0.9866588115692139,-0.33151423931121826,3.28857159614563,0.019125521183013916,-0.20843207836151123,-0.7786597013473511,0.5661941766738892,-1.3036460876464844,-0.2870488464832306,0.491942435503006,0.1334039717912674,-2.797386884689331,-1.1229491233825684,1.2715996503829956,-0.13000407814979553,0.15750926733016968,0.09307056665420532,0.9498469829559326,-0.20076555013656616,-1.7398079633712769,-0.06132364273071289,-1.5541484355926514,1.3231843709945679,-2.1401240825653076,0.4325917363166809,-0.39654502272605896,-0.41736263036727905,0.5253428220748901,1.0164066553115845,0.5642562508583069,0.8149315714836121,-0.5842920541763306,0.5682767629623413,-0.5506991147994995,0.17130841314792633,-0.47114717960357666,-1.9474173784255981,-0.3448951542377472,0.49591049551963806,0.9457665085792542,-1.1103042364120483,-0.5228592753410339,-0.9975054860115051,-1.6083015203475952,1.12569260597229,1.2611196041107178,-0.00645679235458374,0.35146650671958923,-1.0738240480422974,0.3010384142398834,0.438915491104126,-0.6179172396659851,1.4182125329971313,1.8142694234848022,1.085429310798645,0.8771225214004517,2.362605571746826,-0.2418784499168396,1.7016936540603638,-0.5609011054039001,0.014545165002346039,-0.1506255567073822,-0.39632323384284973,1.0304805040359497,-1.3178493976593018,-0.7963428497314453,-0.8522967100143433,-0.6660281419754028,0.28683406114578247,-0.05184304714202881,-0.19917654991149902,0.032982051372528076,1.750638484954834,0.46597743034362793,-1.313024878501892,-0.6539180278778076,-1.7753897905349731,1.5906671285629272,0.1495099663734436,1.1141126155853271,-1.0671730041503906,-0.6180610656738281,-1.0085524320602417,-1.4319361448287964,0.022692382335662842,0.9610291719436646,-1.5425918102264404,-0.3907057046890259,0.3031679689884186,-0.9582837820053101,0.36462777853012085,-0.07388128340244293,0.6034618616104126,0.8943877220153809,2.1758153438568115,2.0663392543792725,0.4128490686416626,1.2170014381408691,-0.289723664522171,-1.1341687440872192,0.9381807446479797,-0.2884393334388733,-0.25793805718421936,1.7540425062179565,1.1851811408996582,-0.8013490438461304,-1.5220264196395874,-0.5650434494018555,0.7097359895706177,-1.0214473009109497,-0.8958845138549805,-0.10412269830703735,1.3286515474319458,-0.32042545080184937,0.4735769033432007,-1.317488431930542,0.7345085740089417,2.1631033420562744,-0.059674352407455444,-0.4025160074234009,0.057996176183223724,1.0306967496871948,1.6702691316604614,-0.03874480724334717,1.161504864692688,0.7180674076080322,-0.9484454393386841,-0.9145337343215942,-0.21952307224273682,-0.9267356991767883,0.6737610697746277,1.3788917064666748,-1.7232844829559326,-1.4056373834609985,0.10403335094451904,-0.544628381729126,-0.27730220556259155,-0.8316903710365295,2.412839412689209,-2.3527088165283203,-1.3859262466430664,0.48652470111846924,2.1870615482330322,0.403831422328949,2.5526742935180664,0.003626585006713867,-0.5267496109008789,-0.2770631015300751,-0.4627104699611664,0.4984779953956604,-0.8150671720504761,0.7218866348266602,1.9413844347000122,1.9049313068389893,0.9322549104690552,0.0378703847527504,-0.4022866189479828,-0.8074859976768494,-0.2954292297363281,0.26475176215171814,0.5646436810493469,-0.8495680093765259,-1.1135350465774536,2.761101245880127,-0.2981768548488617,0.9181904792785645,1.5231295824050903,0.8632820248603821,0.49015191197395325,1.1056791543960571,0.6020491719245911,-0.07925017178058624,2.993762969970703,2.306448221206665,-1.0535774230957031,1.586366891860962,0.19967424869537354,-0.39605236053466797,0.3032008111476898,-0.5761483907699585,0.12637174129486084,1.354823112487793,0.28894180059432983,-1.3429735898971558,-1.4540218114852905,0.34711477160453796,-0.15563470125198364,0.37230899930000305,1.2083237171173096,2.106498956680298,-0.3108072280883789,0.30205732583999634,0.816756010055542,0.07496622204780579,-1.0073922872543335,0.12730491161346436,1.356811285018921,1.6984885931015015,0.09924069046974182,1.055063247680664,0.22031629085540771,-1.8003971576690674,0.252526193857193,-0.47088027000427246,0.4790474772453308,0.1390606164932251,0.29936710000038147,0.2866370677947998,-0.15869437158107758,-2.0614898204803467 -2968,0.09610059857368469,-2.1031553745269775,-1.8728886842727661,-0.36757081747055054,-1.3428218364715576,-0.07567387074232101,0.040093112736940384,-0.34039655327796936,0.7590453624725342,1.2696151733398438,-1.433297872543335,-0.5257261991500854,0.9625559449195862,-0.03529120981693268,1.5469505786895752,-0.03142046183347702,0.06833545118570328,-0.021998487412929535,0.1576550155878067,0.3717916011810303,1.3609592914581299,-0.8554255962371826,-2.118772506713867,0.16934418678283691,-0.3862278461456299,-0.9408865571022034,0.18958766758441925,0.6729154586791992,-0.49068719148635864,-0.4084450304508209,-0.5948372483253479,0.15900442004203796,0.4155612587928772,-1.3723599910736084,0.6185587644577026,-0.013085983693599701,-0.1320616602897644,0.12791791558265686,-0.9866588115692139,-0.33151423931121826,3.28857159614563,0.019125521183013916,-0.20843207836151123,-0.7786597013473511,0.5661941766738892,-1.3036460876464844,-0.2870488464832306,0.24192437529563904,0.1334039717912674,-2.797386884689331,-0.5507503747940063,1.2715996503829956,-0.13000407814979553,0.15750926733016968,0.09307056665420532,0.9498469829559326,-0.20076555013656616,-1.7398079633712769,-0.06132364273071289,-1.9442529678344727,1.3231843709945679,-2.0247890949249268,0.8348497152328491,-0.39654502272605896,-0.41736263036727905,0.5253428220748901,1.051297664642334,0.9407672882080078,0.8149315714836121,-0.5842920541763306,0.5682767629623413,-0.6382195949554443,0.17130841314792633,-0.7552372217178345,-1.9474173784255981,-0.3448951542377472,0.49591049551963806,0.815550684928894,-1.1103042364120483,-0.5228592753410339,-0.9975054860115051,-1.6083015203475952,1.12569260597229,1.112013339996338,-0.00645679235458374,0.35146650671958923,-1.0738240480422974,0.3010384142398834,0.438915491104126,-0.6179172396659851,1.1032627820968628,1.4646735191345215,0.9056358337402344,0.8771225214004517,2.362605571746826,-0.2418784499168396,1.7016936540603638,-0.5609011054039001,0.014545165002346039,-0.1506255567073822,-0.39632323384284973,1.0304805040359497,-1.3178493976593018,-0.7244834899902344,-1.1709455251693726,-0.6660281419754028,0.28683406114578247,-0.25886961817741394,-0.19917654991149902,0.032982051372528076,1.750638484954834,0.46597743034362793,-1.313024878501892,-0.9401980638504028,-1.7753897905349731,1.5906671285629272,0.1495099663734436,1.1141126155853271,-1.0671730041503906,-0.5877856016159058,-1.0085524320602417,-0.5834214091300964,0.09688610583543777,0.9610291719436646,-0.5500912666320801,-0.3907057046890259,0.3031679689884186,-0.9582837820053101,0.36462777853012085,-0.07388128340244293,1.043455719947815,1.4177271127700806,1.1734254360198975,2.0663392543792725,0.4128490686416626,1.2170014381408691,-0.289723664522171,-1.1341687440872192,0.9381807446479797,-0.7594667673110962,-0.25793805718421936,2.041501045227051,0.6114926338195801,-0.10195779800415039,-1.5220264196395874,-0.5650434494018555,0.4915347695350647,-1.0214473009109497,-0.8958845138549805,-0.9352959990501404,1.7117427587509155,-0.32042545080184937,0.4735769033432007,-1.317488431930542,0.7345085740089417,2.1447525024414062,-0.059674352407455444,-0.4025160074234009,0.057996176183223724,1.54005765914917,1.6702691316604614,-0.28340038657188416,1.161504864692688,0.7180674076080322,-0.9484454393386841,-0.778968334197998,-0.21952307224273682,-0.9267356991767883,-0.20186346769332886,1.3788917064666748,-1.7232844829559326,-1.9730749130249023,0.10403335094451904,-1.1173827648162842,-0.27730220556259155,-0.8316903710365295,2.5504634380340576,-2.3527088165283203,-1.3859262466430664,0.48652470111846924,2.1870615482330322,-0.29219740629196167,2.5526742935180664,0.003626585006713867,0.19842374324798584,-0.2770631015300751,-0.4627104699611664,0.4984779953956604,-0.8150671720504761,0.7218866348266602,1.9413844347000122,1.9049313068389893,0.9322549104690552,0.0378703847527504,-0.4022866189479828,-0.8074859976768494,-0.2954292297363281,0.26475176215171814,0.03449052572250366,-0.8495680093765259,-1.1135350465774536,2.761101245880127,0.3725784718990326,0.9181904792785645,1.5231295824050903,0.378947377204895,0.49015191197395325,1.1056791543960571,0.507529079914093,-0.1590852588415146,3.004824638366699,2.306448221206665,-0.31267249584198,1.5010349750518799,0.19967424869537354,-0.39605236053466797,0.3032008111476898,-0.5761483907699585,0.12637174129486084,1.354823112487793,0.28894180059432983,-1.3429735898971558,-1.3259093761444092,0.34711477160453796,-0.15563470125198364,0.37230899930000305,1.2083237171173096,2.106498956680298,-0.3579401671886444,0.30205732583999634,0.816756010055542,0.07496622204780579,-0.8985286951065063,0.12730491161346436,1.356811285018921,1.6984885931015015,0.09924069046974182,1.055063247680664,0.22031629085540771,-1.8003971576690674,0.252526193857193,-0.5957342982292175,0.4790474772453308,0.1390606164932251,-0.008794724941253662,0.2866370677947998,-0.15869437158107758,-2.0614898204803467 -2969,0.09610059857368469,-2.1031553745269775,-1.8728886842727661,-0.36757081747055054,-1.3428218364715576,-0.07567387074232101,0.040093112736940384,-0.34039655327796936,0.660439670085907,1.2696151733398438,-0.9619091749191284,-0.5257261991500854,0.9625559449195862,-0.03529120981693268,1.5469505786895752,0.06025947630405426,0.06833545118570328,-0.021998487412929535,0.1576550155878067,0.3717916011810303,1.3609592914581299,-0.8554255962371826,-1.4155082702636719,0.16934418678283691,-0.3862278461456299,-0.9408865571022034,0.18958766758441925,1.0090059041976929,0.12587153911590576,-0.4084450304508209,-0.5948372483253479,0.15900442004203796,0.4155612587928772,-0.6662469506263733,0.6185587644577026,0.20612186193466187,0.04061681032180786,0.12791791558265686,-0.9866588115692139,-0.44418802857398987,3.022296905517578,0.019125521183013916,-0.20843207836151123,-0.7786597013473511,0.5661941766738892,-1.3036460876464844,-0.2870488464832306,0.6169440746307373,0.7880441546440125,-2.797386884689331,-0.5507503747940063,1.2715996503829956,-0.37831389904022217,0.15750926733016968,0.09307056665420532,0.588591456413269,-0.20076555013656616,-1.7398079633712769,-0.06132364273071289,-1.9442529678344727,1.3231843709945679,-1.354712963104248,0.8348497152328491,-0.4959148168563843,-0.41736263036727905,0.671062171459198,1.051297664642334,0.6366296410560608,0.8149315714836121,-0.5842920541763306,0.5682767629623413,-0.6382195949554443,0.17130841314792633,-0.7552372217178345,-1.9550018310546875,-0.3448951542377472,0.49591049551963806,1.1322221755981445,-1.1103042364120483,-0.5228592753410339,-0.9975054860115051,-2.275710344314575,1.12569260597229,1.112013339996338,-0.00645679235458374,0.35146650671958923,-1.0738240480422974,0.3010384142398834,0.438915491104126,0.3206726908683777,1.1032627820968628,1.4646735191345215,0.9056358337402344,0.822379469871521,2.9568769931793213,-0.2418784499168396,1.7016936540603638,-0.5609011054039001,0.014545165002346039,-0.1506255567073822,-0.39632323384284973,0.017711520195007324,-1.3178493976593018,-0.7244834899902344,-0.1594177484512329,-0.6660281419754028,0.28683406114578247,-0.25886961817741394,-0.3221524655818939,0.032982051372528076,1.750638484954834,0.46597743034362793,-1.313024878501892,-0.6204102635383606,-1.6841883659362793,1.5906671285629272,0.1495099663734436,1.1141126155853271,-1.0671730041503906,-0.5877856016159058,-1.0085524320602417,-1.3170130252838135,0.2283351719379425,0.9610291719436646,-0.5500912666320801,-0.3907057046890259,0.3031679689884186,-0.9582837820053101,0.19968360662460327,-0.07388128340244293,1.043455719947815,1.4177271127700806,1.1734254360198975,2.0663392543792725,0.4128490686416626,1.2170014381408691,-0.289723664522171,-1.1341687440872192,0.9381807446479797,-0.7594667673110962,-0.25793805718421936,1.4648274183273315,1.6371098756790161,-0.000827394425868988,-1.5220264196395874,-0.5650434494018555,0.4915347695350647,-1.0214473009109497,-0.8958845138549805,-0.9352959990501404,1.7117427587509155,-0.32042545080184937,0.4735769033432007,-1.317488431930542,0.7345085740089417,1.658830165863037,-0.059674352407455444,-0.4025160074234009,0.057996176183223724,1.54005765914917,1.6702691316604614,0.11652502417564392,0.9742063283920288,1.3399813175201416,-0.9484454393386841,-0.778968334197998,-0.6253008246421814,-1.1722469329833984,-0.20186346769332886,1.3788917064666748,-0.7912002205848694,-1.9730749130249023,-0.31899821758270264,-1.1173827648162842,-0.27730220556259155,-0.8316903710365295,2.5504634380340576,-2.3527088165283203,-1.5682754516601562,0.48652470111846924,2.1870615482330322,-0.29219740629196167,2.6662166118621826,0.003626585006713867,0.9198191165924072,-0.8450033664703369,-0.4627104699611664,0.4984779953956604,-0.8150671720504761,-0.036669373512268066,1.648630976676941,1.9049313068389893,0.9322549104690552,-0.08404799550771713,-0.4022866189479828,-0.8074859976768494,-0.3883996307849884,-0.279146283864975,0.03449052572250366,-0.8495680093765259,-0.8599267601966858,2.761101245880127,-0.12597322463989258,0.9181904792785645,1.5231295824050903,0.378947377204895,0.49015191197395325,1.1056791543960571,0.507529079914093,-0.1590852588415146,3.004824638366699,2.301912307739258,-0.31267249584198,1.5010349750518799,-0.046495869755744934,-0.39605236053466797,0.7082931995391846,-0.5761483907699585,0.12637174129486084,1.354823112487793,0.06916624307632446,-1.3429735898971558,-1.3259093761444092,0.34711477160453796,-0.15563470125198364,0.37230899930000305,1.2083237171173096,2.1989564895629883,-0.5085623264312744,0.30205732583999634,0.816756010055542,0.07496622204780579,-0.6997908353805542,0.24116572737693787,1.356811285018921,1.1336979866027832,0.09924069046974182,0.9960904717445374,-0.4113282561302185,-1.8003971576690674,0.252526193857193,-0.5957342982292175,0.4790474772453308,0.2230265885591507,-0.008794724941253662,0.2866370677947998,-0.15869437158107758,-2.2344701290130615 -2970,-0.2737066447734833,-2.1031553745269775,-1.2989332675933838,-0.36757081747055054,-1.3428218364715576,-0.07567387074232101,0.040093112736940384,-0.34039655327796936,0.660439670085907,1.2696151733398438,-0.9619091749191284,-0.5257261991500854,0.9625559449195862,-0.03529120981693268,1.4182435274124146,0.06025947630405426,0.06833545118570328,-0.021998487412929535,0.1576550155878067,0.3717916011810303,1.1954554319381714,-0.7177279591560364,-1.7583125829696655,0.16934418678283691,-0.13791440427303314,-0.9408865571022034,0.18958766758441925,1.0090059041976929,0.12587153911590576,-0.4084450304508209,-0.5948372483253479,0.06461300700902939,0.6430487632751465,-0.051815927028656006,0.6185587644577026,0.20612186193466187,0.04061681032180786,0.12791791558265686,-0.9866588115692139,-0.44418802857398987,3.176687479019165,0.19966600835323334,-0.20843207836151123,-0.7235943675041199,0.7009105682373047,-1.1797962188720703,-0.2870488464832306,0.6169440746307373,0.7880441546440125,-2.023226499557495,-0.5507503747940063,1.2715996503829956,-0.6385233402252197,0.15750926733016968,0.09307056665420532,0.5518223643302917,-0.20076555013656616,-1.7974154949188232,-0.06132364273071289,-1.9442529678344727,1.158615231513977,-1.354712963104248,0.7228038907051086,-0.4959148168563843,-0.2668808698654175,0.671062171459198,1.1689424514770508,0.6366296410560608,0.8149315714836121,-0.5842920541763306,0.5682767629623413,-0.6382195949554443,0.17130841314792633,-0.9313843846321106,-1.9550018310546875,-0.3448951542377472,0.6000565886497498,0.7578423023223877,-1.1103042364120483,-0.5228592753410339,-0.9975054860115051,-2.4308550357818604,1.12569260597229,1.112013339996338,-0.07894451916217804,0.35146650671958923,-1.0738240480422974,0.3010384142398834,0.438915491104126,0.39798593521118164,1.1032627820968628,1.4646735191345215,0.9056358337402344,0.4783673882484436,2.3981802463531494,-0.2418784499168396,1.7016936540603638,-0.5609011054039001,0.04819491133093834,-0.1506255567073822,-0.39632323384284973,0.017711520195007324,-1.3178493976593018,-0.8306267261505127,-0.1594177484512329,-0.8201586604118347,0.8702264428138733,-0.25886961817741394,-0.3221524655818939,0.032982051372528076,1.711893081665039,0.46597743034362793,-1.2621147632598877,-0.6204102635383606,-1.6841883659362793,1.5906671285629272,0.1495099663734436,1.1141126155853271,-1.0671730041503906,-0.07305854558944702,-1.0085524320602417,-1.3170130252838135,0.2283351719379425,0.4586690664291382,-1.158052682876587,-0.9666457176208496,0.3031679689884186,-0.9582837820053101,0.19968360662460327,-0.07388128340244293,1.043455719947815,1.4177271127700806,1.1734254360198975,2.0663392543792725,0.4128490686416626,1.2170014381408691,-0.289723664522171,-1.2066243886947632,0.9381807446479797,-1.1029430627822876,-0.3195567727088928,1.4648274183273315,0.9178152680397034,-0.000827394425868988,-1.1623308658599854,-0.5650434494018555,0.4915347695350647,-1.0214473009109497,-0.8664440512657166,-0.9352959990501404,1.7117427587509155,-0.32042545080184937,0.4735769033432007,-1.317488431930542,0.7345085740089417,1.658830165863037,-0.059674352407455444,-0.4025160074234009,0.34016430377960205,2.014364242553711,1.9579339027404785,0.11652502417564392,0.9742063283920288,1.5896735191345215,-0.9484454393386841,-0.778968334197998,-0.23438811302185059,-1.159709095954895,-1.13364839553833,1.3788917064666748,-0.7912002205848694,-1.9730749130249023,-1.1801724433898926,-1.1173827648162842,-0.2208491712808609,-0.8316903710365295,2.2665061950683594,-1.7777378559112549,-1.5682754516601562,0.1233559250831604,1.816574215888977,-0.29219740629196167,2.6662166118621826,-0.9150704741477966,-0.12782883644104004,-0.8450033664703369,-0.4627104699611664,0.4662875235080719,-0.862697184085846,-0.036669373512268066,1.648630976676941,1.9049313068389893,0.8120629191398621,-0.08404799550771713,0.16005012392997742,-0.605232834815979,-0.3883996307849884,-0.279146283864975,0.03449052572250366,-0.8495680093765259,-0.8599267601966858,2.761101245880127,-0.12597322463989258,0.8666431307792664,1.5231295824050903,0.378947377204895,0.49015191197395325,0.8555178642272949,0.507529079914093,-0.1590852588415146,3.004824638366699,2.301912307739258,-0.18549060821533203,1.5010349750518799,-0.046495869755744934,-0.39605236053466797,0.7082931995391846,-0.5761483907699585,0.5232185125350952,1.354823112487793,0.06916624307632446,-1.3429735898971558,-1.3259093761444092,0.34711477160453796,-0.15563470125198364,0.684994637966156,1.2083237171173096,2.1989564895629883,-0.5085623264312744,0.36516717076301575,0.3638525605201721,-0.4998760521411896,-0.6997908353805542,0.24116572737693787,1.356811285018921,0.7298765182495117,0.09924069046974182,0.9960904717445374,-0.1468922197818756,-1.8003971576690674,0.252526193857193,-0.5957342982292175,0.5423859357833862,0.2230265885591507,-0.008794724941253662,0.545700192451477,-0.8474823832511902,-1.6511101722717285 -2971,-0.16935963928699493,-2.1031553745269775,-1.2989332675933838,-0.36757081747055054,-0.9856994152069092,-0.07567387074232101,0.040093112736940384,-0.27625033259391785,0.660439670085907,1.2123472690582275,-1.2046421766281128,-0.5257261991500854,0.9625559449195862,-0.03529120981693268,1.4182435274124146,0.06025947630405426,0.06833545118570328,0.1767100691795349,0.1576550155878067,-0.26581811904907227,1.5684088468551636,-0.7177279591560364,-1.7583125829696655,0.16934418678283691,-0.13791440427303314,-1.1060181856155396,0.18958766758441925,1.0090059041976929,0.12587153911590576,-0.5014042258262634,-1.3510584831237793,0.06461300700902939,0.365833580493927,-0.5076580047607422,0.035924673080444336,0.20612186193466187,0.04061681032180786,0.12791791558265686,-0.9866588115692139,-0.44418802857398987,3.176687479019165,0.19966600835323334,-0.06392426788806915,-0.7235943675041199,1.0195577144622803,-1.0658094882965088,-0.2870488464832306,0.39320507645606995,0.8344770073890686,-2.158156394958496,-0.5507503747940063,1.2715996503829956,-0.6385233402252197,0.15750926733016968,0.09307056665420532,0.7961695194244385,-0.20076555013656616,-1.7974154949188232,-0.14518067240715027,-1.9442529678344727,1.4945611953735352,-1.548580527305603,0.7228038907051086,-0.4959148168563843,-0.2668808698654175,0.671062171459198,1.0729761123657227,0.9270280599594116,0.4650571346282959,-0.5842920541763306,0.5682767629623413,-0.11092603206634521,0.17130841314792633,-0.9313843846321106,-2.0959763526916504,-0.3448951542377472,0.231754332780838,0.7127266526222229,-1.1103042364120483,-0.5228592753410339,-0.9975054860115051,-2.4308550357818604,0.7872685194015503,1.112013339996338,-0.07894451916217804,0.35146650671958923,-1.0738240480422974,0.3010384142398834,0.438915491104126,0.39798593521118164,1.1032627820968628,1.4646735191345215,0.9056358337402344,0.4783673882484436,2.3981802463531494,-0.2418784499168396,1.7016936540603638,-0.5609011054039001,0.6593143939971924,-1.1765904426574707,-0.39632323384284973,0.017711520195007324,-1.3178493976593018,-0.8306267261505127,-0.03254184126853943,-0.46069595217704773,0.42770329117774963,-0.25886961817741394,-0.3221524655818939,-0.7124546766281128,1.260251522064209,0.46597743034362793,-1.2621147632598877,-0.6204102635383606,-1.6841883659362793,1.7152551412582397,0.1495099663734436,1.1141126155853271,-1.0671730041503906,-0.07305854558944702,-0.7786715030670166,-1.3170130252838135,0.2283351719379425,0.7370481491088867,-1.158052682876587,-0.9666457176208496,0.3031679689884186,-0.9582837820053101,0.19968360662460327,-0.07388128340244293,1.043455719947815,0.9940089583396912,1.1734254360198975,2.3579602241516113,0.6827340126037598,0.6929965615272522,-0.289723664522171,-1.6738016605377197,0.9381807446479797,-1.1029430627822876,-0.3195567727088928,1.4648274183273315,0.9178152680397034,-0.000827394425868988,-1.1623308658599854,-0.6005988121032715,0.17647263407707214,-1.0214473009109497,-0.8664440512657166,-0.9352959990501404,1.7117427587509155,-0.32042545080184937,0.4735769033432007,-1.317488431930542,0.13090914487838745,1.658830165863037,-0.059674352407455444,-0.9577146172523499,-0.5704666972160339,2.014364242553711,1.9579339027404785,0.11652502417564392,0.4357999563217163,1.5896735191345215,-0.9484454393386841,-0.778968334197998,-0.23438811302185059,-1.159709095954895,-1.13364839553833,1.3788917064666748,-0.7912002205848694,-1.9730749130249023,-0.9501724243164062,-0.6814241409301758,-0.165348082780838,-0.8316903710365295,2.2665061950683594,-1.7777378559112549,-1.5682754516601562,0.1233559250831604,1.816574215888977,-0.29219740629196167,2.5483529567718506,-0.9557582139968872,-0.12782883644104004,-0.8450033664703369,-0.4627104699611664,0.4662875235080719,-0.862697184085846,-0.23950999975204468,1.3778568506240845,1.9049313068389893,0.8120629191398621,-0.08404799550771713,0.16005012392997742,-0.605232834815979,-0.19651781022548676,-0.279146283864975,0.03449052572250366,-1.020101547241211,-0.8599267601966858,2.761101245880127,-0.12597322463989258,0.8666431307792664,1.0403811931610107,0.378947377204895,0.7469472289085388,0.8555178642272949,0.507529079914093,-0.1590852588415146,2.6478776931762695,1.3719795942306519,-0.18549060821533203,0.814249575138092,-0.046495869755744934,-0.39605236053466797,0.18383431434631348,-0.5761483907699585,0.5232185125350952,1.354823112487793,-0.018828511238098145,-1.3429735898971558,-1.1762996912002563,0.34711477160453796,-0.15563470125198364,0.684994637966156,1.2083237171173096,1.5895174741744995,0.14520162343978882,0.36516717076301575,0.3638525605201721,-0.4998760521411896,-0.6997908353805542,0.9505473375320435,1.356811285018921,0.7298765182495117,0.09924069046974182,0.7002788782119751,-0.1468922197818756,-1.7643437385559082,0.252526193857193,-0.5957342982292175,0.12089094519615173,0.2230265885591507,-0.008794724941253662,0.545700192451477,-0.8474823832511902,-1.6511101722717285 -2972,-0.16935963928699493,-2.1031553745269775,-1.2989332675933838,-0.36757081747055054,-0.9856994152069092,-0.07567387074232101,0.08059998601675034,0.27113816142082214,0.660439670085907,1.2123472690582275,-1.2046421766281128,-0.5257261991500854,0.9625559449195862,-0.03529120981693268,1.4182435274124146,0.06025947630405426,0.06833545118570328,0.1767100691795349,0.1576550155878067,-0.26581811904907227,1.6941629648208618,-0.5176427364349365,-1.8228371143341064,0.432085245847702,-0.4859815835952759,-1.1060181856155396,0.2876313030719757,1.0090059041976929,0.12587153911590576,-0.5014042258262634,-1.2169016599655151,0.35251641273498535,0.365833580493927,-0.5874761343002319,0.035924673080444336,0.20612186193466187,0.04061681032180786,0.12791791558265686,-0.9866588115692139,-0.44418802857398987,2.9623160362243652,-0.0820557028055191,-0.06392426788806915,-0.7235943675041199,1.0195577144622803,-1.0658094882965088,-0.2870488464832306,0.39320507645606995,0.9911609888076782,-2.158156394958496,-0.5507503747940063,1.2715996503829956,-0.5509686470031738,0.15750926733016968,-0.58962482213974,1.4697355031967163,-0.20076555013656616,-1.7974154949188232,-0.14518067240715027,-1.9442529678344727,1.4945611953735352,-2.4619405269622803,0.7228038907051086,-0.4959148168563843,-0.2668808698654175,0.671062171459198,1.0729761123657227,0.9270280599594116,0.4650571346282959,-0.5842920541763306,0.5682767629623413,-0.11092603206634521,0.33042579889297485,-0.9313843846321106,-2.3828823566436768,-0.3448951542377472,0.20842984318733215,0.7127266526222229,-1.1103042364120483,-0.31287941336631775,-0.9975054860115051,-2.4308550357818604,1.3695766925811768,1.112013339996338,-0.07894451916217804,0.8298554420471191,-1.0738240480422974,0.3010384142398834,-0.14530479907989502,0.39798593521118164,1.1032627820968628,1.4646735191345215,0.9056358337402344,-0.4278010129928589,1.9503636360168457,-0.8312132358551025,0.688845157623291,-0.5609011054039001,0.7756063938140869,-1.417008876800537,-0.39632323384284973,-0.007833430543541908,-1.538824200630188,-0.8306267261505127,0.04853151738643646,-0.46069595217704773,0.8003705739974976,-0.25886961817741394,-0.3221524655818939,-0.6887768507003784,1.473067283630371,0.46597743034362793,-0.788263201713562,-0.6204102635383606,-1.6841883659362793,1.719398021697998,0.5048084259033203,1.0677213668823242,-1.0671730041503906,0.9392724633216858,-0.7786715030670166,-1.3170130252838135,0.2283351719379425,0.7370481491088867,-1.158052682876587,-0.9666457176208496,0.3031679689884186,-0.9582837820053101,0.19968360662460327,-0.13366246223449707,-0.4644826650619507,0.9940089583396912,1.1734254360198975,2.3579602241516113,0.6827340126037598,0.6929965615272522,-0.289723664522171,-1.6738016605377197,0.9381807446479797,-1.1029430627822876,-0.3195567727088928,1.4648274183273315,0.9178152680397034,-0.000827394425868988,-1.1623308658599854,-0.6005988121032715,0.17647263407707214,-1.0214473009109497,-0.8664440512657166,-0.9352959990501404,1.7117427587509155,-0.32042545080184937,0.4735769033432007,-1.317488431930542,0.21035584807395935,1.658830165863037,-0.059674352407455444,-1.1783400774002075,-0.5704666972160339,1.8745887279510498,1.9579339027404785,-0.05828846991062164,0.4357999563217163,1.5896735191345215,-0.9484454393386841,-0.778968334197998,-0.23438811302185059,-1.159709095954895,-1.13364839553833,0.572695791721344,-0.7912002205848694,-1.4066572189331055,-0.4318249821662903,-0.6814241409301758,-0.7889095544815063,-0.8316903710365295,2.1135940551757812,-1.7777378559112549,-1.5682754516601562,0.1233559250831604,1.816574215888977,-0.29219740629196167,2.5483529567718506,-0.9557582139968872,-0.3101896643638611,-0.8450033664703369,-0.4627104699611664,0.4662875235080719,-0.45691969990730286,-0.12956252694129944,1.5634126663208008,1.9049313068389893,0.8120629191398621,-0.08404799550771713,0.16005012392997742,-0.020506858825683594,-0.14297939836978912,-0.07709604501724243,-0.5281453728675842,-1.020101547241211,-0.9241515398025513,2.761101245880127,0.3011009693145752,0.8666431307792664,1.0403811931610107,0.378947377204895,0.6699341535568237,0.8555178642272949,0.4639171063899994,-0.1590852588415146,2.6478776931762695,1.3231858015060425,-0.18549060821533203,0.814249575138092,-0.046495869755744934,-0.39605236053466797,0.18383431434631348,-0.5761483907699585,-0.02619999647140503,1.354823112487793,-0.4197116196155548,-1.3429735898971558,-1.1762996912002563,0.34711477160453796,0.2399541735649109,0.684994637966156,1.2083237171173096,1.5007435083389282,0.14520162343978882,0.36516717076301575,0.6138134002685547,-0.4998760521411896,-0.6997908353805542,0.9505473375320435,1.356811285018921,0.7298765182495117,-0.12102814018726349,0.7002788782119751,-0.1468922197818756,-1.7643437385559082,0.252526193857193,-0.5957342982292175,0.12089094519615173,0.2230265885591507,-0.008794724941253662,0.545700192451477,-0.8474823832511902,-1.6511101722717285 -2973,-0.16935963928699493,-2.1031553745269775,-1.474372386932373,-0.36757081747055054,-0.9856994152069092,-0.07567387074232101,0.08059998601675034,-0.37683895230293274,0.660439670085907,1.2123472690582275,-1.2046421766281128,-0.5257261991500854,0.9625559449195862,-0.12038740515708923,1.4182435274124146,0.06025947630405426,0.06833545118570328,0.1767100691795349,0.1908068060874939,-0.26581811904907227,1.6941629648208618,-0.5176427364349365,-1.8228371143341064,-0.017520368099212646,-0.4859815835952759,-1.1060181856155396,0.2876313030719757,1.0090059041976929,-0.24697163701057434,-0.5014042258262634,-1.1584821939468384,0.4982958436012268,0.365833580493927,-0.6385487914085388,0.035924673080444336,0.20612186193466187,-0.08772711455821991,0.18012258410453796,-0.9866588115692139,-0.44418802857398987,2.9623160362243652,-0.0820557028055191,-0.06392426788806915,-0.7392931580543518,1.0780507326126099,-0.7858895063400269,-0.2870488464832306,0.39320507645606995,0.7320378422737122,-2.158156394958496,-0.5507503747940063,1.2715996503829956,-0.5509686470031738,0.15750926733016968,-0.58962482213974,1.4697355031967163,-0.20076555013656616,-1.3019590377807617,-0.14518067240715027,-1.9442529678344727,1.4945611953735352,-2.4619405269622803,0.49216562509536743,-0.4959148168563843,-0.2668808698654175,0.2100261151790619,1.0729761123657227,0.9270280599594116,0.49967432022094727,-0.5842920541763306,0.5588631629943848,0.5685232281684875,0.2831234931945801,-0.9313843846321106,-2.3828823566436768,-0.3448951542377472,0.1748741865158081,0.7127266526222229,-1.1103042364120483,-0.31287941336631775,-0.911959707736969,-2.4308550357818604,0.9437119364738464,1.112013339996338,-0.07894451916217804,0.7838473916053772,-1.0738240480422974,0.09289471805095673,-0.14530479907989502,0.39798593521118164,1.1032627820968628,1.4646735191345215,0.9056358337402344,-0.4278010129928589,1.9503636360168457,-0.4582712948322296,0.688845157623291,-0.5609011054039001,0.903449535369873,-1.0122371912002563,-0.39632323384284973,-0.007833430543541908,-1.538824200630188,-1.3536691665649414,0.04853151738643646,-0.46069595217704773,-0.2177659273147583,-0.4986749589443207,-0.6377764940261841,0.5329878330230713,1.473067283630371,0.11439800262451172,-1.784651279449463,-0.15400147438049316,-0.5335439443588257,1.719398021697998,0.5048084259033203,1.0677213668823242,-1.0671730041503906,0.9392724633216858,-1.5452598333358765,-1.3170130252838135,0.2283351719379425,0.43850910663604736,-1.158052682876587,-0.9534569382667542,-0.139581561088562,-0.9582837820053101,0.19968360662460327,-0.13366246223449707,-0.4644826650619507,1.3232519626617432,1.1734254360198975,2.6118714809417725,0.6827340126037598,0.6929965615272522,-0.289723664522171,-0.5844089984893799,-0.3761809468269348,-1.1029430627822876,-0.3195567727088928,1.4648274183273315,0.726276695728302,-0.000827394425868988,-1.1623308658599854,-0.6005988121032715,0.4677698314189911,-0.9692539572715759,-0.6015000343322754,-0.9352959990501404,1.7117427587509155,-0.036608606576919556,0.4735769033432007,-1.0903778076171875,0.27305853366851807,1.658830165863037,-0.059674352407455444,-1.1783400774002075,-0.5704666972160339,0.8047754764556885,2.0158376693725586,0.241884246468544,0.4357999563217163,1.5896735191345215,-0.9484454393386841,-0.178741455078125,-0.4852704703807831,-1.5262067317962646,-1.13364839553833,0.572695791721344,-0.7912002205848694,-1.4066572189331055,-0.4318249821662903,-0.6814241409301758,-0.7889095544815063,-0.8316903710365295,2.3723232746124268,-1.7777378559112549,-2.14428448677063,-0.3885917663574219,1.816574215888977,-0.9982887506484985,2.5483529567718506,-0.9557582139968872,-0.3101896643638611,-1.385199785232544,-0.4627104699611664,0.4662875235080719,-0.45691969990730286,0.05625687539577484,2.11645770072937,1.8814350366592407,1.3740060329437256,-0.06289967149496078,0.16005012392997742,-0.83136385679245,0.37735670804977417,0.0360681489109993,-0.5281453728675842,-1.020101547241211,-0.9241515398025513,2.761101245880127,0.16459205746650696,0.8666431307792664,1.0403811931610107,0.378947377204895,0.6470573544502258,0.2604716420173645,0.4639171063899994,0.0304001122713089,2.834916353225708,1.3231858015060425,0.03277088701725006,0.814249575138092,-0.046495869755744934,0.13922899961471558,0.18383431434631348,-1.2139294147491455,-0.3709304928779602,1.8606655597686768,-0.4197116196155548,-1.3429735898971558,-1.1762996912002563,0.34711477160453796,-0.46762388944625854,0.684994637966156,1.2083237171173096,1.5007435083389282,0.14520162343978882,1.295896053314209,0.6138134002685547,-0.4998760521411896,-0.9474620819091797,0.9505473375320435,1.356811285018921,0.6922839879989624,-0.12102814018726349,0.7002788782119751,-0.4531084895133972,-1.7643437385559082,0.252526193857193,0.19032710790634155,0.12089094519615173,0.2230265885591507,-0.008794724941253662,0.22048690915107727,-0.8474823832511902,-1.6511101722717285 -2974,-0.16935963928699493,-2.1031553745269775,-1.474372386932373,-0.34065425395965576,-0.9856994152069092,-0.10937155783176422,0.08059998601675034,-0.37683895230293274,0.660439670085907,1.2123472690582275,-0.7834477424621582,-0.5257261991500854,0.9320746660232544,0.2761204242706299,1.4182435274124146,0.024647027254104614,0.06833545118570328,0.1767100691795349,0.1908068060874939,-0.3062717318534851,1.6941629648208618,-0.5176427364349365,-1.8228371143341064,-0.138477623462677,-0.5499592423439026,-1.5627331733703613,0.2876313030719757,0.5284255743026733,-0.36358609795570374,-0.5014042258262634,-1.1584821939468384,0.4982958436012268,0.4647648334503174,-0.6385487914085388,0.035924673080444336,0.20612186193466187,-0.08772711455821991,0.41224604845046997,-0.24402189254760742,-0.44418802857398987,2.9812111854553223,-0.0820557028055191,-0.06392426788806915,-0.5132375955581665,1.3115308284759521,-0.7858895063400269,-0.2870488464832306,0.39320507645606995,0.7320378422737122,-2.158156394958496,-0.5507503747940063,1.2715996503829956,-0.5509686470031738,0.15750926733016968,-0.58962482213974,1.4697355031967163,-0.20076555013656616,-1.3019590377807617,0.14979511499404907,-1.9442529678344727,1.4945611953735352,-2.4619405269622803,0.49216562509536743,-0.4959148168563843,-0.8779847025871277,0.7323068380355835,1.0729761123657227,0.9270280599594116,0.6787290573120117,-0.5842920541763306,0.5588631629943848,0.5685232281684875,0.2831234931945801,-0.9313843846321106,-2.3828823566436768,-0.3448951542377472,0.45095616579055786,0.8744401931762695,-1.1103042364120483,-0.3744643032550812,-0.911959707736969,-2.4308550357818604,0.9437119364738464,1.112013339996338,-0.07894451916217804,0.6202560663223267,-1.3473243713378906,0.09289471805095673,-0.14530479907989502,0.39798593521118164,0.9968047738075256,1.6076637506484985,0.9056358337402344,-0.4278010129928589,2.4049839973449707,-0.4582712948322296,0.688845157623291,-0.361994206905365,0.903449535369873,-1.0122371912002563,-0.39632323384284973,0.9214057326316833,-1.2153996229171753,-1.3672890663146973,0.04853151738643646,-0.46069595217704773,-0.1803036630153656,-0.4986749589443207,-0.6377764940261841,0.594132661819458,1.3926750421524048,0.11439800262451172,-1.784651279449463,0.4145958423614502,-0.5335439443588257,1.719398021697998,0.5048084259033203,1.0677213668823242,-1.0671730041503906,0.9392724633216858,-1.5452598333358765,-0.34475547075271606,0.2283351719379425,0.43850910663604736,-1.158052682876587,-0.9534569382667542,-0.139581561088562,-0.9582837820053101,-0.47167325019836426,-0.2693102955818176,-0.8088537454605103,0.9902961254119873,1.1734254360198975,2.6118714809417725,0.8811298608779907,0.6929965615272522,-0.289723664522171,-0.5844089984893799,-0.5569785237312317,-1.1029430627822876,0.4085942506790161,1.7856614589691162,0.726276695728302,-0.000827394425868988,-1.1623308658599854,-0.6005988121032715,0.4677698314189911,-0.21808308362960815,-0.2235160768032074,-0.9352959990501404,1.7117427587509155,-0.036608606576919556,0.4735769033432007,-1.4959542751312256,0.24145609140396118,2.023679256439209,-0.059674352407455444,-1.2619435787200928,-0.5704666972160339,1.1139748096466064,2.0158376693725586,0.46873170137405396,0.4357999563217163,1.5896735191345215,-0.9484454393386841,0.10762867331504822,-0.4852704703807831,-1.5262067317962646,-1.13364839553833,0.572695791721344,-0.7912002205848694,-1.4066572189331055,-0.1068236231803894,0.3346601724624634,-0.5951974987983704,-0.8316903710365295,1.762567400932312,-1.7777378559112549,-2.14428448677063,-0.5376989245414734,1.8972822427749634,-0.9982887506484985,2.5483529567718506,-0.9557582139968872,-0.3101896643638611,-1.385199785232544,-0.4627104699611664,0.4662875235080719,-0.45691969990730286,0.6110414266586304,2.11645770072937,2.1188111305236816,1.3740060329437256,-0.06289967149496078,0.16005012392997742,-0.05814766883850098,0.37735670804977417,0.0360681489109993,-0.5281453728675842,-1.020101547241211,-0.9241515398025513,2.801520824432373,0.16459205746650696,0.8666431307792664,1.0403811931610107,0.378947377204895,0.6162468194961548,0.2604716420173645,0.4639171063899994,0.0304001122713089,2.694478750228882,1.3231858015060425,0.42161524295806885,0.00012731552124023438,-0.046495869755744934,0.13922899961471558,0.18383431434631348,-1.2139294147491455,-0.3709304928779602,1.8606655597686768,-0.17266061902046204,-1.3429735898971558,-0.9472830891609192,0.34711477160453796,-0.46762388944625854,0.8917097449302673,0.7827592492103577,1.333884358406067,-0.09233301877975464,1.295896053314209,0.6138134002685547,-0.4998760521411896,-0.800209105014801,0.9505473375320435,1.356811285018921,0.6922839879989624,-0.12102814018726349,0.7002788782119751,-0.6731485724449158,-1.2706133127212524,0.252526193857193,0.23210355639457703,0.12089094519615173,0.2230265885591507,-0.008794724941253662,0.44404488801956177,-0.8474823832511902,-1.6511101722717285 -2975,-0.16935963928699493,-2.1031553745269775,-1.474372386932373,-0.34065425395965576,-0.9856994152069092,-0.10937155783176422,0.08059998601675034,-0.6721340417861938,0.660439670085907,1.2123472690582275,-0.7834477424621582,-0.47637850046157837,0.9320746660232544,0.2761204242706299,1.4182435274124146,-0.007057160139083862,-0.6319018602371216,0.1767100691795349,0.1908068060874939,-0.3062717318534851,1.6941629648208618,-0.6317312717437744,-1.8228371143341064,0.39055925607681274,-0.5499592423439026,-1.5627331733703613,0.2876313030719757,0.753116250038147,-0.36358609795570374,-0.5014042258262634,-1.3502229452133179,0.4982958436012268,0.8945192098617554,-0.6385487914085388,0.035924673080444336,-0.05444878339767456,-0.08772711455821991,0.30967825651168823,-0.24402189254760742,-0.44418802857398987,2.7699220180511475,-0.0820557028055191,-0.06392426788806915,-0.524346649646759,1.3115308284759521,-0.7858895063400269,-0.2870488464832306,0.39320507645606995,0.7320378422737122,-2.158156394958496,-0.5507503747940063,1.2715996503829956,-0.7545495629310608,0.15750926733016968,-0.58962482213974,1.4697355031967163,-0.20076555013656616,-1.3019590377807617,-0.06847317516803741,-1.9442529678344727,1.4945611953735352,-2.4619405269622803,0.49216562509536743,-0.4959148168563843,-0.8779847025871277,0.7323068380355835,1.3249714374542236,0.9397670030593872,0.3146865963935852,-0.5842920541763306,0.4884529709815979,0.5685232281684875,0.09623289108276367,-0.8747784495353699,-2.3968217372894287,-0.842556357383728,0.6020871996879578,0.8366098403930664,-1.1103042364120483,-0.3744643032550812,-0.911959707736969,-2.4308550357818604,0.9437119364738464,1.112013339996338,-0.07894451916217804,0.6202560663223267,-1.3473243713378906,-0.2748786211013794,-0.14530479907989502,-0.20835810899734497,0.9968047738075256,1.6076637506484985,0.7573912739753723,-0.6493523716926575,2.4049839973449707,-0.4582712948322296,0.688845157623291,-0.361994206905365,0.3388058543205261,-1.0122371912002563,-0.15963202714920044,0.5646712779998779,-1.2153996229171753,-1.3672890663146973,-0.1498212069272995,-0.46069595217704773,-0.1803036630153656,-0.4986749589443207,-0.6377764940261841,0.5598585605621338,1.3926750421524048,0.11439800262451172,-2.0187501907348633,0.4145958423614502,-0.5335439443588257,1.719398021697998,0.5048084259033203,1.0677213668823242,-1.0671730041503906,0.9392724633216858,-1.5452598333358765,-0.8337966203689575,-0.38202646374702454,0.43850910663604736,-1.158052682876587,-0.9534569382667542,-0.139581561088562,-0.9582837820053101,-0.3805503249168396,-0.2693102955818176,-0.5492857694625854,1.5362701416015625,1.2004894018173218,2.6118714809417725,0.8811298608779907,1.812584400177002,-0.10022006928920746,-0.5844089984893799,-0.5569785237312317,-1.2455447912216187,0.35206273198127747,1.7856614589691162,1.0091643333435059,-0.000827394425868988,-1.1623308658599854,-0.4090205729007721,0.4818531572818756,-0.33376002311706543,-0.46428751945495605,-0.9352959990501404,1.7117427587509155,-0.036608606576919556,0.4735769033432007,-1.4959542751312256,0.5124211311340332,2.023679256439209,0.004320420324802399,-0.13366222381591797,-0.5704666972160339,0.9613712430000305,2.3212058544158936,0.46873170137405396,0.4357999563217163,1.5896735191345215,-0.9484454393386841,0.10762867331504822,-0.23387405276298523,-1.5262067317962646,-1.13364839553833,0.6702636480331421,-0.7912002205848694,-1.4066572189331055,-0.1068236231803894,0.9020112752914429,-0.932732343673706,-0.8316903710365295,1.762567400932312,-1.7777378559112549,-1.0351674556732178,-0.5376989245414734,1.8972822427749634,-0.9982887506484985,2.601839780807495,-0.9557582139968872,-0.3101896643638611,-0.42037856578826904,-0.4627104699611664,0.683577299118042,-0.45691969990730286,0.6110414266586304,2.11645770072937,1.7524513006210327,1.0067901611328125,0.21143174171447754,0.16005012392997742,-0.05814766883850098,0.482498437166214,-0.007881786674261093,0.1545376181602478,-1.020101547241211,-0.9241515398025513,2.801520824432373,0.16459205746650696,0.8950056433677673,1.0403811931610107,0.378947377204895,0.6162468194961548,1.4002985954284668,-0.21721646189689636,0.0304001122713089,2.694478750228882,1.3231858015060425,0.42161524295806885,1.0300486087799072,-0.046495869755744934,0.13922899961471558,0.18383431434631348,-0.9337724447250366,-0.3709304928779602,1.8606655597686768,-0.17266061902046204,-0.5513253808021545,-0.9472830891609192,0.34711477160453796,-0.46762388944625854,0.8917097449302673,0.7064146995544434,1.333884358406067,-0.09233301877975464,1.295896053314209,0.6138134002685547,-0.4281923174858093,-0.800209105014801,0.9505473375320435,1.356811285018921,0.33821240067481995,0.07860052585601807,0.14230096340179443,-0.6731485724449158,-1.2706133127212524,0.252526193857193,0.23210355639457703,0.12089094519615173,0.2230265885591507,-0.008794724941253662,0.44404488801956177,-0.8474823832511902,-1.2997630834579468 -2976,-0.16935963928699493,-2.1031553745269775,-0.7878109216690063,-0.34065425395965576,-0.9856994152069092,-0.10937155783176422,0.02815912663936615,-0.6721340417861938,0.660439670085907,1.10892915725708,-0.7834477424621582,-0.825867772102356,0.9320746660232544,0.2761204242706299,1.4182435274124146,-0.007057160139083862,0.055439770221710205,0.1767100691795349,0.1908068060874939,-0.3062717318534851,1.3956358432769775,-0.44874054193496704,-1.8228371143341064,0.39055925607681274,-0.5499592423439026,-1.5627331733703613,0.2511095404624939,0.753116250038147,-0.36358609795570374,-0.5014042258262634,-1.3502229452133179,0.4982958436012268,0.8945192098617554,-0.6385487914085388,0.035924673080444336,-0.05444878339767456,-0.08772711455821991,0.30967825651168823,-0.24402189254760742,-0.44418802857398987,2.7699220180511475,-0.47692644596099854,-0.06392426788806915,-0.731147050857544,1.5522863864898682,-1.1587237119674683,-0.2870488464832306,0.8014187812805176,0.7320378422737122,-2.158156394958496,-0.5507503747940063,1.2715996503829956,-0.7545495629310608,0.28165504336357117,-0.2985028326511383,1.4473278522491455,-0.20076555013656616,-1.3019590377807617,-0.06847317516803741,-1.9442529678344727,1.4945611953735352,-2.4619405269622803,0.49216562509536743,0.21222662925720215,-1.150784969329834,0.7323068380355835,1.3249714374542236,0.9397670030593872,0.3146865963935852,-0.4201638102531433,0.09303277730941772,0.5685232281684875,0.09623289108276367,-0.8747784495353699,-2.3968217372894287,-0.3861621618270874,0.6020871996879578,0.8366098403930664,-1.1103042364120483,-0.3744643032550812,-0.911959707736969,-1.6303086280822754,0.9437119364738464,1.112013339996338,-0.2869938313961029,0.6202560663223267,-0.20940446853637695,-0.4035806655883789,1.2008614540100098,-0.20835810899734497,0.9968047738075256,1.6076637506484985,0.49467843770980835,-0.6493523716926575,2.4049839973449707,-0.4582712948322296,0.688845157623291,-0.361994206905365,0.13618607819080353,-0.671890377998352,-0.15963202714920044,0.5646712779998779,-1.2153996229171753,-1.3672890663146973,-0.1498212069272995,-0.46069595217704773,-0.1803036630153656,-0.4986749589443207,-0.6377764940261841,-0.23407906293869019,1.3926750421524048,0.6807864904403687,-2.0187501907348633,0.4145958423614502,0.17140048742294312,1.719398021697998,0.43891453742980957,1.0677213668823242,-1.0671730041503906,0.9392724633216858,-1.5452598333358765,-0.8337966203689575,-0.38202646374702454,0.43850910663604736,-1.5518155097961426,-0.9534569382667542,-0.139581561088562,-0.6856575608253479,-0.3805503249168396,-0.2693102955818176,0.1663728952407837,1.5362701416015625,1.2004894018173218,2.6118714809417725,0.8811298608779907,1.3116239309310913,-0.2673225402832031,-0.5844089984893799,-0.5569785237312317,-0.7343783974647522,0.35206273198127747,1.7856614589691162,1.870985984802246,-0.000827394425868988,-0.7057159543037415,0.547499418258667,-0.1695268452167511,-0.33376002311706543,-0.5385437607765198,-0.9352959990501404,1.7117427587509155,-0.036608606576919556,0.4735769033432007,-1.4959542751312256,1.3859176635742188,1.9528422355651855,0.21752336621284485,-0.13366222381591797,0.18990468978881836,0.9613712430000305,1.6949939727783203,0.46873170137405396,0.4357999563217163,1.5896735191345215,-0.5281271934509277,0.5936518311500549,-0.49289947748184204,-1.5262067317962646,-1.13364839553833,0.6702636480331421,-1.260210633277893,-1.4066572189331055,-0.1068236231803894,0.9020112752914429,-0.932732343673706,-1.3064682483673096,2.5962986946105957,-1.7777378559112549,-1.33815336227417,-0.5376989245414734,1.8972822427749634,-0.9982887506484985,2.601839780807495,-0.6308921575546265,-0.3101896643638611,-0.42037856578826904,-0.4627104699611664,-0.007768094539642334,-0.45691969990730286,0.8286565542221069,2.11645770072937,1.7524513006210327,1.0067901611328125,0.21143174171447754,0.16005012392997742,-0.4748954176902771,0.0906098484992981,-0.007881786674261093,-0.6237700581550598,-1.020101547241211,-0.9241515398025513,2.801520824432373,0.39691734313964844,0.6479116082191467,1.0403811931610107,0.378947377204895,0.37433403730392456,1.2042617797851562,-0.21721646189689636,0.03478698432445526,2.694478750228882,1.1656962633132935,0.42161524295806885,0.3089216351509094,-0.046495869755744934,-0.14425432682037354,0.18383431434631348,-0.9337724447250366,-0.4915001392364502,1.8606655597686768,-0.17266061902046204,-0.5513253808021545,-0.9472830891609192,0.34711477160453796,-0.46762388944625854,0.16456234455108643,1.0635013580322266,1.465181827545166,-0.09233301877975464,1.295896053314209,1.1163644790649414,0.1561199426651001,0.6052109599113464,0.4089864492416382,1.356811285018921,0.33821240067481995,0.07860052585601807,0.7560100555419922,-0.6731485724449158,-1.2706133127212524,0.252526193857193,0.23210355639457703,-0.29923608899116516,0.2230265885591507,-0.008794724941253662,-0.04395437240600586,-0.9106575846672058,-1.2997630834579468 -2977,-0.16935963928699493,-2.1031553745269775,-0.7878109216690063,-0.34065425395965576,-0.9856994152069092,-0.10937155783176422,0.02815912663936615,-0.6721340417861938,0.660439670085907,1.10892915725708,-0.7834477424621582,-1.2375035285949707,0.9320746660232544,0.09624141454696655,1.4182435274124146,-0.007057160139083862,-0.03183514624834061,0.1767100691795349,0.1908068060874939,-0.3062717318534851,1.6495840549468994,-0.44874054193496704,-1.8228371143341064,0.39055925607681274,-0.5499592423439026,-1.1414920091629028,0.2511095404624939,0.753116250038147,-0.36358609795570374,-0.5014042258262634,-0.925346851348877,0.4982958436012268,0.8945192098617554,-0.2833332121372223,-0.3685623109340668,-0.05444878339767456,-0.21479478478431702,0.1181522011756897,-0.24402189254760742,-0.44418802857398987,2.7699220180511475,-0.47692644596099854,-0.06392426788806915,-0.731147050857544,1.545797348022461,-1.1587237119674683,-0.2870488464832306,0.8014187812805176,0.528009295463562,-2.158156394958496,-0.5507503747940063,1.2715996503829956,-0.7545495629310608,0.28165504336357117,-0.023271560668945312,1.4473278522491455,0.05644834041595459,-1.3019590377807617,-0.2434137612581253,-1.9442529678344727,1.4945611953735352,-2.4619405269622803,0.49216562509536743,-0.34203463792800903,-1.150784969329834,0.7323068380355835,1.3249714374542236,0.9397670030593872,0.3146865963935852,-0.4201638102531433,0.09303277730941772,0.5685232281684875,0.09623289108276367,-0.8747784495353699,-2.3968217372894287,-0.3861621618270874,0.35892897844314575,0.8366098403930664,-1.1103042364120483,-0.5177757740020752,-0.9982044100761414,-1.6303086280822754,1.1660650968551636,0.9437357783317566,-0.2869938313961029,0.6202560663223267,-0.20940446853637695,-0.46179234981536865,1.2008614540100098,-0.20835810899734497,0.9968047738075256,1.6076637506484985,1.0712872743606567,-0.6493523716926575,2.107727289199829,-0.4582712948322296,0.688845157623291,-0.361994206905365,-0.04475212097167969,0.2770051956176758,0.030346646904945374,0.5646712779998779,-1.0984807014465332,-1.3672890663146973,-0.1498212069272995,-0.46069595217704773,-0.1803036630153656,-0.4986749589443207,-0.2642681300640106,-0.23407906293869019,1.3926750421524048,0.6807864904403687,-2.0187501907348633,-0.14158302545547485,0.17140048742294312,1.719398021697998,0.43891453742980957,1.0677213668823242,-1.0671730041503906,1.0050033330917358,-1.5452598333358765,-0.8337966203689575,-0.38202646374702454,0.43850910663604736,-1.5518155097961426,-0.9534569382667542,-0.139581561088562,-0.3822243809700012,-0.3805503249168396,-0.2693102955818176,1.3338857889175415,1.5362701416015625,1.2004894018173218,2.245410919189453,0.8811298608779907,1.3116239309310913,-0.2673225402832031,-0.5844089984893799,-0.5569785237312317,-0.7343783974647522,0.35206273198127747,1.7856614589691162,1.870985984802246,-0.8631430864334106,-0.7057159543037415,0.547499418258667,-0.1695268452167511,-0.33376002311706543,-0.5385437607765198,-0.8658626079559326,1.1040873527526855,-0.34090426564216614,0.8956877589225769,-1.4959542751312256,1.000715970993042,1.9528422355651855,0.21752336621284485,-0.7595599889755249,-0.03944389522075653,0.9613712430000305,1.6381157636642456,0.46873170137405396,0.4357999563217163,1.5896735191345215,-0.5281271934509277,0.5936518311500549,-0.49289947748184204,-1.5262067317962646,-1.13364839553833,0.6702636480331421,-1.260210633277893,-1.4066572189331055,-0.5519096851348877,0.7434313893318176,-0.932732343673706,-1.3064682483673096,2.153414487838745,-1.7777378559112549,-1.33815336227417,-0.1121070384979248,1.8972822427749634,-0.9982887506484985,2.7045655250549316,-0.6308921575546265,-0.3101896643638611,-0.42037856578826904,-0.23831818997859955,-0.007768094539642334,-0.30925214290618896,0.8286565542221069,1.649206519126892,1.7524513006210327,1.2807648181915283,0.21143174171447754,0.16005012392997742,-0.4748954176902771,0.0906098484992981,-0.007881786674261093,-0.6237700581550598,-1.020101547241211,-0.9241515398025513,2.801520824432373,0.39691734313964844,0.44345468282699585,1.0403811931610107,0.378947377204895,0.5729916095733643,1.2042617797851562,-0.21721646189689636,0.11927326023578644,2.694478750228882,1.1656962633132935,0.42161524295806885,0.1636493057012558,-0.43293946981430054,-0.14425432682037354,0.18383431434631348,-0.9337724447250366,-0.4915001392364502,1.2099783420562744,-0.17266061902046204,-0.5513253808021545,-0.9472830891609192,0.34711477160453796,0.43129950761795044,0.16456234455108643,1.0635013580322266,1.465181827545166,0.07498358190059662,1.3617359399795532,1.4976441860198975,0.509514570236206,0.6052109599113464,0.4089864492416382,1.356811285018921,0.33821240067481995,0.2857007086277008,0.7560100555419922,-0.6731485724449158,-1.2706133127212524,0.252526193857193,0.23210355639457703,-0.29923608899116516,0.2230265885591507,-0.008794724941253662,-0.04395437240600586,-0.11477130651473999,-1.2997630834579468 -2978,-0.16935963928699493,-2.1031553745269775,-0.7878109216690063,-0.34065425395965576,-0.9856994152069092,-0.10937155783176422,-0.26008379459381104,-0.6721340417861938,0.660439670085907,1.10892915725708,-0.7834477424621582,-1.2375035285949707,0.9320746660232544,0.5586979389190674,1.4182435274124146,-0.007057160139083862,-0.03183514624834061,0.16773878037929535,-0.18055784702301025,-0.3062717318534851,1.6495840549468994,-0.25275927782058716,-1.4530010223388672,0.39055925607681274,-0.5499592423439026,-1.1414920091629028,0.2511095404624939,0.753116250038147,-0.36358609795570374,-0.5014042258262634,-0.925346851348877,-0.006937146186828613,0.8945192098617554,-0.2833332121372223,-0.03920227289199829,-0.05444878339767456,-0.21479478478431702,0.1181522011756897,-0.7580251097679138,-0.44418802857398987,2.7699220180511475,-0.07160425186157227,0.14073434472084045,-0.731147050857544,1.6457010507583618,-1.1587237119674683,0.8519867658615112,0.7069724798202515,0.6327049732208252,-2.158156394958496,-0.24867036938667297,0.6325443387031555,-0.7545495629310608,0.28165504336357117,-0.023271560668945312,0.9766808748245239,0.2960081100463867,-1.9066529273986816,-0.2434137612581253,-1.9442529678344727,1.4945611953735352,-2.5046463012695312,0.49216562509536743,-0.34203463792800903,-1.150784969329834,0.7323068380355835,1.3249714374542236,0.9397670030593872,0.3146865963935852,-0.4572731852531433,0.09303277730941772,0.5685232281684875,0.141458660364151,-0.8747784495353699,-2.139512062072754,-0.3861621618270874,0.35892897844314575,0.8366098403930664,-1.1103042364120483,-0.5177757740020752,-0.9982044100761414,-1.6303086280822754,1.1660650968551636,0.9437357783317566,0.04217532277107239,0.9981972575187683,0.8556617498397827,-0.46179234981536865,1.2008614540100098,-0.20835810899734497,0.9968047738075256,1.6076637506484985,1.0712872743606567,-0.6493523716926575,2.107727289199829,-0.3022196292877197,0.688845157623291,-0.361994206905365,-0.04475212097167969,0.2770051956176758,-0.11270797252655029,0.5646712779998779,-1.0984807014465332,-1.3672890663146973,-0.1498212069272995,-0.46069595217704773,-0.1803036630153656,-0.4986749589443207,-0.2642681300640106,-0.7409572601318359,1.3926750421524048,0.6807864904403687,-2.0187501907348633,-0.14158302545547485,0.17140048742294312,1.719398021697998,0.43891453742980957,1.0677213668823242,-1.0671730041503906,1.0050033330917358,-1.8686954975128174,-0.8337966203689575,-0.38202646374702454,0.43850910663604736,-1.5518155097961426,-0.9534569382667542,-0.139581561088562,-0.3822243809700012,0.4208912253379822,-0.2693102955818176,0.529807984828949,0.8629726767539978,1.2004894018173218,2.245410919189453,0.8811298608779907,1.3116239309310913,-0.2673225402832031,-0.5844089984893799,-0.5569785237312317,-0.7343783974647522,0.35206273198127747,1.7856614589691162,1.4154609441757202,-0.8631430864334106,-0.7057159543037415,0.547499418258667,-0.1695268452167511,-0.33376002311706543,0.13217920064926147,-0.631683349609375,1.1040873527526855,-1.2255581617355347,0.8956877589225769,-1.4959542751312256,0.871363639831543,1.9528422355651855,0.4384000599384308,0.613929033279419,-0.03944389522075653,1.3645130395889282,1.6381157636642456,0.46873170137405396,0.4357999563217163,1.5896735191345215,-0.5281271934509277,-0.4030076265335083,0.17088007926940918,-1.100714921951294,-1.13364839553833,0.6702636480331421,-1.260210633277893,-1.4066572189331055,-0.5519096851348877,0.7434313893318176,-0.932732343673706,-1.2442578077316284,2.153414487838745,-1.7777378559112549,-1.33815336227417,-0.1121070384979248,1.8972822427749634,-0.9982887506484985,2.7045655250549316,-0.6308921575546265,-0.3101896643638611,-0.42037856578826904,-0.23831818997859955,-0.007768094539642334,-0.27147406339645386,0.8286565542221069,1.649206519126892,1.7524513006210327,1.2807648181915283,0.21143174171447754,0.16005012392997742,-0.4748954176902771,0.0906098484992981,-0.007881786674261093,-0.4206961393356323,-1.020101547241211,-1.0805059671401978,2.801520824432373,0.39691734313964844,0.44345468282699585,1.141703724861145,0.378947377204895,0.5729916095733643,1.0089036226272583,-0.21721646189689636,0.11927326023578644,2.5376596450805664,1.2404265403747559,0.24443994462490082,-0.17826421558856964,-0.5407621264457703,-0.14425432682037354,0.5182371139526367,-0.49125435948371887,-0.587988018989563,1.2099783420562744,-0.26121246814727783,-0.12046709656715393,-0.9472830891609192,0.34711477160453796,0.43129950761795044,0.3128421902656555,1.0635013580322266,1.465181827545166,-0.17289872467517853,1.3283641338348389,1.4976441860198975,0.509514570236206,0.6052109599113464,0.40754789113998413,1.356811285018921,0.33821240067481995,0.2857007086277008,0.7560100555419922,-0.6731485724449158,-1.2706133127212524,0.252526193857193,-0.8855946063995361,0.05541372299194336,0.2230265885591507,-0.06073061004281044,-0.04395437240600586,-0.11477130651473999,-1.5546660423278809 -2979,-0.16935963928699493,-2.1031553745269775,-0.7878109216690063,-0.34065425395965576,-0.9856994152069092,-0.10937155783176422,-0.26008379459381104,-0.6721340417861938,0.2050894796848297,1.10892915725708,-0.7834477424621582,-1.2375035285949707,0.9320746660232544,-0.34523820877075195,1.6419215202331543,-0.007057160139083862,-0.03183514624834061,0.16773878037929535,-0.18055784702301025,-0.3062717318534851,1.634570837020874,-0.15240994095802307,-1.4530010223388672,0.39055925607681274,-0.5499592423439026,-1.1414920091629028,0.2511095404624939,0.753116250038147,-0.36358609795570374,-0.5014042258262634,-0.3874973654747009,0.1342354565858841,0.8945192098617554,-0.2833332121372223,0.10973656177520752,-0.05444878339767456,-0.21479478478431702,0.27769023180007935,-1.0297104120254517,-0.44418802857398987,2.7699220180511475,-0.07160425186157227,0.14073434472084045,-0.731147050857544,1.6457010507583618,-0.8398666381835938,0.1906915307044983,0.7069724798202515,0.7574092745780945,-1.852198839187622,-0.24867036938667297,1.4822492599487305,-0.7545495629310608,0.28165504336357117,-0.023271560668945312,0.9766808748245239,0.18532037734985352,-1.9039236307144165,-0.2434137612581253,-1.9429991245269775,1.4945611953735352,-2.5046463012695312,0.49216562509536743,-0.34203463792800903,-1.150784969329834,0.8965527415275574,1.3249714374542236,0.9397670030593872,0.3146865963935852,-0.4572731852531433,0.13721364736557007,0.5685232281684875,0.0946165919303894,-0.8747784495353699,-2.139512062072754,-0.3861621618270874,0.6950477957725525,0.8366098403930664,-1.1103042364120483,-0.5177757740020752,-0.9982044100761414,-1.6303086280822754,1.1057480573654175,0.8518245220184326,0.10727404803037643,0.6165181398391724,0.8556617498397827,-0.46179234981536865,1.2008614540100098,-0.20835810899734497,0.8516712188720703,1.1803046464920044,1.0712872743606567,-0.6493523716926575,1.6281342506408691,-0.3022196292877197,0.688845157623291,-0.361994206905365,-0.04475212097167969,0.2770051956176758,-0.11270797252655029,0.5646712779998779,-1.0984807014465332,-1.3672890663146973,-1.0465450286865234,-0.5394747853279114,-0.1803036630153656,-0.4986749589443207,0.08055388927459717,-0.7409572601318359,1.3926750421524048,0.6807864904403687,-2.0187501907348633,-0.14158302545547485,0.17140048742294312,1.719398021697998,0.43891453742980957,1.0677213668823242,-1.0671730041503906,1.0050033330917358,-1.8686954975128174,-0.8337966203689575,-0.38202646374702454,0.43850910663604736,-1.5518155097961426,-0.9796217679977417,-0.139581561088562,-0.3822243809700012,0.4208912253379822,-0.2693102955818176,0.30602961778640747,0.8629726767539978,1.2004894018173218,2.245410919189453,0.8811298608779907,1.3116239309310913,-0.5592160820960999,-0.5844089984893799,-0.5569785237312317,-0.7343783974647522,0.35206273198127747,1.7856614589691162,1.546843409538269,-0.030587315559387207,-1.7299399375915527,0.547499418258667,-0.830859899520874,-0.33376002311706543,0.13217920064926147,-0.631683349609375,1.1040873527526855,-1.2255581617355347,0.11637037992477417,-1.4959542751312256,0.9049360752105713,1.9528422355651855,0.4384000599384308,0.613929033279419,-0.03944389522075653,1.3645130395889282,1.875014305114746,0.46873170137405396,0.3171977698802948,1.5896735191345215,-1.1710734367370605,-0.4030076265335083,-0.6436704397201538,-1.100714921951294,-1.13364839553833,0.5186129212379456,-1.260210633277893,-1.2881202697753906,-0.5519096851348877,-1.306391954421997,-0.6269926428794861,-1.3920732736587524,2.153414487838745,-1.7777378559112549,-1.33815336227417,0.31247270107269287,1.562410831451416,-0.9982887506484985,2.7045655250549316,-0.6308921575546265,-0.15529431402683258,-0.42037856578826904,-0.23831818997859955,-0.007768094539642334,-0.27147406339645386,0.8286565542221069,1.649206519126892,1.528411865234375,0.5144489407539368,0.21143174171447754,0.16005012392997742,-1.3369874954223633,0.33151698112487793,0.09407790005207062,-0.9117254018783569,-1.020101547241211,-1.2134194374084473,2.801520824432373,0.39691734313964844,0.44345468282699585,1.141703724861145,0.378947377204895,0.5729916095733643,1.0089036226272583,0.5144855976104736,0.11927326023578644,2.295820713043213,1.2404265403747559,0.24443994462490082,-0.17826421558856964,-0.5407621264457703,-0.14425432682037354,0.2501731514930725,-0.49125435948371887,-0.587988018989563,1.193223476409912,-0.26121246814727783,-0.12046709656715393,-0.9472830891609192,0.17051994800567627,0.43129950761795044,0.3128421902656555,1.0635013580322266,1.428200602531433,-0.17289872467517853,1.3283641338348389,1.3206334114074707,0.509514570236206,0.6052109599113464,0.40754789113998413,1.356811285018921,0.33821240067481995,0.2857007086277008,0.513818621635437,-0.6731485724449158,-1.2706133127212524,0.252526193857193,-0.8855946063995361,0.05541372299194336,0.14785493910312653,-0.06073061004281044,-0.04395437240600586,-0.11477130651473999,-2.1358273029327393 -2980,-0.21268881857395172,-2.1031553745269775,-0.7878109216690063,-0.34065425395965576,-0.9856994152069092,-0.10937155783176422,-0.26008379459381104,-0.6721340417861938,0.2050894796848297,1.10892915725708,-0.7834477424621582,-1.2375035285949707,0.861797034740448,-0.34523820877075195,1.6419215202331543,0.048309557139873505,0.4308690130710602,0.16773878037929535,-0.18055784702301025,-0.3062717318534851,1.7912216186523438,-0.15240994095802307,-0.4806852340698242,0.39055925607681274,-0.5499592423439026,-1.1414920091629028,0.2511095404624939,0.753116250038147,-0.5460255742073059,-0.5014042258262634,-0.3874973654747009,0.5122644901275635,0.8945192098617554,-0.2833332121372223,0.9251924753189087,-0.05444878339767456,-0.21479478478431702,0.27769023180007935,-1.0297104120254517,-0.5020988583564758,3.054718494415283,-0.07160425186157227,0.14073434472084045,-0.731147050857544,1.6457010507583618,-0.5600760579109192,0.6208354830741882,0.6559281945228577,0.4240383207798004,-1.8240368366241455,-0.24867036938667297,1.1028615236282349,-0.7545495629310608,-0.23129501938819885,-0.023271560668945312,0.9766808748245239,0.18532037734985352,-1.9039236307144165,-0.2434137612581253,-1.9429991245269775,1.4253227710723877,-2.5046463012695312,0.49216562509536743,-0.34203463792800903,-0.2863457202911377,0.8965527415275574,1.3249714374542236,0.9397670030593872,0.3146865963935852,-0.4572731852531433,0.19249846041202545,0.5685232281684875,0.0946165919303894,-0.8747784495353699,-2.5095417499542236,-0.8076322078704834,0.6950477957725525,0.8366098403930664,-0.5662294626235962,-0.5177757740020752,-0.9982044100761414,-1.6303086280822754,1.1057480573654175,0.8518245220184326,-0.09802096337080002,0.6165181398391724,0.8556617498397827,-0.46179234981536865,1.2008614540100098,-0.20835810899734497,0.8516712188720703,1.1803046464920044,1.0712872743606567,-0.6493523716926575,1.8284250497817993,-0.12371544539928436,0.688845157623291,-0.361994206905365,-0.04475212097167969,0.2770051956176758,-0.11270797252655029,0.5646712779998779,-1.0984807014465332,-1.0114314556121826,-1.0465450286865234,-0.5394747853279114,-0.5304266810417175,-0.4986749589443207,-0.3185303509235382,-0.7409572601318359,1.3926750421524048,0.6807864904403687,-2.0187501907348633,-0.14158302545547485,0.07732662558555603,1.719398021697998,0.42206960916519165,0.9943832159042358,-1.5382006168365479,1.0050033330917358,-1.8686954975128174,-1.8255140781402588,-0.38202646374702454,0.43850910663604736,-1.5518155097961426,-0.524825930595398,-0.139581561088562,-1.0460143089294434,0.4208912253379822,-0.2693102955818176,0.6468856334686279,0.8629726767539978,2.0156280994415283,2.161428213119507,0.8811298608779907,1.3116239309310913,-0.5592160820960999,-0.5844089984893799,-0.5569785237312317,-0.7343783974647522,0.35206273198127747,1.7856614589691162,1.3258655071258545,-0.030587315559387207,-1.6222692728042603,-0.19857054948806763,-0.830859899520874,-0.01864197850227356,0.13217920064926147,-0.631683349609375,1.1040873527526855,-1.2255581617355347,0.11637037992477417,-1.4959542751312256,1.0214159488677979,1.340010643005371,0.4384000599384308,0.613929033279419,-0.03944389522075653,1.3645130395889282,1.5528000593185425,0.46873170137405396,0.3171977698802948,1.5896735191345215,-1.1710734367370605,-0.9255009293556213,0.05506551265716553,-0.4549177289009094,-0.015700578689575195,0.152741938829422,-1.42672860622406,-1.7614762783050537,-0.5519096851348877,-1.306391954421997,-0.6269926428794861,-1.3920732736587524,2.0150063037872314,-1.7777378559112549,-1.33815336227417,0.5280503630638123,1.562410831451416,-1.5194339752197266,2.7045655250549316,-0.6308921575546265,-0.15529431402683258,-0.42037856578826904,0.27126801013946533,-0.007768094539642334,-0.27147406339645386,0.8286565542221069,1.5747662782669067,1.3430628776550293,0.5144489407539368,0.21143174171447754,0.16005012392997742,-1.3369874954223633,0.33151698112487793,-0.19224192202091217,-0.9117254018783569,-1.020101547241211,-1.2134194374084473,2.801520824432373,0.39691734313964844,0.44345468282699585,1.141703724861145,-0.4905691146850586,0.5729916095733643,0.45391982793807983,-0.1554044485092163,0.11927326023578644,2.295820713043213,1.2404265403747559,0.24443994462490082,-0.17826421558856964,-0.5407621264457703,-0.14425432682037354,0.5805966258049011,-1.0447509288787842,-0.587988018989563,1.193223476409912,-0.45880353450775146,-0.12046709656715393,-0.9472830891609192,0.17051994800567627,0.43129950761795044,0.3128421902656555,1.0635013580322266,1.428200602531433,0.6808266043663025,0.7719938158988953,1.3206334114074707,-0.1398182511329651,0.12381929159164429,0.48882240056991577,1.4057801961898804,0.33821240067481995,0.2857007086277008,0.513818621635437,-0.6731485724449158,-1.2706133127212524,0.252526193857193,-0.8855946063995361,0.05541372299194336,0.14785493910312653,-0.4619203805923462,-0.04395437240600586,0.32608526945114136,-2.1358273029327393 -2981,-0.2404761016368866,-2.1031553745269775,-0.7878109216690063,-0.34065425395965576,-0.9856994152069092,-0.10937155783176422,0.09410238265991211,-0.5439053773880005,0.2050894796848297,1.10892915725708,-0.7834477424621582,-1.2375035285949707,0.861797034740448,-0.08580324053764343,1.6419215202331543,0.29662400484085083,0.4308690130710602,0.16773878037929535,-0.18055784702301025,-0.3062717318534851,1.7912216186523438,-0.15240994095802307,-0.4806852340698242,0.39055925607681274,-0.5499592423439026,-0.9680038094520569,0.2511095404624939,0.6473991870880127,-0.5460255742073059,-0.6245931386947632,-0.3874973654747009,0.5122644901275635,0.8945192098617554,-0.179948091506958,0.9251924753189087,-0.05444878339767456,-0.23084086179733276,0.27769023180007935,-1.0297104120254517,-0.5020988583564758,3.054718494415283,-0.07160425186157227,0.025387778878211975,-0.9026969075202942,1.2953675985336304,-0.48967939615249634,-0.021480858325958252,0.6559281945228577,0.7019397020339966,-1.8240368366241455,-0.24867036938667297,1.0426061153411865,-0.7545495629310608,-0.23129501938819885,-0.023271560668945312,0.9766808748245239,0.18532037734985352,-1.9039236307144165,-0.2434137612581253,-1.9429991245269775,1.4253227710723877,-2.5046463012695312,0.49216562509536743,-0.34203463792800903,-0.2863457202911377,1.0271525382995605,1.3249714374542236,0.9397670030593872,0.3146865963935852,-0.4572731852531433,0.19249846041202545,0.5685232281684875,0.0946165919303894,-0.8747784495353699,-2.5095417499542236,-0.4420229494571686,0.6950477957725525,0.8366098403930664,-0.5662294626235962,-0.5177757740020752,-0.9982044100761414,-1.311649203300476,1.1057480573654175,0.524954080581665,0.052827589213848114,0.6165181398391724,1.1839427947998047,-0.46179234981536865,1.2008614540100098,-0.20835810899734497,0.8516712188720703,1.1803046464920044,1.0712872743606567,-0.4528743326663971,1.8284250497817993,-0.12371544539928436,0.688845157623291,-0.361994206905365,-0.04475212097167969,-0.22923940420150757,-0.6186257004737854,0.5646712779998779,-1.0984807014465332,-1.0114314556121826,-1.0465450286865234,-0.5394747853279114,-0.5304266810417175,-0.4986749589443207,-0.3185303509235382,-1.0057393312454224,1.3926750421524048,0.2065516710281372,-2.0187501907348633,-0.14158302545547485,0.07732662558555603,1.719398021697998,0.42206960916519165,0.9943832159042358,-1.5382006168365479,1.0557352304458618,-1.8686954975128174,-1.8255140781402588,-0.38202646374702454,0.43850910663604736,-1.5518155097961426,-0.524825930595398,0.1288963258266449,-0.4662175178527832,0.4208912253379822,-0.2693102955818176,0.6468856334686279,0.8629726767539978,2.0156280994415283,2.119333267211914,0.8811298608779907,1.3116239309310913,-0.5592160820960999,-0.5844089984893799,0.19292497634887695,-1.6301878690719604,0.35206273198127747,1.5075278282165527,1.402134656906128,-0.030587315559387207,-1.6222692728042603,-0.19857054948806763,-0.830859899520874,0.16820299625396729,0.13217920064926147,-0.631683349609375,1.1040873527526855,-1.2255581617355347,0.11637037992477417,-1.4959542751312256,1.0214159488677979,1.340010643005371,0.25246813893318176,0.3657289743423462,-0.03944389522075653,0.8058784008026123,1.6876386404037476,0.46873170137405396,0.14825837314128876,1.5896735191345215,-0.4564145803451538,-0.9255009293556213,-0.43844592571258545,-0.4549177289009094,-0.015700578689575195,0.152741938829422,-1.42672860622406,-1.7614762783050537,-0.9370207786560059,-1.306391954421997,-0.617169976234436,0.2065826654434204,2.0150063037872314,-1.977400779724121,-1.33815336227417,0.5280503630638123,1.562410831451416,-1.1305882930755615,2.7045655250549316,0.34674781560897827,-0.684461772441864,0.1674301028251648,0.27126801013946533,-0.007768094539642334,-0.5120795965194702,0.4782014489173889,1.5747662782669067,1.3430628776550293,0.5144489407539368,0.4698116183280945,0.16005012392997742,-1.3369874954223633,0.33151698112487793,-0.19224192202091217,-0.9117254018783569,-0.8929942846298218,-1.5015907287597656,2.5592870712280273,0.39691734313964844,0.44345468282699585,0.7892961502075195,-0.4905691146850586,0.5729916095733643,0.45391982793807983,-0.1554044485092163,0.11927326023578644,2.295820713043213,1.552329182624817,0.24443994462490082,-0.17826421558856964,-0.5407621264457703,0.08493848145008087,0.5805966258049011,-0.838243842124939,-0.587988018989563,1.193223476409912,-0.45880353450775146,-1.4247232675552368,-0.9472830891609192,0.1358419507741928,0.4539935290813446,0.543425440788269,1.2895187139511108,1.428200602531433,0.6866654753684998,0.7719938158988953,1.1461676359176636,-0.06563623994588852,-0.13550284504890442,0.48882240056991577,1.4003593921661377,0.33821240067481995,0.2857007086277008,0.19357755780220032,-0.32558807730674744,-1.2706133127212524,0.252526193857193,-0.8855946063995361,-0.06451117992401123,0.7016269564628601,-0.4619203805923462,0.0941096693277359,0.32608526945114136,-1.3833203315734863 -2982,-0.2404761016368866,-2.1031553745269775,-0.2927757799625397,-0.34065425395965576,-0.9856994152069092,-0.10937155783176422,-0.3064647912979126,-0.5439053773880005,0.6647683382034302,1.10892915725708,-0.7834477424621582,-1.2375035285949707,0.861797034740448,-0.08580324053764343,1.3040920495986938,0.07066969573497772,0.477274626493454,-0.4156656861305237,-0.18055784702301025,-0.3062717318534851,1.7040448188781738,-0.15240994095802307,-1.2898261547088623,0.39055925607681274,-0.5499592423439026,-0.9680038094520569,0.18904739618301392,0.6473991870880127,-0.5460255742073059,-0.6245931386947632,-0.3874973654747009,0.5122644901275635,0.8945192098617554,-0.07228375971317291,0.9251924753189087,-0.05444878339767456,-0.23084086179733276,0.27769023180007935,-1.1530805826187134,-0.5020988583564758,3.054718494415283,-0.07160425186157227,0.025387778878211975,-0.9026969075202942,1.2953675985336304,-0.48967939615249634,-0.021480858325958252,0.2652228772640228,0.3846663534641266,-1.8240368366241455,-0.24867036938667297,1.0426061153411865,-0.6170156002044678,-0.23129501938819885,-0.023271560668945312,0.9766808748245239,0.18532037734985352,-1.9039236307144165,-0.3302973508834839,-1.9429991245269775,1.4253227710723877,-2.304253101348877,-0.3516187071800232,-0.34203463792800903,-0.2863457202911377,0.6398659944534302,1.3249714374542236,0.9397670030593872,0.3146865963935852,-0.4572731852531433,-0.30500030517578125,0.5685232281684875,0.0946165919303894,-0.8747784495353699,-2.5095417499542236,-0.4420229494571686,0.6950477957725525,1.0023586750030518,-0.5662294626235962,-0.5177757740020752,-0.9982044100761414,-1.311649203300476,1.1633336544036865,0.524954080581665,0.052827589213848114,0.20298364758491516,1.7518494129180908,-0.8959460854530334,1.2008614540100098,-0.20835810899734497,0.8516712188720703,1.1803046464920044,1.0712872743606567,-0.595280110836029,1.8284250497817993,-0.12371544539928436,1.3557358980178833,-0.361994206905365,-0.048189640045166016,-0.22923940420150757,-0.6186257004737854,0.5646712779998779,-1.0984807014465332,-1.1639530658721924,-1.0465450286865234,-0.5394747853279114,0.1845003366470337,-0.4986749589443207,-0.5619089007377625,-1.0057393312454224,1.3926750421524048,0.2065516710281372,-2.0187501907348633,0.38933539390563965,-0.6312273740768433,1.719398021697998,0.42206960916519165,0.9943832159042358,-1.5382006168365479,1.0557352304458618,-1.1631932258605957,-1.8255140781402588,-0.38202646374702454,0.43850910663604736,-1.5518155097961426,-0.524825930595398,0.007246740162372589,-0.4662175178527832,0.16989681124687195,-0.2693102955818176,0.6468856334686279,0.827735424041748,1.9670183658599854,2.382572889328003,0.7936816811561584,1.3116239309310913,-0.5592160820960999,-0.5844089984893799,0.19292497634887695,-1.6301878690719604,0.35206273198127747,1.5075278282165527,1.402134656906128,-0.030587315559387207,-2.0427510738372803,-0.19857054948806763,-0.830859899520874,0.16820299625396729,0.13217920064926147,-0.961487889289856,1.1040873527526855,-0.8167585134506226,0.11637037992477417,-1.4959542751312256,1.0214159488677979,1.340010643005371,0.25246813893318176,0.3657289743423462,-0.3191818594932556,0.8058784008026123,1.875277042388916,0.46873170137405396,0.14825837314128876,1.0719196796417236,-0.4564145803451538,-0.08769345283508301,-0.769866943359375,-0.4549177289009094,-0.2665943503379822,0.152741938829422,-1.42672860622406,-1.7614762783050537,-0.9370207786560059,-1.306391954421997,-0.617169976234436,0.13198471069335938,2.0150063037872314,-1.977400779724121,-1.33815336227417,0.5280503630638123,1.562410831451416,-1.1305882930755615,2.1603879928588867,0.34674781560897827,-0.684461772441864,-0.9141035676002502,0.047078490257263184,-0.007768094539642334,-1.1760530471801758,0.4782014489173889,1.5747662782669067,1.1886591911315918,0.4954381287097931,0.4698116183280945,0.16005012392997742,-0.26265740394592285,0.33151698112487793,-0.23202070593833923,-0.9117254018783569,-0.013457179069519043,-1.5015907287597656,2.5592870712280273,0.316916823387146,0.44345468282699585,1.3633990287780762,-0.00048166513442993164,0.5729916095733643,0.8044276237487793,-0.1554044485092163,0.08839517831802368,2.6918859481811523,1.552329182624817,0.24443994462490082,-0.17826421558856964,-0.9504068493843079,0.08493848145008087,0.5805966258049011,-0.5321272611618042,-0.6962515115737915,1.193223476409912,-0.45880353450775146,-0.9849957227706909,-0.9472830891609192,-0.23910097777843475,0.4691782593727112,0.543425440788269,1.0887045860290527,1.428200602531433,0.6426445841789246,0.7719938158988953,1.1461676359176636,0.40021559596061707,-0.13550284504890442,0.48882240056991577,1.4003593921661377,0.33821240067481995,0.3509472906589508,0.19357755780220032,-0.32558807730674744,-1.2706133127212524,0.252526193857193,-0.8855946063995361,-0.5161412954330444,0.7016269564628601,-0.4619203805923462,0.0941096693277359,0.32608526945114136,-1.3833203315734863 -2983,-0.15969961881637573,-1.5541845560073853,-0.9658362865447998,0.17341190576553345,-0.9856994152069092,-0.10937155783176422,-0.2794165313243866,-1.3131093978881836,0.5155365467071533,1.10892915725708,-0.7834477424621582,-1.2375035285949707,0.861797034740448,0.02386748045682907,1.4424591064453125,0.07066969573497772,0.477274626493454,-0.4156656861305237,-0.18055784702301025,-0.3062717318534851,1.7040448188781738,-0.15240994095802307,-0.5964177250862122,0.39055925607681274,-0.5499592423439026,-0.9680038094520569,0.18904739618301392,0.6473991870880127,-0.5460255742073059,-0.6245931386947632,-0.3874973654747009,0.5122644901275635,0.8945192098617554,-0.07228375971317291,0.9251924753189087,-0.05444878339767456,-0.23084086179733276,0.27769023180007935,-1.1530805826187134,-0.5020988583564758,2.6144275665283203,-0.07160425186157227,0.025387778878211975,-0.9696904420852661,1.2953675985336304,-0.48967939615249634,-0.021480858325958252,0.2652228772640228,0.3846663534641266,-1.8240368366241455,-0.24867036938667297,0.9847961664199829,-0.6170156002044678,-0.17989659309387207,-0.023271560668945312,0.9766808748245239,0.18532037734985352,-1.9039236307144165,-0.3302973508834839,-1.5382862091064453,1.249150037765503,-2.465402603149414,-0.6477065086364746,-0.34203463792800903,-0.2863457202911377,0.6398659944534302,1.3249714374542236,0.9397670030593872,0.6840269565582275,-0.4572731852531433,-0.30500030517578125,0.5685232281684875,0.0946165919303894,-0.8747784495353699,-2.5095417499542236,-0.4420229494571686,0.6950477957725525,1.030928134918213,-0.5662294626235962,-0.5177757740020752,-0.996067464351654,-1.311649203300476,0.275193989276886,0.5758312344551086,-0.19266468286514282,0.20298364758491516,1.7518494129180908,-0.8959460854530334,1.2008614540100098,-0.20835810899734497,0.8516712188720703,1.1803046464920044,0.535815954208374,0.634907066822052,1.8284250497817993,-0.12371544539928436,1.3557358980178833,-0.361994206905365,-0.048189640045166016,-0.22923940420150757,-0.6186257004737854,0.5646712779998779,-1.0984807014465332,-1.1639530658721924,-0.8495365977287292,-0.5394747853279114,0.1845003366470337,-0.4986749589443207,-0.5619089007377625,-1.0057393312454224,1.3926750421524048,0.2065516710281372,-2.0187501907348633,0.38933539390563965,-0.6312273740768433,1.719398021697998,0.9383327960968018,0.5533148646354675,-1.835050344467163,1.0557352304458618,-1.1631932258605957,-1.8255140781402588,-0.38202646374702454,0.43850910663604736,-0.7541127800941467,-0.524825930595398,0.007246740162372589,-0.4662175178527832,-0.5790599584579468,0.15722939372062683,0.6468856334686279,0.827735424041748,1.9670183658599854,2.382572889328003,0.7936816811561584,1.3116239309310913,-0.5592160820960999,-0.5844089984893799,2.1185455322265625,-2.145348310470581,0.35206273198127747,1.5075278282165527,1.402134656906128,-0.030587315559387207,-2.0427510738372803,0.4969286322593689,-0.830859899520874,0.16820299625396729,0.13217920064926147,-0.961487889289856,1.2688336372375488,-0.587180495262146,0.11637037992477417,-1.4959542751312256,1.0214159488677979,0.9071149230003357,0.25246813893318176,0.23193706572055817,-0.3191818594932556,0.8058784008026123,1.6827702522277832,-0.3786918520927429,0.6428976655006409,1.0719196796417236,-0.47356104850769043,-0.08769345283508301,-0.769866943359375,-0.4549177289009094,-0.2665943503379822,0.152741938829422,-1.42672860622406,-1.7614762783050537,-0.9370207786560059,-1.306391954421997,-0.617169976234436,-0.32574978470802307,2.0150063037872314,-1.977400779724121,-1.33815336227417,0.5280503630638123,1.562410831451416,-1.1305882930755615,1.7744650840759277,0.27598729729652405,-0.684461772441864,-0.9141035676002502,-0.48977887630462646,-0.32843244075775146,-1.1760530471801758,0.4782014489173889,1.6912001371383667,1.1886591911315918,0.8910571336746216,0.41581815481185913,0.16005012392997742,-0.26265740394592285,0.33151698112487793,-0.23202070593833923,-1.0041718482971191,-0.013457179069519043,-1.3679035902023315,2.6111481189727783,0.316916823387146,0.44345468282699585,1.3633990287780762,-0.00048166513442993164,0.5729916095733643,0.8044276237487793,-0.1554044485092163,0.08839517831802368,2.6490046977996826,1.552329182624817,0.24443994462490082,-0.12130793929100037,-0.8819125294685364,0.08493848145008087,0.5805966258049011,-0.5321272611618042,-0.6962515115737915,1.193223476409912,-0.45880353450775146,-0.9849957227706909,-0.9472830891609192,-0.23910097777843475,0.4691782593727112,0.543425440788269,0.7619748115539551,1.428200602531433,0.6426445841789246,0.7719938158988953,1.1461676359176636,0.40021559596061707,-0.13550284504890442,0.48882240056991577,1.4003593921661377,0.5066503286361694,0.3509472906589508,0.4256533980369568,-0.32558807730674744,-1.2706133127212524,0.252526193857193,-0.8855946063995361,-0.5161412954330444,0.43258070945739746,-0.4619203805923462,-0.15739946067333221,0.32608526945114136,-1.3833203315734863 -2984,-0.15969961881637573,-1.5541845560073853,-0.9658362865447998,0.17341190576553345,-0.9856994152069092,-0.10937155783176422,-0.22661447525024414,-1.3131093978881836,0.5155365467071533,1.10892915725708,-0.7834477424621582,-1.6481040716171265,0.861797034740448,0.14956966042518616,1.4424591064453125,0.07066969573497772,0.477274626493454,-0.4156656861305237,-0.20950554311275482,-0.3062717318534851,1.5817017555236816,-0.15240994095802307,-0.5964177250862122,0.4233328402042389,-0.5499592423439026,-0.9680038094520569,-0.014391586184501648,0.6473991870880127,-0.5460255742073059,-0.6245931386947632,-0.6271477937698364,0.5122644901275635,0.8945192098617554,0.13833099603652954,0.9251924753189087,-0.05444878339767456,-0.23084086179733276,0.27769023180007935,-0.6630602478981018,-0.5020988583564758,3.0173559188842773,-0.07160425186157227,0.06325910985469818,-0.9696904420852661,1.241395354270935,-1.1141482591629028,-0.021480858325958252,0.5909263491630554,0.3846663534641266,-1.8240368366241455,-0.24867036938667297,0.9847961664199829,-0.6170156002044678,-0.17989659309387207,-0.023271560668945312,0.636159360408783,0.18532037734985352,-1.9039236307144165,-0.19123736023902893,-1.5382862091064453,1.249150037765503,-2.465402603149414,-0.6477065086364746,0.1139751672744751,-0.5138126611709595,0.9014763832092285,1.203110694885254,0.7201330065727234,0.6840269565582275,-0.4572731852531433,-0.30500030517578125,0.5685232281684875,0.0946165919303894,-0.9857728481292725,-2.5095417499542236,-0.4420229494571686,0.3070392906665802,1.030928134918213,-0.5662294626235962,-0.35486918687820435,-0.996067464351654,-1.311649203300476,0.275193989276886,0.5758312344551086,-0.3894650936126709,0.20298364758491516,2.159045696258545,-0.8959460854530334,0.9079534411430359,0.5367523431777954,0.8516712188720703,0.4823422431945801,0.535815954208374,0.634907066822052,1.8284250497817993,-0.12371544539928436,1.3557358980178833,-0.361994206905365,0.26131319999694824,-0.22923940420150757,-0.6186257004737854,0.18120482563972473,-1.0347900390625,-1.1639530658721924,-0.8495365977287292,-0.5394747853279114,0.1845003366470337,0.20728489756584167,-0.5619089007377625,-0.7804179191589355,1.3926750421524048,0.10271713882684708,-2.0187501907348633,0.4044550359249115,-0.6312273740768433,1.719398021697998,0.9383327960968018,0.5533148646354675,-1.835050344467163,1.0557352304458618,-1.1631932258605957,-1.8255140781402588,-0.38202646374702454,0.43238672614097595,-0.7541127800941467,-1.2460565567016602,0.12044529616832733,-0.4662175178527832,-0.5790599584579468,0.15722939372062683,0.5190569162368774,0.827735424041748,1.9670183658599854,2.382572889328003,0.7936816811561584,1.3116239309310913,-0.5592160820960999,-0.724623441696167,2.1116104125976562,-1.3613225221633911,0.016933053731918335,1.5075278282165527,1.402134656906128,-0.030587315559387207,-1.5449885129928589,0.4969286322593689,-0.830859899520874,0.16820299625396729,0.13217920064926147,-0.961487889289856,1.2688336372375488,-0.587180495262146,0.11637037992477417,-1.4959542751312256,1.0214159488677979,1.3419654369354248,0.25246813893318176,0.033430829644203186,-0.3191818594932556,0.8058784008026123,1.6827702522277832,0.7536999583244324,0.5223299264907837,1.618565559387207,-0.47356104850769043,-0.08769345283508301,-0.769866943359375,-0.4194999933242798,-0.2665943503379822,-0.02240997552871704,-1.038036823272705,-1.7614762783050537,-1.182431697845459,-1.5852386951446533,-0.617169976234436,-0.42616012692451477,2.0150063037872314,-1.977400779724121,-1.33815336227417,0.5280503630638123,1.562410831451416,-1.1305882930755615,1.7744650840759277,0.27598729729652405,-0.684461772441864,-0.9141035676002502,-0.48977887630462646,-0.956472635269165,-1.1760530471801758,0.4782014489173889,1.6912001371383667,1.4347469806671143,0.8910571336746216,0.41581815481185913,0.16005012392997742,-0.26265740394592285,-0.13180604577064514,-0.23202070593833923,-1.0041718482971191,-0.013457179069519043,-1.3679035902023315,2.6111481189727783,0.316916823387146,0.6613888144493103,1.3633990287780762,-0.596308171749115,0.5729916095733643,0.8044276237487793,-0.1554044485092163,0.12013871967792511,2.6490046977996826,1.552329182624817,0.24443994462490082,-0.12130793929100037,-0.8819125294685364,0.08493848145008087,0.5805966258049011,-0.9156559109687805,-0.6962515115737915,0.8970733880996704,-0.45880353450775146,-0.21609777212142944,-0.9472830891609192,-0.23910097777843475,-0.16463536024093628,0.543425440788269,1.1088004112243652,1.428200602531433,0.6426445841789246,0.5293611884117126,1.1461676359176636,0.40021559596061707,-0.5267990827560425,1.0159339904785156,1.4003593921661377,0.5066503286361694,0.3509472906589508,0.4256533980369568,-0.32558807730674744,-1.2706133127212524,0.252526193857193,-0.8855946063995361,-0.5161412954330444,0.43258070945739746,-0.35593220591545105,-0.15739946067333221,0.32608526945114136,-1.3833203315734863 -2985,-0.15969961881637573,-1.5541845560073853,-0.9658362865447998,0.4846132695674896,-0.9856994152069092,-0.10937155783176422,0.13481444120407104,-1.3131093978881836,0.5155365467071533,1.10892915725708,-0.7834477424621582,-1.6481040716171265,0.861797034740448,0.14956966042518616,1.2117838859558105,0.07066969573497772,0.477274626493454,-0.4156656861305237,-0.20950554311275482,-0.3062717318534851,1.5817017555236816,-0.15240994095802307,-0.5964177250862122,0.4233328402042389,-0.5499592423439026,-0.9680038094520569,-0.2964138984680176,0.6473991870880127,-0.22187396883964539,-0.6245931386947632,-0.6271477937698364,0.5122644901275635,0.7760908007621765,-0.27899760007858276,0.9251924753189087,0.8044480681419373,-0.23084086179733276,0.27769023180007935,-0.6630602478981018,-0.5020988583564758,3.0173559188842773,-0.07160425186157227,0.06325910985469818,-0.9696904420852661,1.0912795066833496,-1.0332204103469849,-0.021480858325958252,0.5909263491630554,0.3846663534641266,-1.8240368366241455,-0.24867036938667297,0.9847961664199829,-0.06972885131835938,-0.17989659309387207,0.5768835544586182,0.636159360408783,0.18532037734985352,-1.9039236307144165,-0.19123736023902893,-1.5382862091064453,1.3464200496673584,-2.54280948638916,-0.6477065086364746,0.1139751672744751,-0.5138126611709595,0.9014763832092285,1.203110694885254,0.7201330065727234,0.526287853717804,-0.4572731852531433,-0.30500030517578125,0.5685232281684875,0.0946165919303894,-0.9857728481292725,-2.5095417499542236,-0.07238608598709106,0.3070392906665802,1.030928134918213,-0.5662294626235962,-0.45149707794189453,-0.8676387071609497,-1.311649203300476,0.275193989276886,0.9146690368652344,-0.3894650936126709,0.20298364758491516,2.159045696258545,-0.35620176792144775,0.1758551001548767,0.5367523431777954,0.8516712188720703,-0.05387395620346069,0.535815954208374,0.634907066822052,1.8284250497817993,-0.12371544539928436,1.3557358980178833,-0.361994206905365,0.14859901368618011,-0.22923940420150757,-0.5928975939750671,0.18120482563972473,-0.6065736413002014,-1.1639530658721924,-0.2943173050880432,-0.5394747853279114,-0.3037465810775757,0.20728489756584167,-0.5619089007377625,-0.7804179191589355,1.3926750421524048,0.10271713882684708,-0.6776577234268188,0.4044550359249115,-0.6312273740768433,1.719398021697998,1.01564621925354,0.5533148646354675,-1.372912049293518,1.0557352304458618,-1.1631932258605957,-1.4149212837219238,-0.38202646374702454,0.5424895286560059,-0.7541127800941467,-1.2460565567016602,0.12044529616832733,-0.6257256269454956,-0.5790599584579468,0.15722939372062683,0.5190569162368774,0.827735424041748,1.0403963327407837,2.382572889328003,0.7936816811561584,1.3116239309310913,-0.5592160820960999,-0.724623441696167,2.1116104125976562,-1.3613225221633911,0.016933053731918335,1.5075278282165527,1.402134656906128,-1.0920528173446655,-1.5449885129928589,0.4969286322593689,-0.1534234881401062,0.16820299625396729,-0.08627165853977203,-0.961487889289856,1.3816839456558228,-0.541937530040741,0.11637037992477417,-1.4959542751312256,0.7948746085166931,1.3419654369354248,0.25246813893318176,-0.2734965682029724,-0.3191818594932556,0.8058784008026123,1.6851916313171387,0.7536999583244324,0.5223299264907837,1.618565559387207,-0.47356104850769043,-0.5876611471176147,-0.769866943359375,-1.0470631122589111,-0.127720445394516,1.0748460292816162,-1.8336753845214844,-1.7349833250045776,-1.182431697845459,-1.258955717086792,-0.617169976234436,-0.42616012692451477,2.0150063037872314,-1.977400779724121,-1.33815336227417,0.5280503630638123,1.562410831451416,-1.092777132987976,1.7744650840759277,-0.5390101671218872,-0.684461772441864,-0.9141035676002502,-0.48977887630462646,-0.956472635269165,-1.1760530471801758,0.4782014489173889,1.7296700477600098,1.4347469806671143,0.8910571336746216,0.41581815481185913,0.16005012392997742,-0.26265740394592285,-0.13180604577064514,-0.23202070593833923,-0.9174392819404602,-0.19285714626312256,-1.6882169246673584,2.9343459606170654,0.316916823387146,0.6613888144493103,1.556878685951233,-0.596308171749115,0.5729916095733643,1.2086831331253052,-0.1554044485092163,-0.8224407434463501,2.6490046977996826,2.1914141178131104,0.24443994462490082,0.15698081254959106,-0.8819125294685364,0.08493848145008087,0.5805966258049011,-0.9156559109687805,-0.6962515115737915,0.8970733880996704,-0.45880353450775146,-0.21609777212142944,-1.1808969974517822,-0.23910097777843475,0.8271259665489197,0.543425440788269,1.1088004112243652,1.428200602531433,0.6426445841789246,0.5293611884117126,1.1914331912994385,0.40021559596061707,0.34539633989334106,0.5959628820419312,1.368872046470642,0.5066503286361694,0.3509472906589508,0.4256533980369568,-0.32558807730674744,-1.390580654144287,0.252526193857193,-0.8855946063995361,-0.3055565357208252,0.28929758071899414,-0.35593220591545105,-0.15739946067333221,0.32608526945114136,-1.3833203315734863 -2986,-0.15969961881637573,-1.9021170139312744,-0.9658362865447998,0.19446954131126404,-0.9856994152069092,-0.10937155783176422,0.13481444120407104,-1.3131093978881836,0.5155365467071533,1.10892915725708,-1.207067608833313,-0.9281789064407349,0.861797034740448,0.14956966042518616,2.105133533477783,0.07066969573497772,0.477274626493454,-0.1439758837223053,-0.24888277053833008,-0.3062717318534851,1.5202873945236206,-0.1252897083759308,-0.7331656217575073,0.4233328402042389,-0.4302622377872467,-0.9680038094520569,0.015167802572250366,0.6473991870880127,-0.22187396883964539,-0.6245931386947632,-0.6271477937698364,0.5122644901275635,0.7760908007621765,-0.5037463307380676,0.9251924753189087,0.8044480681419373,-0.23084086179733276,0.27769023180007935,-0.6630602478981018,0.24866622686386108,3.0173559188842773,-0.07160425186157227,0.007605690509080887,-0.418578565120697,1.0912795066833496,-1.0332204103469849,0.5540366172790527,0.5909263491630554,0.3846663534641266,-1.8240368366241455,-0.17051094770431519,1.1185601949691772,-0.6213513612747192,-0.17989659309387207,0.5768835544586182,0.636159360408783,0.18532037734985352,-1.4991518259048462,-0.19123736023902893,-1.5382862091064453,1.026452660560608,-1.7934565544128418,-0.6477065086364746,-0.0936296284198761,-0.5138126611709595,0.9338807463645935,1.203110694885254,0.7201330065727234,0.526287853717804,-0.4572731852531433,-0.30500030517578125,0.5685232281684875,0.0946165919303894,-0.9857728481292725,-2.5095417499542236,-0.07238608598709106,0.3070392906665802,1.030928134918213,-0.5662294626235962,-0.45149707794189453,-0.8676387071609497,-1.311649203300476,0.275193989276886,0.9146690368652344,-0.3985302746295929,0.20298364758491516,2.159045696258545,-0.35620176792144775,-0.2020382583141327,0.9448466300964355,0.8516712188720703,-0.05387395620346069,0.345761775970459,-0.24314874410629272,1.5008158683776855,0.013266697525978088,1.3557358980178833,-0.361994206905365,-0.022465646266937256,-0.22923940420150757,-0.5928975939750671,0.18120482563972473,-0.6065736413002014,-1.1639530658721924,-0.2943173050880432,-0.5394747853279114,-0.3037465810775757,0.6500312089920044,-0.5619089007377625,-0.7804179191589355,1.3143086433410645,0.46284225583076477,-0.6776577234268188,0.4044550359249115,-0.4156993627548218,1.719398021697998,1.01564621925354,0.5533148646354675,-1.372912049293518,0.7875900268554688,-1.1333494186401367,-0.9866188764572144,-0.38202646374702454,0.5424895286560059,-0.7541127800941467,-1.2460565567016602,0.12044529616832733,-0.6257256269454956,-0.5790599584579468,0.15722939372062683,0.5190569162368774,0.827735424041748,1.0403963327407837,2.382572889328003,0.7936816811561584,1.3116239309310913,-0.5592160820960999,-0.724623441696167,0.9895243644714355,-1.3613225221633911,-0.5191627740859985,1.5075278282165527,1.402134656906128,-1.0920528173446655,-1.5449885129928589,-0.5140812993049622,0.9617275595664978,0.16820299625396729,-0.08627165853977203,-0.9052059650421143,1.2682507038116455,-0.541937530040741,0.32411694526672363,-1.4959542751312256,0.7948746085166931,1.3419654369354248,0.25246813893318176,0.1138317883014679,-0.3191818594932556,0.8058784008026123,1.254319667816162,0.7536999583244324,0.42247313261032104,1.618565559387207,-0.47356104850769043,-0.5876611471176147,-0.769866943359375,-1.0470631122589111,-0.127720445394516,0.6148461103439331,-1.771939992904663,-1.7349833250045776,-1.182431697845459,-1.258955717086792,-0.24802735447883606,-0.42616012692451477,2.0150063037872314,-2.206185817718506,-1.4793124198913574,0.5280503630638123,1.562410831451416,-1.232740879058838,1.7744650840759277,-0.5390101671218872,-0.684461772441864,-1.0583522319793701,-0.47833356261253357,-0.956472635269165,-1.1760530471801758,1.1438350677490234,1.7296700477600098,1.127707600593567,1.0780093669891357,0.0043897926807403564,0.16005012392997742,-0.26265740394592285,-0.13180604577064514,-0.7732589244842529,-0.9174392819404602,-0.19285714626312256,-1.6882169246673584,2.9343459606170654,0.316916823387146,0.6613888144493103,1.4980906248092651,-0.596308171749115,0.5729916095733643,1.2231214046478271,-0.1554044485092163,-1.0412452220916748,2.6490046977996826,2.1914141178131104,0.24443994462490082,0.15698081254959106,-0.6380395889282227,0.08493848145008087,0.5805966258049011,-0.9156559109687805,-0.6962515115737915,0.8970733880996704,-0.45880353450775146,-0.21609777212142944,-1.1808969974517822,0.15358589589595795,0.539987325668335,0.543425440788269,1.1088004112243652,1.4627797603607178,1.509662389755249,0.7920390367507935,1.1914331912994385,0.40021559596061707,0.34539633989334106,1.1007699966430664,1.368872046470642,0.5066503286361694,0.3509472906589508,0.7547051906585693,-0.32558807730674744,-1.390580654144287,0.252526193857193,-0.1847108006477356,-0.3055565357208252,0.28929758071899414,0.8982418775558472,-0.15739946067333221,0.32608526945114136,-1.3833203315734863 -2987,-0.15969961881637573,-1.379992961883545,-0.9658362865447998,0.19446954131126404,-0.9856994152069092,-0.1649666130542755,-0.20490074157714844,-1.3131093978881836,0.5155365467071533,1.10892915725708,-1.207067608833313,-0.9281789064407349,0.8016591668128967,0.14956966042518616,2.105133533477783,0.17945894598960876,0.477274626493454,-0.3251045346260071,-0.24888277053833008,-0.3062717318534851,1.6504486799240112,-0.20050381124019623,0.11985182762145996,0.8010888695716858,-0.4302622377872467,-0.9680038094520569,0.015167802572250366,0.6473991870880127,-0.3555903434753418,-0.6245931386947632,-0.3471943736076355,0.5122644901275635,0.7760908007621765,-0.5037463307380676,0.051326632499694824,0.24710708856582642,-0.23084086179733276,0.27769023180007935,-0.6630602478981018,-0.36404699087142944,2.946265935897827,-0.07160425186157227,0.007605690509080887,-0.418578565120697,1.0912795066833496,-1.0332204103469849,0.5540366172790527,0.5909263491630554,0.3846663534641266,-1.9779677391052246,-0.17051094770431519,0.40849024057388306,-0.6213513612747192,-0.17989659309387207,0.5768835544586182,0.636159360408783,0.18532037734985352,-1.4991518259048462,0.18171542882919312,-1.5382862091064453,1.4122618436813354,-1.7934565544128418,-0.6477065086364746,-0.0936296284198761,-0.6925259828567505,0.9338807463645935,1.203110694885254,0.6972294449806213,0.526287853717804,-0.4572731852531433,0.48208415508270264,0.6011330485343933,-0.3699299693107605,-0.9857728481292725,-2.5095417499542236,0.35288894176483154,0.3070392906665802,1.030928134918213,-0.5662294626235962,-0.45149707794189453,-0.8676387071609497,-1.311649203300476,0.6933904886245728,0.9306031465530396,-0.6662504076957703,0.20298364758491516,2.159045696258545,-0.35620176792144775,-0.2020382583141327,0.4798615574836731,0.8516712188720703,-0.05387395620346069,0.345761775970459,-0.331743061542511,1.5008158683776855,0.013266697525978088,1.3557358980178833,0.09290745854377747,-0.022465646266937256,-0.4444185793399811,-0.5928975939750671,0.18120482563972473,-0.6065736413002014,-1.1639530658721924,-0.2943173050880432,-0.5394747853279114,-0.3037465810775757,0.37703055143356323,-0.5619089007377625,-0.5148926973342896,1.3143086433410645,0.46284225583076477,-1.83712637424469,0.6502293348312378,-0.4156993627548218,1.719398021697998,0.9239863157272339,0.5533148646354675,-1.372912049293518,0.7875900268554688,-0.18606024980545044,-0.9866188764572144,-0.38202646374702454,0.5424895286560059,-0.7541127800941467,-0.6633382439613342,0.12044529616832733,-0.6257256269454956,-0.5790599584579468,0.15722939372062683,0.5654074549674988,0.827735424041748,1.0403963327407837,2.382572889328003,0.8095839023590088,1.3116239309310913,-0.5592160820960999,-0.724623441696167,0.9895243644714355,-1.3613225221633911,0.008305490016937256,1.5075278282165527,1.7241252660751343,-1.0920528173446655,-1.7272459268569946,-0.5140812993049622,0.29083508253097534,0.16820299625396729,-0.08627165853977203,-0.9052059650421143,1.6386148929595947,-0.541937530040741,-0.04307997226715088,-1.4959542751312256,0.7948746085166931,1.5577528476715088,0.25246813893318176,0.1138317883014679,0.2595489025115967,0.8058784008026123,1.254319667816162,0.7536999583244324,0.42247313261032104,1.618565559387207,-1.4474003314971924,-0.5876611471176147,-1.1572458744049072,-1.0470631122589111,-0.127720445394516,0.6148461103439331,-1.5844898223876953,-1.7349833250045776,-1.182431697845459,-1.258955717086792,-0.24802735447883606,-0.42616012692451477,2.1870837211608887,-2.206185817718506,-1.4793124198913574,0.40695708990097046,1.8936150074005127,-1.232740879058838,1.7744650840759277,-0.3176153302192688,-0.684461772441864,-1.0583522319793701,-0.47833356261253357,-0.956472635269165,-1.082432746887207,1.1438350677490234,1.7296700477600098,1.127707600593567,1.0780093669891357,0.4857432246208191,0.16005012392997742,0.27805572748184204,-0.13180604577064514,-0.3524053990840912,-0.9174392819404602,-0.19285714626312256,-1.6882169246673584,2.8454504013061523,0.316916823387146,0.6613888144493103,1.4980906248092651,-0.596308171749115,0.5729916095733643,1.2231214046478271,-0.1554044485092163,0.002938389778137207,2.6490046977996826,2.1914141178131104,0.24443994462490082,0.8260005712509155,-0.6380395889282227,0.08493848145008087,0.08266913890838623,-1.6585190296173096,0.10107886791229248,0.8970733880996704,-0.45880353450775146,-0.21609777212142944,-1.000400424003601,0.3639511466026306,0.539987325668335,0.7931308746337891,1.1088004112243652,1.4627797603607178,1.509662389755249,0.7920390367507935,1.2409471273422241,-0.16620728373527527,-0.5101699829101562,1.1007699966430664,1.368872046470642,0.8851649165153503,0.3509472906589508,0.7547051906585693,-0.32558807730674744,-1.390580654144287,0.252526193857193,-0.1847108006477356,0.18086925148963928,0.39902281761169434,0.7845038175582886,-0.15739946067333221,0.32608526945114136,-1.3833203315734863 -2988,-0.15969961881637573,-1.379992961883545,-0.9658362865447998,0.19446954131126404,-0.9856994152069092,-0.1649666130542755,-0.20490074157714844,-1.3131093978881836,0.5155365467071533,1.10892915725708,-1.207067608833313,-0.9281789064407349,0.8016591668128967,-0.13237601518630981,2.014716386795044,0.17945894598960876,0.477274626493454,-0.3251045346260071,-0.3046328127384186,-0.3062717318534851,1.6504486799240112,-0.20050381124019623,0.11985182762145996,0.8010888695716858,-0.4302622377872467,-1.3286702632904053,0.015167802572250366,0.6473991870880127,-0.3555903434753418,-0.6245931386947632,-0.4215383529663086,0.5122644901275635,0.7760908007621765,-0.5037463307380676,0.051326632499694824,0.24710708856582642,-0.35583004355430603,-0.2553286552429199,-0.6630602478981018,-0.36404699087142944,2.946265935897827,-0.07160425186157227,-0.07609665393829346,-0.418578565120697,1.0427124500274658,-1.0332204103469849,-0.8331801891326904,0.5909263491630554,0.06837195158004761,-1.9779677391052246,-0.17051094770431519,0.40849024057388306,-0.6213513612747192,-0.17989659309387207,0.11018961668014526,0.636159360408783,0.10775649547576904,-1.099761962890625,0.18171542882919312,-1.5382862091064453,1.4122618436813354,-1.7934565544128418,0.07880473136901855,-0.0936296284198761,-0.9028329849243164,0.6459656953811646,1.203110694885254,0.6972294449806213,0.526287853717804,-0.4572731852531433,0.444341778755188,0.6011330485343933,-0.029456347227096558,-0.9857728481292725,-2.6005866527557373,-0.5109933018684387,0.12042637169361115,0.8107924461364746,-1.4472416639328003,-0.45149707794189453,-1.0439084768295288,-1.311649203300476,0.6977771520614624,1.0452088117599487,-0.6662504076957703,0.20298364758491516,2.159045696258545,-0.35620176792144775,-0.2020382583141327,0.12132108211517334,1.4168930053710938,-0.05387395620346069,0.345761775970459,-0.331743061542511,1.4517107009887695,-1.1049968004226685,1.3557358980178833,0.09290745854377747,0.14795434474945068,-1.0823355913162231,-0.613857090473175,0.18120482563972473,-0.6065736413002014,-1.1639530658721924,-0.2943173050880432,-0.5394747853279114,-0.3037465810775757,0.37703055143356323,-0.5624473094940186,-0.9209637641906738,1.3143086433410645,-0.3424977958202362,-1.83712637424469,0.18250152468681335,-0.4156993627548218,1.719398021697998,0.9239863157272339,0.21812495589256287,-1.372912049293518,0.7875900268554688,-1.1419800519943237,-0.9866188764572144,0.5023374557495117,0.26836884021759033,-0.15502870082855225,-1.1861763000488281,0.12044529616832733,-1.2912300825119019,0.5611770153045654,0.15722939372062683,0.7334892749786377,0.827735424041748,1.0403963327407837,2.1784491539001465,0.8095839023590088,1.3116239309310913,-0.12318253517150879,-0.724623441696167,0.3780043125152588,-2.7206711769104004,-0.3701220452785492,1.5075278282165527,1.7241252660751343,-1.0920528173446655,-1.71992826461792,-0.11350870132446289,0.29083508253097534,0.7167689800262451,-0.08627165853977203,-1.6231557130813599,1.6386148929595947,-0.541937530040741,-0.04307997226715088,-1.4959542751312256,0.7948746085166931,1.8830677270889282,0.25246813893318176,-0.46064648032188416,0.2595489025115967,0.8058784008026123,1.254319667816162,0.7536999583244324,0.42247313261032104,1.6553778648376465,-1.4474003314971924,-0.5876611471176147,-0.6105053424835205,-1.0470631122589111,-0.38194164633750916,0.6148461103439331,-1.7763453722000122,-1.129216194152832,-1.182431697845459,-1.258955717086792,-0.24802735447883606,-0.42616012692451477,2.1870837211608887,-2.206185817718506,-1.4793124198913574,0.40695708990097046,1.8936150074005127,-0.6970169544219971,1.7744650840759277,-0.3176153302192688,-0.684461772441864,-1.208716869354248,-0.6549084186553955,-0.956472635269165,-1.082432746887207,1.1438350677490234,1.7296700477600098,1.127707600593567,1.0780093669891357,0.4857432246208191,0.16005012392997742,0.03937065601348877,0.3366607427597046,-0.3524053990840912,-0.47485411167144775,-0.19285714626312256,-1.6882169246673584,2.8454504013061523,0.316916823387146,0.6613888144493103,1.0923311710357666,-0.05363571643829346,0.5416698455810547,1.5820302963256836,-0.5180875062942505,0.002938389778137207,2.6490046977996826,2.1914141178131104,-0.09600554406642914,0.8260005712509155,-0.6380395889282227,0.08493848145008087,0.49979057908058167,-1.6585190296173096,0.10107886791229248,1.3480418920516968,-0.45880353450775146,-0.21609777212142944,-1.000400424003601,0.3639511466026306,1.296231746673584,0.7931308746337891,1.1088004112243652,1.7841095924377441,1.351669192314148,0.7127234935760498,1.2409471273422241,-0.16620728373527527,-0.5101699829101562,1.2346824407577515,1.168597936630249,0.8851649165153503,-0.18897542357444763,0.7547051906585693,-0.32558807730674744,-1.390580654144287,0.252526193857193,-0.1847108006477356,0.18086925148963928,0.39902281761169434,0.7845038175582886,-0.15739946067333221,0.32608526945114136,-1.3833203315734863 -2989,-0.15969961881637573,-1.379992961883545,-0.9658362865447998,0.19446954131126404,-0.9856994152069092,-0.19486096501350403,-0.20490074157714844,-1.21311616897583,0.5155365467071533,1.10892915725708,-1.207067608833313,-0.9281789064407349,0.8016591668128967,-0.7085791826248169,1.3542914390563965,0.17945894598960876,0.477274626493454,-0.009808361530303955,-0.3046328127384186,-0.3062717318534851,1.6504486799240112,-0.20050381124019623,0.11985182762145996,0.8010888695716858,-0.611768901348114,-1.103253722190857,0.015167802572250366,0.6473991870880127,-0.26595503091812134,-0.6245931386947632,-0.32494843006134033,0.5122644901275635,0.7760908007621765,-0.4561404585838318,0.051326632499694824,0.24710708856582642,-0.35583004355430603,-0.2813069820404053,-0.6630602478981018,-0.36404699087142944,2.946265935897827,-0.4434378743171692,-0.44746577739715576,-0.418578565120697,0.6278975009918213,-1.0332204103469849,-0.8331801891326904,0.5909263491630554,0.25950658321380615,-1.9779677391052246,-0.36198878288269043,0.40849024057388306,-0.6213513612747192,-0.18886950612068176,-0.1579923927783966,0.636159360408783,0.10775649547576904,-1.099761962890625,0.18171542882919312,-1.5382862091064453,1.4122618436813354,-1.7934565544128418,-0.2838566303253174,-0.041745979338884354,-0.9028329849243164,0.6459656953811646,1.203110694885254,0.9852679967880249,0.526287853717804,-0.4572731852531433,0.444341778755188,1.1467750072479248,-0.10500364750623703,-1.3885753154754639,-2.6005866527557373,-0.5154101848602295,0.12042637169361115,1.372558355331421,-1.4472416639328003,-0.4793698787689209,-1.1585023403167725,-1.311649203300476,0.6977771520614624,1.0452088117599487,-0.6662504076957703,0.20298364758491516,2.159045696258545,-0.35620176792144775,-0.2020382583141327,-0.0933331847190857,1.4168930053710938,-0.05387395620346069,0.20383325219154358,-0.331743061542511,1.5267858505249023,-1.2913380861282349,1.3557358980178833,0.09290745854377747,0.14795434474945068,-1.0823355913162231,-0.613857090473175,-0.2422361969947815,-0.6065736413002014,-1.0545066595077515,-0.2943173050880432,-0.5394747853279114,-0.44531548023223877,0.37703055143356323,-0.5624473094940186,-0.9209637641906738,1.3143086433410645,-0.3424977958202362,-1.83712637424469,0.18250152468681335,0.195855975151062,2.1612894535064697,0.9239863157272339,0.21812495589256287,-1.372912049293518,-0.9474351406097412,-1.1419800519943237,-0.9866188764572144,0.5023374557495117,0.26836884021759033,-0.15502870082855225,-1.3928449153900146,0.12044529616832733,-1.2912300825119019,0.5611770153045654,0.0026911795139312744,0.7334892749786377,0.9688348770141602,1.0403963327407837,2.1784491539001465,1.284886121749878,1.3106685876846313,-0.12318253517150879,-0.724623441696167,0.3780043125152588,-2.7206711769104004,-0.3701220452785492,1.5075278282165527,1.573392629623413,-1.0920528173446655,-1.71992826461792,-0.11350870132446289,0.29083508253097534,0.7167689800262451,-0.08627165853977203,-1.6231557130813599,1.6386148929595947,-0.541937530040741,-0.04307997226715088,-1.4959542751312256,0.7948746085166931,1.8830677270889282,0.25246813893318176,-0.2532869279384613,0.2595489025115967,0.8058784008026123,1.6313542127609253,0.7536999583244324,0.42247313261032104,1.3798140287399292,-1.4474003314971924,-0.5876611471176147,-0.6105053424835205,-1.0184236764907837,-0.38194164633750916,0.6148461103439331,-1.7763453722000122,-1.129216194152832,-1.182431697845459,-1.258955717086792,-0.24802735447883606,-0.42616012692451477,2.1870837211608887,-2.206185817718506,-1.4793124198913574,0.40695708990097046,1.8936150074005127,-0.6970169544219971,1.7744650840759277,-0.3176153302192688,-0.684461772441864,-0.6794953346252441,-0.6549084186553955,-0.40203607082366943,-1.082432746887207,0.5051971077919006,1.7296700477600098,1.127707600593567,1.0780093669891357,0.4857432246208191,0.16005012392997742,0.03937065601348877,-0.43540656566619873,-0.4731421172618866,-0.47485411167144775,-0.19285714626312256,-1.6882169246673584,2.8454504013061523,0.6294772624969482,0.7726765871047974,1.0923311710357666,-0.5341312885284424,0.5167227387428284,1.5820302963256836,-0.5180875062942505,0.002938389778137207,2.4578609466552734,2.3892111778259277,-0.09600554406642914,0.8260005712509155,-0.6380395889282227,0.08493848145008087,0.5118861198425293,-2.3224523067474365,0.10107886791229248,1.3480418920516968,-0.45880353450775146,-0.21609777212142944,-0.7218759059906006,0.22117896378040314,-0.234391450881958,0.7345653772354126,1.1088004112243652,1.5377980470657349,1.351669192314148,0.7127234935760498,1.2409471273422241,-0.6547234058380127,-0.35505855083465576,1.1607540845870972,1.0361772775650024,1.2640990018844604,0.0395665317773819,0.7547051906585693,-0.32558807730674744,-1.390580654144287,0.252526193857193,-0.1847108006477356,0.18086925148963928,0.39902281761169434,0.7845038175582886,0.020023614168167114,0.32608526945114136,-1.3833203315734863 -2990,-0.33513563871383667,-1.379992961883545,-0.9658362865447998,0.19446954131126404,-0.9856994152069092,-0.15213532745838165,-0.20490074157714844,-1.21311616897583,0.5155365467071533,1.10892915725708,-1.207067608833313,-1.351397156715393,0.8016591668128967,-0.7085791826248169,1.4455623626708984,0.17945894598960876,0.5308764576911926,-0.009808361530303955,-0.3046328127384186,-0.18348094820976257,1.6504486799240112,-0.20050381124019623,0.11985182762145996,0.8010888695716858,-0.611768901348114,-1.103253722190857,0.015167802572250366,0.8699936866760254,-0.26595503091812134,-0.6245931386947632,-0.32494843006134033,0.5122644901275635,0.7760908007621765,-1.3583370447158813,0.051326632499694824,0.5367664098739624,-0.35583004355430603,0.0169525146484375,-0.6630602478981018,-0.36404699087142944,2.946265935897827,-0.4434378743171692,-0.44746577739715576,-0.7763792276382446,0.6278975009918213,-1.0332204103469849,-0.5404034852981567,0.21332693099975586,0.25950658321380615,-1.930121660232544,-0.36198878288269043,0.40849024057388306,-0.6213513612747192,-0.18886950612068176,-0.1579923927783966,0.636159360408783,0.10775649547576904,-1.08341646194458,0.18171542882919312,-1.6223970651626587,1.4122618436813354,-1.7934565544128418,-0.4163040816783905,-0.041745979338884354,-0.9028329849243164,0.6459656953811646,1.0411981344223022,0.9852679967880249,0.526287853717804,-1.3041770458221436,0.444341778755188,1.1467750072479248,0.3885166645050049,-1.3885753154754639,-2.264193534851074,-0.5154101848602295,0.12042637169361115,0.41306936740875244,-1.4472416639328003,-0.4525565505027771,-1.1585023403167725,-0.7841528058052063,0.4646323323249817,1.0452088117599487,-0.42475181818008423,0.20298364758491516,2.159045696258545,-0.35620176792144775,-0.2020382583141327,-0.0933331847190857,1.4168930053710938,-0.05387395620346069,0.20383325219154358,-0.331743061542511,1.5267858505249023,-1.2913380861282349,1.344775915145874,0.09290745854377747,0.14795434474945068,-0.622779130935669,-1.601864218711853,-0.2422361969947815,-0.6065736413002014,-0.7165991067886353,-0.2943173050880432,-0.5394747853279114,-0.44531548023223877,0.37703055143356323,-0.5624473094940186,-0.8819141387939453,1.3143086433410645,-0.3424977958202362,-1.83712637424469,0.161695197224617,0.195855975151062,2.1612894535064697,0.8754310607910156,0.21812495589256287,-1.372912049293518,-0.11067754030227661,-1.1419800519943237,-0.9866188764572144,0.5023374557495117,0.26836884021759033,-0.15502870082855225,-1.2751636505126953,0.14832842350006104,-1.4669737815856934,0.5611770153045654,-0.2163524329662323,1.0302119255065918,0.9688348770141602,1.0403963327407837,2.1784491539001465,1.284886121749878,1.3106685876846313,-0.12318253517150879,-0.724623441696167,0.3780043125152588,-2.7206711769104004,0.3855779469013214,1.5075278282165527,1.3873482942581177,-1.0920528173446655,-1.71992826461792,-0.11350870132446289,0.29083508253097534,0.2589587867259979,-0.08627165853977203,-1.6231557130813599,1.8560054302215576,-0.541937530040741,-0.04307997226715088,-1.635412335395813,0.7948746085166931,1.8830677270889282,0.25246813893318176,-1.128841519355774,0.2595489025115967,2.27036190032959,1.6313542127609253,0.6374416351318359,0.42247313261032104,1.3798140287399292,-1.0059798955917358,-0.7593060731887817,-0.6105053424835205,-0.21282058954238892,-0.38194164633750916,0.6148461103439331,-1.7763453722000122,-1.129216194152832,-1.1278855800628662,-1.258955717086792,-1.1691453456878662,-0.42616012692451477,2.1870837211608887,-2.206185817718506,-1.4793124198913574,0.40695708990097046,1.8936150074005127,-0.6970169544219971,1.7744650840759277,-0.3176153302192688,-0.684461772441864,0.22177475690841675,-0.6549084186553955,-0.40203607082366943,-1.082432746887207,0.8989516496658325,1.7296700477600098,1.127707600593567,1.0780093669891357,0.24659784138202667,0.16005012392997742,0.03937065601348877,-0.43540656566619873,-0.4731421172618866,-0.47485411167144775,0.19411683082580566,-1.3036072254180908,3.0037758350372314,0.6294772624969482,0.5071196556091309,1.0923311710357666,-0.5341312885284424,0.5167227387428284,1.380620002746582,-0.1373182237148285,-0.7389854192733765,2.4578609466552734,2.1068201065063477,-0.09600554406642914,0.8260005712509155,-0.37623849511146545,0.08493848145008087,0.15887612104415894,-2.3224523067474365,0.10107886791229248,1.3480418920516968,0.017205893993377686,-0.21609777212142944,-1.123185396194458,0.22117896378040314,-0.234391450881958,0.6997402310371399,1.1088004112243652,1.5377980470657349,1.6132516860961914,0.7127234935760498,1.2409471273422241,-0.6547234058380127,-0.35505855083465576,1.1607540845870972,0.9106553196907043,1.2640990018844604,-0.2082837074995041,0.7547051906585693,-1.2297765016555786,-1.390580654144287,0.252526193857193,-0.1847108006477356,0.3103562593460083,0.39902281761169434,0.7845038175582886,0.020023614168167114,-0.3554380536079407,-1.3833203315734863 -2991,-0.33513563871383667,-1.379992961883545,-0.9658362865447998,-0.10473167896270752,-0.9856994152069092,-0.15213532745838165,-0.20490074157714844,-1.21311616897583,0.5155365467071533,1.10892915725708,-1.207067608833313,-1.6663086414337158,0.8016591668128967,-0.5404520630836487,1.6517307758331299,-0.11888870596885681,0.5308764576911926,-0.009808361530303955,0.25495412945747375,0.5227252244949341,1.7506322860717773,-0.20050381124019623,0.11985182762145996,0.8010888695716858,-0.6450591087341309,-1.103253722190857,0.015167802572250366,0.8400930762290955,-0.26595503091812134,-0.6245931386947632,-0.32494843006134033,0.5122644901275635,0.7760908007621765,-1.1493226289749146,0.5565823912620544,0.5262966752052307,-0.35583004355430603,0.0169525146484375,-0.6630602478981018,-0.36404699087142944,2.946265935897827,0.0654757022857666,-0.44746577739715576,-0.03765058517456055,0.6278975009918213,-0.8757915496826172,0.057284772396087646,0.21332693099975586,0.25950658321380615,-1.930121660232544,-0.758320689201355,0.40849024057388306,-0.6213513612747192,-0.08212543278932571,-0.1579923927783966,0.8658762574195862,0.10775649547576904,-1.08341646194458,0.18171542882919312,-1.6223970651626587,1.4122618436813354,-1.7934565544128418,-0.4163040816783905,-0.6021299958229065,-0.9028329849243164,0.6459656953811646,1.0411981344223022,0.9852679967880249,0.526287853717804,-1.3041770458221436,0.444341778755188,1.210026741027832,0.3885166645050049,-1.3885753154754639,-2.4628942012786865,-0.5154101848602295,-0.20365582406520844,0.41306936740875244,-1.579022765159607,-0.4525565505027771,-1.1537582874298096,-0.7841528058052063,0.4646323323249817,1.0452088117599487,-0.26657843589782715,0.20298364758491516,2.159045696258545,-0.35620176792144775,-0.24413441121578217,-0.0933331847190857,1.4168930053710938,-0.05387395620346069,0.20383325219154358,-0.331743061542511,1.333732008934021,-1.1707303524017334,1.797670841217041,0.3709934949874878,0.14795434474945068,-0.622779130935669,-1.740412712097168,-0.2422361969947815,-0.6065736413002014,-0.7165991067886353,-0.2943173050880432,-0.5394747853279114,-1.1819781064987183,-0.11971911787986755,-0.5624473094940186,-0.8819141387939453,1.3143086433410645,-0.4369616210460663,-1.83712637424469,0.1358223259449005,0.195855975151062,1.7340878248214722,0.3556690216064453,0.21812495589256287,-1.372912049293518,-0.11067754030227661,-1.1419800519943237,-0.9866188764572144,0.4541444778442383,0.26836884021759033,0.03961579501628876,-1.0150564908981323,0.14832842350006104,-1.4669737815856934,-0.5638920068740845,-0.2163524329662323,1.4938554763793945,0.9688348770141602,1.0403963327407837,2.076810836791992,1.284886121749878,1.3106685876846313,-0.7821381092071533,-0.724623441696167,0.3780043125152588,-0.6017518043518066,0.3855779469013214,1.5075278282165527,1.3873482942581177,-1.0920528173446655,-1.5270029306411743,-0.11350870132446289,0.6395998001098633,0.2589587867259979,-0.10775047540664673,-1.6231557130813599,1.834061861038208,-0.541937530040741,-0.04307997226715088,-1.635412335395813,0.7948746085166931,2.163740634918213,0.49009475111961365,-1.128841519355774,0.2595489025115967,2.0116355419158936,1.6313542127609253,0.6374416351318359,0.42247313261032104,1.3798140287399292,-1.0059798955917358,-0.7593060731887817,-0.02344876527786255,-0.21282058954238892,-0.38194164633750916,0.6148461103439331,-1.7763453722000122,-1.129216194152832,-1.1278855800628662,-0.8807830810546875,-1.0054974555969238,-0.42616012692451477,2.1870837211608887,-1.9658775329589844,-1.4793124198913574,0.5752257704734802,1.8936150074005127,-0.6970169544219971,1.7618935108184814,-0.3176153302192688,0.9193360209465027,0.22177475690841675,-0.6549084186553955,-0.40203607082366943,-0.753491222858429,0.8989516496658325,1.7296700477600098,1.0984342098236084,0.7099124193191528,0.24659784138202667,0.3291553556919098,-0.3968590795993805,-0.35107293725013733,-0.4731421172618866,-0.47485411167144775,0.19411683082580566,-0.9888327121734619,3.0037758350372314,0.6294772624969482,0.5071196556091309,1.3825130462646484,-0.5341312885284424,0.15377074480056763,1.380620002746582,-0.2454378604888916,-0.7389854192733765,2.260183095932007,2.1068201065063477,-0.09600554406642914,0.8260005712509155,-0.6538172364234924,0.08493848145008087,0.15065762400627136,-2.0797362327575684,0.10107886791229248,1.3480418920516968,0.017205893993377686,-0.21609777212142944,-1.4518356323242188,0.22117896378040314,0.3528820276260376,0.6997402310371399,0.9047581553459167,1.5377980470657349,1.6132516860961914,0.7127234935760498,1.2409471273422241,-0.6547234058380127,-0.35505855083465576,0.9738631248474121,0.9106553196907043,1.2640990018844604,-0.2082837074995041,0.7722163796424866,-1.2297765016555786,-1.2152199745178223,0.252526193857193,-0.1847108006477356,0.328086793422699,0.39902281761169434,0.7845038175582886,0.020023614168167114,-0.3554380536079407,-1.3675686120986938 -2992,-0.33513563871383667,-1.379992961883545,-0.8597748279571533,-0.28125685453414917,-0.9856994152069092,-0.15213532745838165,-0.20490074157714844,-1.21311616897583,-0.16602641344070435,1.10892915725708,-1.440546989440918,-1.6663086414337158,1.3482142686843872,0.2312636375427246,1.96327543258667,0.24633288383483887,0.5308764576911926,-0.009808361530303955,0.3178771138191223,0.5227252244949341,1.635570764541626,-0.20050381124019623,0.11985182762145996,0.8010888695716858,-0.6450591087341309,-1.103253722190857,0.015167802572250366,0.9961221814155579,-0.26595503091812134,-0.6814528107643127,-0.32494843006134033,0.5122644901275635,0.7760908007621765,-1.1493226289749146,0.5565823912620544,0.5262966752052307,-0.35583004355430603,0.0169525146484375,-0.6630602478981018,-0.3876107931137085,2.946265935897827,-0.02609384059906006,-0.8038883209228516,-0.03765058517456055,0.7976845502853394,-0.8757915496826172,0.057284772396087646,0.1914348006248474,0.25950658321380615,-1.930121660232544,-0.758320689201355,0.40849024057388306,-0.6213513612747192,-0.08212543278932571,-0.1579923927783966,0.8658762574195862,-0.6729434132575989,-1.6350421905517578,-0.2926742732524872,-1.6223970651626587,1.4122618436813354,-1.7934565544128418,0.29790928959846497,-0.6021299958229065,-0.9028329849243164,0.6459656953811646,1.0411981344223022,0.9852679967880249,0.2606871724128723,-1.3041770458221436,0.444341778755188,0.3309593200683594,0.0796947181224823,-1.3885753154754639,-2.4628942012786865,-0.5154101848602295,-0.20365582406520844,0.4967822730541229,-1.579022765159607,-0.4525565505027771,-1.1537582874298096,-0.7841528058052063,0.4646323323249817,1.0452088117599487,-0.33066990971565247,0.3480173945426941,2.055741310119629,-0.5182110667228699,0.23097212612628937,-0.0933331847190857,1.4168930053710938,-0.1313926875591278,0.20383325219154358,-1.1358721256256104,1.333732008934021,-1.1707303524017334,1.797670841217041,0.3709934949874878,0.14795434474945068,-0.1617341935634613,-1.4407634735107422,0.4067299962043762,-0.6065736413002014,-0.30812492966651917,-0.2943173050880432,-1.4188199043273926,-1.1819781064987183,-0.11971911787986755,-0.5624473094940186,-0.8819141387939453,1.3143086433410645,0.28412315249443054,-1.83712637424469,0.1358223259449005,0.195855975151062,1.7340878248214722,0.22241203486919403,0.21812495589256287,-1.372912049293518,-0.11067754030227661,0.03382372856140137,-0.9866188764572144,0.4541444778442383,0.26836884021759033,0.03961579501628876,-1.0150564908981323,0.14832842350006104,-1.4669737815856934,0.5565011501312256,-0.2163524329662323,1.4938554763793945,0.9688348770141602,1.5781936645507812,2.076810836791992,1.284886121749878,0.958162784576416,-0.697081983089447,-0.724623441696167,1.661604642868042,-0.6017518043518066,0.3855779469013214,1.8283798694610596,1.0415948629379272,-1.0920528173446655,-1.080186367034912,-0.11350870132446289,0.6395998001098633,0.2648864984512329,-0.18813775479793549,-1.6231557130813599,2.0332276821136475,-0.541937530040741,-0.04307997226715088,-1.635412335395813,0.7948746085166931,2.163740634918213,-0.21992972493171692,-1.128841519355774,0.2595489025115967,2.0116355419158936,1.558097243309021,0.6374416351318359,0.42247313261032104,1.3798140287399292,-1.0059798955917358,-0.7593060731887817,-0.02344876527786255,-0.21282058954238892,-0.38194164633750916,0.8071229457855225,-1.7763453722000122,-1.129216194152832,-1.3278160095214844,-0.8807830810546875,-1.0054974555969238,-0.20220398902893066,2.1870837211608887,-1.9658775329589844,-1.4793124198913574,0.5752257704734802,1.9503896236419678,-0.6970169544219971,1.7618935108184814,-0.3176153302192688,0.9193360209465027,0.22177475690841675,0.08764380216598511,-0.40203607082366943,-0.753491222858429,0.8989516496658325,1.7296700477600098,1.0984342098236084,0.7099124193191528,0.24659784138202667,0.3291553556919098,-0.9559503793716431,-0.14160609245300293,-0.4731421172618866,-0.47485411167144775,0.19411683082580566,-0.9888327121734619,3.0037758350372314,0.21188434958457947,0.5071196556091309,1.3825130462646484,0.050348639488220215,0.15377074480056763,0.4697589874267578,-0.2454378604888916,0.10058224201202393,2.260183095932007,2.1068201065063477,-0.09600554406642914,1.135176181793213,-0.6538172364234924,-0.9049085974693298,0.15065762400627136,-1.7632468938827515,0.04045933857560158,1.3480418920516968,0.017205893993377686,-0.21609777212142944,-1.4518356323242188,0.22117896378040314,0.3528820276260376,0.6997402310371399,0.9047581553459167,1.5377980470657349,1.6132516860961914,0.7127234935760498,0.03579151630401611,-0.30219969153404236,-0.35505855083465576,0.9738631248474121,0.9106553196907043,1.2640990018844604,-0.024569645524024963,0.7722163796424866,-1.2297765016555786,-1.0327842235565186,0.252526193857193,-0.22941800951957703,0.328086793422699,0.39902281761169434,0.7845038175582886,0.020023614168167114,-0.33311688899993896,-1.3675686120986938 -2993,-0.33513563871383667,-1.379992961883545,-0.8597748279571533,-0.28125685453414917,-0.9856994152069092,-0.15213532745838165,0.14729243516921997,-1.21311616897583,-0.16602641344070435,1.3678297996520996,-0.8996049165725708,-0.6962592005729675,0.8143411874771118,0.2312636375427246,1.9028000831604004,0.24633288383483887,0.5308764576911926,-0.009808361530303955,0.3178771138191223,0.5227252244949341,1.9800113439559937,-0.20050381124019623,0.11985182762145996,0.8010888695716858,-0.8023338913917542,-1.5117151737213135,0.015167802572250366,0.9961221814155579,-0.26595503091812134,-0.6814528107643127,-0.05782228708267212,0.5122644901275635,0.7760908007621765,-0.47410064935684204,0.5565823912620544,0.7863866090774536,0.18101909756660461,0.0169525146484375,-0.3169870674610138,-0.18139900267124176,2.9948596954345703,-0.34220460057258606,-0.5723605155944824,-0.09878183156251907,0.7976845502853394,-0.8757915496826172,0.057284772396087646,0.6324383020401001,0.25950658321380615,-1.6078264713287354,-0.758320689201355,0.6560340523719788,-0.8322227597236633,-0.07876040041446686,-0.1579923927783966,0.7910434603691101,-0.6729434132575989,-1.6350421905517578,-0.2926742732524872,-1.6223970651626587,1.4122618436813354,-2.241201639175415,0.29790928959846497,-0.6021299958229065,-0.9028329849243164,1.1362234354019165,1.0383754968643188,0.5416696071624756,0.2606871724128723,-0.7444421052932739,0.444341778755188,0.3309593200683594,0.0796947181224823,-1.3885753154754639,-2.4628942012786865,-0.5154101848602295,-0.20365582406520844,0.3006293475627899,-1.354173183441162,-0.09144052863121033,-1.1537582874298096,-0.7841528058052063,0.4646323323249817,1.0452088117599487,-0.33066990971565247,0.3480173945426941,2.055741310119629,-0.6591691970825195,0.09438459575176239,-0.0933331847190857,1.4168930053710938,-0.1313926875591278,0.47365808486938477,1.066394329071045,1.333732008934021,-0.8623465895652771,1.64625883102417,0.3709934949874878,0.14795434474945068,-0.7167285680770874,-1.4407634735107422,0.6331133842468262,-0.6065736413002014,-0.6322975158691406,-0.2943173050880432,-1.4188199043273926,-1.1819781064987183,-0.11971911787986755,-0.5624473094940186,-0.8819141387939453,1.3143086433410645,0.28412315249443054,-1.83712637424469,0.1358223259449005,0.195855975151062,2.492220401763916,0.5051877498626709,0.21812495589256287,-1.2670466899871826,-0.11067754030227661,0.03382372856140137,-1.6496375799179077,0.4541444778442383,0.26836884021759033,-1.3685392141342163,-1.2667429447174072,-0.1843225061893463,-1.4669737815856934,-0.6030420064926147,-0.6716017723083496,1.4938554763793945,0.9688348770141602,1.5781936645507812,2.076810836791992,0.9034433364868164,0.958162784576416,-0.697081983089447,-0.724623441696167,1.661604642868042,-0.6017518043518066,0.3855779469013214,1.6337776184082031,1.0415948629379272,-1.0920528173446655,-1.080186367034912,0.28112736344337463,0.6395998001098633,-0.0039618611335754395,-0.2472740262746811,-1.5569874048233032,2.0824952125549316,-0.541937530040741,-0.04307997226715088,-1.635412335395813,0.7948746085166931,2.163740634918213,-0.21992972493171692,-1.128841519355774,-0.16064321994781494,2.0116355419158936,1.558097243309021,0.6374416351318359,1.1719977855682373,1.3798140287399292,-1.0059798955917358,-0.7593060731887817,0.05322001874446869,-0.21282058954238892,-0.38194164633750916,0.8071229457855225,-1.7763453722000122,-1.129216194152832,-1.3278160095214844,-0.8807830810546875,-1.0054974555969238,-0.20220398902893066,2.1870837211608887,-1.740436315536499,-1.1626091003417969,0.5752257704734802,1.9503896236419678,-0.6970169544219971,1.7618935108184814,-0.3176153302192688,0.712407648563385,0.22177475690841675,0.08764380216598511,-0.40203607082366943,-0.753491222858429,0.8989516496658325,1.7296700477600098,0.8974617719650269,1.7960731983184814,0.24659784138202667,0.3291553556919098,-0.9559503793716431,-0.14160609245300293,0.024151146411895752,-0.39231401681900024,0.19411683082580566,-0.9888327121734619,3.0037758350372314,0.21188434958457947,0.5071196556091309,1.3406496047973633,0.050348639488220215,0.15377074480056763,0.22594203054904938,-0.2734881043434143,-0.18250197172164917,2.260183095932007,2.1068201065063477,-0.09600554406642914,1.135176181793213,-0.7537233829498291,-0.9049085974693298,0.4701492488384247,-2.240910530090332,0.09773299098014832,1.3480418920516968,0.1155126690864563,-0.21609777212142944,-1.4518356323242188,0.22117896378040314,0.6905052065849304,0.6997402310371399,0.9047581553459167,1.5377980470657349,1.6132516860961914,0.7127234935760498,0.1076706275343895,-0.30219969153404236,-0.35505855083465576,0.9738631248474121,0.9106553196907043,1.4526653289794922,-0.024569645524024963,0.7722163796424866,-1.2297765016555786,-1.7090301513671875,-0.04023987054824829,-0.47042393684387207,0.21888473629951477,0.39902281761169434,0.7845038175582886,0.14242742955684662,-0.04271349310874939,-1.3675686120986938 -2994,-0.33513563871383667,-1.6561088562011719,-0.8597748279571533,-0.28125685453414917,-0.9856994152069092,-0.15213532745838165,0.14729243516921997,-1.21311616897583,-0.16602641344070435,1.3678297996520996,-0.8996049165725708,-0.6962592005729675,0.8143411874771118,0.321391761302948,1.9028000831604004,0.04777200520038605,0.6529631018638611,-0.009808361530303955,0.3178771138191223,0.5227252244949341,1.3941905498504639,0.08472584187984467,-0.0822073370218277,0.8010888695716858,-0.7872695326805115,-1.5117151737213135,0.015167802572250366,1.0118440389633179,-0.26595503091812134,-0.6191940307617188,-0.05782228708267212,0.5122644901275635,0.31057822704315186,-0.48476001620292664,0.5565823912620544,0.7863866090774536,0.46600577235221863,0.0169525146484375,-0.3169870674610138,-0.18139900267124176,2.9948596954345703,-0.34220460057258606,-0.4742043614387512,-0.1989920437335968,0.7976845502853394,-0.8757915496826172,0.057284772396087646,0.6324383020401001,0.25950658321380615,-1.6078264713287354,-0.758320689201355,0.6560340523719788,-0.8322227597236633,-0.07876040041446686,-0.1579923927783966,0.7910434603691101,-0.6729434132575989,-1.4712673425674438,-0.08773741126060486,-1.6223970651626587,1.0883711576461792,-2.241201639175415,0.29790928959846497,-0.30941155552864075,-0.9028329849243164,1.179092526435852,1.0383754968643188,0.5416696071624756,0.2606871724128723,-0.7444421052932739,0.444341778755188,0.8220282793045044,0.0796947181224823,-1.3885753154754639,-2.4628942012786865,-0.5154101848602295,-0.20365582406520844,0.7988763451576233,-1.354173183441162,-0.09144052863121033,-1.1537582874298096,-0.7841528058052063,0.9024165868759155,0.537450909614563,-0.33066990971565247,0.3480173945426941,2.055741310119629,-0.6591691970825195,0.09438459575176239,-0.0933331847190857,1.4168930053710938,-0.1313926875591278,0.47365808486938477,-0.445204496383667,1.333732008934021,-1.2989751100540161,1.3027278184890747,-0.9311714172363281,0.5255059003829956,-0.7167285680770874,-1.4407634735107422,0.33609098196029663,-0.6065736413002014,-0.6322975158691406,-0.2943173050880432,-1.4188199043273926,-1.1819781064987183,-0.11971911787986755,0.18896490335464478,-0.8819141387939453,1.656589388847351,0.28412315249443054,-1.83712637424469,0.1358223259449005,0.195855975151062,2.070239543914795,0.9240362644195557,0.21812495589256287,-1.2670466899871826,0.27484092116355896,0.03382372856140137,-1.6496375799179077,-0.757620096206665,0.26836884021759033,-1.3934828042984009,-1.2667429447174072,-0.1843225061893463,-0.6133065819740295,-0.6030420064926147,-0.6716017723083496,1.4938554763793945,0.9688348770141602,1.5781936645507812,2.076810836791992,0.9034433364868164,0.7036550045013428,-0.697081983089447,-1.2098755836486816,1.661604642868042,-0.6017518043518066,-0.2106315791606903,1.6337776184082031,1.0415948629379272,-1.2185723781585693,-1.080186367034912,0.5083222985267639,0.7009881734848022,-0.0039618611335754395,-0.2472740262746811,-1.5569874048233032,1.888206124305725,-0.541937530040741,-0.04307997226715088,-1.635412335395813,0.7948746085166931,2.163740634918213,-0.21992972493171692,-1.128841519355774,-0.16064321994781494,2.0116355419158936,1.558097243309021,0.6374416351318359,1.1719977855682373,1.3798140287399292,-1.0059798955917358,-0.9285203218460083,0.05322001874446869,-0.21282058954238892,-0.38194164633750916,0.8071229457855225,-1.7763453722000122,-1.129216194152832,-1.1866899728775024,-0.8807830810546875,-1.6053416728973389,-0.20220398902893066,2.1870837211608887,-1.8900485038757324,-0.914777398109436,0.5752257704734802,1.9503896236419678,-0.8161590099334717,1.7618935108184814,-0.3176153302192688,-0.6042676568031311,0.22177475690841675,-0.43361377716064453,0.5780077576637268,-0.753491222858429,0.8989516496658325,1.7296700477600098,0.610552966594696,1.8416072130203247,0.24659784138202667,0.3291553556919098,-0.9559503793716431,-0.14160609245300293,0.024151146411895752,-0.39231401681900024,0.19411683082580566,-0.9888327121734619,2.795409679412842,0.21188434958457947,0.5071196556091309,1.3406496047973633,0.13739927113056183,0.15377074480056763,0.22594203054904938,-0.36605069041252136,-0.32088667154312134,2.260183095932007,2.1068201065063477,-0.7546699047088623,1.135176181793213,-0.8090450763702393,-0.913706362247467,0.15228375792503357,-2.240910530090332,0.09773299098014832,1.202539324760437,0.1155126690864563,-0.641258955001831,-1.4518356323242188,0.22117896378040314,0.6905052065849304,0.26926106214523315,0.9047581553459167,1.5377980470657349,1.6132516860961914,0.7127234935760498,0.846964418888092,-0.30219969153404236,-0.35505855083465576,0.9738631248474121,0.7525771856307983,1.4526653289794922,-0.024569645524024963,0.7722163796424866,-1.2297765016555786,-1.7090301513671875,-0.04023987054824829,0.09264814853668213,0.21888473629951477,0.39902281761169434,0.4800753593444824,0.14242742955684662,0.26201894879341125,-1.3675686120986938 -2995,-0.33513563871383667,-1.6561088562011719,-0.46459802985191345,-0.28125685453414917,-0.9856994152069092,-0.15213532745838165,0.14729243516921997,-1.2565362453460693,0.3590558171272278,1.3678297996520996,-1.062520146369934,-0.6962592005729675,0.8143411874771118,0.321391761302948,1.6460615396499634,0.04777200520038605,0.6529631018638611,-0.009808361530303955,0.3178771138191223,0.5227252244949341,1.3941905498504639,-0.1784353107213974,-0.0822073370218277,0.8270961046218872,-0.9930311441421509,-1.5117151737213135,0.015167802572250366,0.8764638304710388,-0.26595503091812134,-0.6191940307617188,-0.05782228708267212,0.4114389419555664,0.31057822704315186,-0.48476001620292664,0.7709007859230042,0.7863866090774536,-0.10810104012489319,0.0169525146484375,-0.3169870674610138,-0.18139900267124176,2.9948596954345703,0.00909501314163208,-0.4742043614387512,-0.1989920437335968,0.7976845502853394,-0.8757915496826172,0.057284772396087646,0.6324383020401001,0.4710735082626343,-1.824562907218933,-0.758320689201355,0.6560340523719788,-0.8322227597236633,-0.07876040041446686,-0.5214025974273682,0.7910434603691101,-0.6729434132575989,-1.4712673425674438,0.18590441346168518,-0.9334249496459961,1.0883711576461792,-2.241201639175415,0.29790928959846497,-0.30941155552864075,-0.8353204727172852,1.179092526435852,1.0383754968643188,0.8517138361930847,0.31245648860931396,-0.78398597240448,0.444341778755188,0.8220282793045044,0.0796947181224823,-1.3885753154754639,-2.4628942012786865,-0.5154101848602295,-0.2484028935432434,0.6518701314926147,-1.354173183441162,-0.6151105165481567,-1.1537582874298096,-0.6157276034355164,0.9024165868759155,0.537450909614563,-0.33066990971565247,0.3480173945426941,-0.026760339736938477,-0.6591691970825195,0.09438459575176239,-0.0933331847190857,1.4168930053710938,-0.1313926875591278,0.47365808486938477,-0.619992196559906,1.2521506547927856,-1.2989751100540161,1.3027278184890747,-0.32332754135131836,0.5255059003829956,0.260100781917572,-1.4407634735107422,0.33609098196029663,-0.8829067349433899,-0.1719280481338501,-0.5567843914031982,-1.4188199043273926,-1.1819781064987183,-0.11971911787986755,0.18896490335464478,-0.6074277758598328,1.656589388847351,0.28412315249443054,-1.83712637424469,0.1358223259449005,0.195855975151062,1.8360495567321777,0.9240362644195557,0.21812495589256287,-1.2670466899871826,0.27484092116355896,0.03382372856140137,-1.2005317211151123,-0.8296681046485901,0.38677507638931274,-2.0992538928985596,-1.2667429447174072,-0.1843225061893463,-0.6133065819740295,-0.734171986579895,-0.6716017723083496,1.4938554763793945,1.0339757204055786,1.5781936645507812,2.076810836791992,0.9034433364868164,0.6781502962112427,-0.697081983089447,-1.2098755836486816,0.39092063903808594,-0.6017518043518066,-0.2106315791606903,1.6337776184082031,1.0415948629379272,-1.2185723781585693,-0.6911098957061768,0.5083222985267639,0.7637525796890259,-0.0039618611335754395,-0.2472740262746811,-0.9278026819229126,1.5201823711395264,-0.541937530040741,-0.08105979859828949,-0.6554660797119141,0.7948746085166931,2.163740634918213,-0.21992972493171692,-1.3302793502807617,-0.16064321994781494,2.0116355419158936,1.558097243309021,0.4684111475944519,1.1719977855682373,0.8984253406524658,-1.0059798955917358,-0.6104223728179932,0.5661463737487793,-0.6762281656265259,-0.38194164633750916,0.47850343585014343,-1.7763453722000122,-1.129216194152832,-2.104187488555908,-0.8807830810546875,-2.3905997276306152,-0.20220398902893066,2.1870837211608887,-1.871090292930603,-0.914777398109436,0.5752257704734802,1.9503896236419678,-0.8161590099334717,2.2873899936676025,-0.3176153302192688,-0.15484264492988586,0.22177475690841675,-0.68082195520401,0.5780077576637268,-0.753491222858429,0.8989516496658325,1.7296700477600098,1.1274058818817139,1.130345106124878,0.24659784138202667,0.3291553556919098,-0.9559503793716431,-0.23422841727733612,0.024151146411895752,-0.5558474063873291,0.19411683082580566,-0.9888327121734619,2.795409679412842,0.21188434958457947,0.5071196556091309,1.3406496047973633,0.13739927113056183,0.15377074480056763,0.025582224130630493,-0.36605069041252136,-0.32088667154312134,2.260183095932007,2.1068201065063477,-0.4893626570701599,1.135176181793213,-0.8090450763702393,-0.5185837745666504,0.21483761072158813,-2.240910530090332,0.2087882161140442,1.202539324760437,0.1155126690864563,-0.641258955001831,-1.8560616970062256,0.4602557420730591,0.36878275871276855,0.26926106214523315,0.9047581553459167,1.5377980470657349,1.6132516860961914,0.7127234935760498,0.3694562613964081,-0.30219969153404236,-0.25300854444503784,0.6404096484184265,1.575669288635254,1.4526653289794922,-0.30724507570266724,0.3537015914916992,-1.2297765016555786,-1.7090301513671875,-0.04023987054824829,0.09264814853668213,0.5406177639961243,0.39902281761169434,0.3739098310470581,0.14242742955684662,0.26201894879341125,-1.3675686120986938 -2996,-0.33513563871383667,-1.6561088562011719,-0.46459802985191345,-0.28125685453414917,-0.9856994152069092,-0.15647582709789276,0.14729243516921997,-1.2565362453460693,0.3590558171272278,1.3621100187301636,-1.062520146369934,-0.6962592005729675,0.8982309103012085,0.321391761302948,1.6460615396499634,0.04777200520038605,0.5637209415435791,-0.009808361530303955,0.3178771138191223,0.5227252244949341,1.464909315109253,-0.1784353107213974,-0.0822073370218277,0.8270961046218872,-0.9930311441421509,-1.5117151737213135,0.015167802572250366,0.8764638304710388,0.043285518884658813,-0.6191940307617188,-0.26502668857574463,0.25320643186569214,0.31057822704315186,-0.4612431824207306,0.7709007859230042,0.7863866090774536,-0.10810104012489319,0.0169525146484375,-0.3169870674610138,-0.18139900267124176,2.7669966220855713,0.00909501314163208,-0.4742043614387512,-0.3573022186756134,0.7976845502853394,-0.6432445049285889,0.057284772396087646,0.6324383020401001,0.8937973976135254,-2.0822274684906006,-1.522387146949768,0.7673565745353699,-0.421076238155365,-0.07876040041446686,-0.5214025974273682,0.7910434603691101,-0.6729434132575989,-1.4712673425674438,0.10568144917488098,-0.9854015707969666,1.0883711576461792,-2.1639585494995117,0.29790928959846497,-0.2037731111049652,-0.8353204727172852,1.179092526435852,1.0383754968643188,0.8517138361930847,0.23579086363315582,-0.8077263236045837,0.444341778755188,0.8220282793045044,0.0796947181224823,-1.3885753154754639,-2.2608377933502197,-0.5154101848602295,-0.0378982275724411,0.6518701314926147,-1.354173183441162,-0.6151105165481567,-0.5592071413993835,-0.6157276034355164,0.6507483720779419,0.7729156017303467,-0.6724392175674438,0.3480173945426941,-0.7796486020088196,-0.6591691970825195,0.09438459575176239,-0.0933331847190857,1.4168930053710938,1.2868372201919556,0.47365808486938477,-0.619992196559906,1.5588351488113403,-1.2989751100540161,1.3027278184890747,-0.32332754135131836,0.6978952288627625,0.260100781917572,-1.1516300439834595,0.33609098196029663,-0.22221970558166504,-0.1719280481338501,-0.5567843914031982,-1.4188199043273926,-1.1819781064987183,-0.11971911787986755,-0.20527958869934082,-0.6074277758598328,1.2189483642578125,0.28412315249443054,-1.83712637424469,0.2926256060600281,0.2688552737236023,1.8360495567321777,0.9240362644195557,0.21812495589256287,-1.2670466899871826,-0.14161822199821472,0.03382372856140137,-1.2005317211151123,-0.42647597193717957,1.0368695259094238,-2.3853678703308105,-1.2667429447174072,-0.1843225061893463,-0.6133065819740295,-0.13649815320968628,-0.6716017723083496,1.4938554763793945,1.0339757204055786,1.5781936645507812,1.8219413757324219,0.8199023008346558,0.6781502962112427,-0.697081983089447,-1.2098755836486816,0.39092063903808594,-1.238204002380371,-0.025190383195877075,1.30322265625,1.0415948629379272,-1.2185723781585693,-0.6911098957061768,-0.47936248779296875,0.7637525796890259,-0.0039618611335754395,-0.20122911036014557,-0.9278026819229126,1.5201823711395264,-0.541937530040741,-0.08105979859828949,-0.6554660797119141,0.7948746085166931,1.8916172981262207,-0.21992972493171692,-1.3302793502807617,-0.011455118656158447,0.8619897365570068,1.558097243309021,0.4684111475944519,1.2653405666351318,0.8984253406524658,-1.1494234800338745,-0.6104223728179932,0.15476951003074646,-0.6762281656265259,0.023332983255386353,0.46891987323760986,-1.7763453722000122,-0.8535454273223877,-2.0526554584503174,-1.4512121677398682,-2.3905997276306152,-0.20220398902893066,2.1870837211608887,-1.7509812116622925,-1.1396362781524658,0.5752257704734802,1.9503896236419678,-0.8161590099334717,2.2873899936676025,-0.3176153302192688,-0.15484264492988586,0.22177475690841675,-0.6661249399185181,0.5780077576637268,-0.753491222858429,1.0470860004425049,1.7296700477600098,1.1274058818817139,1.130345106124878,0.24659784138202667,0.3291553556919098,-1.4402573108673096,-0.47143036127090454,0.024151146411895752,-0.5558474063873291,0.19411683082580566,-0.9888327121734619,3.247081995010376,0.21188434958457947,0.5071196556091309,1.3406496047973633,0.13739927113056183,0.203322172164917,0.025582224130630493,-0.36605069041252136,-0.32088667154312134,2.260183095932007,1.7206048965454102,-0.4893626570701599,0.3830508589744568,-0.4002799093723297,-0.5185837745666504,0.21483761072158813,-2.240910530090332,0.2087882161140442,0.6246572136878967,0.1155126690864563,-0.641258955001831,-1.8560616970062256,0.4602557420730591,0.36878275871276855,0.26926106214523315,0.48760849237442017,1.5377980470657349,1.6132516860961914,0.7127234935760498,0.3694562613964081,-0.30219969153404236,0.12215611338615417,0.6404096484184265,0.7494778633117676,1.4526653289794922,-0.30724507570266724,0.20161749422550201,-1.2297765016555786,-1.7090301513671875,-0.04023987054824829,-0.9050998687744141,0.5406177639961243,0.39902281761169434,0.3739098310470581,0.14242742955684662,0.26201894879341125,-1.3675686120986938 -2997,-0.33513563871383667,-1.6561088562011719,-0.46459802985191345,-0.28125685453414917,-0.9856994152069092,-0.15647582709789276,0.14729243516921997,-1.2565362453460693,0.3590558171272278,1.3621100187301636,-1.062520146369934,-0.6962592005729675,0.8982309103012085,-0.10258442163467407,1.6460615396499634,0.04777200520038605,0.03369241952896118,-0.009808361530303955,0.17673790454864502,0.5227252244949341,1.4823684692382812,-0.1784353107213974,-0.0822073370218277,0.8270961046218872,-0.9930311441421509,-1.8482179641723633,0.23141172528266907,0.8764638304710388,0.043285518884658813,-0.6191940307617188,-0.26502668857574463,0.25320643186569214,0.31057822704315186,-0.4416186809539795,0.7709007859230042,0.7863866090774536,-0.10810104012489319,0.0169525146484375,-0.3169870674610138,-0.18139900267124176,2.7669966220855713,-0.22857791185379028,-0.4742043614387512,-0.3573022186756134,0.7976845502853394,-0.6432445049285889,0.057284772396087646,0.6579496264457703,0.8937973976135254,-2.0822274684906006,-0.8065892457962036,0.7673565745353699,-0.421076238155365,-0.07876040041446686,-0.5214025974273682,0.7910434603691101,-0.926552414894104,-1.2057156562805176,0.31812894344329834,-0.9854015707969666,1.0883711576461792,-2.1639585494995117,0.29790928959846497,-0.2037731111049652,-0.2946958541870117,1.179092526435852,1.0383754968643188,0.8517138361930847,0.3703550100326538,-0.8077263236045837,0.444341778755188,0.8220282793045044,0.2962470054626465,-0.7512238621711731,-2.196089506149292,-0.5154101848602295,-0.0378982275724411,0.6518701314926147,-1.354173183441162,-0.6151105165481567,-0.7280774712562561,-0.7099378705024719,1.1209100484848022,0.7729156017303467,-0.6724392175674438,0.3480173945426941,0.4517633318901062,-0.6145309209823608,0.09438459575176239,-0.00782417505979538,1.5450339317321777,1.006028652191162,0.47365808486938477,-1.0089564323425293,1.8072316646575928,-1.2989751100540161,1.3872711658477783,-0.8478382229804993,-0.010289251804351807,0.004733681678771973,-1.1516300439834595,0.33609098196029663,-0.6615444421768188,-0.1719280481338501,-0.5567843914031982,-1.4188199043273926,-1.1819781064987183,0.14684158563613892,-0.20527958869934082,-0.6074277758598328,1.1261276006698608,0.28412315249443054,-1.83712637424469,0.2926256060600281,-0.10885453224182129,1.8360495567321777,0.9240362644195557,0.21812495589256287,-1.2670466899871826,-0.09402204304933548,0.03382372856140137,-1.1678409576416016,-0.42647597193717957,1.0368695259094238,-2.3853678703308105,-1.2667429447174072,-0.1843225061893463,-0.6280140280723572,-0.13649815320968628,-0.6716017723083496,1.4938554763793945,1.0339757204055786,1.5781936645507812,1.8219413757324219,1.3239754438400269,0.6781502962112427,-0.697081983089447,-1.2098755836486816,0.39092063903808594,-0.9446927309036255,-0.025190383195877075,1.30322265625,1.0297996997833252,-1.2185723781585693,-0.6911098957061768,-0.47936248779296875,0.7637525796890259,0.266772985458374,-0.20122911036014557,-0.9278026819229126,1.5201823711395264,-0.541937530040741,0.28513115644454956,-0.6554660797119141,0.1823134422302246,1.8916172981262207,-0.21992972493171692,-1.3302793502807617,-0.48466333746910095,0.8619897365570068,1.63923180103302,-0.3190076947212219,1.2653405666351318,1.4781434535980225,-1.1494234800338745,-0.5353860855102539,0.15476951003074646,-0.6762281656265259,0.023332983255386353,0.24420931935310364,-1.7763453722000122,-0.8535454273223877,-2.0526554584503174,-2.0818324089050293,-2.3905997276306152,-0.20220398902893066,2.1870837211608887,-1.7509812116622925,-1.1396362781524658,0.5752257704734802,1.9503896236419678,-0.8161590099334717,2.4542226791381836,-0.5108335018157959,-0.15484264492988586,0.36136627197265625,-0.6661249399185181,0.5780077576637268,-0.753491222858429,1.0470860004425049,1.1971931457519531,1.1274058818817139,1.130345106124878,0.19319850206375122,0.3291553556919098,-1.127567172050476,-0.47143036127090454,-0.007067486643791199,-0.009003996849060059,0.19411683082580566,-0.3831285834312439,3.247081995010376,0.43265581130981445,0.5071196556091309,1.3406496047973633,0.13739927113056183,0.203322172164917,0.4607502818107605,-0.36605069041252136,0.0333838164806366,2.208815336227417,1.7206048965454102,-0.4893626570701599,0.3830508589744568,0.4008618891239166,-0.5185837745666504,0.5391497015953064,-2.102994918823242,0.2087882161140442,1.3489737510681152,0.1155126690864563,-0.641258955001831,-1.9007896184921265,0.4602557420730591,0.36878275871276855,0.26926106214523315,1.0912256240844727,1.4398025274276733,1.6132516860961914,0.549383819103241,0.48209282755851746,-0.30219969153404236,0.12215611338615417,0.6404096484184265,0.7494778633117676,1.4526653289794922,-0.30724507570266724,0.746382474899292,-1.2297765016555786,-1.7090301513671875,-0.04023987054824829,-0.9816908836364746,-0.9701961874961853,0.39902281761169434,0.3739098310470581,0.14242742955684662,0.26201894879341125,-1.3675686120986938 -2998,-0.3068232238292694,-1.873725414276123,-0.46459802985191345,-0.28125685453414917,-0.9856994152069092,-0.15647582709789276,0.14729243516921997,-0.7714349627494812,0.3590558171272278,1.248467206954956,-1.062520146369934,-0.6962592005729675,0.8982309103012085,-0.07107293605804443,1.6460615396499634,0.04777200520038605,0.03369241952896118,0.3830142021179199,0.17673790454864502,0.5227252244949341,1.4823684692382812,-0.5594450831413269,-0.0822073370218277,0.8270961046218872,-0.5903829336166382,-2.152170181274414,0.23141172528266907,0.8764638304710388,0.043285518884658813,-0.6191940307617188,-0.26502668857574463,0.25320643186569214,0.31057822704315186,-0.4416186809539795,0.7709007859230042,0.7863866090774536,0.2765595316886902,0.0169525146484375,-0.3169870674610138,-0.18139900267124176,2.7669966220855713,-0.22857791185379028,-0.4742043614387512,-0.3573022186756134,0.7976845502853394,-0.6432445049285889,0.057284772396087646,0.6579496264457703,0.394685298204422,-1.6284966468811035,-0.8065892457962036,0.7673565745353699,-0.421076238155365,0.11090505123138428,-0.5386829972267151,0.7910434603691101,-0.926552414894104,-1.2057156562805176,0.31812894344329834,-0.6359441876411438,1.0883711576461792,-2.1639585494995117,0.29790928959846497,-0.2037731111049652,-0.15887583792209625,1.21742844581604,1.0383754968643188,0.8517138361930847,0.3703550100326538,-0.8077263236045837,0.444341778755188,0.8220282793045044,0.24109014868736267,-0.7512238621711731,-2.196089506149292,0.01963329315185547,-0.0378982275724411,0.6518701314926147,-1.2332065105438232,-0.8455469608306885,-0.7280774712562561,-0.7099378705024719,1.1209100484848022,0.7729156017303467,-0.6724392175674438,0.4674549698829651,0.4159461557865143,-0.6145309209823608,0.09438459575176239,-0.00782417505979538,1.5450339317321777,1.006028652191162,0.47365808486938477,-1.0089564323425293,1.8072316646575928,-1.2989751100540161,1.3872711658477783,-0.5028306245803833,0.5545594096183777,0.004733681678771973,-1.1516300439834595,-0.012423396110534668,-0.6615444421768188,-0.1719280481338501,-0.5567843914031982,-1.3977080583572388,-1.1819781064987183,0.14684158563613892,-0.20527958869934082,-1.0944364070892334,1.1261276006698608,0.28412315249443054,-1.83712637424469,0.1734863817691803,-0.10885453224182129,1.8360495567321777,0.9240362644195557,0.21812495589256287,-1.2670466899871826,0.2247229814529419,-0.3199927508831024,-1.1678409576416016,0.3016151487827301,1.0368695259094238,-2.3853678703308105,-1.2667429447174072,-0.1843225061893463,-0.6280140280723572,-0.13649815320968628,-0.6716017723083496,1.3983328342437744,0.7819927930831909,1.5781936645507812,1.8219413757324219,1.3239754438400269,0.6781502962112427,-0.697081983089447,-0.6471554040908813,0.39092063903808594,-0.9446927309036255,-0.025190383195877075,1.30322265625,1.0297996997833252,-1.2185723781585693,-0.6911098957061768,-0.47936248779296875,0.7637525796890259,0.266772985458374,-0.20122911036014557,-0.8361731767654419,1.5201823711395264,0.19592344760894775,0.28513115644454956,-0.6554660797119141,0.3214237093925476,1.8118735551834106,-0.21992972493171692,-1.3302793502807617,-0.6414850950241089,0.8619897365570068,1.63923180103302,-0.7121802568435669,1.2653405666351318,1.4781434535980225,-0.8637052774429321,-0.5353860855102539,0.15476951003074646,-0.08365029096603394,0.023332983255386353,0.20601718127727509,-1.7763453722000122,-0.8535454273223877,-2.0526554584503174,-2.0818324089050293,-2.3905997276306152,-0.22166657447814941,1.6336042881011963,-2.7098114490509033,-1.1396362781524658,0.5752257704734802,1.9503896236419678,-0.8161590099334717,2.4542226791381836,-0.674153208732605,-0.15484264492988586,0.36136627197265625,-0.6661249399185181,-0.6422129273414612,-0.753491222858429,-0.29666781425476074,2.0289952754974365,1.1274058818817139,1.2523672580718994,0.19319850206375122,-0.052795737981796265,-1.127567172050476,-0.47143036127090454,-0.007067486643791199,-0.009003996849060059,0.19411683082580566,-0.3831285834312439,3.247081995010376,0.43265581130981445,0.5071196556091309,1.3406496047973633,0.13739927113056183,0.203322172164917,0.4607502818107605,-0.7030750513076782,0.35187047719955444,2.3154680728912354,1.904657244682312,-0.4893626570701599,0.3830508589744568,0.4008618891239166,-0.5185837745666504,0.5391497015953064,-2.102994918823242,0.2087882161140442,1.3489737510681152,0.5489600896835327,-0.641258955001831,-1.0314662456512451,0.4602557420730591,0.36878275871276855,0.26926106214523315,1.0912256240844727,1.4938024282455444,1.236558198928833,0.9459365606307983,0.48209282755851746,-0.30219969153404236,0.12215611338615417,0.6404096484184265,0.7494778633117676,1.0592234134674072,-0.26697200536727905,0.746382474899292,-1.2297765016555786,-1.7090301513671875,-0.04023987054824829,-0.9816908836364746,-0.9701961874961853,0.39902281761169434,0.3739098310470581,-0.04252104461193085,0.26201894879341125,-1.3675686120986938 -2999,-0.5443270802497864,-1.873725414276123,-1.6556212902069092,-0.28125685453414917,-0.9856994152069092,0.2078743427991867,-0.0324660986661911,-1.7228615283966064,0.3590558171272278,1.248467206954956,-1.062520146369934,-0.6962592005729675,0.8982309103012085,-0.07107293605804443,1.6460615396499634,0.04777200520038605,0.03369241952896118,0.3830142021179199,0.17673790454864502,-0.1136026382446289,1.4823684692382812,-0.5594450831413269,-0.0822073370218277,0.7719774842262268,-0.19172942638397217,-2.152170181274414,0.23141172528266907,0.7488412261009216,-0.5025249719619751,-0.6191940307617188,-0.26502668857574463,0.89708411693573,0.12593641877174377,-0.621968686580658,0.7709007859230042,0.7863866090774536,-0.17816418409347534,0.0169525146484375,-0.3169870674610138,-0.48872435092926025,2.7669966220855713,-0.22857791185379028,-0.4742043614387512,-0.3573022186756134,0.6385105848312378,-0.6432445049285889,0.057284772396087646,0.6579496264457703,0.394685298204422,-2.4587793350219727,-0.8065892457962036,0.7673565745353699,-0.421076238155365,0.11090505123138428,-0.31757739186286926,0.7910434603691101,-0.926552414894104,-1.1649421453475952,0.31812894344329834,-1.0968999862670898,1.4648115634918213,-2.2271313667297363,0.615202784538269,-0.2037731111049652,-0.15887583792209625,0.8810619711875916,1.0383754968643188,0.8517138361930847,0.3703550100326538,-0.8077263236045837,0.444341778755188,0.8220282793045044,0.10940425097942352,-0.7512238621711731,-2.196089506149292,0.01963329315185547,0.3986114263534546,0.7147325277328491,-1.2332065105438232,-0.8455469608306885,-0.7280774712562561,-1.0093574523925781,1.2611311674118042,0.7729156017303467,-0.3323913514614105,0.4674549698829651,0.4159461557865143,-0.6145309209823608,0.09438459575176239,0.1845262050628662,0.925997257232666,1.006028652191162,0.47365808486938477,-0.2991577386856079,1.8072316646575928,-1.2989751100540161,1.3872711658477783,-0.5474238395690918,0.6437035799026489,0.004733681678771973,-0.1787431240081787,0.29375964403152466,-0.6615444421768188,-0.1719280481338501,-0.5567843914031982,-1.4635785818099976,-1.1819781064987183,0.14684158563613892,-0.3473926782608032,-1.0944364070892334,1.1261276006698608,0.659079372882843,-1.83712637424469,0.14628657698631287,-0.10885453224182129,1.8360495567321777,0.6774017214775085,0.21812495589256287,-1.2670466899871826,0.2247229814529419,-0.3199927508831024,-1.1678409576416016,0.3016151487827301,1.0368695259094238,-2.3853678703308105,-1.2667429447174072,-0.12753307819366455,-0.6475604176521301,-0.13649815320968628,-0.6716017723083496,1.1719250679016113,0.7819927930831909,1.5781936645507812,1.8219413757324219,1.3239754438400269,0.689919114112854,-0.697081983089447,-0.6471554040908813,0.39092063903808594,-0.6139262914657593,-0.025190383195877075,0.8845474720001221,1.0297996997833252,-1.2185723781585693,-0.6911098957061768,-0.6094071269035339,0.7637525796890259,0.36489158868789673,-0.37235113978385925,-0.8361731767654419,1.1509854793548584,0.19592344760894775,0.2727215886116028,-0.6554660797119141,1.0424810647964478,1.8118735551834106,-0.5741537809371948,-1.4060351848602295,-0.6414850950241089,0.8619897365570068,1.63923180103302,-0.2416056990623474,0.2107757329940796,1.4781434535980225,-0.8637052774429321,-0.5353860855102539,-0.4903295338153839,-0.08365029096603394,0.023332983255386353,0.20601718127727509,-1.8002763986587524,-0.8535454273223877,-2.0526554584503174,-2.0818324089050293,-2.3905997276306152,-0.22166657447814941,1.6336042881011963,-2.7098114490509033,-1.1396362781524658,0.5752257704734802,1.9503896236419678,-0.8931648135185242,2.032892942428589,-0.674153208732605,-0.15484264492988586,0.36136627197265625,-0.6661249399185181,-1.343487024307251,-0.753491222858429,-0.29666781425476074,2.0289952754974365,1.1274058818817139,1.2523672580718994,0.19319850206375122,-0.052795737981796265,-0.22007536888122559,-0.47143036127090454,-0.007067486643791199,-0.009003996849060059,0.19411683082580566,-0.3831285834312439,3.247081995010376,0.43265581130981445,0.5071196556091309,1.3406496047973633,0.13739927113056183,0.203322172164917,0.4607502818107605,-0.9831889867782593,-1.2195866107940674,2.3154680728912354,1.817850947380066,-0.4893626570701599,0.3830508589744568,0.4008618891239166,-0.5185837745666504,0.20537123084068298,-1.9990633726119995,0.2087882161140442,1.3489737510681152,0.5489600896835327,-0.641258955001831,-1.0314662456512451,0.4602557420730591,0.36878275871276855,0.26926106214523315,1.0912256240844727,1.4938024282455444,0.7463086843490601,0.9459365606307983,0.48209282755851746,-0.30219969153404236,0.12215611338615417,0.6404096484184265,1.4282463788986206,1.0592234134674072,-0.26697200536727905,0.746382474899292,-1.2297765016555786,-1.9114124774932861,-0.04023987054824829,-0.9816908836364746,-0.9701961874961853,0.39902281761169434,0.3739098310470581,-0.04252104461193085,0.26201894879341125,-0.7799420356750488 -3000,-0.5443270802497864,-1.873725414276123,-1.8614195585250854,-0.28125685453414917,-0.9856994152069092,0.2078743427991867,-0.0324660986661911,-1.7228615283966064,0.3590558171272278,1.248467206954956,-1.062520146369934,-1.1460449695587158,0.8982309103012085,-0.07107293605804443,1.6460615396499634,0.5939381122589111,0.03369241952896118,0.3830142021179199,0.17673790454864502,-0.1136026382446289,1.4823684692382812,-0.5594450831413269,-0.0822073370218277,0.7719774842262268,-0.19172942638397217,-2.152170181274414,0.23141172528266907,0.6266191005706787,-0.5025249719619751,-0.6191940307617188,-0.26502668857574463,0.89708411693573,0.8866900205612183,-0.621968686580658,0.7709007859230042,0.7863866090774536,-0.17816418409347534,0.0169525146484375,-0.3169870674610138,-0.48872435092926025,2.7669966220855713,-0.22857791185379028,-0.4742043614387512,-0.3573022186756134,0.6385105848312378,-0.6432445049285889,0.057284772396087646,0.6579496264457703,0.06341421604156494,-2.4587793350219727,-0.8065892457962036,0.7673565745353699,-0.421076238155365,0.11090505123138428,-0.11065170168876648,0.7910434603691101,-0.49106889963150024,-1.1649421453475952,0.11698046326637268,-1.0968999862670898,1.4064464569091797,-2.2271313667297363,0.615202784538269,-0.2312043309211731,-0.15887583792209625,0.8810619711875916,1.0383754968643188,0.8517138361930847,0.3703550100326538,-1.2452888488769531,0.444341778755188,0.8220282793045044,0.10940425097942352,-0.7512238621711731,-2.2789273262023926,0.01963329315185547,0.48201659321784973,0.8839629292488098,-1.2332065105438232,-0.8455469608306885,-0.7280774712562561,-1.0093574523925781,1.2611311674118042,0.7729156017303467,-0.3323913514614105,0.4674549698829651,0.4159461557865143,-0.6145309209823608,0.09438459575176239,0.1845262050628662,0.925997257232666,1.006028652191162,0.47365808486938477,-0.015267729759216309,2.2296886444091797,-1.2989751100540161,1.3872711658477783,-0.5474238395690918,0.6437035799026489,0.004733681678771973,-0.1787431240081787,-0.029040008783340454,-0.6615444421768188,-0.1719280481338501,-0.5567843914031982,-1.4635785818099976,-1.1819781064987183,0.14684158563613892,-0.3473926782608032,-1.0944364070892334,1.1261276006698608,0.7189598083496094,-1.7945137023925781,0.49846407771110535,-1.2049219608306885,1.8360495567321777,0.6774017214775085,0.4504545331001282,-1.2670466899871826,-0.01587994396686554,-0.3199927508831024,-1.6679821014404297,0.3016151487827301,0.3863084316253662,-2.3853678703308105,-1.2667429447174072,0.43173110485076904,-0.18224841356277466,-0.13649815320968628,-0.6716017723083496,1.1719250679016113,0.7819927930831909,1.5781936645507812,2.166821002960205,1.3239754438400269,0.689919114112854,-0.697081983089447,-0.47515133023262024,0.39092063903808594,-0.7336212396621704,-0.025190383195877075,0.8845474720001221,1.0297996997833252,-1.2185723781585693,-0.6911098957061768,-0.6094071269035339,0.7637525796890259,-0.6075475811958313,-0.37235113978385925,-0.8361731767654419,1.6496593952178955,-0.0771465003490448,0.2727215886116028,-0.6554660797119141,1.0424810647964478,1.8118735551834106,-0.5741537809371948,-1.4060351848602295,-0.5236856341362,1.998320460319519,1.63923180103302,-0.008597612380981445,0.3059708774089813,1.4781434535980225,-0.8637052774429321,-0.5353860855102539,-0.4903295338153839,-0.0733218863606453,0.023332983255386353,0.20601718127727509,-1.4371678829193115,-0.8535454273223877,-2.0526554584503174,-2.0818324089050293,-2.3905997276306152,-0.22166657447814941,2.063847064971924,-2.7098114490509033,-1.1396362781524658,0.5752257704734802,1.9503896236419678,-1.6841312646865845,1.7490943670272827,-0.674153208732605,-0.15484264492988586,0.36136627197265625,-0.6661249399185181,-1.343487024307251,-0.753491222858429,0.6831609606742859,0.9550656080245972,1.1274058818817139,0.4304073452949524,0.19319850206375122,-0.052795737981796265,-0.22007536888122559,-0.47143036127090454,-0.007067486643791199,-0.009003996849060059,-0.27438974380493164,-0.3831285834312439,2.663935661315918,0.43265581130981445,0.5071196556091309,1.3406496047973633,-0.10687698423862457,0.5670449733734131,0.4607502818107605,-0.9831889867782593,-1.2195866107940674,2.3154680728912354,1.8480572700500488,-0.19928258657455444,0.6243138909339905,0.4008618891239166,-0.3831786811351776,0.20537123084068298,-0.08821094036102295,0.2087882161140442,1.3489737510681152,0.5489600896835327,-0.641258955001831,-0.7886930108070374,0.4602557420730591,-0.10823890566825867,0.26926106214523315,1.0912256240844727,1.4938024282455444,0.7463086843490601,0.9459365606307983,0.41999995708465576,-0.30219969153404236,0.12215611338615417,0.6404096484184265,1.4282463788986206,0.7639920711517334,-0.26697200536727905,0.7928279638290405,-1.2297765016555786,-1.2576977014541626,-0.04023987054824829,-0.9816908836364746,0.35032135248184204,0.39902281761169434,0.3739098310470581,-0.04252104461193085,0.26201894879341125,-0.7799420356750488 diff --git a/example/start/outputs/logs/parameter_convergence/sources1.csv b/example/start/outputs/logs/parameter_convergence/sources1.csv deleted file mode 100644 index 9f0181fca..000000000 --- a/example/start/outputs/logs/parameter_convergence/sources1.csv +++ /dev/null @@ -1,100 +0,0 @@ -2901,-0.7786293625831604,-0.11879013478755951,-0.27975839376449585,-1.5233347415924072,-0.46441569924354553,-0.4795789122581482,-1.393974781036377,0.4950226843357086,-0.5839778184890747,0.566957414150238,0.14067189395427704,-0.14160163700580597,-0.24176275730133057,0.017006374895572662,0.07164159417152405,-1.0912830829620361,-0.6134124398231506,0.7637662887573242,-1.3779021501541138,0.1161978542804718,-0.1992008239030838,0.5523468255996704,1.3753225803375244,0.3037227988243103,0.6357705593109131,-0.6764819622039795,-1.6595677137374878,-0.2797239422798157,0.5420787334442139,-0.94493567943573,-0.9888806939125061,-1.0805696249008179,-0.6086169481277466,-1.2324495315551758,-0.31183695793151855,0.03175264596939087,-2.0959737300872803,-0.14174294471740723,-1.5126508474349976,-1.1971344947814941,-0.3723949193954468,-0.960564136505127,-0.11873053014278412,0.5312690138816833,0.5854385495185852,0.15901553630828857,-2.4213693141937256,-1.2045695781707764,-0.859015703201294,-0.7810404896736145,1.798732042312622,1.2572224140167236,0.5480607748031616,1.7564388513565063,-2.527770519256592,0.3939192593097687,0.8209367990493774,0.4092155396938324,0.22551730275154114,-0.3611416816711426,-1.0499606132507324,-1.130901575088501,0.6112356185913086,-1.951527714729309,-0.4947446286678314,1.3429902791976929,-1.473976731300354,1.581436276435852,-0.9274781942367554,-1.3425185680389404,-1.886747121810913,2.2892420291900635,0.3791426420211792,-1.203710913658142,0.02201727032661438,0.32070624828338623,1.3840923309326172,-1.6446260213851929,-1.6694027185440063,0.6097686290740967,0.508704423904419,1.2082068920135498,-0.5328402519226074,-1.2504364252090454,0.09504352509975433,-0.4510863721370697,-0.8353968262672424,-0.16952818632125854,-1.03010892868042,0.8368639945983887,0.33502909541130066,1.4072574377059937,-1.091770887374878,0.046217381954193115,0.47731584310531616,1.541011095046997,1.5617036819458008,2.6868515014648438,0.8828061819076538,-1.2000219821929932,0.36535441875457764,-0.3150002062320709,0.7371774315834045,0.9174545407295227,-2.227051019668579,1.4029167890548706,-0.11830432713031769,-0.7807707786560059,1.4031020402908325,-0.2533641755580902,0.371833860874176,-1.7084650993347168,0.21441254019737244,0.16196377575397491,0.05711886286735535,0.34287163615226746,-0.8775457739830017,-2.686152219772339,-0.15956032276153564,-1.21110999584198,0.8523987531661987,0.5086300373077393,0.4484962821006775,0.5950549840927124,-0.5098623633384705,0.06137162446975708,-1.4333548545837402,-0.7504127025604248,-0.11985364556312561,-0.8074514865875244,0.608014702796936,1.8861275911331177,-0.417135626077652,1.8354514837265015,-0.7111890912055969,-0.16784456372261047,-0.3858689069747925,0.7239153385162354,0.2244228720664978,0.48004570603370667,1.2345173358917236,-0.6078406572341919,-0.7430817484855652,-0.1426849067211151,-0.6137540340423584,-0.8900759220123291,0.34713026881217957,-0.7659300565719604,-2.118762731552124,0.34930580854415894,-0.7698310017585754,-1.5335031747817993,-0.13316041231155396,-0.4448135197162628,-0.20172424614429474,-0.11838960647583008,-0.48477011919021606,-0.24778732657432556,1.2610381841659546,0.5791531801223755,0.7237927317619324,-0.3462134003639221,0.14147432148456573,-1.1121156215667725,0.43571028113365173,1.136894702911377,-0.6856116652488708,-0.6835671067237854,0.6363540291786194,0.6380038261413574,1.815767765045166,-1.863410234451294,1.173482894897461,0.5577434301376343,-0.892603874206543,-0.4690625071525574,-0.17956902086734772,-0.5990917086601257,0.9094134569168091,0.3713933825492859,0.4214223325252533,-0.05673782527446747,-0.15749786794185638,0.6647248268127441,1.1348695755004883,-0.2547563910484314,-0.13331922888755798,-0.7175076007843018,0.722063422203064,-0.9782347679138184,0.9122999906539917,0.8905602693557739,0.25936949253082275,-1.7629714012145996,-0.1852531135082245,0.1784559190273285,-0.40937456488609314,-1.407796025276184,-0.41036757826805115,-0.7694936990737915,-1.8626716136932373,0.8765762448310852,-0.14973117411136627,0.6089636087417603,0.7760006189346313,0.08340400457382202,1.3804528713226318,-0.12578028440475464,-0.5829155445098877,-0.08285948634147644,0.6192746162414551,0.3259795904159546,-1.974450945854187,-1.374661922454834,0.5877256393432617,-0.4138409197330475,1.3676278591156006,0.5015599727630615,0.03458157181739807,0.22121763229370117,-0.5783230662345886,-1.8884016275405884,1.1758639812469482,0.0354352742433548,-1.3550927639007568,0.7094027996063232,1.5997552871704102,-1.5856294631958008,0.8982752561569214,-0.7037174105644226,-1.0657296180725098,-0.5725806951522827,1.3820302486419678,-0.05719861388206482,0.8324730396270752,-0.49090775847435,-1.4124220609664917,-0.5231467485427856,1.5852946043014526,0.386709600687027,0.5993602275848389,0.5067588090896606,0.3254271447658539,-1.325893759727478,-0.5758078098297119,-1.0264990329742432,1.0346109867095947,-1.6368941068649292 -2902,-0.7786293625831604,-0.11879013478755951,-0.27975839376449585,-1.5233347415924072,-0.6186697483062744,-0.4795789122581482,-1.393974781036377,0.4950226843357086,-0.810407817363739,0.566957414150238,0.14067189395427704,-0.14160163700580597,-0.3169577717781067,0.017006374895572662,0.07164159417152405,-0.8871637582778931,-0.6134124398231506,0.7637662887573242,-1.3779021501541138,0.1161978542804718,-0.1992008239030838,0.5523468255996704,1.3753225803375244,0.3037227988243103,0.6357705593109131,-0.6764819622039795,-1.6595677137374878,-0.2797239422798157,0.5420787334442139,-0.94493567943573,-0.9888806939125061,-1.0805696249008179,-0.6086169481277466,-0.9869188666343689,-0.8539737462997437,0.03175264596939087,-2.0959737300872803,-0.46198904514312744,-1.3284095525741577,-0.8022379875183105,-0.6902971267700195,-0.8970640897750854,-0.11873053014278412,0.23598060011863708,0.3980743885040283,0.15901553630828857,-2.4213693141937256,-1.2045695781707764,-0.37487712502479553,-0.7810404896736145,1.798732042312622,1.2572224140167236,0.5480607748031616,1.9581891298294067,-2.428219795227051,0.3939192593097687,-0.0015015602111816406,0.4092155396938324,0.22551730275154114,-0.3611416816711426,-0.8241283893585205,-1.130901575088501,0.6112356185913086,-1.951527714729309,-0.4947446286678314,1.3429902791976929,-1.473976731300354,1.581436276435852,-0.9274781942367554,-1.3425185680389404,-1.771376609802246,1.418368935585022,0.3791426420211792,-1.203710913658142,0.02201727032661438,0.32070624828338623,1.3840923309326172,-1.5596747398376465,-1.6694027185440063,0.6097686290740967,0.508704423904419,1.5614899396896362,-0.5328402519226074,-1.122133493423462,0.11294753104448318,-0.2324833869934082,-0.8353968262672424,-0.16952818632125854,-1.03010892868042,0.8368639945983887,0.33502909541130066,1.2371869087219238,-0.7105374932289124,0.5794723629951477,0.47731584310531616,1.541011095046997,1.5617036819458008,2.6868515014648438,0.8828061819076538,-1.2000219821929932,0.36535441875457764,-0.3150002062320709,0.7371774315834045,0.9174545407295227,-2.227051019668579,1.1718007326126099,-0.11830432713031769,-0.7807707786560059,1.4031020402908325,-0.2533641755580902,0.3015199601650238,-1.7084650993347168,0.21441254019737244,-0.2847152352333069,0.2870599925518036,0.34287163615226746,0.05169188976287842,-2.686152219772339,-0.15956032276153564,-1.2273632287979126,0.8523987531661987,0.5086300373077393,0.546055793762207,0.5950549840927124,-0.5098623633384705,0.9104216694831848,-1.4333548545837402,-0.7504127025604248,-0.11985364556312561,-1.5463848114013672,0.608014702796936,1.856287956237793,-0.417135626077652,1.7072950601577759,-1.2175147533416748,-0.16784456372261047,-0.07091331481933594,0.7239153385162354,0.2244228720664978,0.48004570603370667,1.2345173358917236,-0.6078406572341919,-0.7430817484855652,-0.16652806103229523,-0.6137540340423584,-1.220312237739563,0.34713026881217957,-0.9249235987663269,-2.118762731552124,0.34930580854415894,-0.7698310017585754,-1.4987123012542725,-0.13316041231155396,-0.4448135197162628,-0.20172424614429474,-0.11838960647583008,-0.48477011919021606,-0.24778732657432556,1.2610381841659546,0.5791531801223755,0.7237927317619324,-0.3462134003639221,0.5828660130500793,-1.1121156215667725,0.43571028113365173,1.136894702911377,-0.6856116652488708,-0.6835671067237854,0.6363540291786194,0.6380038261413574,1.815767765045166,-1.863410234451294,1.173482894897461,0.5577434301376343,0.46277284622192383,-0.9456347227096558,-0.17956902086734772,-0.5990917086601257,0.9094134569168091,0.3713933825492859,0.11339500546455383,-0.05673782527446747,-0.15749786794185638,1.4945122003555298,1.1348695755004883,-0.2547563910484314,-0.13331922888755798,-0.7175076007843018,0.722063422203064,-0.9782347679138184,0.9122999906539917,0.8905602693557739,0.43250250816345215,-2.623396158218384,-0.24585217237472534,0.1784559190273285,-0.40937456488609314,-1.407796025276184,-0.41036757826805115,-0.05463796854019165,-1.8626716136932373,0.8765762448310852,-0.9293720722198486,0.6089636087417603,0.7760006189346313,0.1894463300704956,1.3804528713226318,-0.12578028440475464,-0.5829155445098877,-0.00452837347984314,0.6192746162414551,-0.023678600788116455,-1.974450945854187,-1.6042098999023438,0.5877256393432617,-0.5230077505111694,1.3676278591156006,0.5015599727630615,0.03458157181739807,-0.3595978617668152,-0.5783230662345886,-1.0559792518615723,1.1758639812469482,0.0354352742433548,-1.3550927639007568,0.7094027996063232,1.5997552871704102,-1.5856294631958008,0.8982752561569214,-0.7037174105644226,-1.0657296180725098,-0.5725806951522827,1.3820302486419678,-0.05719861388206482,0.8324730396270752,-0.49090775847435,-1.3369805812835693,-0.5231467485427856,1.5852946043014526,0.386709600687027,0.3650684952735901,0.29018139839172363,0.3254271447658539,-0.909425675868988,-0.5496692657470703,-1.1941759586334229,1.0346109867095947,-2.3430299758911133 -2903,-0.7786293625831604,-0.13151614367961884,-0.5243987441062927,-1.5233347415924072,-0.6186697483062744,-0.4795789122581482,-1.393974781036377,0.4950226843357086,-0.17548394203186035,0.566957414150238,0.14067189395427704,-0.06982181966304779,0.10632848739624023,0.017006374895572662,0.07164159417152405,-0.8871637582778931,-0.6134124398231506,0.7637662887573242,-1.4565173387527466,0.1161978542804718,-0.6623742580413818,0.5523468255996704,1.3753225803375244,0.3037227988243103,0.0229455828666687,-0.6764819622039795,-1.6595677137374878,-0.2797239422798157,0.31251227855682373,-0.94493567943573,-0.9888806939125061,-1.0805696249008179,-0.6086169481277466,-0.9342350959777832,-0.8539737462997437,0.14309528470039368,-1.5551886558532715,-0.46198904514312744,-1.3284095525741577,-0.8022379875183105,-0.6902971267700195,-0.8970640897750854,0.12002065777778625,0.23598060011863708,0.3980743885040283,0.15901553630828857,-2.4213693141937256,-1.2045695781707764,-0.37487712502479553,-1.7124395370483398,1.798732042312622,1.2572224140167236,0.5480607748031616,1.9581891298294067,-2.428219795227051,0.3939192593097687,-0.0015015602111816406,0.4092155396938324,0.2686128318309784,-0.3611416816711426,-0.8241283893585205,-1.130901575088501,0.21617159247398376,-1.951527714729309,-0.4947446286678314,1.3429902791976929,-1.473976731300354,1.581436276435852,-0.9274781942367554,-1.3425185680389404,-1.771376609802246,1.418368935585022,0.3791426420211792,-1.203710913658142,0.02201727032661438,0.32070624828338623,1.3840923309326172,-1.5596747398376465,-1.6694027185440063,0.6097686290740967,0.47237345576286316,1.5614899396896362,-0.5328402519226074,-1.2509026527404785,0.11294753104448318,-0.2324833869934082,-0.8353968262672424,0.1498488485813141,-1.03010892868042,0.8368639945983887,0.33502909541130066,1.2371869087219238,-0.7105374932289124,0.5794723629951477,0.9911179542541504,1.541011095046997,1.5617036819458008,2.6868515014648438,0.8828061819076538,-1.2000219821929932,-0.12437465786933899,-0.3150002062320709,0.7371774315834045,0.9174545407295227,-2.227051019668579,1.1718007326126099,-0.11830432713031769,-0.7807707786560059,1.4031020402908325,-0.2533641755580902,1.2153844833374023,-1.7084650993347168,0.21441254019737244,0.4853286147117615,0.2870599925518036,0.34287163615226746,0.05169188976287842,-1.9101629257202148,0.06773845851421356,-1.2273632287979126,0.8523987531661987,-0.2895194888114929,0.624457597732544,0.5950549840927124,-0.5098623633384705,0.9104216694831848,-1.4333548545837402,-1.0014688968658447,-0.11985364556312561,-1.5463848114013672,0.608014702796936,1.856287956237793,-0.417135626077652,1.5026122331619263,-1.2175147533416748,-0.16784456372261047,-0.07091331481933594,0.7239153385162354,0.2244228720664978,0.48004570603370667,0.16915321350097656,-0.6078406572341919,-0.7430817484855652,-0.16652806103229523,-1.0284326076507568,-1.220312237739563,0.34713026881217957,-0.9249235987663269,-2.7372379302978516,0.34930580854415894,-0.7698310017585754,-1.4987123012542725,-0.13316041231155396,-0.139276385307312,-0.20172424614429474,-0.11838960647583008,0.020330488681793213,-0.24778732657432556,1.2610381841659546,0.5791531801223755,0.7237927317619324,-0.3462134003639221,0.5828660130500793,-0.8291427493095398,0.9794521331787109,1.136894702911377,-0.37268850207328796,-0.6835671067237854,0.12087881565093994,0.6380038261413574,1.815767765045166,-2.0359394550323486,1.9067368507385254,0.8521663546562195,0.17211872339248657,-0.9456347227096558,-0.19524241983890533,-0.7325538396835327,0.9094134569168091,0.3713933825492859,-0.12153442203998566,-0.05673782527446747,-0.15749786794185638,1.1791507005691528,1.1348695755004883,-0.2547563910484314,-0.13331922888755798,-0.3694946765899658,0.722063422203064,-0.9782347679138184,0.9122999906539917,0.8905602693557739,0.43250250816345215,-2.623396158218384,-0.24585217237472534,0.1784559190273285,-0.40937456488609314,-1.407796025276184,-0.41036757826805115,-0.5977233052253723,-1.9535017013549805,0.8765762448310852,-0.38904839754104614,0.6089636087417603,0.7760006189346313,0.1894463300704956,1.3804528713226318,-0.12578028440475464,-0.5829155445098877,-0.5553851127624512,0.6192746162414551,-0.023678600788116455,-1.974450945854187,-1.1785441637039185,0.9750425815582275,0.09008234739303589,1.2044256925582886,0.5015599727630615,0.03458157181739807,-0.3595978617668152,-0.5783230662345886,-1.639371395111084,0.7472877502441406,-0.4442654252052307,-1.3550927639007568,0.6530308723449707,1.627319574356079,-1.5856294631958008,0.8982752561569214,-0.6915439367294312,-1.5580551624298096,-0.5725806951522827,1.3820302486419678,-0.05719861388206482,0.8324730396270752,-0.49090775847435,-1.019364833831787,-0.5231467485427856,1.5852946043014526,0.386709600687027,0.3650684952735901,0.07655492424964905,-0.549911379814148,-0.909425675868988,-0.7586976289749146,-1.1941759586334229,1.0346109867095947,-2.3430299758911133 -2904,-0.7786293625831604,-0.2732326090335846,-0.5243987441062927,-1.4047363996505737,-0.24272999167442322,-0.4795789122581482,-1.393974781036377,1.2270328998565674,-0.3369636535644531,0.566957414150238,0.14067189395427704,-0.14584380388259888,0.10632848739624023,0.017006374895572662,0.07164159417152405,-0.8871637582778931,-0.6134124398231506,0.7637662887573242,-1.4565173387527466,-0.3659624755382538,-0.6623742580413818,0.5523468255996704,1.3753225803375244,0.3037227988243103,0.0229455828666687,-0.6764819622039795,-1.6595677137374878,-0.27853652834892273,0.1927335113286972,-1.1134060621261597,-0.9888806939125061,-1.0805696249008179,-0.6086169481277466,-1.1056925058364868,-0.41003113985061646,-0.07213272154331207,-1.5551886558532715,-0.46198904514312744,-1.602565884590149,-0.8022379875183105,-0.6902971267700195,-0.8970640897750854,0.12002065777778625,0.23598060011863708,0.3980743885040283,0.03567630052566528,-2.4213693141937256,-1.2045695781707764,-0.37487712502479553,-1.7124395370483398,1.798732042312622,1.2572224140167236,0.5480607748031616,1.9581891298294067,-2.428219795227051,0.5285516977310181,-0.0015015602111816406,0.4092155396938324,0.2686128318309784,-0.42625465989112854,-0.8241283893585205,-1.130901575088501,-0.14627739787101746,-1.4100615978240967,-0.4947446286678314,1.3429902791976929,-1.473976731300354,1.581436276435852,-0.9274781942367554,-1.3425185680389404,-1.7896984815597534,1.418368935585022,-0.048742204904556274,-1.203710913658142,0.02201727032661438,0.32070624828338623,1.3840923309326172,-1.5596747398376465,-1.6694027185440063,0.6097686290740967,0.47237345576286316,1.5614899396896362,-0.5328402519226074,-1.0700265169143677,0.11294753104448318,-0.2324833869934082,-0.8353968262672424,0.1498488485813141,-1.03010892868042,0.8368639945983887,0.45575782656669617,1.2371869087219238,-0.7105374932289124,0.5794723629951477,0.9911179542541504,1.541011095046997,1.5617036819458008,2.6868515014648438,0.8828061819076538,-1.2000219821929932,-0.12437465786933899,0.377607136964798,0.7371774315834045,0.7739607095718384,-2.227051019668579,0.6622599363327026,-0.9793996810913086,-0.7807707786560059,1.4031020402908325,-0.2533641755580902,1.2153844833374023,-1.5043160915374756,0.21441254019737244,0.4853286147117615,0.06986138224601746,0.4952225089073181,0.05169188976287842,-1.9101629257202148,0.06773845851421356,-1.2343049049377441,0.8523987531661987,-0.2895194888114929,1.1486551761627197,0.27102023363113403,-0.5098623633384705,0.9104216694831848,-1.4333548545837402,-1.0014688968658447,0.3560665547847748,-1.5463848114013672,0.608014702796936,1.8113222122192383,-0.417135626077652,1.5026122331619263,-1.5324561595916748,-0.16784456372261047,-0.07091331481933594,0.7239153385162354,0.05025884509086609,0.12397167086601257,1.6518535614013672,-0.6078406572341919,-0.7430817484855652,-0.27128320932388306,-1.0284326076507568,-1.220312237739563,0.34713026881217957,-0.9249235987663269,-2.7372379302978516,0.34930580854415894,-0.7698310017585754,-1.4987123012542725,-0.13316041231155396,-0.139276385307312,-0.20172424614429474,-0.11838960647583008,0.020330488681793213,0.3140229880809784,1.2610381841659546,0.5791531801223755,0.8973758220672607,-0.3462134003639221,0.5828660130500793,-0.8291427493095398,0.9794521331787109,1.6773607730865479,-0.37268850207328796,-0.6835671067237854,0.12087881565093994,0.6380038261413574,1.815767765045166,-2.7180681228637695,1.8318281173706055,0.8521663546562195,0.17211872339248657,-1.3804442882537842,-0.19524241983890533,-0.7325538396835327,0.9094134569168091,0.3713933825492859,-0.12153442203998566,-0.05673782527446747,-0.15749786794185638,1.1791507005691528,1.1348695755004883,-0.8213034272193909,-0.13331922888755798,-0.44413307309150696,1.180420994758606,-0.9782347679138184,0.9122999906539917,0.6417598724365234,0.43250250816345215,-2.623396158218384,-0.06603728234767914,0.4554872214794159,-0.40937456488609314,-1.407796025276184,-0.383205771446228,-0.5977233052253723,-1.9535017013549805,0.7145178318023682,-0.6091225147247314,0.6089636087417603,0.7760006189346313,0.1894463300704956,1.3804528713226318,-0.41554030776023865,-0.5829155445098877,-0.48985880613327026,0.6192746162414551,0.10304105281829834,-1.974450945854187,-1.1785441637039185,0.9750425815582275,0.09008234739303589,1.2044256925582886,0.5015599727630615,0.03458157181739807,-0.3595978617668152,-0.21136868000030518,-1.639371395111084,0.7472877502441406,-0.4442654252052307,-1.3550927639007568,0.6530308723449707,1.627319574356079,-1.5234578847885132,0.8982752561569214,-0.6915439367294312,-1.8423601388931274,-0.6007333993911743,1.3820302486419678,-0.05719861388206482,1.1309670209884644,0.37023845314979553,-1.3226953744888306,-0.5231467485427856,1.5852946043014526,0.386709600687027,0.3650684952735901,0.07655492424964905,-0.549911379814148,-0.909425675868988,-0.7586976289749146,-1.1941759586334229,1.0346109867095947,-2.3430299758911133 -2905,-0.7786293625831604,-0.36240100860595703,-0.5243987441062927,-1.4047363996505737,-0.24272999167442322,-0.4795789122581482,-1.393974781036377,1.2270328998565674,-0.20572148263454437,0.566957414150238,0.14067189395427704,-0.14584380388259888,0.10632848739624023,0.017006374895572662,0.07164159417152405,-0.8871637582778931,-0.8647708296775818,0.7637662887573242,-1.4462112188339233,-0.3659624755382538,-0.6623742580413818,0.5523468255996704,1.3753225803375244,0.3037227988243103,-0.019723840057849884,-0.6764819622039795,-1.6595677137374878,-0.7988243103027344,0.1927335113286972,-1.1134060621261597,-0.9888806939125061,-1.1612904071807861,-0.6086169481277466,-1.1056925058364868,-0.41003113985061646,0.15835556387901306,-1.9177554845809937,-0.46198904514312744,-2.221029758453369,-0.8022379875183105,-0.6902971267700195,-0.8970640897750854,0.12002065777778625,0.23598060011863708,0.3980743885040283,0.03567630052566528,-2.595283031463623,-1.2045695781707764,-0.37487712502479553,-1.7124395370483398,1.798732042312622,1.2572224140167236,0.5480607748031616,1.9581891298294067,-2.428219795227051,0.5285516977310181,-0.0015015602111816406,0.4092155396938324,0.2686128318309784,-0.06787312030792236,-0.8241283893585205,-0.9330140352249146,-0.14627739787101746,-1.4100615978240967,-0.4947446286678314,1.692659616470337,-1.814162015914917,1.430525779724121,-0.9274781942367554,-1.5155644416809082,-2.0343191623687744,2.2941079139709473,-0.048742204904556274,-1.203710913658142,0.02201727032661438,0.32070624828338623,1.3840923309326172,-1.5596747398376465,-1.6694027185440063,0.6097686290740967,0.47237345576286316,1.5614899396896362,-0.3015136420726776,-1.0700265169143677,0.11294753104448318,-0.2324833869934082,-0.8353968262672424,0.1498488485813141,-0.8681470155715942,0.8368639945983887,0.45575782656669617,1.2371869087219238,-0.3209741711616516,0.5794723629951477,0.6623080968856812,2.1106009483337402,1.5617036819458008,2.6868515014648438,0.8828061819076538,-2.146296501159668,-0.12437465786933899,0.377607136964798,0.7371774315834045,0.7516635060310364,-2.227051019668579,0.6622599363327026,-0.8377301692962646,-1.7694790363311768,1.4031020402908325,-0.2533641755580902,1.2153844833374023,-1.5043160915374756,0.21441254019737244,0.4853286147117615,0.06986138224601746,0.4952225089073181,0.05169188976287842,-1.9101629257202148,0.06773845851421356,-1.0915778875350952,0.8523987531661987,-0.4839152693748474,0.5035485029220581,0.27102023363113403,-0.5098623633384705,0.40941494703292847,-1.4333548545837402,-1.0014688968658447,0.3560665547847748,-1.5463848114013672,0.608014702796936,1.8046950101852417,-0.417135626077652,1.5026122331619263,-1.9449350833892822,0.09574472904205322,-0.07091331481933594,0.7239153385162354,0.05025884509086609,0.12397167086601257,1.6518535614013672,-0.6078406572341919,-0.7430817484855652,-0.5995625257492065,0.017942070960998535,-1.278092384338379,0.34713026881217957,-0.9249235987663269,-2.7372379302978516,-0.6959542632102966,-0.7698310017585754,-1.4987123012542725,-0.13316041231155396,-0.139276385307312,-0.20172424614429474,-0.11838960647583008,0.020330488681793213,0.3140229880809784,1.2610381841659546,0.5791531801223755,0.8973758220672607,-0.3462134003639221,0.5828660130500793,-0.65460604429245,0.9794521331787109,1.58516263961792,-0.37268850207328796,-0.6835671067237854,0.12087881565093994,0.6380038261413574,1.2883477210998535,-2.5518016815185547,1.8318281173706055,0.8521663546562195,0.17211872339248657,-1.1672627925872803,-0.19524241983890533,-1.2455592155456543,1.238069772720337,0.3713933825492859,-0.12153442203998566,-0.05673782527446747,-0.23075053095817566,1.1791507005691528,1.0221129655838013,-0.8213034272193909,-0.13331922888755798,-0.13893523812294006,1.180420994758606,-0.5385596752166748,0.9122999906539917,0.6417598724365234,0.43250250816345215,-2.623396158218384,0.13810041546821594,0.4554872214794159,-0.40937456488609314,-1.407796025276184,-0.383205771446228,-0.5977233052253723,-1.9535017013549805,0.7145178318023682,-0.6091225147247314,0.6089636087417603,0.7854926586151123,0.1894463300704956,1.3804528713226318,-0.41554030776023865,-1.1476253271102905,-0.3413458466529846,0.6192746162414551,0.10304105281829834,-1.6053791046142578,-1.1785441637039185,0.9750425815582275,0.09008234739303589,0.892192006111145,0.5015599727630615,0.03458157181739807,-0.3595978617668152,-0.05084103345870972,-0.7123383283615112,0.7472877502441406,-0.4442654252052307,-1.3550927639007568,0.39176636934280396,1.6360911130905151,-1.5234578847885132,0.8982752561569214,-0.6915439367294312,-1.8423601388931274,-0.6007333993911743,0.44160914421081543,-0.25080934166908264,1.1309670209884644,0.37023845314979553,-1.3226953744888306,-0.5231467485427856,1.5852946043014526,0.386709600687027,0.2766484022140503,0.07655492424964905,0.46800172328948975,-0.909425675868988,-0.7586976289749146,-1.5711841583251953,-0.9398578405380249,-2.1689765453338623 -2906,-0.7786293625831604,-0.36240100860595703,-0.2994571030139923,-1.4047363996505737,0.23163971304893494,-0.4795789122581482,-1.393974781036377,1.2270328998565674,-0.20572148263454437,0.566957414150238,0.14067189395427704,-0.14584380388259888,-0.5511813759803772,-0.2730446755886078,0.07164159417152405,-0.8871637582778931,-0.8647708296775818,0.5251710414886475,-1.6016067266464233,-0.3659624755382538,-0.6623742580413818,0.5523468255996704,1.3753225803375244,0.3037227988243103,-0.019723840057849884,-0.6764819622039795,-1.6595677137374878,-0.7988243103027344,0.5885940194129944,-1.1134060621261597,-0.9888806939125061,-1.1612904071807861,-0.6086169481277466,-1.0019264221191406,-0.41003113985061646,0.15835556387901306,-1.9177554845809937,-0.46198904514312744,-1.946953535079956,-0.8022379875183105,0.03470224142074585,-0.6419590711593628,0.12002065777778625,0.23598060011863708,0.3980743885040283,0.03567630052566528,-1.8638901710510254,-1.2045695781707764,-0.37487712502479553,-1.7124395370483398,1.5181360244750977,1.2572224140167236,0.5480607748031616,2.460062265396118,-2.428219795227051,0.5285516977310181,-0.0015015602111816406,0.4092155396938324,0.2686128318309784,0.0019497349858283997,-0.8241283893585205,-1.2071495056152344,-0.14627739787101746,-1.4100615978240967,-0.4947446286678314,1.692659616470337,-1.814162015914917,1.0251103639602661,-0.9274781942367554,-1.5155644416809082,-2.0343191623687744,2.2941079139709473,-0.048742204904556274,-0.6068664193153381,0.02201727032661438,0.3077869415283203,0.8786956667900085,-1.931696891784668,-1.6694027185440063,0.6097686290740967,0.3838466703891754,1.5614899396896362,-0.6189202070236206,-1.0700265169143677,0.11294753104448318,-0.2324833869934082,-1.1212514638900757,0.1498488485813141,-0.8681470155715942,0.8368639945983887,0.45575782656669617,0.7647380828857422,-0.3209741711616516,0.5794723629951477,0.6623080968856812,2.1106009483337402,1.5617036819458008,2.6868515014648438,0.8828061819076538,-2.146296501159668,-0.12437465786933899,0.377607136964798,0.7371774315834045,0.7516635060310364,-2.227051019668579,0.6622599363327026,-0.8377301692962646,-1.7694790363311768,1.4031020402908325,-0.2533641755580902,1.2153844833374023,-1.5043160915374756,0.21441254019737244,0.5012906789779663,0.06986138224601746,0.4952225089073181,0.05169188976287842,-1.9101629257202148,-0.020621001720428467,-1.0915778875350952,0.8523987531661987,-0.4839152693748474,0.5035485029220581,0.27102023363113403,-0.5098623633384705,0.40941494703292847,-1.4333548545837402,-1.0014688968658447,0.3560665547847748,-0.8513425588607788,0.608014702796936,1.8046950101852417,-0.417135626077652,1.5026122331619263,-2.4986722469329834,0.09574472904205322,-0.07091331481933594,0.7239153385162354,0.05025884509086609,0.3458285927772522,1.6518535614013672,-0.6078406572341919,-0.7430817484855652,0.3532907962799072,-0.49988269805908203,-1.278092384338379,0.34713026881217957,-0.8207616806030273,-2.7372379302978516,-0.6959542632102966,-0.7698310017585754,-0.8737303018569946,-0.3652885854244232,-0.2585662603378296,-0.20172424614429474,-0.11838960647583008,0.020330488681793213,0.41465240716934204,1.2610381841659546,0.5791531801223755,0.8973758220672607,-0.3462134003639221,0.5828660130500793,-0.65460604429245,0.9794521331787109,1.58516263961792,-0.37268850207328796,-0.6835671067237854,0.12087881565093994,0.6380038261413574,1.8008289337158203,-2.3658370971679688,1.8318281173706055,0.8521663546562195,0.17211872339248657,-0.72065269947052,-0.19524241983890533,-1.240294337272644,1.238069772720337,0.3713933825492859,-0.12153442203998566,-0.05673782527446747,-0.23075053095817566,1.1791507005691528,1.516279697418213,-0.8213034272193909,-0.13331922888755798,-0.13893523812294006,1.3243581056594849,-1.3470841646194458,1.0115798711776733,0.3295578956604004,0.43250250816345215,-2.4635345935821533,0.13810041546821594,0.4554872214794159,-0.40937456488609314,-1.407796025276184,-0.06591993570327759,-0.5977233052253723,-1.9535017013549805,0.7279343605041504,-0.6091225147247314,0.6089636087417603,0.8852541446685791,0.1894463300704956,1.3804528713226318,-0.41554030776023865,-1.1476253271102905,-0.3413458466529846,0.6192746162414551,0.10304105281829834,-1.6053791046142578,-1.1785441637039185,0.8158421516418457,0.09008234739303589,0.892192006111145,0.5015599727630615,0.03458157181739807,-0.3595978617668152,-0.7911753058433533,-0.7123383283615112,0.7472877502441406,-0.4442654252052307,-1.3550927639007568,0.5217388272285461,1.6360911130905151,-1.5234578847885132,0.8982752561569214,-0.4695473313331604,-1.8423601388931274,-0.6007333993911743,0.44160914421081543,-0.25080934166908264,1.1309670209884644,0.37023845314979553,-1.3226953744888306,-0.5231467485427856,1.5852946043014526,0.386709600687027,1.111466646194458,0.07655492424964905,0.46800172328948975,-0.909425675868988,-0.7586976289749146,-1.340712308883667,-0.9398578405380249,-1.195861577987671 -2907,-0.7786293625831604,-0.36240100860595703,-0.43906521797180176,-1.4047363996505737,0.23163971304893494,-0.4795789122581482,-1.0601245164871216,1.2270328998565674,-0.02512262761592865,0.566957414150238,0.14067189395427704,-0.14584380388259888,-0.5511813759803772,-0.2730446755886078,0.07164159417152405,-0.8871637582778931,-0.8647708296775818,0.5251710414886475,-1.6016067266464233,-0.20686589181423187,-0.6623742580413818,0.8063892126083374,1.475918173789978,0.3037227988243103,-0.019723840057849884,-0.6764819622039795,-1.6595677137374878,-0.7988243103027344,0.5885940194129944,-1.1134060621261597,-0.9888806939125061,-1.1612904071807861,-0.6086169481277466,-1.0019264221191406,-0.41003113985061646,0.15835556387901306,-1.9177554845809937,-0.46198904514312744,-2.070005416870117,-0.8022379875183105,0.03470224142074585,-0.6419590711593628,0.12002065777778625,0.23598060011863708,0.3980743885040283,-0.15452134609222412,-1.8638901710510254,-1.2045695781707764,-0.37487712502479553,-1.7124395370483398,1.5655925273895264,0.6926068663597107,0.5480607748031616,2.460062265396118,-2.1881227493286133,0.5285516977310181,-0.0015015602111816406,0.4092155396938324,0.2686128318309784,0.0019497349858283997,-0.7131325602531433,-1.2071495056152344,-0.13705509901046753,-1.4100615978240967,-0.4947446286678314,1.7814894914627075,-1.814162015914917,1.1974990367889404,-0.9274781942367554,-0.9796192646026611,-2.0343191623687744,2.2941079139709473,0.4061615765094757,-0.6068664193153381,0.02201727032661438,0.3077869415283203,1.1548945903778076,-2.07649302482605,-1.1792763471603394,0.6097686290740967,0.3838466703891754,1.5614899396896362,-0.6189202070236206,-1.0700265169143677,0.11294753104448318,-0.2324833869934082,-0.7315374612808228,0.5431065559387207,-0.7854235172271729,0.8368639945983887,0.5226404666900635,0.7647380828857422,-0.9159574508666992,0.7396669983863831,0.6623080968856812,2.1106009483337402,1.5617036819458008,2.6868515014648438,0.8828061819076538,-2.146296501159668,0.05356927216053009,0.4188043177127838,0.7371774315834045,0.7530446648597717,-1.595750093460083,1.1186480522155762,-0.8377301692962646,-1.7694790363311768,1.4473201036453247,-0.2533641755580902,1.8392456769943237,-1.845442771911621,0.5437566041946411,0.5012906789779663,0.06986138224601746,0.4952225089073181,-0.003653962165117264,-2.252380132675171,0.09168589860200882,-0.749219536781311,2.103288173675537,-0.5011810660362244,0.5035485029220581,0.5836949348449707,-0.5098623633384705,0.46868929266929626,-1.199520230293274,-1.0014688968658447,0.3560665547847748,-0.8932712078094482,0.608014702796936,1.8046950101852417,-1.0366511344909668,1.5026122331619263,-2.4986722469329834,0.09574472904205322,-1.439627766609192,0.7239153385162354,0.23589001595973969,0.3458285927772522,1.6518535614013672,-0.6078406572341919,-0.7430817484855652,0.3532907962799072,-0.49988269805908203,-1.278092384338379,0.34713026881217957,-0.9904050827026367,-2.7372379302978516,-0.6959542632102966,-0.7698310017585754,-0.8737303018569946,-0.3652885854244232,-0.2585662603378296,-0.20172424614429474,-0.11838960647583008,0.020330488681793213,0.41465240716934204,1.2610381841659546,0.5791531801223755,0.37610381841659546,-0.3462134003639221,0.5828660130500793,-0.65460604429245,0.9794521331787109,1.58516263961792,-0.37268850207328796,-1.0331604480743408,0.12087881565093994,0.6380038261413574,1.5708138942718506,-2.3658370971679688,1.8318281173706055,0.8521663546562195,0.17211872339248657,-0.72065269947052,-0.19524241983890533,-1.240294337272644,1.238069772720337,0.3713933825492859,0.3461453318595886,-0.05673782527446747,-0.08699959516525269,0.6529378294944763,0.8215945363044739,-0.8213034272193909,-0.13331922888755798,-0.8211262226104736,1.3395371437072754,-1.3470841646194458,1.0115798711776733,0.3295578956604004,0.06400832533836365,-2.4635345935821533,0.13810041546821594,0.4554872214794159,-0.40937456488609314,-1.407796025276184,-0.06591993570327759,-0.5977233052253723,-1.9535017013549805,0.5628721714019775,-0.6091225147247314,0.6089636087417603,1.0267221927642822,0.1894463300704956,1.3804528713226318,-0.6873124837875366,-1.1476253271102905,-0.3413458466529846,0.6192746162414551,0.10304105281829834,-1.6053791046142578,-1.1785441637039185,0.8158421516418457,0.09008234739303589,0.892192006111145,0.5015599727630615,0.03458157181739807,-0.7864197492599487,-1.6248211860656738,-0.7123383283615112,0.7472877502441406,-0.1442430019378662,-0.40286940336227417,0.5217388272285461,1.6360911130905151,-1.5234578847885132,0.8982752561569214,-0.4695473313331604,-1.8423601388931274,-0.6007333993911743,0.6323595643043518,-0.25080934166908264,1.1309670209884644,0.0774683952331543,-1.3226953744888306,-0.5231467485427856,1.5852946043014526,0.6454000473022461,1.111466646194458,0.07655492424964905,-0.33256232738494873,-0.5133293867111206,-0.8089759945869446,-1.2674094438552856,-0.9398578405380249,-1.195861577987671 -2908,-0.7786293625831604,-0.36240100860595703,-0.43906521797180176,-1.4047363996505737,-0.22171145677566528,-0.4795789122581482,-1.0601245164871216,1.2270328998565674,-0.02512262761592865,0.9638541340827942,0.14067189395427704,-0.14584380388259888,-0.5511813759803772,-0.2730446755886078,0.07164159417152405,-0.8871637582778931,-0.15888696908950806,0.3636690378189087,-1.6016067266464233,-0.20686589181423187,-0.6623742580413818,0.419707715511322,1.475918173789978,0.3037227988243103,-0.019723840057849884,-0.330006867647171,-1.6595677137374878,-0.7988243103027344,0.5885940194129944,-1.1134060621261597,-0.9888806939125061,-1.1612904071807861,-0.6086169481277466,-1.2252473831176758,-0.41003113985061646,0.15835556387901306,-1.951133131980896,-0.3907625079154968,-1.9279844760894775,-0.13329458236694336,0.03470224142074585,-0.6419590711593628,0.12002065777778625,0.23598060011863708,0.3980743885040283,-0.045368507504463196,-0.5842790603637695,-1.36983060836792,-0.8280812501907349,-1.7124395370483398,1.5655925273895264,1.0810699462890625,0.5480607748031616,2.0943470001220703,-2.1881227493286133,0.7774467468261719,-0.0015015602111816406,-0.0033267438411712646,0.08497941493988037,0.38108137249946594,-0.7131325602531433,-1.2071495056152344,-0.13705509901046753,-1.296367883682251,-0.4947446286678314,1.7814894914627075,-1.814162015914917,1.4266878366470337,-0.9274781942367554,-0.9796192646026611,-2.0343191623687744,2.5652570724487305,0.4061615765094757,-1.3596878051757812,0.24173161387443542,0.7610636949539185,1.1548945903778076,-1.925352692604065,-1.1792763471603394,0.6250975728034973,0.31986677646636963,1.5614899396896362,-0.6189202070236206,-1.0700265169143677,0.11294753104448318,-0.2324833869934082,-0.1889691948890686,0.5151119828224182,-0.8068901896476746,0.8368639945983887,0.5226404666900635,0.6932119131088257,-0.507872462272644,0.7396669983863831,0.6623080968856812,1.7724539041519165,1.5617036819458008,2.92326283454895,0.8828061819076538,-2.146296501159668,0.05356927216053009,0.4188043177127838,0.7371774315834045,0.7530446648597717,-1.3394620418548584,1.8216607570648193,-0.8377301692962646,-1.6302194595336914,1.4473201036453247,1.048994541168213,1.4962636232376099,-1.0924403667449951,0.5437566041946411,0.5012906789779663,0.4878684878349304,0.4952225089073181,-0.003653962165117264,-2.348158359527588,0.09168589860200882,-0.749219536781311,2.103288173675537,-0.5011810660362244,0.5035485029220581,0.5836949348449707,-0.5098623633384705,0.46868929266929626,-1.4722567796707153,-0.9902604818344116,0.31791073083877563,-0.8932712078094482,0.608014702796936,1.8046950101852417,-1.0366511344909668,1.5026122331619263,-2.4986722469329834,0.7355482578277588,-1.439627766609192,0.7239153385162354,0.5684351325035095,0.3458285927772522,1.6518535614013672,-0.6078406572341919,-0.7430817484855652,0.3532907962799072,-0.6368659138679504,-1.278092384338379,0.34713026881217957,-0.9904050827026367,-2.7047414779663086,-0.6959542632102966,-0.7698310017585754,-0.8737303018569946,-0.3405442237854004,-0.2585662603378296,-0.20172424614429474,-0.11838960647583008,0.020330488681793213,0.41465240716934204,1.2610381841659546,0.5791531801223755,0.37610381841659546,-0.3462134003639221,0.5828660130500793,-0.65460604429245,0.6254247426986694,1.58516263961792,-0.38286569714546204,-1.0331604480743408,0.1479821503162384,0.6380038261413574,1.5708138942718506,-2.3658370971679688,1.8318281173706055,1.198686122894287,0.17211872339248657,-0.72065269947052,-0.19240620732307434,-1.240294337272644,1.238069772720337,0.3713933825492859,0.49731284379959106,-0.05673782527446747,-0.08699959516525269,0.6529378294944763,0.8215945363044739,-0.8213034272193909,0.11236383020877838,-0.8211262226104736,1.3395371437072754,-1.569772720336914,1.0115798711776733,0.3295578956604004,0.06400832533836365,-2.4635345935821533,-0.058637410402297974,0.5596517324447632,-0.40937456488609314,-1.407796025276184,-0.7459502816200256,-0.5977233052253723,-1.9535017013549805,0.5628721714019775,-0.6091225147247314,0.9086666107177734,1.0267221927642822,0.5560583472251892,1.3804528713226318,-0.6873124837875366,-1.1476253271102905,-0.030370324850082397,0.6192746162414551,0.10304105281829834,-1.6053791046142578,-1.1785441637039185,0.8158421516418457,0.09008234739303589,0.892192006111145,0.5015599727630615,0.049568161368370056,-0.7864197492599487,-1.6248211860656738,0.16941297054290771,0.7472877502441406,-0.1442430019378662,-0.40286940336227417,-0.4035325050354004,2.066918134689331,-1.5234578847885132,0.8982752561569214,-0.4695473313331604,-1.8423601388931274,-0.6007333993911743,0.07676124572753906,-0.25080934166908264,1.1309670209884644,0.0774683952331543,-1.3226953744888306,-0.5231467485427856,1.5852946043014526,0.6454000473022461,1.111466646194458,-0.01649201661348343,0.0945911705493927,-0.5133293867111206,-1.0475175380706787,-1.2674094438552856,-0.9398578405380249,-1.195861577987671 -2909,-0.7786293625831604,-0.36240100860595703,0.46324342489242554,-1.4047363996505737,-0.22171145677566528,-0.4795789122581482,-1.1091817617416382,1.6287095546722412,-0.02512262761592865,0.9638541340827942,0.14067189395427704,-0.5872132778167725,-0.5511813759803772,-0.2730446755886078,0.07164159417152405,-0.8090586066246033,-0.15888696908950806,0.17697124183177948,-1.6016067266464233,-0.20686589181423187,-0.8223932981491089,0.550589382648468,1.475918173789978,0.7394633889198303,0.3588443696498871,-0.330006867647171,-1.6595677137374878,-0.13178902864456177,0.5885940194129944,-1.1134060621261597,-0.9888806939125061,-1.1580482721328735,-0.6086169481277466,-1.2252473831176758,-0.41003113985061646,0.2919556498527527,-1.951133131980896,-0.3907625079154968,-0.8172010183334351,-0.13329458236694336,0.03470224142074585,-0.6419590711593628,0.1848973035812378,0.3206285238265991,0.3980743885040283,-0.045368507504463196,-0.8441379070281982,-1.3358781337738037,-0.8280812501907349,-1.7124395370483398,1.5655925273895264,1.0810699462890625,0.5480607748031616,2.0943470001220703,-2.1881227493286133,0.7774467468261719,0.11110395938158035,0.4728284180164337,0.08497941493988037,1.2976199388504028,-0.7131325602531433,-1.2071495056152344,-0.13705509901046753,-0.8627790212631226,-0.36151832342147827,1.7814894914627075,-1.814162015914917,1.4266878366470337,-0.9274781942367554,-1.0568954944610596,-2.0343191623687744,2.5652570724487305,0.4061615765094757,-1.3596878051757812,0.24173161387443542,0.754776656627655,1.1548945903778076,-1.925352692604065,-1.1792763471603394,0.6250975728034973,0.31986677646636963,1.5614899396896362,-0.6189202070236206,-1.0700265169143677,0.03992445021867752,-0.2324833869934082,-0.1889691948890686,0.5151119828224182,-0.8068901896476746,0.8368639945983887,0.5226404666900635,0.9874767065048218,-0.507872462272644,0.7396669983863831,1.176603078842163,1.7724539041519165,1.5617036819458008,2.92326283454895,0.8828061819076538,-2.146296501159668,0.05356927216053009,0.4188043177127838,0.7371774315834045,0.7530446648597717,-1.3394620418548584,1.8107283115386963,-0.8377301692962646,-1.6302194595336914,1.9509738683700562,1.048994541168213,1.6252272129058838,-0.7281086444854736,0.5437566041946411,0.5012906789779663,0.4878684878349304,0.4952225089073181,-0.003653962165117264,-2.348158359527588,0.09168589860200882,-0.749219536781311,1.8565952777862549,-0.5011810660362244,-0.277113676071167,0.5836949348449707,-0.7955687046051025,0.46868929266929626,-1.3788368701934814,-0.9902604818344116,0.31791073083877563,-0.8932712078094482,0.608014702796936,1.8046950101852417,-1.0366511344909668,1.5026122331619263,-2.4986722469329834,0.7355482578277588,-1.591265082359314,0.7239153385162354,1.1220118999481201,0.3458285927772522,1.6518535614013672,-0.6078406572341919,-0.7430817484855652,0.3532907962799072,-0.6368659138679504,-1.278092384338379,0.34713026881217957,-1.249600887298584,-2.7047414779663086,-0.6959542632102966,-0.7698310017585754,-1.1111540794372559,-0.3405442237854004,0.02414289116859436,-0.20172424614429474,-0.20765194296836853,0.020330488681793213,0.41465240716934204,1.2610381841659546,0.5791531801223755,0.8675062656402588,-0.3462134003639221,0.6583626866340637,-0.22725537419319153,0.6254247426986694,1.58516263961792,-0.38286569714546204,-1.0331604480743408,0.1479821503162384,0.24962684512138367,2.0182666778564453,-2.3658370971679688,1.8318281173706055,1.03862464427948,0.17211872339248657,-0.72065269947052,-0.19240620732307434,-1.240294337272644,0.9210509061813354,0.3713933825492859,0.49731284379959106,-0.05673782527446747,-0.08699959516525269,0.6529378294944763,0.8215945363044739,-0.8213034272193909,0.11236383020877838,-0.8744058609008789,1.292147159576416,-0.8327602744102478,1.0115798711776733,0.2992061376571655,0.510277509689331,-2.4635345935821533,-0.058637410402297974,0.5596517324447632,-0.40937456488609314,-1.407796025276184,-0.7459502816200256,-0.5977233052253723,-2.0992352962493896,0.5628721714019775,-0.8725920915603638,0.9086666107177734,1.0267221927642822,0.9523924589157104,1.3804528713226318,-1.34221351146698,-1.1476253271102905,-0.030370324850082397,0.6192746162414551,0.10304105281829834,-1.6053791046142578,-1.0615650415420532,0.8158421516418457,0.09008234739303589,0.8004086017608643,-0.0759003758430481,0.007479645311832428,-0.7864197492599487,-1.6248211860656738,0.16941297054290771,1.019441843032837,-0.1442430019378662,-0.40286940336227417,-1.1446325778961182,2.066918134689331,-1.5234578847885132,0.8982752561569214,-0.4695473313331604,-1.8423601388931274,-0.6007333993911743,0.07676124572753906,-0.25080934166908264,1.1309670209884644,0.0774683952331543,-1.3226953744888306,-0.5231467485427856,1.5852946043014526,0.6454000473022461,1.111466646194458,-0.01649201661348343,0.0945911705493927,-0.22576123476028442,-1.0475175380706787,-1.2674094438552856,-0.9398578405380249,-1.1200271844863892 -2910,-0.766523540019989,-0.3171386122703552,0.46324342489242554,-0.5131120085716248,-0.22171145677566528,-0.4795789122581482,-1.1091817617416382,1.6287095546722412,-0.02512262761592865,0.7201094627380371,0.14067189395427704,-0.5872132778167725,-0.5511813759803772,-0.7469782829284668,0.07164159417152405,-0.8090586066246033,-0.1270228624343872,0.17697124183177948,-1.6016067266464233,-0.20686589181423187,-0.7430996894836426,0.550589382648468,1.475918173789978,0.7394633889198303,0.3588443696498871,-0.330006867647171,-1.6595677137374878,-0.13178902864456177,0.5885940194129944,-1.284081220626831,-0.9888806939125061,-1.1580482721328735,-0.6086169481277466,-1.2252473831176758,-0.41003113985061646,-0.5865365862846375,-1.951133131980896,-0.3772646188735962,-0.8172010183334351,-0.19550813734531403,-0.19596992433071136,-0.6419590711593628,0.1848973035812378,0.3206285238265991,0.3980743885040283,-0.045368507504463196,-0.8441379070281982,-1.3358781337738037,-0.7915744781494141,-2.4436559677124023,2.085588216781616,1.1799333095550537,0.7806655764579773,2.0943470001220703,-2.1881227493286133,0.7774467468261719,0.11110395938158035,0.4728284180164337,0.08497941493988037,1.2976199388504028,-0.7131325602531433,-1.2071495056152344,-0.13705509901046753,-0.8627790212631226,-0.36151832342147827,1.7814894914627075,-1.814162015914917,1.4266878366470337,-0.9274781942367554,-1.0568954944610596,-2.0343191623687744,2.5652570724487305,0.4061615765094757,-1.3596878051757812,0.24173161387443542,0.754776656627655,1.1548945903778076,-1.925352692604065,-1.1792763471603394,0.5607511401176453,0.41335034370422363,1.5614899396896362,-0.24501895904541016,-1.0700265169143677,0.03992445021867752,-0.2324833869934082,-0.1889691948890686,0.3944137692451477,-1.4576098918914795,0.8368639945983887,0.1254691779613495,0.9874767065048218,-0.5838287472724915,0.7396669983863831,1.176603078842163,1.7724539041519165,1.5617036819458008,2.92326283454895,0.8828061819076538,-1.4866034984588623,0.04868369922041893,0.4188043177127838,0.7371774315834045,0.7530446648597717,-1.3394620418548584,1.8107283115386963,-0.8377301692962646,-0.2668982744216919,1.9509738683700562,1.048994541168213,1.6252272129058838,-0.7281086444854736,0.5437566041946411,0.5012906789779663,0.11169055104255676,0.4952225089073181,-0.003653962165117264,-2.348158359527588,0.09168589860200882,-0.749219536781311,1.8565952777862549,-1.2155786752700806,-0.277113676071167,0.5836949348449707,-0.7955687046051025,0.46868929266929626,-1.3788368701934814,-0.9902604818344116,-0.5176950693130493,-0.8932712078094482,0.608014702796936,2.332620143890381,-1.0366511344909668,1.5026122331619263,-2.4986722469329834,0.7355482578277588,-0.15333044528961182,0.7239153385162354,1.1220118999481201,0.3458285927772522,1.2744539976119995,0.04379492998123169,-0.7430817484855652,0.3532907962799072,-0.6368659138679504,-1.278092384338379,0.34713026881217957,-0.922346830368042,-2.7047414779663086,-0.6959542632102966,-0.5699830651283264,-1.7254154682159424,-0.07421413064002991,-0.9832127094268799,-0.20172424614429474,-0.20765194296836853,0.020330488681793213,0.41465240716934204,1.2610381841659546,0.5791531801223755,0.7110650539398193,-0.3462134003639221,0.6583626866340637,-0.22725537419319153,0.6254247426986694,1.58516263961792,-0.38286569714546204,-1.0331604480743408,0.5939710736274719,0.1323813945055008,2.0182666778564453,-2.3658370971679688,1.8318281173706055,1.0152831077575684,0.17211872339248657,-0.9538281559944153,-0.19240620732307434,-1.240294337272644,0.9210509061813354,0.4918147623538971,0.49731284379959106,-0.05673782527446747,-0.08699959516525269,0.6529378294944763,0.43248850107192993,-0.8213034272193909,0.11236383020877838,-1.1875522136688232,1.4963732957839966,-0.8327602744102478,1.0115798711776733,0.2992061376571655,0.510277509689331,-2.3207578659057617,-0.058637410402297974,0.5596517324447632,-0.40937456488609314,-1.407796025276184,-0.7459502816200256,-0.5977233052253723,-2.0992352962493896,0.5628721714019775,-0.8725920915603638,0.9086666107177734,1.0267221927642822,0.9523924589157104,1.3804528713226318,-1.34221351146698,-1.1476253271102905,-0.030370324850082397,0.6192746162414551,0.10304105281829834,-1.830334186553955,-1.0615650415420532,1.0290906429290771,-0.02281014621257782,0.5730331540107727,-0.0759003758430481,0.007479645311832428,-0.8623806834220886,-1.6248211860656738,0.16941297054290771,0.820372462272644,-0.8488019704818726,-0.40286940336227417,-0.3717373013496399,2.066918134689331,-1.1550593376159668,0.7514918446540833,-0.46707016229629517,-1.0613243579864502,-0.6007333993911743,0.6835497617721558,-0.01866719126701355,1.0135948657989502,0.0774683952331543,-1.5055797100067139,-0.5231467485427856,1.5852946043014526,0.6454000473022461,0.8123121857643127,-0.01649201661348343,0.24467843770980835,-0.22576123476028442,-1.0475175380706787,-1.2674094438552856,0.5592944622039795,-1.1200271844863892 -2911,-0.766523540019989,0.10950762033462524,0.46324342489242554,-0.5131120085716248,-0.12441704422235489,-0.4795789122581482,-1.1091817617416382,1.9901111125946045,-0.02512262761592865,0.7201094627380371,0.14067189395427704,-1.024203896522522,-0.26886895298957825,-0.6864785552024841,0.07164159417152405,-1.0067691802978516,-0.1270228624343872,0.47329890727996826,-1.8024784326553345,0.638462245464325,-0.7430996894836426,0.550589382648468,1.475918173789978,0.7077307105064392,0.3588443696498871,-0.7658473253250122,-1.6595677137374878,-0.13178902864456177,0.5885940194129944,-1.284081220626831,-0.9382615685462952,-1.1580482721328735,-0.6086169481277466,-1.255452275276184,-0.41003113985061646,-0.3076893091201782,-1.951133131980896,-0.3772646188735962,-0.8172010183334351,-0.2508009076118469,0.24493525922298431,-0.6419590711593628,0.11239027976989746,0.3206285238265991,0.3980743885040283,-0.045368507504463196,-0.49223756790161133,-1.3358781337738037,-0.7915744781494141,-2.9862170219421387,2.085588216781616,0.6031781435012817,0.6052147746086121,2.0943470001220703,-2.1881227493286133,0.7774467468261719,-0.13557735085487366,0.4728284180164337,0.08497941493988037,1.2976199388504028,-0.7201491594314575,-1.2071495056152344,-0.13705509901046753,-0.8627790212631226,-0.36151832342147827,1.7814894914627075,-1.6407685279846191,1.295459270477295,-0.9274781942367554,-1.0568954944610596,-2.0343191623687744,2.5652570724487305,0.4061615765094757,-1.3596878051757812,-0.10445427894592285,0.754776656627655,1.4301260709762573,-2.0252554416656494,-1.1792763471603394,0.5607511401176453,0.41335034370422363,1.2216987609863281,-0.24501895904541016,-0.62117600440979,0.03992445021867752,-0.05321227014064789,-1.2544834613800049,0.3944137692451477,-0.591482937335968,0.8368639945983887,0.1254691779613495,0.9874767065048218,-0.19389191269874573,0.40716123580932617,0.5790747404098511,1.716708779335022,1.5617036819458008,2.6845881938934326,0.8470380902290344,-1.4866034984588623,0.04868369922041893,0.4188043177127838,0.7371774315834045,0.7530446648597717,-1.5545846223831177,1.8107283115386963,-1.0100818872451782,-0.9335073232650757,2.042026996612549,1.048994541168213,1.3379223346710205,-0.7281086444854736,0.5437566041946411,0.5012906789779663,0.11169055104255676,0.4952225089073181,0.5831313133239746,-2.348158359527588,0.09168589860200882,-0.749219536781311,2.0209238529205322,-2.298464298248291,-0.09749747812747955,0.5836949348449707,-0.7955687046051025,0.46868929266929626,-1.3788368701934814,-0.9902604818344116,1.8291279077529907,-0.8932712078094482,0.608014702796936,2.15388822555542,-1.0982595682144165,1.5026122331619263,-2.6001851558685303,-0.14326751232147217,-0.3302338123321533,0.7239153385162354,1.1220118999481201,0.3458285927772522,1.2744539976119995,-0.05043596774339676,-1.0027036666870117,0.3532907962799072,-0.6368659138679504,-1.264015793800354,0.34713026881217957,-0.922346830368042,-2.7047414779663086,-0.6959542632102966,-0.5699830651283264,-1.1597490310668945,-0.07421413064002991,-0.9832127094268799,0.059920117259025574,-0.20765194296836853,0.020330488681793213,0.41465240716934204,1.2610381841659546,0.5791531801223755,0.7110650539398193,-0.3462134003639221,0.6054960489273071,-0.22725537419319153,-0.41995954513549805,1.628035306930542,-0.38286569714546204,-1.0331604480743408,0.5939710736274719,0.1323813945055008,2.0182666778564453,-2.3658370971679688,1.8318281173706055,1.0152831077575684,0.17211872339248657,-0.9538281559944153,0.13514253497123718,-1.540989875793457,0.9210509061813354,0.4918147623538971,0.397827684879303,-0.05673782527446747,-0.08699959516525269,0.6529378294944763,1.0726021528244019,0.07946139574050903,-0.44632768630981445,-1.1875522136688232,1.302912712097168,-0.8327602744102478,1.0115798711776733,0.2992061376571655,0.510277509689331,-2.3207578659057617,0.9108200073242188,0.5596517324447632,-0.40937456488609314,-1.407796025276184,-0.7459502816200256,-0.5977233052253723,-3.0485212802886963,0.5628721714019775,-0.8725920915603638,0.9086666107177734,1.0267221927642822,1.086915135383606,1.5117865800857544,-1.34221351146698,-1.1476253271102905,-0.030370324850082397,0.6192746162414551,0.10304105281829834,-1.830334186553955,-1.0615650415420532,1.0290906429290771,-0.44170504808425903,0.5984709858894348,-0.0759003758430481,0.007479645311832428,-0.7353750467300415,-1.6248211860656738,0.10588168352842331,0.997956395149231,-0.8488019704818726,-0.9697571396827698,0.005913883447647095,2.066918134689331,-0.9902608394622803,0.7514918446540833,-0.46707016229629517,-1.0613243579864502,-0.6007333993911743,0.4081442654132843,-0.01866719126701355,1.0135948657989502,-0.23674938082695007,-1.5055797100067139,-0.5231467485427856,1.653078317642212,0.6454000473022461,0.8123121857643127,-0.01649201661348343,0.24467843770980835,-0.22576123476028442,-1.0475175380706787,-1.2674094438552856,0.5592944622039795,-1.1200271844863892 -2912,-0.27050134539604187,0.10950762033462524,0.46324342489242554,-0.5131120085716248,-0.7737143635749817,-0.4795789122581482,-1.1155600547790527,1.5093450546264648,-0.02512262761592865,0.7201094627380371,0.14067189395427704,-1.024203896522522,-0.26886895298957825,-0.8712936639785767,0.07164159417152405,-1.655731201171875,-0.1270228624343872,0.47329890727996826,-1.8024784326553345,0.638462245464325,-0.32401135563850403,0.9707725048065186,1.621642827987671,0.8435100317001343,0.3588443696498871,-0.7658473253250122,-1.569401741027832,-0.13178902864456177,0.5885940194129944,-1.284081220626831,-0.9382615685462952,-1.4865620136260986,-0.39666759967803955,-1.255452275276184,-0.41003113985061646,-0.3076893091201782,-2.2487611770629883,-0.3772646188735962,-0.8172010183334351,-0.2508009076118469,0.17825838923454285,-0.42297273874282837,0.11239027976989746,0.5360446572303772,0.3980743885040283,-0.045368507504463196,-0.49223756790161133,-1.2008683681488037,-0.7915744781494141,-2.9862170219421387,2.085588216781616,0.6031781435012817,0.6052147746086121,2.0943470001220703,-2.1881227493286133,0.5131180286407471,-0.4815106987953186,-0.6382186412811279,0.2920466661453247,0.9140902757644653,-0.7201491594314575,-1.402679681777954,-0.13705509901046753,-0.8627790212631226,-0.36151832342147827,1.7814894914627075,-1.9792635440826416,1.295459270477295,-0.8157899379730225,-1.0568954944610596,-2.0343191623687744,2.0136985778808594,0.4061615765094757,-1.3596878051757812,-0.10445427894592285,0.754776656627655,1.4301260709762573,-2.0252554416656494,-1.1792763471603394,0.5607511401176453,0.41335034370422363,1.2216987609863281,-0.24501895904541016,-0.795737087726593,-0.0770702213048935,-0.05321227014064789,-0.8015329837799072,0.3944137692451477,-0.591482937335968,0.8368639945983887,0.1254691779613495,0.9874767065048218,-0.37733834981918335,0.40716123580932617,0.4928203821182251,0.8655024170875549,1.5617036819458008,2.6845881938934326,0.8470380902290344,-1.4866034984588623,0.04868369922041893,0.4188043177127838,0.7371774315834045,0.7530446648597717,-1.5545846223831177,1.8107283115386963,-0.472625195980072,-0.9335073232650757,2.1100361347198486,1.048994541168213,1.3379223346710205,-0.5573172569274902,0.5437566041946411,0.5012906789779663,0.11169055104255676,0.4952225089073181,0.5831313133239746,-2.1025662422180176,0.20822763442993164,-0.749219536781311,2.0209238529205322,-2.298464298248291,0.37167900800704956,0.5836949348449707,-0.7955687046051025,0.46868929266929626,-1.3788368701934814,-0.9902604818344116,1.8291279077529907,-0.8932712078094482,0.608014702796936,2.15388822555542,0.1744135618209839,1.5026122331619263,-2.701597213745117,-0.14326751232147217,-0.3302338123321533,0.7239153385162354,1.6160887479782104,0.3458285927772522,1.2744539976119995,-0.05043596774339676,-1.0027036666870117,0.3532907962799072,-0.6368659138679504,-1.264015793800354,0.33919939398765564,-0.8801297545433044,-2.7047414779663086,0.03846770524978638,-0.5699830651283264,-1.1597490310668945,-0.013706397265195847,-0.9832127094268799,0.059920117259025574,-0.20765194296836853,0.020330488681793213,0.41465240716934204,1.2610381841659546,0.18650740385055542,1.1187924146652222,-0.01749590039253235,0.6054960489273071,-0.22725537419319153,-0.41995954513549805,1.628035306930542,-0.38286569714546204,-1.0331604480743408,0.5939710736274719,0.1323813945055008,1.3772474527359009,-1.746973991394043,1.8318281173706055,1.0152831077575684,0.17211872339248657,-0.7514231204986572,0.4854469895362854,-0.6610418558120728,0.9210509061813354,0.4918147623538971,0.397827684879303,-0.05673782527446747,-0.08699959516525269,0.6529378294944763,1.0726021528244019,0.07946139574050903,-0.44632768630981445,-0.7514700889587402,1.4998340606689453,-0.8327602744102478,1.0115798711776733,0.2992061376571655,-0.07803148031234741,-2.3207578659057617,0.30207300186157227,0.5596517324447632,-0.40937456488609314,-1.407796025276184,-0.22191816568374634,-0.5634438991546631,-3.0485212802886963,1.0235835313796997,-0.8725920915603638,0.9086666107177734,1.0267221927642822,0.8197308778762817,1.5117865800857544,-1.34221351146698,-0.6417704224586487,-0.030370324850082397,0.6192746162414551,0.45342737436294556,-1.830334186553955,-1.0615650415420532,1.0290906429290771,-0.5723456740379333,0.5984709858894348,-0.0759003758430481,0.007479645311832428,-0.7353750467300415,-1.0897406339645386,-0.4844258427619934,0.9608070850372314,-0.8488019704818726,-0.6423420906066895,0.005913883447647095,2.1181466579437256,-0.563640832901001,0.6309006214141846,-0.14915072917938232,-1.0613243579864502,-0.6007333993911743,0.4081442654132843,-0.01866719126701355,1.0135948657989502,-0.23674938082695007,-1.5055797100067139,-0.5231467485427856,2.0777623653411865,0.6454000473022461,0.8123121857643127,-0.3302858769893646,0.24467843770980835,-0.22576123476028442,-0.7950129508972168,-1.2674094438552856,0.5592944622039795,-1.1200271844863892 -2913,-0.27050134539604187,-0.21001467108726501,-0.3599163293838501,-0.8400653600692749,-0.7737143635749817,-0.4795789122581482,-1.3286678791046143,1.4687262773513794,-0.02512262761592865,0.6520806550979614,0.14067189395427704,-1.2978132963180542,-0.26886895298957825,-0.2333623170852661,0.07164159417152405,-1.655731201171875,-0.1270228624343872,0.47329890727996826,-1.8024784326553345,0.3112376034259796,-0.14119254052639008,0.9707725048065186,1.420625925064087,0.8435100317001343,0.3588443696498871,-0.7658473253250122,-1.569401741027832,-0.13178902864456177,0.5885940194129944,-1.3060688972473145,-0.8548614382743835,-1.4865620136260986,-0.39666759967803955,-1.255452275276184,-0.41003113985061646,-0.3076893091201782,-2.2487611770629883,-0.3772646188735962,-1.0374088287353516,-0.2508009076118469,0.17825838923454285,-0.3137974739074707,0.32885628938674927,0.5360446572303772,0.3980743885040283,0.018431037664413452,-0.49223756790161133,-1.2008683681488037,-0.9093353152275085,-2.9862170219421387,1.1268877983093262,0.06171417236328125,0.6052147746086121,2.0943470001220703,-2.1881227493286133,0.7077558040618896,-0.2430470585823059,-0.4247584342956543,0.2920466661453247,0.9140902757644653,-0.8551216721534729,-1.402679681777954,-0.13705509901046753,-1.2142667770385742,-0.598649263381958,1.8988282680511475,-2.1148815155029297,1.8924410343170166,-1.3653905391693115,-1.0568954944610596,-2.0343191623687744,2.390066146850586,0.4061615765094757,-1.3596878051757812,-0.10445427894592285,0.754776656627655,1.4301260709762573,-2.1543960571289062,-1.717186689376831,0.5607511401176453,0.41335034370422363,1.2216987609863281,-0.9196920990943909,-0.795737087726593,-0.1192721575498581,-0.5555610656738281,-0.8015329837799072,0.3944137692451477,-0.591482937335968,0.47415056824684143,0.1254691779613495,0.9874767065048218,-0.37733834981918335,0.3453299403190613,0.4928203821182251,0.8661395311355591,1.5617036819458008,2.6845881938934326,0.8470380902290344,-1.4866034984588623,0.04868369922041893,0.4188043177127838,0.7838325500488281,0.7530446648597717,-1.5545846223831177,1.8179106712341309,-0.472625195980072,-0.9335073232650757,1.320741891860962,1.048994541168213,1.8936309814453125,-0.5573172569274902,0.5437566041946411,0.5012906789779663,-0.31374529004096985,0.732056736946106,0.636908769607544,-2.1025662422180176,0.20822763442993164,-0.26343563199043274,2.0209238529205322,-2.298464298248291,0.37167900800704956,0.5836949348449707,-0.7955687046051025,0.46868929266929626,-1.1641871929168701,-0.9902604818344116,1.8291279077529907,-0.8932712078094482,0.608014702796936,2.15388822555542,0.6179283857345581,1.5026122331619263,-2.701597213745117,-0.14326751232147217,-0.3302338123321533,0.7239153385162354,1.6160887479782104,0.6920582056045532,1.2744539976119995,0.11084599047899246,-1.0027036666870117,-0.6750465631484985,-0.6368659138679504,-1.264015793800354,-0.10575518012046814,-0.9309206604957581,-2.7047414779663086,0.13418447971343994,-0.5699830651283264,-1.1597490310668945,-0.013706397265195847,-0.2092798948287964,-0.2779158353805542,0.1299494504928589,-0.6856398582458496,0.41465240716934204,1.2610381841659546,0.18650740385055542,1.1187924146652222,-0.01749590039253235,0.6054960489273071,0.0649365782737732,-0.41995954513549805,1.628035306930542,-0.38286569714546204,-0.5532588958740234,0.01551055908203125,0.1323813945055008,1.3772474527359009,-2.487116813659668,1.8318281173706055,1.0152831077575684,0.3135144114494324,-0.7514231204986572,0.4854469895362854,-0.6610418558120728,0.757061243057251,0.4852650463581085,0.397827684879303,0.23089273273944855,-0.08699959516525269,0.6529378294944763,1.1741210222244263,0.07946139574050903,-0.44632768630981445,-0.7514700889587402,1.4998340606689453,-0.46897807717323303,0.958962619304657,0.2992061376571655,-0.07803148031234741,-2.3207578659057617,0.30207300186157227,0.5596517324447632,-0.40937456488609314,-1.407796025276184,-0.22191816568374634,-0.5634438991546631,-3.0485212802886963,1.0235835313796997,-0.8725920915603638,0.9086666107177734,1.0267221927642822,0.8747279644012451,1.5117865800857544,-1.34221351146698,-0.6417704224586487,-0.030370324850082397,0.6192746162414551,0.45342737436294556,-1.830334186553955,-1.019767165184021,1.0290906429290771,-0.5723456740379333,0.5984709858894348,-0.0759003758430481,0.007479645311832428,-0.7353750467300415,-1.890277624130249,-0.4844258427619934,0.9608070850372314,-0.8488019704818726,-0.6423420906066895,-0.11557100713253021,2.314103841781616,-0.563640832901001,1.023129940032959,-0.363483190536499,-1.0613243579864502,-0.6007333993911743,-0.09178346395492554,-0.01866719126701355,1.0135948657989502,0.15761911869049072,-1.5055797100067139,-0.9396899938583374,1.8970180749893188,0.6454000473022461,0.8123121857643127,0.14028820395469666,0.3144325613975525,-0.22576123476028442,-0.8263512849807739,-1.2674094438552856,0.5592944622039795,-1.1200271844863892 -2914,-0.08990640938282013,-0.21001467108726501,-0.3599163293838501,-0.8400653600692749,-1.3302042484283447,-0.4795789122581482,-1.3672335147857666,1.4687262773513794,-0.02512262761592865,0.651160478591919,-0.22408173978328705,-1.2978132963180542,-0.26886895298957825,-0.2333623170852661,0.14497752487659454,-1.655731201171875,-0.3786028027534485,0.47329890727996826,-1.8024784326553345,0.3112376034259796,-0.4934026002883911,0.9707725048065186,1.420625925064087,0.5121678113937378,0.3588443696498871,-0.7658473253250122,-1.2646642923355103,-0.3089123070240021,0.1341177225112915,-1.3060688972473145,-0.8548614382743835,-1.4865620136260986,-0.39666759967803955,-1.255452275276184,-0.41003113985061646,0.40542709827423096,-2.6478686332702637,-0.3772646188735962,-1.0374088287353516,-0.6573061347007751,0.17825838923454285,-0.816128671169281,0.0926799327135086,0.5360446572303772,0.3980743885040283,-0.3418041467666626,-0.49223756790161133,-1.2008683681488037,-0.9093353152275085,-2.9862170219421387,1.1268877983093262,0.06171417236328125,0.6052147746086121,1.6534448862075806,-2.5231757164001465,0.7077558040618896,-0.2430470585823059,-0.03011724352836609,0.2920466661453247,0.9140902757644653,-0.6451944708824158,-1.5384266376495361,0.405691921710968,-0.9962137341499329,-0.6651899814605713,1.7696231603622437,-2.1148815155029297,1.8225672245025635,-1.3653905391693115,-1.0568954944610596,-1.522207260131836,1.4262175559997559,0.4061615765094757,-1.3596878051757812,-0.013300850987434387,0.35440975427627563,1.4301260709762573,-2.1543960571289062,-1.717186689376831,0.5789525508880615,0.41335034370422363,1.2216987609863281,-0.9196920990943909,-0.795737087726593,-0.1192721575498581,-0.3498705327510834,-0.8015329837799072,0.3944137692451477,-0.591482937335968,0.47415056824684143,0.47095438838005066,0.9874767065048218,-0.37733834981918335,0.3453299403190613,0.4928203821182251,0.8661395311355591,1.5617036819458008,2.6845881938934326,0.8470380902290344,-1.4513927698135376,0.12848621606826782,0.4188043177127838,0.7838325500488281,0.7530446648597717,-1.5545846223831177,1.6058646440505981,-0.41083186864852905,-0.44017815589904785,1.1085045337677002,1.048994541168213,1.8936309814453125,-0.6112701892852783,0.05506443977355957,-0.5886996984481812,-0.31374529004096985,0.920819878578186,0.636908769607544,-2.1025662422180176,0.20822763442993164,-0.26343563199043274,2.0209238529205322,-2.298464298248291,0.37167900800704956,0.5836949348449707,-0.7955687046051025,0.46868929266929626,-1.3268178701400757,-0.9902604818344116,1.8291279077529907,-0.8932712078094482,0.608014702796936,2.521022319793701,-0.8110860586166382,1.5026122331619263,-2.701597213745117,0.46405118703842163,-0.3914259374141693,0.7239153385162354,1.6160887479782104,0.6920582056045532,1.1412620544433594,0.05601189658045769,-1.0027036666870117,-0.6750465631484985,-0.6368659138679504,-1.264015793800354,-0.10575518012046814,-1.6350303888320923,-3.1118083000183105,-0.37077856063842773,-0.5699830651283264,-1.1597490310668945,-0.013706397265195847,-0.2092798948287964,-0.2779158353805542,0.1299494504928589,-0.37233251333236694,0.19342854619026184,1.2610381841659546,0.2620962858200073,1.1187924146652222,-0.01749590039253235,0.6054960489273071,0.0649365782737732,0.25521320104599,1.628035306930542,-0.38286569714546204,-0.27278345823287964,0.42386922240257263,-0.10337500274181366,1.3772474527359009,-1.7151477336883545,2.1155240535736084,1.4919241666793823,0.3135144114494324,-0.7514231204986572,0.4854469895362854,-0.6610418558120728,0.757061243057251,0.4268496334552765,0.397827684879303,0.23089273273944855,-0.08699959516525269,0.8544179201126099,1.1741210222244263,0.07946139574050903,-0.44632768630981445,-0.7685163021087646,1.4998340606689453,-1.1428309679031372,0.4582694172859192,0.6535991430282593,-0.07803148031234741,-1.7668662071228027,-0.6239163279533386,0.5596517324447632,-0.40937456488609314,-1.407796025276184,-0.34224408864974976,-0.5634438991546631,-2.549861431121826,1.0235835313796997,-0.8725920915603638,1.0691173076629639,1.0267221927642822,0.8747279644012451,1.5117865800857544,-1.1294586658477783,-0.6691539287567139,0.6651142835617065,0.6192746162414551,0.45342737436294556,-1.830334186553955,-1.019767165184021,1.3980423212051392,-0.5723456740379333,0.5984709858894348,-0.15951843559741974,0.015537225641310215,-0.3076170086860657,-1.890277624130249,-0.4844258427619934,0.968044638633728,-0.8488019704818726,-1.296552300453186,-0.11557100713253021,2.314103841781616,-0.563640832901001,1.2713347673416138,-0.09883654117584229,-1.0613243579864502,-0.6007333993911743,-0.09178346395492554,-0.01986568421125412,1.0135948657989502,0.15761911869049072,-1.5055797100067139,-0.9396899938583374,1.8727420568466187,0.6454000473022461,0.5969780683517456,0.14028820395469666,0.0002154707908630371,-0.22576123476028442,-0.8263512849807739,-0.9888859987258911,0.5592944622039795,-0.759347677230835 -2915,-0.08990640938282013,-0.21001467108726501,-0.2780085802078247,-0.8400653600692749,-0.9216727018356323,-0.4795789122581482,-1.3672335147857666,1.251369595527649,-0.13846144080162048,0.526060163974762,-0.22408173978328705,-1.2978132963180542,-0.26886895298957825,-0.2333623170852661,0.0882677286863327,-1.655731201171875,-0.3786028027534485,0.47329890727996826,-1.8024784326553345,0.3112376034259796,-0.638469934463501,0.23574751615524292,1.420625925064087,0.5121678113937378,0.3588443696498871,-0.7658473253250122,-1.2646642923355103,-0.3089123070240021,-0.07092687487602234,-1.3060688972473145,-1.2001054286956787,-1.0530935525894165,-0.39666759967803955,-1.255452275276184,0.08646178245544434,0.40542709827423096,-2.4567556381225586,-0.39194735884666443,-1.0374088287353516,-0.6573061347007751,-0.6235562562942505,-0.816128671169281,0.0926799327135086,0.5360446572303772,0.559160590171814,-0.79136061668396,-0.04894411563873291,-1.2008683681488037,-0.9093353152275085,-2.9862170219421387,1.1268877983093262,0.06171417236328125,0.6052147746086121,1.9245717525482178,-2.5231757164001465,0.7077558040618896,-0.2430470585823059,0.45618936419487,0.2920466661453247,0.9140902757644653,-0.7917631268501282,-1.5384266376495361,0.405691921710968,-0.7698373794555664,-0.6651899814605713,1.635541319847107,-2.1148815155029297,1.8225672245025635,-0.9176555871963501,-1.0568954944610596,-1.522207260131836,1.4262175559997559,0.4061615765094757,-1.3596878051757812,-0.09096862375736237,0.35440975427627563,1.32024347782135,-2.1543960571289062,-2.1939234733581543,0.5789525508880615,0.41335034370422363,1.2216987609863281,-0.9196920990943909,-0.795737087726593,0.06382869184017181,-0.3498705327510834,-0.8015329837799072,0.01621660590171814,-0.591482937335968,0.47415056824684143,0.47095438838005066,0.9874767065048218,-0.14917150139808655,0.3453299403190613,0.4928203821182251,0.8661395311355591,1.5617036819458008,2.6845881938934326,0.8470380902290344,-1.4513927698135376,0.12848621606826782,0.4188043177127838,0.7838325500488281,0.7530446648597717,-1.5545846223831177,1.2122420072555542,0.621726930141449,-0.44017815589904785,0.8704686164855957,1.048994541168213,1.8936309814453125,-0.6112701892852783,0.7960588932037354,-0.5886996984481812,-0.31374529004096985,0.7279722094535828,0.6134817004203796,-2.1025662422180176,0.20822763442993164,-0.8485362529754639,2.0209238529205322,-2.298464298248291,0.37167900800704956,0.6929700374603271,-0.7955687046051025,0.46868929266929626,-1.3268178701400757,-0.703814685344696,1.8291279077529907,-1.0788639783859253,0.608014702796936,2.521022319793701,-0.8110860586166382,1.5026122331619263,-2.701597213745117,0.46405118703842163,-0.2010740339756012,0.7239153385162354,1.8208531141281128,-0.5333945751190186,0.7319703102111816,0.05601189658045769,-1.0027036666870117,0.425579309463501,-0.6368659138679504,-2.458003044128418,-0.10575518012046814,-1.6350303888320923,-3.432527780532837,-0.37077856063842773,-0.5699830651283264,-1.1597490310668945,-0.013706397265195847,0.32944178581237793,-0.3342821002006531,0.12965962290763855,-0.7115362882614136,0.48034733533859253,1.2610381841659546,0.2620962858200073,0.8501899242401123,-0.01749590039253235,0.23481783270835876,0.0649365782737732,0.4255317449569702,1.8250278234481812,-0.38286569714546204,-0.27278345823287964,0.42386922240257263,-0.10337500274181366,1.3657103776931763,-1.7151477336883545,1.4631171226501465,1.4919241666793823,0.3135144114494324,-0.758674681186676,0.4854469895362854,-0.6610418558120728,0.757061243057251,0.4268496334552765,0.6509662866592407,0.06989210844039917,-0.08699959516525269,0.8544179201126099,1.1741210222244263,0.3273257613182068,-0.44632768630981445,-1.1555564403533936,1.4998340606689453,-1.1428309679031372,0.4582694172859192,0.6535991430282593,-0.07803148031234741,-1.7668662071228027,-0.6239163279533386,0.5596517324447632,-0.26239216327667236,-1.7743853330612183,-0.6973379850387573,-0.5634438991546631,-2.549861431121826,1.0235835313796997,-1.1932051181793213,1.0691173076629639,1.0267221927642822,0.8747279644012451,1.5117865800857544,-1.4475154876708984,-0.6691539287567139,0.6651142835617065,0.6192746162414551,0.45342737436294556,-1.830334186553955,-1.019767165184021,1.3980423212051392,0.23685115575790405,1.5992629528045654,-0.15951843559741974,0.015537225641310215,-0.3076170086860657,-2.1099343299865723,-0.6390854716300964,0.968044638633728,-0.8488019704818726,0.24661517143249512,-0.11557100713253021,2.314103841781616,-0.563640832901001,0.3819933533668518,-0.09883654117584229,-0.6529662013053894,-0.6630136370658875,-0.09178346395492554,-0.01986568421125412,1.0135948657989502,0.32740700244903564,-1.5055797100067139,-0.9396899938583374,1.8727420568466187,0.6454000473022461,0.5969780683517456,0.2820340394973755,0.0002154707908630371,-0.22576123476028442,-0.8263512849807739,-1.269321322441101,0.5592944622039795,-0.759347677230835 -2916,0.056532278656959534,-0.4145898222923279,-0.2780085802078247,-0.8400653600692749,-0.9216727018356323,-0.36377260088920593,-1.3672335147857666,1.251369595527649,-0.13846144080162048,0.4756714999675751,-0.22408173978328705,-1.2978132963180542,-0.26886895298957825,-0.6656091213226318,0.0882677286863327,-1.655731201171875,-0.7908474206924438,0.47329890727996826,-1.8024784326553345,0.3112376034259796,-0.4663268029689789,0.23574751615524292,1.420625925064087,0.5194215774536133,0.3588443696498871,-0.7658473253250122,-0.9867958426475525,-0.3089123070240021,-0.07092687487602234,-1.3060688972473145,-1.0613967180252075,-1.0530935525894165,-0.39666759967803955,-1.255452275276184,0.08646178245544434,0.40542709827423096,-2.4567556381225586,-0.39194735884666443,-1.0374088287353516,-1.0625977516174316,0.02293342351913452,-0.816128671169281,0.0926799327135086,0.5360446572303772,0.559160590171814,-0.754922091960907,-0.04894411563873291,-0.9116916060447693,-0.9093353152275085,-3.658245325088501,1.1268877983093262,1.0410994291305542,0.6052147746086121,1.9245717525482178,-2.5231757164001465,0.47014880180358887,-0.2430470585823059,-0.06940421462059021,0.2920466661453247,1.4049997329711914,-0.7917631268501282,-1.6346373558044434,0.19637086987495422,-0.7698373794555664,-0.6651899814605713,1.635541319847107,-2.1148815155029297,1.8225672245025635,-0.9176555871963501,-1.0568954944610596,-1.2265684604644775,1.4262175559997559,0.4061615765094757,-1.3577193021774292,-0.05425247550010681,0.35440975427627563,1.32024347782135,-2.1785457134246826,-2.1939234733581543,0.5789525508880615,0.15325936675071716,1.4733633995056152,-0.9196920990943909,-0.795737087726593,0.021354742348194122,-0.3498705327510834,-0.8015329837799072,0.7283957004547119,-0.591482937335968,1.428538203239441,0.47095438838005066,0.959474503993988,-0.14917150139808655,0.3453299403190613,0.7792725563049316,0.8661395311355591,1.7320599555969238,2.6845881938934326,0.8470380902290344,-0.7012174129486084,0.12848621606826782,0.4188043177127838,0.7838325500488281,0.7530446648597717,-1.5545846223831177,1.2122420072555542,0.34334078431129456,-0.44017815589904785,0.8704686164855957,1.048994541168213,1.8936309814453125,-0.5808731913566589,0.7960588932037354,-0.5886996984481812,-0.31374529004096985,0.7279722094535828,0.7694888114929199,-2.1025662422180176,0.06480659544467926,-0.8485362529754639,2.0209238529205322,-2.298464298248291,0.37167900800704956,0.3880546987056732,-0.21356487274169922,0.46868929266929626,-1.1642364263534546,-0.703814685344696,1.8291279077529907,-1.0788639783859253,0.608014702796936,2.521022319793701,-0.8028404712677002,1.5026122331619263,-2.701597213745117,0.46405118703842163,-0.2010740339756012,0.7239153385162354,1.8208531141281128,-0.5333945751190186,0.7319703102111816,0.05601189658045769,-0.9146496653556824,-0.5543444752693176,-0.6368659138679504,-2.458003044128418,-0.10575518012046814,-1.6350303888320923,-3.432527780532837,-0.37077856063842773,-0.5699830651283264,-1.1597490310668945,-0.013706397265195847,0.31787732243537903,-0.3342821002006531,0.7690525054931641,-0.8271929025650024,0.48034733533859253,0.9294136762619019,0.2620962858200073,0.8501899242401123,-0.8074129819869995,0.23481783270835876,0.0649365782737732,0.4255317449569702,1.8250278234481812,-0.38286569714546204,-0.1369073987007141,0.42386922240257263,-0.10337500274181366,1.3657103776931763,-2.629842519760132,1.4631171226501465,1.5107370615005493,0.3135144114494324,-0.758674681186676,0.12852096557617188,-0.6610418558120728,0.757061243057251,0.4268496334552765,0.6509662866592407,-0.5310925245285034,-0.1963387131690979,0.8544179201126099,1.1741210222244263,0.3273257613182068,-0.44632768630981445,-0.823175311088562,1.4998340606689453,-1.034630298614502,0.4582694172859192,0.6535991430282593,-0.07803148031234741,-1.577358365058899,-0.6239163279533386,0.5596517324447632,-0.22030481696128845,-1.7743853330612183,-0.30696192383766174,-0.5230698585510254,-2.549861431121826,1.0235835313796997,-0.6481966972351074,0.9225441217422485,1.0267221927642822,0.8747279644012451,1.5361804962158203,-1.4475154876708984,-0.6691539287567139,0.3291627764701843,0.6192746162414551,0.13326969742774963,-1.7330454587936401,-1.019767165184021,1.3980423212051392,0.23685115575790405,1.3565996885299683,0.0797489583492279,0.015537225641310215,-0.3076170086860657,-2.1099343299865723,-0.6390854716300964,0.6702448129653931,-1.033041000366211,0.24661517143249512,-0.6350738406181335,1.7655549049377441,-0.563640832901001,0.3819933533668518,-0.09883654117584229,-0.6033941507339478,-0.7844481468200684,-0.09178346395492554,-0.21163207292556763,1.4000505208969116,0.32740700244903564,-1.363970160484314,-0.9396899938583374,1.8727420568466187,0.6454000473022461,0.9939559698104858,0.2820340394973755,-0.7007713913917542,-0.17821621894836426,-0.8263512849807739,-1.269321322441101,0.5592944622039795,-0.759347677230835 -2917,0.056532278656959534,-0.4145898222923279,-0.2780085802078247,-0.8400653600692749,-0.4356064200401306,-0.36377260088920593,-1.3672335147857666,1.145764946937561,-0.13846144080162048,1.1722655296325684,0.5613158941268921,-1.2978132963180542,0.04634201526641846,-0.6656091213226318,-0.05973464250564575,-0.7955542802810669,-0.7908474206924438,0.25683289766311646,-1.5225790739059448,0.3112376034259796,-0.3130131661891937,0.23574751615524292,1.420625925064087,0.4819074869155884,0.3588443696498871,-0.5284512042999268,-0.9867958426475525,-0.4816089868545532,-0.07092687487602234,-1.3060688972473145,-1.0613967180252075,-1.0530935525894165,-0.39666759967803955,-1.255452275276184,-0.2810055613517761,0.40542709827423096,-2.4567556381225586,-0.39194735884666443,-1.0374088287353516,-0.4050714373588562,0.02293342351913452,-0.816128671169281,0.0926799327135086,0.5360446572303772,0.559160590171814,-0.754922091960907,-0.04894411563873291,-0.9116916060447693,-0.9093353152275085,-3.658245325088501,1.1268877983093262,1.0410994291305542,0.6052147746086121,1.6863152980804443,-2.4062976837158203,0.47014880180358887,-0.2430470585823059,-0.06940421462059021,0.2920466661453247,1.5571497678756714,-0.7917631268501282,-1.6346373558044434,0.19637086987495422,-0.7698373794555664,-0.6651899814605713,1.635541319847107,-2.1148815155029297,2.123826742172241,-0.9176555871963501,-1.0568954944610596,-1.384021282196045,0.47521138191223145,0.65619957447052,-1.3577193021774292,-0.05425247550010681,0.35440975427627563,1.32024347782135,-2.1785457134246826,-2.1939234733581543,0.5789525508880615,0.14978055655956268,1.681632399559021,-0.386122465133667,-0.795737087726593,0.021354742348194122,-0.3498705327510834,0.7761238813400269,0.5469176173210144,-0.230594664812088,1.428538203239441,0.47095438838005066,0.959474503993988,-0.33936330676078796,0.3453299403190613,0.7792725563049316,0.20997852087020874,1.7320599555969238,2.6845881938934326,0.8470380902290344,-0.7012174129486084,0.12848621606826782,0.4188043177127838,0.7838325500488281,0.7530446648597717,-1.5545846223831177,1.3352062702178955,0.34334078431129456,-0.44017815589904785,0.8704686164855957,1.048994541168213,1.8936309814453125,-0.8536137342453003,1.1081331968307495,-0.5886996984481812,-0.009368866682052612,0.8171088099479675,0.7694888114929199,-2.1025662422180176,0.2779381573200226,-0.8485362529754639,2.0209238529205322,-2.298464298248291,0.37167900800704956,0.3880546987056732,-0.21356487274169922,0.46868929266929626,-0.6296940445899963,-0.703814685344696,1.8291279077529907,-1.0788639783859253,0.608014702796936,2.521022319793701,-0.8028404712677002,1.5026122331619263,-2.5012271404266357,0.46405118703842163,-0.07259120047092438,0.7239153385162354,1.1134412288665771,-0.5333945751190186,0.7319703102111816,0.05601189658045769,-0.3682207465171814,-0.5543444752693176,-1.5021507740020752,-1.581437110900879,-0.10575518012046814,-1.6350303888320923,-3.432527780532837,-0.37077856063842773,-0.49761468172073364,-1.3020046949386597,-0.013706397265195847,0.1342652589082718,-0.9798490405082703,0.933235228061676,-0.6014891862869263,0.48034733533859253,0.9294136762619019,0.9944483637809753,0.8501899242401123,-0.9942104816436768,0.23481783270835876,0.0649365782737732,0.4255317449569702,0.7283753156661987,-0.38286569714546204,-0.1369073987007141,0.42386922240257263,-0.11414369195699692,1.3657103776931763,-2.3021786212921143,1.4631171226501465,1.3733794689178467,0.3135144114494324,-0.758674681186676,0.12852096557617188,-0.6610418558120728,0.757061243057251,0.4268496334552765,0.6509662866592407,-0.07961851358413696,-0.1963387131690979,0.9002690315246582,1.1741210222244263,0.3273257613182068,-0.44632768630981445,-0.9190168380737305,1.4998340606689453,-1.034630298614502,0.4582694172859192,0.9182955026626587,-0.07803148031234741,-1.9048138856887817,-0.6239163279533386,0.5596517324447632,-0.22030481696128845,-1.7743853330612183,-0.4509395658969879,-0.5230698585510254,-2.549861431121826,1.0235835313796997,-0.6481966972351074,0.9225441217422485,1.0267221927642822,0.8747279644012451,1.7178796529769897,-1.4475154876708984,-0.6691539287567139,0.7071355581283569,0.6192746162414551,0.13326969742774963,-1.7504907846450806,-1.019767165184021,1.6115193367004395,0.23685115575790405,1.3565996885299683,0.0797489583492279,0.015537225641310215,-0.3076170086860657,-2.1099343299865723,-0.6390854716300964,0.6702448129653931,-0.3413982391357422,0.5202010869979858,-0.6350738406181335,1.8529009819030762,-0.563640832901001,0.3819933533668518,-0.09883654117584229,-0.9080300331115723,-0.4472738206386566,-0.13485968112945557,-0.740386962890625,1.4000505208969116,0.32740700244903564,-1.363970160484314,-0.9396899938583374,1.8727420568466187,0.6454000473022461,0.9939559698104858,0.2820340394973755,-0.615220308303833,-0.17821621894836426,-0.8263512849807739,-1.269321322441101,0.5592944622039795,-0.759347677230835 -2918,-0.31271952390670776,-0.13495278358459473,-0.2780085802078247,-0.8400653600692749,-0.4356064200401306,-0.7251969575881958,-1.3672335147857666,1.145764946937561,-0.13846144080162048,1.1722655296325684,0.4460216462612152,-1.2978132963180542,0.04634201526641846,-0.6656091213226318,-0.05973464250564575,-0.7955542802810669,-0.7908474206924438,0.3957810401916504,-1.8666763305664062,0.3112376034259796,-0.3130131661891937,0.40501341223716736,1.420625925064087,0.6690853834152222,0.12658880650997162,-0.5284512042999268,-0.9867958426475525,-0.4816089868545532,-0.07092687487602234,-1.3060688972473145,-1.0613967180252075,-1.0530935525894165,-0.37843385338783264,-1.255452275276184,-0.2810055613517761,0.2643027901649475,-2.4567556381225586,-0.39194735884666443,-0.7013537287712097,-0.4050714373588562,0.02293342351913452,-0.816128671169281,0.2018783688545227,0.5360446572303772,0.559160590171814,-0.754922091960907,-0.04894411563873291,-0.9116916060447693,-0.9093353152275085,-3.658245325088501,1.1268877983093262,1.4486058950424194,0.9559136629104614,1.6863152980804443,-2.4062976837158203,0.47014880180358887,-0.2430470585823059,-0.06940421462059021,0.2920466661453247,1.2821168899536133,-0.7917631268501282,-1.6346373558044434,-0.12360858917236328,-0.7658227682113647,-0.6651899814605713,1.635541319847107,-1.7479479312896729,2.123826742172241,-0.9176555871963501,-0.944892942905426,-1.384021282196045,0.6846704483032227,0.65619957447052,-1.3577193021774292,-0.05425247550010681,0.35440975427627563,1.32024347782135,-2.5165064334869385,-2.1939234733581543,0.5789525508880615,0.14978055655956268,1.681632399559021,-0.9063522815704346,-0.795737087726593,0.021354742348194122,-0.3498705327510834,0.7761238813400269,0.5469176173210144,-0.230594664812088,1.428538203239441,0.47095438838005066,1.6347050666809082,-0.33936330676078796,0.3453299403190613,1.1806690692901611,0.20997852087020874,1.7320599555969238,2.6845881938934326,0.8470380902290344,-0.7012174129486084,0.12848621606826782,0.4188043177127838,0.7838325500488281,0.7530446648597717,-1.5545846223831177,1.1523903608322144,0.4135052561759949,-0.8426777124404907,0.8704686164855957,1.048994541168213,1.3876979351043701,-0.8536137342453003,1.1081331968307495,-0.5886996984481812,-0.18318623304367065,0.8171088099479675,0.7694888114929199,-2.1025662422180176,0.0970672070980072,-1.502940058708191,2.0209238529205322,-2.298464298248291,0.37167900800704956,0.3880546987056732,-0.21356487274169922,0.46868929266929626,-0.7658654451370239,-0.703814685344696,1.8291279077529907,-0.28366619348526,0.608014702796936,2.521022319793701,-0.8028404712677002,1.5026122331619263,-3.445676803588867,0.46405118703842163,-0.07259120047092438,-0.3724069595336914,1.1134412288665771,-0.5333945751190186,0.7319703102111816,0.05601189658045769,0.10392051935195923,-0.7940260171890259,-1.3944483995437622,-1.581437110900879,-0.10575518012046814,-1.6350303888320923,-3.432527780532837,-0.37077856063842773,-0.49761468172073364,-1.3020046949386597,-0.019246116280555725,0.1342652589082718,-0.9798490405082703,0.933235228061676,-0.4358521103858948,0.48034733533859253,0.9294136762619019,0.9944483637809753,0.8501899242401123,-0.9942104816436768,1.3090541362762451,0.0649365782737732,0.4255317449569702,0.9379592537879944,-0.38286569714546204,0.4070456027984619,0.7836954593658447,-0.11414369195699692,1.3657103776931763,-2.3021786212921143,1.4631171226501465,0.8019727468490601,0.3135144114494324,-0.31520161032676697,0.12852096557617188,-0.7348613739013672,0.5325077772140503,0.4268496334552765,0.765761137008667,-0.7366729974746704,-0.07112406194210052,0.9002690315246582,-0.09012794494628906,0.3273257613182068,-0.44632768630981445,-0.9190168380737305,1.4998340606689453,-1.034630298614502,0.4582694172859192,0.9182955026626587,-0.07803148031234741,-1.9048138856887817,-0.6239163279533386,0.5596517324447632,-0.22030481696128845,-1.074650526046753,-0.4509395658969879,-0.5230698585510254,-1.593675136566162,1.361912488937378,-0.6481966972351074,0.9225441217422485,1.0267221927642822,0.8747279644012451,1.7178796529769897,-1.4475154876708984,-0.79598069190979,0.8203995227813721,0.6192746162414551,0.13326969742774963,-1.6677131652832031,-1.019767165184021,1.6115193367004395,0.23685115575790405,1.4967631101608276,0.0797489583492279,0.126027449965477,-0.3076170086860657,-1.8139795064926147,-0.6390854716300964,0.6702448129653931,-0.3413982391357422,-0.954177737236023,-0.6350738406181335,1.8529009819030762,-0.563640832901001,0.3819933533668518,-0.47485098242759705,-0.9080300331115723,-0.4472738206386566,0.2550082206726074,-0.3047005832195282,0.794080913066864,0.32740700244903564,-1.602476716041565,-0.9396899938583374,1.8727420568466187,0.47295472025871277,0.9939559698104858,0.2820340394973755,-0.4450621008872986,-0.17821621894836426,-0.8263512849807739,-1.269321322441101,0.5592944622039795,-0.759347677230835 -2919,-0.40161123871803284,-0.13495278358459473,-0.2780085802078247,-1.2326658964157104,-0.4356064200401306,-0.7251969575881958,-1.3672335147857666,1.145764946937561,-0.13846144080162048,1.1722655296325684,0.4460216462612152,-1.2978132963180542,0.04634201526641846,-0.6656091213226318,0.1879383623600006,-0.7955542802810669,-0.7908474206924438,0.3957810401916504,-1.8666763305664062,0.3112376034259796,-0.3130131661891937,0.40501341223716736,1.7164639234542847,0.9663833379745483,0.14710132777690887,-0.5284512042999268,-0.9867958426475525,-0.21389618515968323,-0.07092687487602234,-1.3060688972473145,-1.0613967180252075,-1.0530935525894165,-0.37843385338783264,-1.255452275276184,-0.2810055613517761,0.26511350274086,-2.4567556381225586,-0.15981055796146393,-0.7013537287712097,-0.4050714373588562,0.02293342351913452,-0.6843389272689819,0.2018783688545227,0.5360446572303772,0.40563035011291504,-0.6713613271713257,-0.04894411563873291,-0.7170234322547913,-0.9093353152275085,-3.658245325088501,1.354995608329773,1.4486058950424194,0.9559136629104614,2.1679227352142334,-2.014580488204956,0.47014880180358887,-0.2430470585823059,-0.06940421462059021,0.1606212854385376,1.2821168899536133,-0.7917631268501282,-1.6346373558044434,-0.12360858917236328,-0.7658227682113647,-0.6651899814605713,1.635541319847107,-1.7479479312896729,2.123826742172241,-0.8696762919425964,-0.944892942905426,-1.384021282196045,1.0678520202636719,0.65619957447052,-0.7750535607337952,-0.05425247550010681,0.423980712890625,1.32024347782135,-2.5165064334869385,-2.1939234733581543,0.5789525508880615,0.4900350570678711,1.681632399559021,-1.347702145576477,-0.795737087726593,0.0056152548640966415,-0.3498705327510834,0.7761238813400269,0.5155560970306396,-0.230594664812088,1.428538203239441,0.47095438838005066,0.9509298205375671,-0.33936330676078796,0.3453299403190613,1.4347025156021118,0.20997852087020874,1.7320599555969238,2.720686197280884,0.8470380902290344,-1.0525879859924316,0.11005744338035583,0.4188043177127838,0.7838325500488281,0.7530446648597717,-1.5545846223831177,1.1523903608322144,0.4135052561759949,-0.8426777124404907,0.8704686164855957,1.048994541168213,1.3305598497390747,-0.8536137342453003,1.1081331968307495,-0.5886996984481812,-0.18318623304367065,0.8171088099479675,0.1562718152999878,-2.1025662422180176,0.0970672070980072,-0.9477553367614746,2.0209238529205322,-2.298464298248291,0.24142944812774658,0.3880546987056732,-0.21356487274169922,0.46868929266929626,-0.7658654451370239,-0.703814685344696,1.8291279077529907,-0.28366619348526,0.608014702796936,2.521022319793701,-0.8028404712677002,1.5026122331619263,-3.445676803588867,0.46405118703842163,-0.07259120047092438,-0.3724069595336914,1.1134412288665771,-0.3553273379802704,0.7319703102111816,0.05601189658045769,0.10392051935195923,-0.7940260171890259,-1.3944483995437622,-1.2277756929397583,-0.10575518012046814,-1.6350303888320923,-2.8783881664276123,-0.37077856063842773,-0.49761468172073364,-1.3020046949386597,-0.019246116280555725,0.1342652589082718,-0.9798490405082703,0.933235228061676,-0.4358521103858948,0.48034733533859253,0.9294136762619019,0.9944483637809753,0.7130739688873291,-0.788303554058075,1.3090541362762451,0.0649365782737732,0.4255317449569702,0.9379592537879944,-0.38286569714546204,0.7816224098205566,0.7836954593658447,-0.11414369195699692,1.3657103776931763,-2.804755687713623,1.4631171226501465,0.8019727468490601,0.3135144114494324,-0.2819892168045044,0.12852096557617188,-0.7348613739013672,0.5023764371871948,0.4268496334552765,0.49987831711769104,-0.7366729974746704,-0.07112406194210052,0.9002690315246582,-0.09012794494628906,0.4562825560569763,-0.44632768630981445,-0.9190168380737305,0.8801950216293335,-1.034630298614502,0.4582694172859192,0.9182955026626587,-0.07803148031234741,-1.9048138856887817,-0.6239163279533386,0.5596517324447632,-0.2997100353240967,-1.074650526046753,-0.4509395658969879,-0.5230698585510254,-1.593675136566162,1.361912488937378,-0.6481966972351074,0.9225441217422485,1.0267221927642822,0.7004181742668152,1.7178796529769897,-1.4475154876708984,-0.79598069190979,0.8203995227813721,-0.12352132797241211,-0.5105756521224976,-1.6677131652832031,-1.019767165184021,1.1062755584716797,-0.1824258267879486,1.4967631101608276,0.0797489583492279,0.126027449965477,-0.3076170086860657,-1.3775017261505127,-0.6390854716300964,0.6702448129653931,-0.6336077451705933,-0.954177737236023,-0.6459545493125916,1.8529009819030762,-0.563640832901001,0.35818326473236084,-0.47485098242759705,-0.9080300331115723,-0.4472738206386566,0.2550082206726074,-0.21317332983016968,0.794080913066864,0.32740700244903564,-1.602476716041565,-0.9396899938583374,1.8727420568466187,0.47295472025871277,0.9939559698104858,0.2820340394973755,-0.4450621008872986,-0.17821621894836426,-0.5786706209182739,-1.269321322441101,1.3475193977355957,-0.24976354837417603 -2920,-0.40161123871803284,-0.13495278358459473,-0.2780085802078247,-1.182160496711731,-0.4356064200401306,-0.7251969575881958,-1.4376220703125,1.145764946937561,-0.13846144080162048,1.1722655296325684,0.4460216462612152,-0.8611782789230347,-0.19720903038978577,-0.6656091213226318,0.1879383623600006,-0.7955542802810669,-0.7908474206924438,0.3957810401916504,-1.8666763305664062,-0.14165571331977844,-0.7013554573059082,0.6513645648956299,1.7164639234542847,0.2527037262916565,0.14710132777690887,-0.2739677131175995,-0.9867958426475525,-0.0770859569311142,-0.07092687487602234,-1.3060688972473145,-1.0613967180252075,-1.0530935525894165,-0.37843385338783264,-1.255452275276184,-0.2810055613517761,0.26511350274086,-2.4567556381225586,-0.518039345741272,-1.0253289937973022,-0.52218097448349,0.02293342351913452,-0.9007103443145752,0.2018783688545227,0.3521203398704529,0.40563035011291504,-0.6713613271713257,-0.04894411563873291,-0.7824936509132385,-0.9093353152275085,-3.658245325088501,1.354995608329773,1.3772938251495361,0.9559136629104614,2.1679227352142334,-2.014580488204956,0.9972474575042725,-0.5942260026931763,-0.09467501193284988,0.06239791959524155,0.9179584383964539,-0.7917631268501282,-1.2542634010314941,-0.12360858917236328,-0.7658227682113647,0.19331026077270508,1.635541319847107,-1.7479479312896729,1.440746784210205,-0.7785698175430298,-0.6976671814918518,-1.384021282196045,1.0678520202636719,0.3651012182235718,-0.7750535607337952,-0.05425247550010681,0.423980712890625,1.4215463399887085,-2.5165064334869385,-1.0460691452026367,0.8248658776283264,0.26564276218414307,1.1269309520721436,-1.347702145576477,-0.6586898565292358,-0.18400433659553528,-0.3498705327510834,0.7761238813400269,0.048101603984832764,-0.230594664812088,1.428538203239441,-0.14582028985023499,0.9509298205375671,-0.33936330676078796,0.3453299403190613,1.0003392696380615,1.1146821975708008,1.7320599555969238,2.720686197280884,0.8470380902290344,-1.0525879859924316,0.11005744338035583,0.4188043177127838,0.4581039845943451,0.7530446648597717,-1.5545846223831177,1.1523903608322144,0.4135052561759949,-0.9588615894317627,0.8704686164855957,1.048994541168213,0.9106362462043762,-0.8536137342453003,1.1081331968307495,-0.5886996984481812,-0.18318623304367065,0.8171088099479675,-0.05229319632053375,-2.1025662422180176,0.0970672070980072,-1.5853232145309448,0.9256694316864014,-2.298464298248291,1.248451590538025,0.3880546987056732,-0.21356487274169922,0.46868929266929626,-0.7658654451370239,-0.703814685344696,2.145108938217163,-0.28366619348526,1.1187210083007812,2.521022319793701,-0.8028404712677002,1.5026122331619263,-3.5155720710754395,-0.02857723832130432,-0.05178823322057724,-0.3724069595336914,1.75448477268219,-0.3553273379802704,0.028374195098876953,0.05601189658045769,0.10392051935195923,-0.7940260171890259,-1.3040379285812378,-1.2277756929397583,-0.10575518012046814,-1.4337879419326782,-2.3941946029663086,-0.37077856063842773,-0.49761468172073364,-1.3020046949386597,-0.019246116280555725,0.1342652589082718,-0.6711480617523193,0.7427204847335815,-0.2810671925544739,-0.14280062913894653,0.7908108234405518,1.1610283851623535,0.7130739688873291,-0.788303554058075,0.08404672145843506,0.0649365782737732,0.3791654407978058,0.9379592537879944,-0.9941778182983398,0.7816224098205566,0.40493354201316833,-0.11414369195699692,1.1764147281646729,-2.804755687713623,1.4631171226501465,0.8019727468490601,0.3135144114494324,-0.2819892168045044,0.12852096557617188,-0.9016761779785156,0.5023764371871948,0.4268496334552765,0.49987831711769104,-0.7366729974746704,-0.07112406194210052,0.9002690315246582,-0.09012794494628906,0.48996132612228394,-0.22760947048664093,-0.42764756083488464,0.8801950216293335,-0.7347065806388855,0.31775349378585815,0.9182955026626587,-0.07803148031234741,-1.9048138856887817,-0.6239163279533386,0.5596517324447632,-0.2997100353240967,-1.074650526046753,-0.4509395658969879,-0.24259892106056213,-1.593675136566162,1.1958789825439453,-0.7598528265953064,0.9225441217422485,1.0267221927642822,0.7004181742668152,1.7178796529769897,-1.4475154876708984,-0.79598069190979,0.8203995227813721,0.5405096411705017,-0.8790123462677002,-1.7393044233322144,-1.019767165184021,1.1062755584716797,-0.19890207052230835,1.7766445875167847,0.0797489583492279,0.22423872351646423,0.1284267008304596,-1.3775017261505127,-0.6390854716300964,0.6702448129653931,0.18615210056304932,-0.954177737236023,-0.6459545493125916,1.8529009819030762,-1.1891796588897705,0.35818326473236084,-0.47485098242759705,-0.9080300331115723,-0.2097099870443344,0.2550082206726074,-0.21317332983016968,0.794080913066864,0.32740700244903564,-1.602476716041565,-0.9396899938583374,1.8727420568466187,0.47295472025871277,0.19577401876449585,0.2820340394973755,-0.4450621008872986,-0.17821621894836426,-0.5786706209182739,-1.269321322441101,1.1330134868621826,-0.24976354837417603 -2921,-0.40161123871803284,-0.13495278358459473,-0.2780085802078247,-1.182160496711731,-0.4356064200401306,-0.7251969575881958,-1.4376220703125,1.2839715480804443,-0.13846144080162048,1.0550774335861206,0.4460216462612152,-0.8611782789230347,-0.23664870858192444,-0.6656091213226318,0.1879383623600006,-0.7955542802810669,-0.6768498420715332,1.0034053325653076,-1.8843342065811157,-0.14165571331977844,-0.3850734829902649,0.6513645648956299,1.9448671340942383,0.2527037262916565,0.07021725922822952,-0.2739677131175995,-0.9867958426475525,-1.033890724182129,-0.07092687487602234,-1.3060688972473145,-1.0613967180252075,-1.1804591417312622,-0.37843385338783264,-1.255452275276184,-0.2810055613517761,0.26511350274086,-2.4567556381225586,-0.518039345741272,-1.0253289937973022,-0.5521928071975708,-0.20727132260799408,-0.9007103443145752,0.2018783688545227,0.3521203398704529,0.4556344747543335,-0.6713613271713257,-0.04894411563873291,-0.7824936509132385,-0.9093353152275085,-3.658245325088501,1.354995608329773,1.3772938251495361,0.9559136629104614,2.1679227352142334,-2.014580488204956,0.9972474575042725,-0.400899738073349,0.2351839244365692,-0.02378787100315094,0.36438608169555664,-0.8137655854225159,-1.2542634010314941,-0.12360858917236328,-0.7658227682113647,0.19331026077270508,1.635541319847107,-1.7479479312896729,1.440746784210205,-0.7584501504898071,-0.6976671814918518,-1.5876868963241577,1.340151309967041,0.3651012182235718,-0.7750535607337952,0.1962091028690338,0.3171173930168152,1.4215463399887085,-2.5165064334869385,-1.0460691452026367,0.3971784710884094,-0.01829621195793152,1.1269309520721436,-1.347702145576477,-0.6586898565292358,-0.15847206115722656,-0.27862435579299927,0.746273398399353,0.21651631593704224,-0.230594664812088,1.428538203239441,-0.01958031952381134,0.9509298205375671,-0.33936330676078796,0.3453299403190613,0.8511269092559814,1.1146821975708008,2.346904754638672,3.008349895477295,0.9141221046447754,-1.0525879859924316,0.11005744338035583,0.4188043177127838,0.62911057472229,0.6484397649765015,-1.5545846223831177,1.1523903608322144,0.4135052561759949,-0.9588615894317627,0.8704686164855957,1.048994541168213,0.6886348724365234,-0.8536137342453003,0.2922850251197815,-0.4750290811061859,-0.18318623304367065,0.8171088099479675,-0.05229319632053375,-2.1025662422180176,0.0970672070980072,-1.5853232145309448,0.9256694316864014,-2.298464298248291,1.248451590538025,0.7172272801399231,-0.4076167047023773,0.46868929266929626,-0.7470031976699829,-0.703814685344696,2.257113218307495,-0.28366619348526,1.1187210083007812,2.470332384109497,-0.8028404712677002,1.9919646978378296,-3.526120901107788,-0.03554798290133476,0.16859033703804016,0.393882155418396,1.75448477268219,-0.3553273379802704,0.028374195098876953,-0.16943864524364471,0.10392051935195923,-0.7940260171890259,-1.3040379285812378,-1.2277756929397583,-0.10575518012046814,-1.4337879419326782,-2.553260564804077,0.3988338112831116,-0.49761468172073364,-1.3020046949386597,-0.019246116280555725,0.1342652589082718,-0.6711480617523193,0.7427204847335815,-0.2810671925544739,-0.14280062913894653,0.7908108234405518,1.1610283851623535,0.7130739688873291,-1.4332704544067383,0.20041164755821228,0.0649365782737732,0.5590350031852722,0.9379592537879944,-0.9941778182983398,0.33036544919013977,0.4485233724117279,-0.10849522054195404,1.1764147281646729,-2.4965133666992188,1.4631171226501465,1.4194316864013672,-0.11946693062782288,0.10310813784599304,0.5373974442481995,-0.9016761779785156,0.5023764371871948,0.4268496334552765,0.49987831711769104,-0.7366729974746704,-0.10621559619903564,0.9002690315246582,-0.09012794494628906,-0.27503639459609985,-0.22760947048664093,-0.8685567378997803,0.8801950216293335,-1.4613832235336304,0.31775349378585815,1.1089975833892822,-0.3871318995952606,-2.5036771297454834,-0.4607577323913574,0.5596517324447632,-0.2997100353240967,-1.074650526046753,-0.4509395658969879,-0.24259892106056213,-1.593675136566162,1.1958789825439453,-0.7598528265953064,1.029004454612732,1.0267221927642822,1.109440565109253,1.278524398803711,-1.4475154876708984,-0.79598069190979,0.8203995227813721,0.5405096411705017,-0.8790123462677002,-1.7393044233322144,-1.019767165184021,0.916110634803772,-0.2635819911956787,1.7766445875167847,0.0797489583492279,0.22423872351646423,0.1284267008304596,-1.1515483856201172,-0.3970782160758972,0.6702448129653931,0.18615210056304932,-0.954177737236023,-0.6459545493125916,1.8529009819030762,-1.1891796588897705,0.35818326473236084,-0.47485098242759705,-0.5385473966598511,0.18410907685756683,0.2550082206726074,-0.21317332983016968,0.794080913066864,0.32740700244903564,-1.602476716041565,-0.9396899938583374,1.8727420568466187,0.47295472025871277,0.19577401876449585,0.29250961542129517,-0.3201972544193268,-0.5679092407226562,-0.5786706209182739,-1.269321322441101,1.1330134868621826,-0.8918966054916382 -2922,-0.7101421356201172,-0.13495278358459473,-0.2780085802078247,-1.182160496711731,-0.3756760358810425,-0.541973888874054,-1.584416151046753,1.2839715480804443,-0.11721968650817871,0.7034403085708618,0.4460216462612152,-0.09537380933761597,-0.21850347518920898,-0.6656091213226318,0.5873600244522095,-0.9719865918159485,-0.6768498420715332,1.0034053325653076,-1.8843342065811157,-0.14165571331977844,-0.3699595332145691,1.0027186870574951,1.9448671340942383,0.2527037262916565,-0.2763223946094513,-0.7640706896781921,-0.9867958426475525,-1.033890724182129,-0.029032915830612183,-1.2963411808013916,-1.0613967180252075,-1.4141595363616943,-0.37843385338783264,-1.137144923210144,-0.9410299062728882,0.26511350274086,-1.774827003479004,-0.518039345741272,-1.0253289937973022,-0.31137615442276,-0.20727132260799408,-0.9007103443145752,0.2018783688545227,0.3521203398704529,0.4556344747543335,-0.6713613271713257,-0.04894411563873291,-0.7824936509132385,-1.0331263542175293,-3.658245325088501,1.354995608329773,1.3772938251495361,0.9559136629104614,2.1679227352142334,-2.014580488204956,0.9336488842964172,-1.019592046737671,-0.03939014673233032,-0.02378787100315094,0.36438608169555664,-0.5230251550674438,-1.2542634010314941,-0.12360858917236328,-0.7658227682113647,0.19331026077270508,1.1788843870162964,-1.7629802227020264,1.440746784210205,-0.785532534122467,-0.6976671814918518,-1.5876868963241577,1.340151309967041,0.3651012182235718,-0.7750535607337952,0.1962091028690338,0.3171173930168152,1.5023587942123413,-2.7208895683288574,-1.0870991945266724,0.3971784710884094,-0.01829621195793152,1.1269309520721436,-1.347702145576477,-0.6586898565292358,-0.15847206115722656,-0.3787386417388916,0.7274737358093262,0.21651631593704224,-0.017895817756652832,1.428538203239441,-0.01958031952381134,1.5683610439300537,-0.33936330676078796,0.3453299403190613,0.8511269092559814,1.1146821975708008,2.346904754638672,3.008349895477295,0.9141221046447754,-1.9624263048171997,0.11005744338035583,0.4188043177127838,0.4880123436450958,0.6484397649765015,-1.5545846223831177,1.1523903608322144,-0.5500414967536926,-0.7278916239738464,0.8704686164855957,1.048994541168213,-0.39386749267578125,-0.8536137342453003,0.2922850251197815,-0.4750290811061859,-0.18318623304367065,0.608291745185852,-0.05229319632053375,-2.1025662422180176,0.0970672070980072,-1.0507926940917969,0.9256694316864014,-2.298464298248291,0.8757134675979614,0.7172272801399231,-0.4076167047023773,0.46868929266929626,-0.12086111307144165,-0.703814685344696,2.257113218307495,-0.28366619348526,1.1187210083007812,2.470332384109497,-0.8028404712677002,1.9919646978378296,-3.526120901107788,-0.03554798290133476,0.16859033703804016,0.2712865471839905,1.75448477268219,-0.003612339496612549,0.028374195098876953,-0.16943864524364471,0.10392051935195923,-0.7940260171890259,-1.3040379285812378,-1.2277756929397583,-1.2193171977996826,-1.4337879419326782,-2.0761446952819824,0.3988338112831116,-0.49761468172073364,-1.3020046949386597,-0.019246116280555725,0.1342652589082718,-0.6711480617523193,0.7427204847335815,0.36271870136260986,-0.14280062913894653,0.7908108234405518,0.5130543112754822,0.994396448135376,-1.4332704544067383,0.6724570393562317,-0.5834487080574036,0.5590350031852722,0.9379592537879944,-0.9941778182983398,0.33036544919013977,0.4485233724117279,-0.10849522054195404,1.1764147281646729,-2.4965133666992188,1.5366588830947876,1.4194316864013672,-0.27420324087142944,0.10310813784599304,0.5373974442481995,-0.9016761779785156,0.5023764371871948,0.4268496334552765,0.8739528059959412,-0.7366729974746704,-0.10621559619903564,0.9002690315246582,-0.09012794494628906,-0.27503639459609985,-0.22760947048664093,-0.8685567378997803,0.8801950216293335,-1.4613832235336304,0.31775349378585815,0.8846584558486938,-0.3871318995952606,-2.5036771297454834,-0.4607577323913574,0.5596517324447632,-0.2997100353240967,-1.074650526046753,-0.4509395658969879,-0.24259892106056213,-1.593675136566162,1.1958789825439453,-0.7598528265953064,1.029004454612732,1.0267221927642822,1.109440565109253,1.278524398803711,-2.2871322631835938,-0.79598069190979,0.7286364436149597,0.5405096411705017,-0.8790123462677002,-1.8898581266403198,-1.019767165184021,0.916110634803772,-1.1063932180404663,1.88970947265625,0.0797489583492279,0.48211362957954407,0.1284267008304596,-1.7046639919281006,-0.7368835210800171,0.6702448129653931,-0.3626921772956848,-0.954177737236023,-0.6459545493125916,1.8529009819030762,-1.0273847579956055,0.35818326473236084,-0.47485098242759705,-0.5385473966598511,0.18410907685756683,0.021327927708625793,-0.21317332983016968,0.794080913066864,0.32740700244903564,-2.111071825027466,-0.9396899938583374,1.8727420568466187,0.47295472025871277,0.19577401876449585,0.3762058615684509,-0.3201972544193268,-0.3468818962574005,-0.325787752866745,-1.269321322441101,1.1330134868621826,-0.8918966054916382 -2923,-0.6402892470359802,-0.13495278358459473,-0.2780085802078247,-1.4977059364318848,0.026069343090057373,-0.541973888874054,-1.439225196838379,1.2839715480804443,-0.11721968650817871,0.7757393717765808,0.4460216462612152,-0.09537380933761597,-0.21850347518920898,-0.011909782886505127,0.5873600244522095,-0.9719865918159485,-0.6768498420715332,0.8206931352615356,-1.9727782011032104,-0.14165571331977844,-0.3699595332145691,1.0027186870574951,1.9448671340942383,0.12973102927207947,-0.2763223946094513,-0.7404630780220032,-0.9867958426475525,-1.8154970407485962,-0.029032915830612183,-1.0021188259124756,-0.5052196979522705,-1.4141595363616943,-0.7888164520263672,-1.137144923210144,-0.7669073343276978,0.26511350274086,-1.7793818712234497,-0.518039345741272,-1.0253289937973022,-0.324447900056839,-0.20727132260799408,-0.5182399749755859,0.2018783688545227,0.3521203398704529,0.4556344747543335,-0.6713613271713257,-0.04894411563873291,-0.7824936509132385,-1.0331263542175293,-3.044759511947632,1.354995608329773,1.3772938251495361,1.072074294090271,2.1679227352142334,-2.014580488204956,0.9336488842964172,-1.019592046737671,-0.03939014673233032,0.31147056818008423,0.36438608169555664,-0.8469308614730835,-1.2542634010314941,-0.12360858917236328,-0.7658227682113647,0.45721352100372314,1.1788843870162964,-1.7629802227020264,1.440746784210205,-0.785532534122467,-0.6976671814918518,-1.5876868963241577,1.130645751953125,0.3651012182235718,-0.7750535607337952,0.1962091028690338,0.12170001864433289,1.5023587942123413,-2.7208895683288574,-1.0870991945266724,0.5696582794189453,-0.01829621195793152,1.1269309520721436,-1.347702145576477,-0.6586898565292358,-0.15847206115722656,-0.6703727841377258,0.7274737358093262,0.21651631593704224,-0.017895817756652832,1.428538203239441,-0.01958031952381134,1.2130026817321777,-0.33936330676078796,0.3453299403190613,0.5682117938995361,1.1146821975708008,2.295340061187744,3.008349895477295,0.9141221046447754,-1.9624263048171997,0.11005744338035583,0.4188043177127838,0.4880123436450958,0.6484397649765015,-1.5545846223831177,1.5033098459243774,-0.5500414967536926,-0.7278916239738464,0.8706333637237549,1.1065196990966797,-0.548620343208313,-0.8536137342453003,-0.05316928029060364,-0.4750290811061859,-0.18318623304367065,0.608291745185852,0.6219388246536255,-2.1025662422180176,0.0970672070980072,-1.0507926940917969,0.9256694316864014,-2.298464298248291,0.8757134675979614,0.7172272801399231,-0.4076167047023773,0.46868929266929626,-0.19936390221118927,-1.156525731086731,1.273833990097046,-0.28366619348526,1.1187210083007812,2.1489319801330566,-0.8028404712677002,1.9919646978378296,-3.526120901107788,-0.03554798290133476,0.16859033703804016,0.2712865471839905,1.75448477268219,-0.15319015085697174,0.028374195098876953,-0.051607683300971985,0.05079750716686249,-0.13076037168502808,-1.1364318132400513,-1.2277756929397583,-2.3200182914733887,-1.4337879419326782,-2.0761446952819824,0.3988338112831116,-0.49761468172073364,-1.3020046949386597,-0.11063950508832932,-0.1310298889875412,-0.5332894325256348,0.7427204847335815,-0.11699044704437256,-0.14280062913894653,0.7908108234405518,0.5130543112754822,0.994396448135376,-1.4332704544067383,0.6724570393562317,-0.5834487080574036,0.5590350031852722,0.9379592537879944,-0.9941778182983398,0.33036544919013977,0.4485233724117279,-0.10849522054195404,1.4267537593841553,-2.4376773834228516,1.5366588830947876,1.6063191890716553,-0.27420324087142944,0.10310813784599304,0.5373974442481995,-1.2418782711029053,0.5023764371871948,0.4268496334552765,0.5604972839355469,-0.7366729974746704,-0.10621559619903564,0.9002690315246582,-0.09012794494628906,-0.27503639459609985,-0.22760947048664093,-0.9191259741783142,0.8801950216293335,-1.4613832235336304,0.6583729982376099,0.8846584558486938,0.22540512681007385,-2.5036771297454834,-0.4607577323913574,0.41434815526008606,-0.2997100353240967,-1.7953487634658813,-0.4509395658969879,-0.24259892106056213,-1.593675136566162,1.1958789825439453,-0.7598528265953064,1.029004454612732,0.798668622970581,1.109440565109253,1.278524398803711,-2.2871322631835938,-0.79598069190979,0.4708888530731201,0.5405096411705017,-0.8790123462677002,-1.8898581266403198,-1.019767165184021,0.916110634803772,-1.1063932180404663,1.598418116569519,0.0797489583492279,0.48211362957954407,0.1284267008304596,-1.7046639919281006,-0.7368835210800171,0.6702448129653931,-0.49612364172935486,-0.954177737236023,-0.6459545493125916,1.8529009819030762,-0.37697821855545044,0.35818326473236084,-0.47485098242759705,-0.17253878712654114,0.18410907685756683,0.021327927708625793,-0.21317332983016968,0.7255417108535767,0.32740700244903564,-2.111071825027466,-0.9396899938583374,1.6008906364440918,0.47295472025871277,0.19577401876449585,0.3762058615684509,-0.3201972544193268,-0.042911648750305176,-0.325787752866745,-1.269321322441101,0.908475935459137,-0.8918966054916382 -2924,-0.6402892470359802,-0.13495278358459473,-0.2780085802078247,-1.4977059364318848,-0.4759751558303833,-0.541973888874054,-1.3810197114944458,1.2839715480804443,-0.012589208781719208,0.7757393717765808,0.4460216462612152,-0.09537380933761597,-0.21850347518920898,-0.011909782886505127,0.6469135284423828,-0.9719865918159485,-0.6768498420715332,0.5771607160568237,-1.9727782011032104,0.050224944949150085,-0.3699595332145691,1.0027186870574951,1.9448671340942383,0.12973102927207947,-0.2763223946094513,-0.7404630780220032,-1.2771575450897217,-1.8154970407485962,-0.029032915830612183,-1.0021188259124756,-0.5052196979522705,-1.0954190492630005,-0.7888164520263672,-1.137144923210144,-0.9469659328460693,-0.06388112902641296,-1.7793818712234497,-0.518039345741272,-1.0253289937973022,-0.324447900056839,-0.20727132260799408,-0.5182399749755859,0.2018783688545227,0.3521203398704529,0.4556344747543335,-0.6713613271713257,-0.04894411563873291,-0.7824936509132385,-1.0763049125671387,-3.044759511947632,1.115958333015442,1.3772938251495361,0.9249186515808105,1.5934193134307861,-2.223999261856079,0.9336488842964172,-1.019592046737671,-0.03939014673233032,0.31147056818008423,0.9940540194511414,-1.0723673105239868,-1.2542634010314941,-0.12360858917236328,-0.7658227682113647,-0.0360446572303772,1.1788843870162964,-1.9007939100265503,1.440746784210205,-0.785532534122467,-0.6976671814918518,-1.5876868963241577,1.130645751953125,0.3651012182235718,-0.850192666053772,0.1962091028690338,0.7578800916671753,1.5552257299423218,-2.7208895683288574,-1.0870991945266724,0.5451251268386841,-0.01829621195793152,1.5146152973175049,-0.831291675567627,-0.6350724101066589,-0.15847206115722656,-0.6703727841377258,0.7274737358093262,0.21651631593704224,-0.017895817756652832,1.0929034948349,-0.01958031952381134,1.2130026817321777,-0.33936330676078796,0.36917710304260254,0.5682117938995361,1.3127498626708984,2.295340061187744,3.008349895477295,0.9141221046447754,-1.9624263048171997,0.11005744338035583,0.4188043177127838,0.9526523947715759,0.6484397649765015,-1.5545846223831177,1.5033098459243774,-0.5500414967536926,-0.7278916239738464,1.2004740238189697,1.1065196990966797,-0.13515880703926086,-0.7586735486984253,-0.05316928029060364,-0.4135608673095703,-0.31950873136520386,0.608291745185852,0.6219388246536255,-2.1025662422180176,0.0970672070980072,-1.3400115966796875,0.8786667585372925,-2.5541129112243652,0.6934712529182434,0.6768596172332764,-0.38046348094940186,0.02337479591369629,-0.19936390221118927,-1.156525731086731,1.273833990097046,-0.28366619348526,1.1187210083007812,1.8758549690246582,-1.2869138717651367,1.9919646978378296,-3.835428237915039,-0.08070410788059235,1.0406361818313599,0.2712865471839905,1.603543996810913,-0.15319015085697174,0.028374195098876953,-0.051607683300971985,0.05079750716686249,-0.13076037168502808,-1.1364318132400513,-1.2277756929397583,-2.3200182914733887,-1.4337879419326782,-1.9792237281799316,0.3988338112831116,-0.49761468172073364,-1.1036202907562256,-0.11063950508832932,-0.1310298889875412,-0.26398685574531555,0.7902359366416931,-0.11699044704437256,-0.14280062913894653,0.48412859439849854,0.7028488516807556,0.9281327128410339,-1.4332704544067383,0.7041109204292297,-0.5834487080574036,-0.21478068828582764,1.4732598066329956,-0.9941778182983398,0.33036544919013977,0.4485233724117279,-0.10849522054195404,1.4267537593841553,-2.2382030487060547,1.5366588830947876,1.6063191890716553,-0.27420324087142944,0.10310813784599304,0.5373974442481995,-1.2418782711029053,-0.03759282827377319,0.19149455428123474,0.10390311479568481,-0.7366729974746704,-0.10621559619903564,0.9002690315246582,-0.09012794494628906,-0.27503639459609985,0.5630574226379395,-0.9191259741783142,0.8801950216293335,-1.1726129055023193,0.6583729982376099,0.8846584558486938,0.9002398252487183,-2.5036771297454834,0.16171181201934814,0.9654018878936768,-0.2997100353240967,-1.7953487634658813,-0.1546662151813507,-0.003958508372306824,-1.1430341005325317,0.8333953619003296,-0.7598528265953064,1.029004454612732,0.798668622970581,0.8317732810974121,1.278524398803711,-2.2871322631835938,-0.79598069190979,0.9775668978691101,-0.27793818712234497,-0.8790123462677002,-1.639458417892456,-1.019767165184021,0.916110634803772,-0.772865355014801,1.598418116569519,0.0797489583492279,0.48211362957954407,0.1284267008304596,-1.1646790504455566,-0.7368835210800171,0.6702448129653931,-0.49612364172935486,-0.954177737236023,-1.1630769968032837,1.8529009819030762,-0.1285187304019928,0.35818326473236084,-0.47485098242759705,0.06369829177856445,0.3138352632522583,0.021327927708625793,-0.21317332983016968,0.7255417108535767,0.32740700244903564,-2.111071825027466,-0.9396899938583374,2.0612847805023193,0.47295472025871277,0.19577401876449585,0.3762058615684509,-0.3201972544193268,-0.042911648750305176,-0.325787752866745,-1.0521332025527954,0.908475935459137,-0.8918966054916382 -2925,-0.6402892470359802,-0.13495278358459473,-0.2780085802078247,-1.4977059364318848,-0.4759751558303833,-0.541973888874054,-1.3810197114944458,0.7738365530967712,-0.012589208781719208,0.7757393717765808,0.4460216462612152,-0.09537380933761597,-0.11881140619516373,-0.6486172080039978,0.05480635166168213,-0.9284924864768982,-0.6768498420715332,0.6641020178794861,-1.9727782011032104,0.050224944949150085,-0.13207878172397614,1.0027186870574951,1.251352310180664,0.33174970746040344,-0.2763223946094513,-0.7404630780220032,-1.2771575450897217,-1.8154970407485962,-0.029032915830612183,-1.0021188259124756,-0.5052196979522705,-1.1827534437179565,-0.27885258197784424,-1.137144923210144,-0.9469659328460693,-0.06388112902641296,-1.7793818712234497,-0.518039345741272,-0.7382867336273193,-0.324447900056839,-0.11086058616638184,-0.5182399749755859,0.2018783688545227,0.3521203398704529,0.4556344747543335,-0.34727388620376587,-0.09597313404083252,-0.7824936509132385,-1.0763049125671387,-2.768636465072632,1.115958333015442,1.3772938251495361,0.9249186515808105,1.5934193134307861,-2.223999261856079,0.9336488842964172,-1.019592046737671,-0.2577303349971771,0.31147056818008423,0.9940540194511414,-1.0723673105239868,-1.2542634010314941,-0.12360858917236328,-0.7658227682113647,-0.6340724229812622,1.1788843870162964,-1.9007939100265503,1.440746784210205,-0.9980432987213135,-0.6976671814918518,-1.5876868963241577,1.130645751953125,0.3651012182235718,-0.6769972443580627,0.1962091028690338,0.2991815507411957,1.521346092224121,-2.7208895683288574,-1.0870991945266724,0.5451251268386841,-0.01829621195793152,1.5146152973175049,-0.831291675567627,-0.6350724101066589,-0.15847206115722656,-0.6703727841377258,0.7274737358093262,0.2802813649177551,-0.017895817756652832,1.0929034948349,-0.01958031952381134,1.2130026817321777,-0.33936330676078796,0.8130484819412231,0.5682117938995361,1.3127498626708984,1.8153139352798462,3.008349895477295,0.9141221046447754,-1.9624263048171997,0.11005744338035583,0.4188043177127838,0.9526523947715759,0.6484397649765015,-1.5545846223831177,1.5033098459243774,-0.06471166014671326,-0.47495752573013306,1.2004740238189697,0.030202031135559082,-0.13515880703926086,-0.7222762703895569,-0.05316928029060364,-0.4135608673095703,-0.31950873136520386,0.608291745185852,0.6219388246536255,-2.1025662422180176,0.43037182092666626,-1.3400115966796875,0.8786667585372925,-2.5541129112243652,0.5169733762741089,0.4927865266799927,-0.38046348094940186,0.10017279535531998,-0.8186268210411072,-1.156525731086731,1.273833990097046,-0.28366619348526,1.1187210083007812,1.8758549690246582,-1.1671873331069946,1.8219616413116455,-3.835428237915039,-0.08070410788059235,1.0406361818313599,0.2712865471839905,1.6297067403793335,-0.7069781422615051,0.6663381457328796,-0.051607683300971985,0.05079750716686249,-0.13076037168502808,-1.4425742626190186,-0.9847687482833862,-2.3200182914733887,-1.4337879419326782,-1.9792237281799316,0.3988338112831116,-0.49761468172073364,-1.1036202907562256,-0.11063950508832932,-0.1310298889875412,-0.26398685574531555,0.7902359366416931,-0.11699044704437256,-0.14280062913894653,0.7695000171661377,0.7028488516807556,0.9281327128410339,-1.4332704544067383,0.7041109204292297,-0.5834487080574036,-0.21478068828582764,1.4732598066329956,-0.9941778182983398,0.33036544919013977,0.47297027707099915,-0.05168423429131508,1.4492714405059814,-2.0452871322631836,1.5366588830947876,1.2386034727096558,-0.27420324087142944,0.13051070272922516,0.6128663420677185,-1.2418782711029053,-0.03759282827377319,0.12147143483161926,0.08459274470806122,-0.946365237236023,0.159117192029953,0.9002690315246582,-0.09012794494628906,0.37718528509140015,0.5630574226379395,-0.9191259741783142,0.8801950216293335,-1.1726129055023193,0.6583729982376099,0.8846584558486938,0.6026170253753662,-2.6990694999694824,0.16171181201934814,-0.012871265411376953,-0.40253549814224243,-1.3036322593688965,-0.1546662151813507,-0.07990450412034988,-1.1430341005325317,0.8333953619003296,-0.7598528265953064,1.029004454612732,0.798668622970581,0.8317732810974121,1.278524398803711,-2.2871322631835938,-0.79598069190979,0.9775668978691101,-0.1803208887577057,-0.8790123462677002,-1.4139862060546875,-1.019767165184021,0.916110634803772,-0.772865355014801,1.598418116569519,0.0797489583492279,0.48211362957954407,0.1284267008304596,-1.1646790504455566,-0.7368835210800171,0.6345772743225098,-0.49612364172935486,-0.954177737236023,-1.1630769968032837,1.8529009819030762,-0.1285187304019928,0.35818326473236084,-0.47485098242759705,-1.1590995788574219,0.3138352632522583,0.021327927708625793,-0.6277989745140076,0.7255417108535767,0.32740700244903564,-2.111071825027466,-0.9396899938583374,2.013601303100586,0.47295472025871277,0.19577401876449585,0.3762058615684509,-0.3201972544193268,-0.042911648750305176,-0.10363766551017761,-1.282858967781067,1.0012630224227905,-0.8918966054916382 -2926,-0.6574337482452393,-0.13495278358459473,-0.2780085802078247,-1.4977059364318848,-0.4759751558303833,-0.5192245244979858,-1.362996220588684,0.7738365530967712,-0.012589208781719208,0.7757393717765808,0.4460216462612152,-0.09537380933761597,-0.11881140619516373,0.027788400650024414,0.05480635166168213,-0.9284924864768982,-0.6768498420715332,0.7596226930618286,-1.9727782011032104,-0.22484005987644196,-0.13207878172397614,1.0027186870574951,1.5713237524032593,0.33174970746040344,-0.3910411596298218,-0.12990468740463257,-1.2771575450897217,-1.8154970407485962,-0.029032915830612183,-1.0021188259124756,-0.5052196979522705,-1.1827534437179565,-0.27885258197784424,-1.137144923210144,-0.9469659328460693,-0.06388112902641296,-1.7793818712234497,-0.2667516767978668,-0.7382867336273193,-0.324447900056839,-0.11086058616638184,-0.5182399749755859,0.2018783688545227,0.3521203398704529,0.4556344747543335,-0.34727388620376587,-0.09597313404083252,-0.7824936509132385,-1.0763049125671387,-2.487926959991455,1.115958333015442,1.64265775680542,0.4215047359466553,1.5934193134307861,-2.223999261856079,0.4624824523925781,-1.2146118879318237,-0.2577303349971771,0.31147056818008423,0.9940540194511414,-0.9184513688087463,-1.2542634010314941,-0.12360858917236328,-1.1284704208374023,-0.6340724229812622,1.1788843870162964,-1.9007939100265503,1.440746784210205,-0.9980432987213135,-0.6976671814918518,-1.5876868963241577,1.130645751953125,0.3651012182235718,-0.6769972443580627,0.1962091028690338,0.2991815507411957,1.417083740234375,-2.6208677291870117,-1.0870991945266724,0.5451251268386841,-0.01829621195793152,1.816812515258789,-0.1356431245803833,-0.6350724101066589,-0.15847206115722656,-0.4445575475692749,0.7274737358093262,0.2802813649177551,-0.21902590990066528,1.0929034948349,-0.01958031952381134,1.2130026817321777,-0.33936330676078796,0.38551634550094604,0.5682117938995361,1.3127498626708984,1.8153139352798462,3.008349895477295,0.9141221046447754,-2.211679697036743,0.11005744338035583,0.4188043177127838,0.9526523947715759,0.6484397649765015,-1.5545846223831177,1.394860863685608,-0.06471166014671326,-0.47495752573013306,1.2004740238189697,0.814395546913147,-0.13515880703926086,-0.7222762703895569,-0.09737583994865417,-0.42861804366111755,-0.31950873136520386,0.4696696400642395,0.745978832244873,-2.2626795768737793,0.43037182092666626,-1.3400115966796875,0.8786667585372925,-2.5541129112243652,0.1767512559890747,0.4756520092487335,-0.38046348094940186,0.36177805066108704,-0.6479772329330444,-1.134004831314087,0.13675367832183838,-0.28366619348526,1.1187210083007812,1.8758549690246582,-1.1671873331069946,1.8219616413116455,-3.835428237915039,-0.08070410788059235,1.0406361818313599,0.2712865471839905,1.6297067403793335,-0.7069781422615051,0.5320550203323364,-0.6504223346710205,0.05079750716686249,0.587367832660675,-1.4425742626190186,-0.9847687482833862,-2.3200182914733887,-1.731726884841919,-1.9576202630996704,0.3988338112831116,-0.49761468172073364,-1.1120847463607788,-0.11063950508832932,-0.6891734004020691,-0.26398685574531555,0.7902359366416931,-0.11699044704437256,-0.14280062913894653,0.7695000171661377,0.45427852869033813,0.5942208766937256,-1.4332704544067383,0.7853013873100281,-0.7927502393722534,0.7029266953468323,1.4732598066329956,-0.9941778182983398,0.21338020265102386,0.47297027707099915,-0.05168423429131508,1.4492714405059814,-2.0452871322631836,1.5366588830947876,1.2386034727096558,0.1978418231010437,0.13051070272922516,0.6128663420677185,-1.2418782711029053,-0.03759282827377319,0.5444424152374268,0.08459274470806122,-0.7385679483413696,0.159117192029953,0.9002690315246582,0.3482425808906555,0.4503515362739563,0.5630574226379395,-0.9191259741783142,0.8875070214271545,-1.1726129055023193,0.6583729982376099,1.2462564706802368,0.6026170253753662,-2.6990694999694824,0.16171181201934814,-0.012871265411376953,0.23349404335021973,-1.3036322593688965,-0.4945698380470276,-0.37153172492980957,-0.909954309463501,0.8333953619003296,-0.7598528265953064,1.1338844299316406,0.798668622970581,0.28743821382522583,1.278524398803711,-3.2452383041381836,-0.79598069190979,0.9775668978691101,-0.1803208887577057,-0.8790123462677002,-1.4139862060546875,-1.019767165184021,0.916110634803772,-1.7074848413467407,1.598418116569519,-0.18707582354545593,0.48211362957954407,0.1284267008304596,-1.1646790504455566,-0.3342761695384979,0.6345772743225098,-0.49612364172935486,-0.954177737236023,-1.1630769968032837,1.7699369192123413,-0.1285187304019928,0.35818326473236084,0.3335678279399872,-1.1590995788574219,0.35432153940200806,-0.29465705156326294,-0.6277989745140076,1.064032793045044,0.32740700244903564,-2.111071825027466,-0.9396899938583374,2.013601303100586,0.8788927793502808,0.19577401876449585,-0.2308063507080078,-0.6244707107543945,-0.042911648750305176,-0.4361104667186737,-1.282858967781067,1.0012630224227905,-0.8918966054916382 -2927,-0.6448123455047607,-0.46781349182128906,-0.747520387172699,-1.4977059364318848,-0.4759751558303833,-0.5192245244979858,-1.362996220588684,0.483163982629776,-0.012589208781719208,0.7757393717765808,0.4460216462612152,-0.09537380933761597,-0.09815644472837448,0.027788400650024414,0.05480635166168213,-1.0650749206542969,-0.8635644912719727,0.7596226930618286,-1.9727782011032104,-0.22484005987644196,-0.13207878172397614,1.0027186870574951,1.5713237524032593,0.33174970746040344,-0.3910411596298218,-0.12990468740463257,-1.2771575450897217,-1.8154970407485962,0.7237733602523804,-1.4444019794464111,-0.7164052724838257,-1.1827534437179565,-0.29722392559051514,-1.137144923210144,-0.9469659328460693,-0.06388112902641296,-2.562126636505127,-0.2667516767978668,-0.7382867336273193,-0.324447900056839,0.15042302012443542,-0.5182399749755859,0.2018783688545227,0.7890756130218506,0.47174715995788574,-0.3281799554824829,-0.09597313404083252,-1.3851020336151123,-1.0763049125671387,-2.487926959991455,1.115958333015442,1.64265775680542,0.8593752384185791,2.0285778045654297,-2.3238935470581055,0.4624824523925781,-0.6572557091712952,0.08550417423248291,0.31147056818008423,0.9940540194511414,-0.8698984980583191,-1.2110248804092407,-0.12360858917236328,-1.1284704208374023,-0.6340724229812622,1.1788843870162964,-1.9007939100265503,1.440746784210205,-0.9980432987213135,-0.6976671814918518,-1.166947603225708,1.130645751953125,0.13727740943431854,-0.6769972443580627,0.1962091028690338,0.2991815507411957,1.417083740234375,-2.6706857681274414,-1.0870991945266724,0.5451251268386841,-0.10492590069770813,1.7324146032333374,-0.1356431245803833,-0.6350724101066589,-0.15847206115722656,-0.4445575475692749,0.28346338868141174,0.2802813649177551,-0.21902590990066528,0.9817533493041992,0.6174047589302063,1.2130026817321777,-0.33936330676078796,0.38551634550094604,0.6427707672119141,1.2385488748550415,1.8153139352798462,3.008349895477295,0.9141221046447754,-1.616133213043213,0.11005744338035583,0.4188043177127838,0.9526523947715759,0.6484397649765015,-1.5545846223831177,1.3412359952926636,-0.06471166014671326,-0.47495752573013306,1.2004740238189697,0.814395546913147,-0.13515880703926086,-0.7222762703895569,-0.09737583994865417,-0.12421533465385437,-0.31950873136520386,-0.3352481722831726,0.745978832244873,-2.3271872997283936,0.43037182092666626,-1.3400115966796875,0.8786667585372925,-2.0160741806030273,1.4387456178665161,0.4756520092487335,-0.38046348094940186,-0.06996974349021912,-1.0590081214904785,-1.2843194007873535,0.13675367832183838,-1.0970799922943115,1.1187210083007812,1.8758549690246582,-0.999126672744751,1.8219616413116455,-3.835428237915039,-0.08070410788059235,1.0406361818313599,0.2712865471839905,1.6297067403793335,-0.7069781422615051,0.5320550203323364,-0.6504223346710205,0.6004806160926819,0.587367832660675,-1.4425742626190186,-0.9847687482833862,-2.3200182914733887,-1.731726884841919,-1.9576202630996704,0.3988338112831116,-0.49761468172073364,-1.1120847463607788,-0.11063950508832932,-0.6891734004020691,-0.26398685574531555,0.7902359366416931,-0.11699044704437256,-0.14280062913894653,0.7695000171661377,0.45427852869033813,0.33758145570755005,-1.2696672677993774,-0.10985815525054932,-0.7927502393722534,-0.1562851071357727,1.6264455318450928,-0.9941778182983398,0.21338020265102386,0.7735876441001892,-0.05168423429131508,1.930761694908142,-2.0452871322631836,1.5366588830947876,1.2386034727096558,0.1978418231010437,-0.3260727524757385,0.6128663420677185,-1.2418782711029053,0.2127234935760498,1.019045114517212,0.08459274470806122,-0.700410783290863,0.159117192029953,0.9002690315246582,0.3482425808906555,0.3031255006790161,0.5630574226379395,-0.4084241986274719,0.8875070214271545,-1.1726129055023193,1.189170479774475,1.2462564706802368,0.6026170253753662,-1.9333925247192383,0.9266158938407898,-0.15201865136623383,0.4589926600456238,-1.3036322593688965,-0.4463948905467987,-0.37153172492980957,-0.909954309463501,0.8333953619003296,-0.7598528265953064,1.1338844299316406,0.798668622970581,-0.252602219581604,1.278524398803711,-3.2452383041381836,-0.79598069190979,0.7583537101745605,-0.1803208887577057,-0.8790123462677002,-1.892917275428772,-1.019767165184021,0.916110634803772,-1.7074848413467407,1.598418116569519,-0.18707582354545593,0.48211362957954407,0.1284267008304596,-1.1646790504455566,-0.3342761695384979,0.6345772743225098,-0.49612364172935486,-0.954177737236023,-1.1630769968032837,1.7699369192123413,-0.6139012575149536,0.35818326473236084,-0.021954327821731567,-0.6712331771850586,0.35432153940200806,1.0068750381469727,-0.15069478750228882,1.0694537162780762,0.32740700244903564,-2.111071825027466,-0.9396899938583374,1.5555381774902344,0.8788927793502808,0.19577401876449585,-0.2308063507080078,-0.6244707107543945,-0.042911648750305176,-0.4361104667186737,-1.282858967781067,1.0012630224227905,-0.8918966054916382 -2928,-0.50483238697052,-0.46781349182128906,0.11063367128372192,-1.4977059364318848,-0.4759751558303833,-0.5192245244979858,-1.362996220588684,0.04214861989021301,-0.012589208781719208,0.7757393717765808,0.4460216462612152,-0.238594651222229,-0.09815644472837448,0.027788400650024414,0.05480635166168213,-1.0650749206542969,-0.8655732274055481,0.47775936126708984,-1.9727782011032104,-0.22484005987644196,-0.13207878172397614,1.0027186870574951,1.5713237524032593,0.33174970746040344,-0.07344666123390198,-0.845576286315918,-1.2771575450897217,-1.8154970407485962,0.7237733602523804,-1.3014888763427734,-0.7164052724838257,-1.2187772989273071,-0.29722392559051514,-1.137144923210144,-1.1277326345443726,-0.45488980412483215,-3.014423131942749,-0.2667516767978668,-0.7382867336273193,-0.324447900056839,0.15042302012443542,-0.6331630945205688,0.2018783688545227,0.7890756130218506,0.47174715995788574,-0.3281799554824829,-0.09597313404083252,-1.3851020336151123,-1.0763049125671387,-1.8278979063034058,1.115958333015442,2.046022891998291,0.4936380386352539,1.9730072021484375,-2.3238935470581055,0.465952068567276,-0.6572557091712952,0.10276523232460022,0.31147056818008423,0.9940540194511414,-0.8698984980583191,-1.2110248804092407,-0.12360858917236328,-1.1284704208374023,-0.6340724229812622,1.1788843870162964,-1.9007939100265503,1.2086608409881592,-0.9980432987213135,-0.6976671814918518,-1.1472004652023315,1.130645751953125,0.5329950451850891,-0.6769972443580627,0.30192387104034424,0.2991815507411957,1.417083740234375,-2.6706857681274414,-1.0870991945266724,0.5451251268386841,-0.10492590069770813,1.7324146032333374,-0.1356431245803833,-0.6350724101066589,0.22076764702796936,-0.4445575475692749,0.28346338868141174,0.2802813649177551,-0.21902590990066528,0.9817533493041992,0.33659470081329346,1.2130026817321777,-0.33936330676078796,0.38551634550094604,0.6427707672119141,1.2385488748550415,2.0372378826141357,3.008349895477295,0.9141221046447754,-1.616133213043213,0.11005744338035583,0.7372787594795227,0.6806907653808594,0.6484397649765015,-1.5545846223831177,1.3412359952926636,-0.06471166014671326,-0.5287158489227295,1.2004740238189697,0.814395546913147,-0.13515880703926086,-0.33626097440719604,-0.09737583994865417,0.22165000438690186,0.07236948609352112,-0.3352481722831726,0.5744173526763916,-2.3271872997283936,0.43037182092666626,-1.3400115966796875,0.8786667585372925,-2.0160741806030273,1.4387456178665161,0.4756520092487335,-0.38046348094940186,-0.06996974349021912,-0.3767491579055786,-1.2843194007873535,0.13675367832183838,-1.0970799922943115,0.7894668579101562,1.8758549690246582,-0.999126672744751,1.8219616413116455,-3.521918535232544,0.28218573331832886,1.0406361818313599,0.2712865471839905,1.6297067403793335,-0.7069781422615051,0.30724990367889404,-0.595886766910553,0.5799062252044678,0.14673668146133423,-1.4425742626190186,0.49570369720458984,-2.3200182914733887,-1.731726884841919,-2.1160573959350586,0.3988338112831116,-0.5941144227981567,-1.1120847463607788,-0.14402252435684204,-0.37514835596084595,0.16507399082183838,0.09475421905517578,-0.11699044704437256,0.43743205070495605,0.7695000171661377,0.45427852869033813,0.33758145570755005,-1.2696672677993774,0.005191691219806671,-0.7927502393722534,0.7058586478233337,1.6264455318450928,-0.9941778182983398,0.21338020265102386,0.7735876441001892,0.089675173163414,1.8838794231414795,-2.0452871322631836,1.5366588830947876,1.1265820264816284,0.09917447715997696,-0.3260727524757385,0.6128663420677185,-1.2418782711029053,0.2127234935760498,1.019045114517212,0.08459274470806122,-0.743933916091919,0.159117192029953,1.0528547763824463,0.6396289467811584,0.03547188639640808,0.5630574226379395,-0.4084241986274719,0.7004482746124268,-1.1726129055023193,1.189170479774475,1.2462564706802368,0.6026170253753662,-1.6434303522109985,0.3979683518409729,-0.21157802641391754,0.4589926600456238,-0.9211992025375366,-0.4463948905467987,-0.37153172492980957,-0.909954309463501,0.8333953619003296,-0.7598528265953064,1.1338844299316406,0.884489119052887,0.5983465909957886,1.278524398803711,-3.2452383041381836,-0.44808465242385864,-0.11851871013641357,-0.1803208887577057,-0.8790123462677002,-1.892917275428772,-1.8853299617767334,1.1600308418273926,-1.679707646369934,1.598418116569519,-0.18707582354545593,0.48211362957954407,0.1284267008304596,-1.3724111318588257,-0.653306245803833,0.6345772743225098,-0.49612364172935486,-0.954177737236023,-1.1630769968032837,1.7699369192123413,-0.6139012575149536,0.35818326473236084,-0.021954327821731567,-0.09282684326171875,0.35432153940200806,1.0068750381469727,-0.48388487100601196,1.0694537162780762,0.32740700244903564,-2.111071825027466,-0.9396899938583374,1.5555381774902344,0.8788927793502808,0.7648820877075195,-0.2308063507080078,-0.37668079137802124,-0.042911648750305176,-0.4361104667186737,-1.282858967781067,1.0012630224227905,-0.8918966054916382 -2929,-0.50483238697052,-0.46781349182128906,0.11063367128372192,-1.0840908288955688,-0.4759751558303833,-0.45529812574386597,-1.362996220588684,0.9879574775695801,-0.012589208781719208,0.7757393717765808,-0.012027829885482788,0.19027107954025269,0.08263546973466873,0.027788400650024414,-0.03219475597143173,-1.0650749206542969,-0.8655732274055481,0.47775936126708984,-1.9803427457809448,0.0963476151227951,-0.13207878172397614,1.0027186870574951,1.5713237524032593,0.33174970746040344,-0.07344666123390198,-0.845576286315918,-1.2771575450897217,-1.8154970407485962,0.7237733602523804,-1.3014888763427734,-0.7164052724838257,-1.406801700592041,-0.29722392559051514,-1.137144923210144,-1.1277326345443726,-0.4047832489013672,-3.014423131942749,-0.6157068014144897,-0.7382867336273193,-0.324447900056839,0.1464906632900238,-0.6331630945205688,0.2018783688545227,0.6093358993530273,0.24205023050308228,-0.3281799554824829,-0.09597313404083252,-1.3851020336151123,-1.0763049125671387,-1.8278979063034058,1.5254955291748047,2.046022891998291,0.5652457475662231,1.9730072021484375,-2.6695752143859863,0.465952068567276,-0.697033703327179,0.10276523232460022,0.31147056818008423,-0.37269920110702515,-0.8698984980583191,-1.992994785308838,-0.12360858917236328,-1.1284704208374023,-0.6340724229812622,1.5028592348098755,-1.9007939100265503,1.2086608409881592,-0.7787051796913147,-0.6976671814918518,-1.1605470180511475,1.130645751953125,0.5329950451850891,-0.6769972443580627,0.30192387104034424,0.2991815507411957,1.417083740234375,-2.3323230743408203,-1.0870991945266724,0.7332991361618042,-0.10492590069770813,1.9900833368301392,-0.1356431245803833,-0.6350724101066589,0.22076764702796936,-0.4445575475692749,0.28346338868141174,0.2802813649177551,-0.21902590990066528,0.9817533493041992,0.33659470081329346,1.2130026817321777,-1.2315107583999634,-0.03219911456108093,0.6427707672119141,1.2385488748550415,2.0372378826141357,3.292391777038574,0.9141221046447754,-1.616133213043213,0.11005744338035583,0.7372787594795227,0.6806907653808594,0.6484397649765015,-1.5545846223831177,1.3412359952926636,-0.5921188592910767,-0.165228933095932,1.1528130769729614,0.814395546913147,-0.13515880703926086,-0.33626097440719604,-0.09737583994865417,0.22165000438690186,-0.19749489426612854,-0.3352481722831726,0.5744173526763916,-2.27553391456604,0.43037182092666626,-1.3400115966796875,0.8786667585372925,-2.0160741806030273,1.4387456178665161,0.4756520092487335,-0.38046348094940186,-0.06996974349021912,-0.3767491579055786,-1.2843194007873535,0.13675367832183838,-1.0970799922943115,-0.0657111406326294,1.8758549690246582,-1.55525803565979,1.8219616413116455,-3.521918535232544,0.28218573331832886,1.0406361818313599,0.2712865471839905,1.6297067403793335,-2.2571089267730713,1.0035879611968994,-0.595886766910553,0.5799062252044678,0.14673668146133423,-1.4425742626190186,1.022336483001709,-0.6828951835632324,-1.7973320484161377,-2.093716859817505,0.3988338112831116,-0.42388176918029785,-1.1120847463607788,-0.14402252435684204,-0.6093149185180664,0.16507399082183838,0.37428534030914307,-0.11699044704437256,0.43743205070495605,0.7695000171661377,0.45427852869033813,0.33758145570755005,-0.9717611074447632,-0.20875650644302368,-0.7927502393722534,0.7058586478233337,1.6264455318450928,-0.9941778182983398,0.21338020265102386,0.7735876441001892,0.089675173163414,1.340641975402832,-2.0452871322631836,1.5366588830947876,0.4391489624977112,0.00817129760980606,-0.3260727524757385,0.6128663420677185,-1.2418782711029053,0.45101112127304077,1.019045114517212,0.08459274470806122,-0.743933916091919,0.159117192029953,1.0528547763824463,0.6396289467811584,0.03547188639640808,-0.19738000631332397,-0.4084241986274719,-0.033237457275390625,-1.1726129055023193,1.189170479774475,0.2937208414077759,0.1425718069076538,-1.6434303522109985,0.3979683518409729,-0.21157802641391754,0.4589926600456238,-0.9211992025375366,-0.811359167098999,-0.37153172492980957,0.11407387256622314,0.8333953619003296,-0.7598528265953064,1.1338844299316406,1.2360070943832397,0.5983465909957886,1.278524398803711,-3.2452383041381836,-0.44808465242385864,-0.11851871013641357,-0.32217422127723694,-0.8790123462677002,-1.892917275428772,-1.8853299617767334,1.6793307065963745,-1.679707646369934,1.3921208381652832,-0.18707582354545593,0.568355917930603,0.1284267008304596,-1.5143256187438965,-0.7109454274177551,1.0321338176727295,-0.2567782998085022,-0.610942006111145,-1.1630769968032837,1.7699369192123413,-0.6139012575149536,0.22598563134670258,0.07763022929430008,-0.8692134022712708,0.4075678586959839,1.0068750381469727,-0.48388487100601196,1.0694537162780762,0.32740700244903564,-2.111071825027466,-0.9396899938583374,1.8125925064086914,0.5222574472427368,0.2887043356895447,-0.2308063507080078,0.00857582688331604,-0.042911648750305176,-0.4361104667186737,-1.282858967781067,1.0012630224227905,-0.8918966054916382 -2930,-0.15629300475120544,-0.46781349182128906,0.11063367128372192,-2.0383284091949463,-0.4759751558303833,-0.45529812574386597,-1.362996220588684,0.9795827269554138,-0.012589208781719208,0.6259508728981018,-0.012027829885482788,0.19027107954025269,0.08263546973466873,-0.861991822719574,-0.03219475597143173,-1.0650749206542969,-0.8655732274055481,0.3729632794857025,-1.9803427457809448,0.0963476151227951,0.05329592525959015,1.0027186870574951,1.5713237524032593,0.3475981056690216,-0.28076452016830444,-0.845576286315918,-1.2771575450897217,-1.8154970407485962,0.7237733602523804,-1.281760334968567,-0.7164052724838257,-1.406801700592041,-0.03310704231262207,-1.0641652345657349,-1.1676242351531982,-0.33515381813049316,-3.014423131942749,-0.5840408205986023,-0.5212720632553101,-0.324447900056839,-0.3345072269439697,-0.6331630945205688,0.2018783688545227,0.6093358993530273,0.32941770553588867,-0.3281799554824829,-0.09597313404083252,-1.3851020336151123,-1.0763049125671387,-1.678600549697876,1.5254955291748047,2.4137766361236572,0.5652457475662231,1.9474096298217773,-2.2634801864624023,0.465952068567276,-0.697033703327179,0.10276523232460022,0.31147056818008423,0.4915603995323181,-0.8698984980583191,-1.992994785308838,-0.12360858917236328,-1.0321587324142456,-0.6340724229812622,1.5028592348098755,-1.9007939100265503,1.2086608409881592,-1.0645983219146729,-0.6976671814918518,-1.1605470180511475,1.178847074508667,0.5329950451850891,-0.6769972443580627,0.30192387104034424,0.2991815507411957,0.9284822344779968,-2.19877552986145,-1.0870991945266724,0.7332991361618042,-0.09488579630851746,1.9900833368301392,-0.1356431245803833,-0.6350724101066589,0.22076764702796936,-0.4445575475692749,-0.47937485575675964,0.2802813649177551,0.036131858825683594,0.9817533493041992,0.4640193283557892,1.2130026817321777,-1.2315107583999634,-0.03219911456108093,0.28900155425071716,0.2362602949142456,1.1739859580993652,3.292391777038574,0.9278879761695862,-1.616133213043213,0.11005744338035583,0.3126235008239746,0.6806907653808594,0.6484397649765015,-1.1592036485671997,1.3412359952926636,-0.5921188592910767,-0.165228933095932,1.1528130769729614,-0.028487980365753174,-0.13515880703926086,-0.33626097440719604,-0.09737583994865417,0.22165000438690186,-0.19749489426612854,-0.3352481722831726,0.5744173526763916,-2.27553391456604,0.46772605180740356,-1.6004483699798584,0.8786667585372925,-2.0160741806030273,1.4387456178665161,0.4756520092487335,-0.2586577236652374,-0.06996974349021912,-0.3767491579055786,-1.2843194007873535,0.13675367832183838,-1.0970799922943115,-0.0657111406326294,1.8758549690246582,-1.5212265253067017,1.8219616413116455,-3.521918535232544,0.28218573331832886,1.0406361818313599,0.6165738105773926,1.6297067403793335,-2.2571089267730713,0.5037150382995605,-0.595886766910553,0.5799062252044678,-1.2697832584381104,-0.7821945548057556,0.9789102673530579,-0.6828951835632324,-1.7973320484161377,-2.093716859817505,0.3988338112831116,-0.42388176918029785,-1.1120847463607788,0.10430416464805603,-0.6093149185180664,0.16507399082183838,0.37428534030914307,-0.24091465771198273,0.43743205070495605,0.7695000171661377,0.39055344462394714,0.33758145570755005,-0.9717611074447632,-0.20875650644302368,-0.7114028334617615,0.7058586478233337,1.2030977010726929,-0.9941778182983398,0.21338020265102386,0.7735876441001892,0.089675173163414,1.340641975402832,-1.807715892791748,1.5366588830947876,0.4391489624977112,0.00817129760980606,-0.0918889194726944,0.6128663420677185,-1.2418782711029053,0.45101112127304077,1.019045114517212,0.2689301669597626,-0.8897997140884399,0.5746593475341797,0.9065834879875183,0.5021646022796631,0.7642982006072998,0.3011954724788666,-0.4084241986274719,-0.033237457275390625,-1.1726129055023193,0.8596867918968201,0.2937208414077759,0.1425718069076538,-1.3863335847854614,0.3979683518409729,-0.7198014259338379,0.13844901323318481,-0.9211992025375366,-0.811359167098999,-0.37153172492980957,0.11407387256622314,0.4438672661781311,-0.7598528265953064,1.1338844299316406,1.2360070943832397,0.5983465909957886,1.3911471366882324,-3.2452383041381836,-0.7578178644180298,0.3597632646560669,-0.5943768620491028,-0.8790123462677002,-1.892917275428772,-1.8853299617767334,1.6793307065963745,-1.679707646369934,1.2291183471679688,-0.18707582354545593,0.553462028503418,0.1284267008304596,-1.5143256187438965,-0.3921273946762085,0.6355396509170532,-0.2567782998085022,-0.610942006111145,-1.1630769968032837,1.7699369192123413,-1.1581021547317505,0.22598563134670258,0.07763022929430008,-0.8692134022712708,-0.23695015907287598,-0.059677958488464355,-0.48388487100601196,1.0694537162780762,0.32740700244903564,-2.111071825027466,-0.8225265145301819,1.59416925907135,0.8221862316131592,0.2887043356895447,0.3842134475708008,0.00857582688331604,-0.042911648750305176,-0.4361104667186737,-1.2417367696762085,1.0012630224227905,-0.5798963308334351 -2931,-0.15629300475120544,-0.46781349182128906,0.11063367128372192,-2.0383284091949463,-0.4759751558303833,-0.45529812574386597,-1.279509425163269,0.9795827269554138,-0.012589208781719208,0.6259508728981018,-0.012027829885482788,0.19027107954025269,0.08263546973466873,-0.861991822719574,-0.07000003010034561,-1.2372404336929321,-0.8655732274055481,0.3729632794857025,-1.9803427457809448,0.0963476151227951,0.05329592525959015,1.0027186870574951,1.5713237524032593,0.5643322467803955,-0.28076452016830444,-0.845576286315918,-1.2771575450897217,-1.7587002515792847,0.15882176160812378,-1.281760334968567,-1.500119924545288,-1.406801700592041,-0.03310704231262207,-0.9064524173736572,-1.1676242351531982,-0.33515381813049316,-2.383424758911133,-0.6094338893890381,-0.5212720632553101,-0.324447900056839,-0.3345072269439697,-0.6331630945205688,0.2018783688545227,0.710300087928772,0.32941770553588867,-0.4417979419231415,0.6689500212669373,-1.3851020336151123,-1.0763049125671387,-1.678600549697876,1.5254955291748047,2.4137766361236572,0.5652457475662231,1.9474096298217773,-2.2634801864624023,0.465952068567276,-0.8074450492858887,0.10276523232460022,0.31147056818008423,0.4915603995323181,-0.8698984980583191,-1.992994785308838,-0.12360858917236328,-1.0321587324142456,-0.6340724229812622,1.546137809753418,-1.9007939100265503,1.2086608409881592,-1.0645983219146729,-0.5086649060249329,-1.1605470180511475,1.178847074508667,0.5329950451850891,-0.6769972443580627,0.30192387104034424,0.2991815507411957,0.9284822344779968,-1.8650084733963013,-0.872742772102356,0.7332991361618042,0.026455558836460114,1.0510531663894653,-0.1356431245803833,-0.6350724101066589,0.22076764702796936,-0.4445575475692749,-0.47937485575675964,0.2802813649177551,0.036131858825683594,0.9817533493041992,0.4640193283557892,1.2130026817321777,-1.395888090133667,-0.03219911456108093,0.473990797996521,0.2362602949142456,1.1739859580993652,3.292391777038574,0.8107925653457642,-1.616133213043213,0.10523303598165512,0.3126235008239746,0.6806907653808594,0.6484397649765015,-1.2624552249908447,1.3412359952926636,-0.12435469031333923,-0.044456712901592255,1.703967571258545,-0.10295389592647552,-0.13515880703926086,-0.33626097440719604,-0.09737583994865417,-0.41191405057907104,-0.19749489426612854,-0.6475756764411926,0.5744173526763916,-2.27553391456604,-0.10595434904098511,-1.6378827095031738,0.8786667585372925,-2.0160741806030273,1.4387456178665161,0.4756520092487335,-0.2586577236652374,-0.06996974349021912,-0.3767491579055786,-1.2843194007873535,-0.26667720079421997,-1.0970799922943115,-0.0657111406326294,1.8758549690246582,-1.999255895614624,1.8219616413116455,-3.521918535232544,0.5532985925674438,1.0406361818313599,0.6165738105773926,1.4223381280899048,-1.9870812892913818,0.5037150382995605,-0.595886766910553,-0.4876307249069214,-1.2697832584381104,-0.7821945548057556,0.6479800343513489,-0.6828951835632324,-1.7973320484161377,-2.093716859817505,0.3988338112831116,-0.42388176918029785,-1.1120847463607788,0.10430416464805603,-1.1943963766098022,0.16507399082183838,0.37428534030914307,-0.24091465771198273,0.43743205070495605,1.1680628061294556,0.39055344462394714,0.33758145570755005,-0.9717611074447632,-0.20875650644302368,-0.7114028334617615,0.7058586478233337,1.2030977010726929,-0.9941778182983398,0.026307225227355957,0.7735876441001892,0.089675173163414,1.340641975402832,-1.807715892791748,1.5366588830947876,0.4391489624977112,0.00817129760980606,-0.18575595319271088,0.6128663420677185,-1.2418782711029053,0.45101112127304077,1.019045114517212,0.2689301669597626,-0.8897997140884399,0.5746593475341797,0.9065834879875183,0.5021646022796631,0.7642982006072998,0.3011954724788666,-0.4084241986274719,-0.033237457275390625,-1.1726129055023193,0.8596867918968201,0.46000421047210693,0.1425718069076538,-1.418756365776062,0.3979683518409729,-0.7198014259338379,0.13844901323318481,-0.9211992025375366,-0.811359167098999,-0.37153172492980957,0.023710772395133972,0.08787721395492554,-0.7598528265953064,1.0296894311904907,1.2360070943832397,0.5983465909957886,1.3587918281555176,-3.3691999912261963,-1.2526905536651611,0.3597632646560669,-0.5943768620491028,-0.8790123462677002,-1.7071971893310547,-1.8853299617767334,1.6793307065963745,-1.3342496156692505,1.2291183471679688,-0.18707582354545593,0.553462028503418,0.1284267008304596,-1.4119346141815186,-0.3921273946762085,0.6355396509170532,-0.2567782998085022,-0.8286471366882324,-1.1630769968032837,1.7699369192123413,-1.1581021547317505,0.22598563134670258,0.07763022929430008,-0.8692134022712708,0.09104105830192566,-0.059677958488464355,-0.48388487100601196,1.0694537162780762,0.32740700244903564,-1.8958724737167358,-1.045100450515747,1.59416925907135,0.8221862316131592,0.009606033563613892,0.3842134475708008,0.00857582688331604,-0.042911648750305176,-0.4361104667186737,-1.0677030086517334,-0.15867829322814941,-0.5798963308334351 -2932,-0.303975373506546,-0.46781349182128906,0.11063367128372192,-2.0383284091949463,-0.4759751558303833,-0.5738612413406372,-1.2895371913909912,0.9795827269554138,-0.012589208781719208,0.6259508728981018,-0.09070079028606415,-0.005155518651008606,0.08263546973466873,-0.861991822719574,-0.07000003010034561,-1.1625823974609375,-0.8655732274055481,0.3729632794857025,-1.4174423217773438,0.012144401669502258,0.05329592525959015,0.3763245940208435,1.5713237524032593,0.5643322467803955,-0.28076452016830444,-0.845576286315918,-1.4542534351348877,-1.3382641077041626,0.15882176160812378,-1.281760334968567,-1.6282459497451782,-1.406801700592041,-0.2025873064994812,-0.7898803949356079,-1.1676242351531982,-0.33515381813049316,-2.7790327072143555,-0.5821381211280823,0.6802102327346802,-0.15973889827728271,-0.5905394554138184,-0.6331630945205688,0.2018783688545227,0.710300087928772,0.32941770553588867,-0.4648301601409912,0.6689500212669373,-1.3851020336151123,-1.0763049125671387,-1.5971077680587769,1.5254955291748047,2.0728235244750977,0.2018618881702423,2.0525782108306885,-3.1776986122131348,0.465952068567276,-0.8074450492858887,0.10276523232460022,0.31147056818008423,0.4915603995323181,-1.0045322179794312,-1.992994785308838,-0.12360858917236328,-1.0321587324142456,-0.5954207181930542,1.546137809753418,-1.9007939100265503,1.2086608409881592,-1.0645983219146729,-0.5086649060249329,-1.5247561931610107,1.178847074508667,0.5329950451850891,-0.6769972443580627,0.3058883547782898,0.2991815507411957,1.0549887418746948,-1.7588305473327637,-0.4169607162475586,0.7332991361618042,0.026455558836460114,1.0510531663894653,-0.1356431245803833,-0.6350724101066589,0.22076764702796936,-0.37294262647628784,-0.47937485575675964,0.2802813649177551,0.036131858825683594,0.9817533493041992,0.4640193283557892,1.2130026817321777,-0.9768141508102417,-0.03219911456108093,0.473990797996521,0.2362602949142456,2.047447443008423,3.292391777038574,0.8107925653457642,-1.616133213043213,0.5293306112289429,0.24521668255329132,0.6806907653808594,0.6484397649765015,-1.2624552249908447,1.3412359952926636,-0.12435469031333923,-0.044456712901592255,1.703967571258545,-0.10295389592647552,-0.13515880703926086,-0.46354639530181885,-0.09737583994865417,-0.41191405057907104,-0.19749489426612854,-0.6475756764411926,0.6557753086090088,-2.27553391456604,-0.10595434904098511,-1.6378827095031738,0.8786667585372925,-1.3919708728790283,1.4387456178665161,0.4756520092487335,-0.2586577236652374,0.4114423096179962,-0.3767491579055786,-0.9614667296409607,0.3878890872001648,-1.0970799922943115,-0.0657111406326294,1.8758549690246582,-1.999255895614624,1.8219616413116455,-3.521918535232544,0.5532985925674438,1.0406361818313599,0.6165738105773926,1.4223381280899048,-1.552763819694519,0.5037150382995605,-0.595886766910553,-0.8348713517189026,-1.2697832584381104,-0.7821945548057556,0.6479800343513489,-0.6828951835632324,-1.7973320484161377,-2.093716859817505,0.3781042993068695,-0.42388176918029785,-0.9417871236801147,0.10430416464805603,-1.1943963766098022,0.16507399082183838,0.37428534030914307,0.14589591324329376,0.43743205070495605,1.1680628061294556,0.39055344462394714,-0.015071362257003784,-0.9717611074447632,-0.20875650644302368,-0.7114028334617615,1.4099528789520264,1.1457929611206055,-1.739424228668213,0.026307225227355957,0.7735876441001892,-0.3250107169151306,1.340641975402832,-1.807715892791748,1.5366588830947876,0.4391489624977112,0.00817129760980606,-0.2566717267036438,0.6128663420677185,-1.2418782711029053,0.45101112127304077,1.0433270931243896,0.2689301669597626,-0.8897997140884399,0.5746593475341797,0.9065834879875183,0.5021646022796631,0.834482729434967,0.3011954724788666,-0.4084241986274719,1.1345592737197876,-1.3064370155334473,0.4867764413356781,0.46000421047210693,0.1425718069076538,-1.418756365776062,0.3979683518409729,-0.7198014259338379,-0.35532045364379883,-0.9211992025375366,-0.811359167098999,-0.37153172492980957,-0.5828441381454468,0.08787721395492554,0.6566272377967834,0.8063390254974365,1.2360070943832397,0.9796808958053589,1.3587918281555176,-3.326657772064209,-1.2526905536651611,0.3597632646560669,-0.5943768620491028,-1.057997703552246,-1.0602388381958008,-0.9971466660499573,1.6793307065963745,-1.3342496156692505,1.3097820281982422,-0.11150708049535751,0.553462028503418,0.1284267008304596,-1.1017903089523315,-0.3921273946762085,1.1690579652786255,-0.2567782998085022,-1.2574856281280518,-1.1630769968032837,1.7699369192123413,-0.8189243078231812,0.22598563134670258,-0.18961477279663086,-0.8692134022712708,0.09104105830192566,0.973534345626831,0.002663910388946533,1.0694537162780762,0.32740700244903564,-1.8958724737167358,-0.6579673290252686,1.5438445806503296,0.38513779640197754,0.009606033563613892,0.3842134475708008,-0.37850552797317505,-0.7107208967208862,-0.4361104667186737,-1.0863590240478516,-0.15867829322814941,-0.5798963308334351 -2933,-0.6128961443901062,-0.6552557945251465,0.11063367128372192,-2.0383284091949463,-0.4759751558303833,-0.5738612413406372,-1.5272138118743896,0.9795827269554138,-0.012589208781719208,0.5889962315559387,-0.09070079028606415,-0.005155518651008606,0.08263546973466873,-1.3653991222381592,-0.07000003010034561,-1.1625823974609375,-0.8655732274055481,0.3729632794857025,-1.4174423217773438,-0.28041279315948486,0.05329592525959015,0.3763245940208435,1.4262279272079468,0.3863478899002075,-0.0514359325170517,-0.845576286315918,-1.4542534351348877,-1.6464653015136719,0.15882176160812378,-1.281760334968567,-1.6282459497451782,-1.8179484605789185,-0.2025873064994812,-0.7898803949356079,-0.8902365565299988,-0.33515381813049316,-2.7790327072143555,-0.521407961845398,0.6802102327346802,-0.1988791525363922,-0.6045184135437012,-0.6331630945205688,0.4168344736099243,0.9611524343490601,0.32941770553588867,-0.4648301601409912,0.6689500212669373,-1.3851020336151123,-1.0763049125671387,-1.5971077680587769,1.5254955291748047,1.9560589790344238,0.2018618881702423,2.0525782108306885,-3.189948797225952,0.465952068567276,-0.7516435384750366,0.10276523232460022,0.31147056818008423,0.4915603995323181,-0.9017657041549683,-1.992994785308838,-0.6836034059524536,-1.0321587324142456,-0.5954207181930542,1.546137809753418,-1.9007939100265503,1.3996027708053589,-1.5656147003173828,-0.5086649060249329,-1.5247561931610107,2.5653295516967773,0.5329950451850891,-0.6769972443580627,0.3058883547782898,0.4699435532093048,0.798447847366333,-1.643403172492981,-0.4169607162475586,0.6754709482192993,0.026455558836460114,1.0510531663894653,-0.1356431245803833,-0.6350724101066589,0.22076764702796936,-0.37294262647628784,-0.47937485575675964,0.2802813649177551,0.036131858825683594,1.064865231513977,0.37856847047805786,1.2130026817321777,-0.9768141508102417,-0.14588502049446106,0.473990797996521,-0.24139922857284546,2.047447443008423,3.307610034942627,0.8107925653457642,-1.616133213043213,-0.07111901044845581,0.1418677270412445,0.6806907653808594,0.6096349954605103,-1.2624552249908447,1.3412359952926636,-0.12435469031333923,-0.044456712901592255,1.1773169040679932,-0.10295389592647552,-0.13515880703926086,-0.46354639530181885,-0.09737583994865417,-0.41191405057907104,-0.19749489426612854,-0.6475756764411926,0.1761755347251892,-2.27553391456604,0.040267154574394226,-1.6378827095031738,0.8786667585372925,-0.8128147125244141,0.7680488228797913,0.4756520092487335,-0.2586577236652374,0.4200793206691742,-0.3767491579055786,-0.9614667296409607,1.4812719821929932,-1.0970799922943115,-0.0657111406326294,1.8758549690246582,-1.5012909173965454,1.8219616413116455,-2.2715835571289062,0.3604092001914978,1.0406361818313599,0.6165738105773926,1.2837011814117432,-1.552763819694519,0.7426958680152893,-0.5917962193489075,-0.8348713517189026,-1.4697067737579346,-0.7821945548057556,0.6479800343513489,-0.6828951835632324,-1.7973320484161377,-2.093716859817505,0.3781042993068695,-0.2544141411781311,-0.9417871236801147,0.10430416464805603,-0.5558027029037476,0.16507399082183838,0.37428534030914307,0.20431743562221527,0.43743205070495605,0.7197151184082031,0.39055344462394714,0.2741011083126068,-0.9717611074447632,-0.343101441860199,-0.7903529405593872,1.4099528789520264,1.1457929611206055,-1.739424228668213,0.026307225227355957,0.7735876441001892,-0.3250107169151306,2.194993019104004,-1.807715892791748,1.5366588830947876,0.4391489624977112,0.00817129760980606,-0.5531501173973083,0.6128663420677185,-0.9227437973022461,0.45101112127304077,1.0433270931243896,0.2689301669597626,-0.8897997140884399,0.5746593475341797,0.9065834879875183,0.6354227066040039,1.1205860376358032,0.3011954724788666,-0.4084241986274719,1.1345592737197876,-1.3064370155334473,0.4867764413356781,0.46000421047210693,0.1425718069076538,-1.3010191917419434,0.3979683518409729,-0.7198014259338379,-0.35532045364379883,-0.9211992025375366,-0.811359167098999,-0.37153172492980957,-0.5828441381454468,0.08787721395492554,0.6566272377967834,0.8063390254974365,1.2360070943832397,0.9796808958053589,1.2657921314239502,-2.619598150253296,-0.5799538493156433,0.3597632646560669,-0.5943768620491028,-0.9449400305747986,-1.0602388381958008,-0.9971466660499573,1.6793307065963745,-0.43081945180892944,1.3097820281982422,-0.11150708049535751,0.3965895175933838,0.1284267008304596,-1.1017903089523315,0.04477235674858093,1.1690579652786255,-0.2567782998085022,-1.2574856281280518,-1.1630769968032837,1.7699369192123413,-0.8189243078231812,0.22598563134670258,-0.34686511754989624,-0.8308154940605164,0.09104105830192566,0.973534345626831,0.002663910388946533,1.0694537162780762,0.32740700244903564,-1.8958724737167358,-0.6579673290252686,1.5438445806503296,0.38513779640197754,0.009606033563613892,0.9460709691047668,-0.37850552797317505,-0.7107208967208862,-0.4361104667186737,-1.0863590240478516,-0.15867829322814941,-0.5798963308334351 -2934,-0.6128961443901062,-0.6552557945251465,1.021302580833435,-2.0383284091949463,-0.7257195115089417,-0.35301077365875244,-1.5272138118743896,0.7188302278518677,-0.012589208781719208,0.6164866089820862,0.14708572626113892,-0.005155518651008606,0.08263546973466873,-0.7463581562042236,-0.07000003010034561,-1.1625823974609375,-0.8655732274055481,0.3729632794857025,-1.5859715938568115,-0.28041279315948486,-0.3718516230583191,0.3763245940208435,1.4262279272079468,0.3863478899002075,-0.0514359325170517,-0.5383660197257996,-1.4542534351348877,-2.4290432929992676,0.15882176160812378,-1.281760334968567,-1.6282459497451782,-1.2632575035095215,-0.25246283411979675,-0.7898803949356079,-0.9010116457939148,-0.33515381813049316,-2.7790327072143555,-0.521407961845398,0.6802102327346802,-0.1988791525363922,-0.6045184135437012,-0.6331630945205688,-0.04257839918136597,0.9611524343490601,0.32941770553588867,-0.4648301601409912,0.6689500212669373,-1.3851020336151123,-1.0763049125671387,-1.5971077680587769,1.5254955291748047,1.5454894304275513,0.008325263857841492,2.0525782108306885,-3.261160373687744,0.465952068567276,-0.06989753246307373,0.10276523232460022,0.31147056818008423,0.8558501601219177,-0.9017657041549683,-1.992994785308838,-1.1480376720428467,-1.2162165641784668,-0.5738212466239929,1.546137809753418,-1.9007939100265503,1.3996027708053589,-1.5656147003173828,-0.5086649060249329,-1.5247561931610107,3.007657527923584,0.5329950451850891,-0.6769972443580627,0.3058883547782898,0.736762285232544,1.0221112966537476,-1.643403172492981,0.06398722529411316,0.6754709482192993,0.026455558836460114,1.2912251949310303,-0.1356431245803833,-0.6350724101066589,0.22076764702796936,-0.37294262647628784,-0.47937485575675964,0.2802813649177551,0.036131858825683594,1.064865231513977,0.37856847047805786,1.2046748399734497,-0.9768141508102417,-0.14588502049446106,0.473990797996521,-0.24139922857284546,1.9699609279632568,3.307610034942627,1.4365392923355103,-1.616133213043213,-0.07111901044845581,0.1418677270412445,0.6806907653808594,0.4666767716407776,-1.2624552249908447,1.3412359952926636,-0.12435469031333923,-0.044456712901592255,1.1773169040679932,-0.5569066405296326,-0.13515880703926086,-0.5233100056648254,-0.09737583994865417,-0.41191405057907104,-0.3423871099948883,-1.2472546100616455,0.36666393280029297,-2.27553391456604,0.040267154574394226,-1.6378827095031738,0.8786667585372925,-0.4029712378978729,0.7680488228797913,0.4756520092487335,-0.2586577236652374,0.4200793206691742,-0.9147143959999084,-0.9614667296409607,0.01065051555633545,-1.0970799922943115,-0.0657111406326294,1.8758549690246582,-1.5012909173965454,1.8219616413116455,-2.2715835571289062,0.3604092001914978,0.5411370396614075,0.6165738105773926,1.2837011814117432,-1.3649412393569946,0.09597623348236084,-0.5917962193489075,-0.8348713517189026,-1.4697067737579346,-0.7821945548057556,0.6479800343513489,0.2969728708267212,-1.7973320484161377,-2.1055617332458496,0.8298584222793579,-0.2544141411781311,-0.9417871236801147,0.10430416464805603,-1.270125150680542,0.16507399082183838,-0.4336332082748413,0.20431743562221527,0.7774068117141724,0.7197151184082031,0.39055344462394714,0.2741011083126068,-0.9717611074447632,-0.343101441860199,0.0832025408744812,1.4677332639694214,1.1457929611206055,-1.739424228668213,0.026307225227355957,0.7735876441001892,-0.3250107169151306,2.194993019104004,-1.807715892791748,1.4296669960021973,0.625691294670105,-0.21683833003044128,-0.21908560395240784,0.25188183784484863,0.36787962913513184,-0.11846643686294556,1.0433270931243896,0.2689301669597626,-0.8897997140884399,0.5746593475341797,0.9642374515533447,0.6354227066040039,0.9138476848602295,0.3011954724788666,-0.4084241986274719,-0.00025522708892822266,-1.3064370155334473,0.4867764413356781,0.46000421047210693,0.1425718069076538,-1.3010191917419434,0.3979683518409729,-0.7198014259338379,-0.35532045364379883,-0.9211992025375366,-0.811359167098999,-1.1239286661148071,-0.5828441381454468,0.08787721395492554,0.6566272377967834,0.4757060408592224,1.2360070943832397,0.9796808958053589,1.2657921314239502,-2.619598150253296,-0.5799538493156433,0.3597632646560669,-0.5943768620491028,-0.9449400305747986,-1.0124849081039429,-0.9971466660499573,1.6793307065963745,-0.43081945180892944,1.3097820281982422,-0.5006736516952515,0.3965895175933838,0.1284267008304596,-1.1017903089523315,-0.3682031035423279,0.5912492871284485,-0.2567782998085022,-1.156477928161621,-0.6004330515861511,1.7699369192123413,-1.2884992361068726,0.22598563134670258,-0.34686511754989624,-0.8308154940605164,0.09104105830192566,1.0945923328399658,0.002663910388946533,1.5566425323486328,0.32740700244903564,-1.8958724737167358,-0.6579673290252686,1.5438445806503296,0.40130919218063354,0.5367046594619751,0.9219646453857422,-0.9136829972267151,-0.7107208967208862,-0.4361104667186737,-0.968255341053009,-0.15867829322814941,-0.5798963308334351 -2935,-0.6128961443901062,-0.6552557945251465,1.021302580833435,-1.980318307876587,-0.7257195115089417,-0.35301077365875244,-1.5272138118743896,0.7188302278518677,0.20730891823768616,0.6164866089820862,0.14708572626113892,-0.005155518651008606,0.08263546973466873,-0.7463581562042236,0.42450422048568726,-1.2026373147964478,-0.1819407343864441,0.3729632794857025,-1.5859715938568115,-0.28041279315948486,-0.3718516230583191,0.3763245940208435,1.9090092182159424,0.8624696731567383,-0.0514359325170517,-0.5383660197257996,-1.4542534351348877,-2.4290432929992676,0.15882176160812378,-1.281760334968567,-1.6282459497451782,-0.9742717742919922,-0.25246283411979675,-0.7898803949356079,-0.9010116457939148,-0.33515381813049316,-2.7790327072143555,-0.521407961845398,0.6802102327346802,-0.21257160604000092,-0.6045184135437012,-0.6331630945205688,-0.04257839918136597,0.9611524343490601,0.32941770553588867,-0.4648301601409912,0.6689500212669373,-1.3851020336151123,-1.0763049125671387,-1.5971077680587769,1.5254955291748047,1.5454894304275513,0.08290679007768631,2.0525782108306885,-3.261160373687744,0.465952068567276,-0.06989753246307373,0.13098928332328796,0.31147056818008423,0.8558501601219177,-0.9017657041549683,-2.2564711570739746,-1.1480376720428467,-1.2162165641784668,-0.5738212466239929,1.546137809753418,-1.9007939100265503,1.4545022249221802,-1.5656147003173828,-0.5086649060249329,-1.7547602653503418,3.007657527923584,0.4339776039123535,-0.6769972443580627,0.3058883547782898,0.736762285232544,1.0221112966537476,-1.643403172492981,0.35650861263275146,0.5593993067741394,0.026455558836460114,1.2912251949310303,-0.1356431245803833,-0.5816869735717773,0.22076764702796936,-0.2104087620973587,-0.47937485575675964,0.2802813649177551,-0.2653619945049286,0.5874457359313965,0.37856847047805786,1.2046748399734497,-0.6335935592651367,-0.14588502049446106,0.473990797996521,-0.24139922857284546,1.9699609279632568,3.307610034942627,0.967982292175293,-1.616133213043213,-0.07111901044845581,0.1418677270412445,0.6806907653808594,0.7324262857437134,-1.2624552249908447,1.5306181907653809,-0.12435469031333923,-0.044456712901592255,1.5092661380767822,-0.1598958671092987,0.9011707305908203,-0.5233100056648254,-0.09737583994865417,-0.41191405057907104,-0.27297258377075195,-1.1838092803955078,0.06443265080451965,-2.226879119873047,0.040267154574394226,-1.6378827095031738,0.47957322001457214,-0.4029712378978729,0.7680488228797913,0.4756520092487335,-0.2586577236652374,0.304400235414505,-0.6666173934936523,-0.9614667296409607,0.01065051555633545,-0.22502899169921875,-0.0657111406326294,1.8758549690246582,-1.738816738128662,1.2120779752731323,-2.2715835571289062,0.06923884153366089,0.5411370396614075,0.6165738105773926,1.2837011814117432,-1.3649412393569946,0.09597623348236084,-0.5917962193489075,0.11811846494674683,0.4358847141265869,-0.07135623693466187,1.0723936557769775,-0.2296317219734192,-1.7973320484161377,-2.1627347469329834,0.8298584222793579,-0.2544141411781311,-0.9417871236801147,0.10430416464805603,-1.270125150680542,0.16507399082183838,-0.4336332082748413,0.3108454942703247,0.7774068117141724,0.7197151184082031,0.39055344462394714,0.20027512311935425,-0.9717611074447632,-0.343101441860199,0.0832025408744812,1.4677332639694214,1.1457929611206055,-0.7787736058235168,0.026307225227355957,0.7735876441001892,0.13796064257621765,2.194993019104004,-2.436744451522827,1.4296669960021973,0.625691294670105,-0.21683833003044128,-0.21908560395240784,0.25188183784484863,-0.27742642164230347,1.0049006938934326,0.4236593246459961,0.2689301669597626,-0.8897997140884399,0.5746593475341797,0.6955689787864685,0.6354227066040039,0.017046630382537842,0.3011954724788666,-0.4084241986274719,-0.00025522708892822266,-1.3222362995147705,0.42743149399757385,0.46000421047210693,0.4349803626537323,-1.8736580610275269,0.3979683518409729,-0.4383446276187897,-0.07212883234024048,-0.9211992025375366,-0.811359167098999,-1.1239286661148071,-1.4343538284301758,0.08787721395492554,0.6566272377967834,0.4757060408592224,1.2360070943832397,1.0605515241622925,1.2657921314239502,-2.619598150253296,-0.5799538493156433,1.0772578716278076,-0.5943768620491028,-0.9449400305747986,-1.0124849081039429,-0.9971466660499573,0.7713295221328735,-0.43081945180892944,1.2787140607833862,-0.2677494287490845,0.3965895175933838,0.1284267008304596,-1.1017903089523315,-0.3682031035423279,0.5912492871284485,-0.2567782998085022,-1.156477928161621,-0.20486411452293396,1.8294837474822998,-1.2884992361068726,0.22598563134670258,-0.5309101939201355,-0.8308154940605164,0.09104105830192566,0.6699094772338867,-0.13060171902179718,1.5566425323486328,0.32740700244903564,-1.8958724737167358,-0.6579673290252686,1.5438445806503296,0.47372984886169434,0.5367046594619751,0.9219646453857422,-1.3047844171524048,-0.7107208967208862,-0.4361104667186737,-0.9237920045852661,-0.15867829322814941,-0.5798963308334351 -2936,-0.602208137512207,-0.6552557945251465,1.021302580833435,-1.980318307876587,-0.7257195115089417,-0.35301077365875244,-1.5272138118743896,0.7188302278518677,0.20730891823768616,0.6164866089820862,-0.07347612082958221,-0.005155518651008606,0.08263546973466873,0.019022464752197266,0.42450422048568726,-1.1162341833114624,-0.1819407343864441,0.3729632794857025,-1.7705821990966797,-0.28041279315948486,-0.3718516230583191,0.4303470849990845,1.9090092182159424,0.8624696731567383,-0.5505932569503784,-0.2618197500705719,-1.4542534351348877,-2.4290432929992676,0.15882176160812378,-1.281760334968567,-1.6282459497451782,-0.9742717742919922,-0.25246283411979675,-0.7898803949356079,-0.8543328046798706,-0.33515381813049316,-2.7790327072143555,-0.521407961845398,0.6802102327346802,-0.21257160604000092,-0.5341718792915344,-0.5703883171081543,-0.04257839918136597,0.9611524343490601,0.5765718817710876,-0.4648301601409912,0.6689500212669373,-1.3851020336151123,-1.1845673322677612,-1.5971077680587769,1.5254955291748047,1.5454894304275513,0.1531955599784851,2.1517021656036377,-3.2144134044647217,0.465952068567276,-0.34217873215675354,0.13098928332328796,0.31147056818008423,0.8558501601219177,-0.9017657041549683,-2.2564711570739746,-0.6926199197769165,-1.2162165641784668,-0.08138832449913025,1.546137809753418,-1.9007939100265503,1.488363265991211,-1.5656147003173828,-0.5086649060249329,-1.8625144958496094,1.9911731481552124,0.39461076259613037,-0.6769972443580627,0.3058883547782898,0.736762285232544,1.0221112966537476,-1.940205693244934,0.35650861263275146,0.5593993067741394,0.30700764060020447,1.2912251949310303,-0.1356431245803833,-0.5816869735717773,0.4309167265892029,-0.2104087620973587,-0.3491322696208954,0.2802813649177551,0.16742739081382751,0.5874457359313965,0.37856847047805786,1.2046748399734497,-0.6335935592651367,-0.14588502049446106,0.9692362546920776,-0.03928828239440918,1.9699609279632568,3.307610034942627,1.162245273590088,-0.979252815246582,-0.07111901044845581,-0.5068681240081787,0.6806907653808594,0.7324262857437134,-1.2624552249908447,1.5306181907653809,-0.12435469031333923,-0.9870500564575195,1.5092661380767822,-0.1598958671092987,0.7562374472618103,-0.5233100056648254,-0.09737583994865417,-0.41191405057907104,-0.27297258377075195,-1.1838092803955078,-0.7480692863464355,-2.226879119873047,0.3248170018196106,-1.6378827095031738,0.47957322001457214,-0.4029712378978729,1.1424190998077393,0.4756520092487335,-0.2586577236652374,0.304400235414505,-0.6666173934936523,-0.9614667296409607,0.01065051555633545,-0.22502899169921875,-0.0657111406326294,1.8758549690246582,-1.738816738128662,1.430380940437317,-2.2157320976257324,0.06923884153366089,0.5411370396614075,0.6165738105773926,1.7369850873947144,-1.3649412393569946,0.5979318618774414,-0.5917962193489075,0.11811846494674683,0.4358847141265869,-0.07135623693466187,0.22625434398651123,-0.2296317219734192,-1.7973320484161377,-2.1627347469329834,0.8298584222793579,-0.2544141411781311,-0.9417871236801147,0.12005533277988434,-1.482181429862976,-0.021635890007019043,-0.4336332082748413,0.3108454942703247,0.5883559584617615,0.7197151184082031,0.39055344462394714,0.20027512311935425,-0.9717611074447632,-0.343101441860199,0.0832025408744812,1.4677332639694214,0.9691900610923767,-0.7787736058235168,0.026307225227355957,0.7735876441001892,0.3013758659362793,2.194993019104004,-2.0019776821136475,1.4296669960021973,0.625691294670105,-0.21683833003044128,-0.41820383071899414,0.25188183784484863,-0.27742642164230347,1.0049006938934326,0.6761518716812134,0.2689301669597626,-0.8897997140884399,0.5746593475341797,0.6955689787864685,0.6354227066040039,-1.1243908405303955,0.03812766075134277,-0.4084241986274719,-0.16093052923679352,-1.207520842552185,0.42743149399757385,0.46000421047210693,-0.43264201283454895,-1.8736580610275269,1.1582272052764893,0.09555116295814514,0.11262992024421692,-1.8955187797546387,-0.811359167098999,-0.2715218663215637,-1.4343538284301758,0.038186512887477875,-0.12450891733169556,0.4757060408592224,1.2360070943832397,1.4994300603866577,1.2657921314239502,-2.619598150253296,-0.5799538493156433,1.0772578716278076,-0.5943768620491028,-0.3574988842010498,-1.1649848222732544,-0.9971466660499573,0.6617156267166138,-0.43081945180892944,1.2787140607833862,-0.2677494287490845,0.3423488438129425,0.329504132270813,-1.4214953184127808,0.22659826278686523,0.5912492871284485,-0.2567782998085022,-1.156477928161621,-0.10847877711057663,1.9901928901672363,-1.2884992361068726,0.22598563134670258,-0.5309101939201355,-0.8308154940605164,-0.6072181463241577,0.6699094772338867,-0.13060171902179718,1.5566425323486328,0.32740700244903564,-1.8958724737167358,-0.32547274231910706,1.5438445806503296,0.4233826696872711,-0.21417587995529175,0.17630541324615479,-1.3047844171524048,-0.9880572557449341,-0.4361104667186737,-0.9237920045852661,-0.15867829322814941,-1.3059923648834229 -2937,-0.602208137512207,-0.6552557945251465,1.021302580833435,-1.980318307876587,-1.1801716089248657,-0.35301077365875244,-1.7739179134368896,0.7188302278518677,-0.5850540399551392,0.6164866089820862,-0.03390512242913246,0.4727499485015869,-0.049001745879650116,0.019022464752197266,0.42450422048568726,-1.486794114112854,-0.1819407343864441,0.3729632794857025,-1.567386507987976,-0.05072978138923645,-0.12852853536605835,0.670495331287384,1.9090092182159424,1.0365749597549438,-0.5505932569503784,-0.2618197500705719,-1.4542534351348877,-2.4290432929992676,0.15882176160812378,-1.255304217338562,-1.6282459497451782,-0.9742717742919922,-0.25246283411979675,-0.7862828373908997,-0.8543328046798706,-0.33515381813049316,-2.603060245513916,-0.189345121383667,0.6802102327346802,-0.21257160604000092,-0.5341718792915344,-0.5703883171081543,-0.04257839918136597,0.9611524343490601,0.5765718817710876,-0.4648301601409912,0.6689500212669373,-1.3851020336151123,-1.1845673322677612,-1.5971077680587769,1.5254955291748047,1.0809483528137207,0.1531955599784851,2.1517021656036377,-3.017117977142334,0.465952068567276,-0.34217873215675354,-0.7150970697402954,0.31147056818008423,0.8558501601219177,-0.9017657041549683,-2.2564711570739746,-0.8009498715400696,-1.5933860540390015,-0.08138832449913025,1.546137809753418,-1.9007939100265503,1.488363265991211,-1.5656147003173828,-0.5086649060249329,-1.8625144958496094,1.9911731481552124,0.3283747732639313,-1.2782623767852783,0.3058883547782898,0.736762285232544,1.0221112966537476,-1.940205693244934,0.3455480635166168,0.5593993067741394,0.30700764060020447,1.2912251949310303,-0.1356431245803833,-0.45626941323280334,0.4309167265892029,-0.2104087620973587,-0.3491322696208954,0.2802813649177551,0.16742739081382751,0.5874457359313965,-0.3411400318145752,1.2046748399734497,-0.6335935592651367,-0.14588502049446106,0.9692362546920776,0.4500955641269684,1.9699609279632568,3.307610034942627,1.162245273590088,-0.9729639291763306,-0.46695563197135925,-0.5042360424995422,0.6806907653808594,0.813213050365448,-1.2624552249908447,1.314371109008789,-0.5843029618263245,-0.9870500564575195,1.5092661380767822,-0.1598958671092987,0.7562374472618103,-1.1293971538543701,-0.09737583994865417,0.2857174873352051,-0.27297258377075195,-1.1838092803955078,-0.7480692863464355,-2.226879119873047,0.3248170018196106,-1.3408608436584473,0.47957322001457214,-0.4029712378978729,1.1424190998077393,0.4879028797149658,-0.2586577236652374,0.304400235414505,-0.3180963695049286,-0.9614667296409607,0.369521826505661,-0.22502899169921875,-1.0154829025268555,1.8758549690246582,-1.0921992063522339,1.430380940437317,-1.9404306411743164,0.06923884153366089,0.5411370396614075,0.6165738105773926,1.502941370010376,-1.3649412393569946,0.5979318618774414,-0.5917962193489075,0.11811846494674683,0.4358847141265869,0.046909622848033905,0.22625434398651123,-0.2296317219734192,-1.7374581098556519,-1.9138835668563843,0.9469903111457825,-0.2544141411781311,-1.1370725631713867,0.12005533277988434,-1.482181429862976,-0.005712812766432762,-0.4336332082748413,0.3108454942703247,0.5883559584617615,0.5402332544326782,0.39055344462394714,0.20027512311935425,-0.9717611074447632,-0.343101441860199,0.0832025408744812,0.8653395771980286,0.8592986464500427,-0.7787736058235168,0.026307225227355957,0.7735876441001892,0.19347569346427917,2.194993019104004,-2.0019776821136475,1.7949244976043701,0.625691294670105,-0.21683833003044128,-0.04292970895767212,0.25188183784484863,-0.27742642164230347,1.0049006938934326,0.1690036654472351,0.2689301669597626,-1.2889795303344727,0.5746593475341797,0.6955689787864685,0.6354227066040039,0.06024491786956787,0.03812766075134277,-0.4084241986274719,-0.16093052923679352,-0.6592179536819458,0.42743149399757385,0.32595449686050415,-0.43264201283454895,-1.6266204118728638,1.1582272052764893,0.09555116295814514,-0.0884021520614624,-1.370840311050415,-0.811359167098999,-0.2715218663215637,-1.4343538284301758,0.038186512887477875,-0.12450891733169556,0.4757060408592224,1.2360070943832397,1.4994300603866577,1.3452740907669067,-2.619598150253296,-0.5799538493156433,1.0772578716278076,-0.5943768620491028,-0.3574988842010498,-1.059278964996338,-0.9971466660499573,1.116685390472412,-0.43081945180892944,1.1969377994537354,0.020401179790496826,0.3423488438129425,0.329504132270813,-1.4214953184127808,-0.17256474494934082,0.5912492871284485,-0.2567782998085022,-1.156477928161621,-0.10847877711057663,1.9250191450119019,-1.441919207572937,0.22598563134670258,-0.5309101939201355,-0.8308154940605164,-0.6072181463241577,0.6699094772338867,-0.018415160477161407,1.5566425323486328,0.32740700244903564,-1.7094855308532715,-0.5803811550140381,1.5464932918548584,0.4233826696872711,-0.21417587995529175,0.17630541324615479,-1.3047844171524048,-1.188346028327942,-0.4361104667186737,-0.9237920045852661,-0.15867829322814941,-0.6066491603851318 -2938,-0.3077770173549652,-0.6552557945251465,1.021302580833435,-1.980318307876587,-1.0863409042358398,-0.35301077365875244,-1.7739179134368896,0.40140870213508606,-0.5850540399551392,0.6164866089820862,-0.03390512242913246,0.4727499485015869,-0.049001745879650116,0.019022464752197266,0.42450422048568726,-1.486794114112854,-0.1819407343864441,0.7031399011611938,-1.567386507987976,-0.05072978138923645,-0.12852853536605835,0.670495331287384,1.9090092182159424,1.0365749597549438,-0.5505932569503784,-0.2618197500705719,-1.4542534351348877,-2.391517400741577,0.15882176160812378,-1.255304217338562,-1.6282459497451782,-1.1805088520050049,0.071663498878479,-0.9139502048492432,-0.8543328046798706,-0.03007414937019348,-2.603060245513916,-0.189345121383667,1.6530933380126953,-0.21257160604000092,-0.5341718792915344,-0.5703883171081543,-0.04257839918136597,0.9611524343490601,0.36568915843963623,-0.4648301601409912,0.6689500212669373,-1.3851020336151123,-1.2304322719573975,-2.089806318283081,1.610143780708313,-0.19075536727905273,0.1531955599784851,2.1517021656036377,-2.9148313999176025,0.465952068567276,-0.34217873215675354,-0.8885087966918945,0.31147056818008423,0.8558501601219177,-0.9017657041549683,-1.9532430171966553,-0.35303670167922974,-1.5933860540390015,-0.08138832449913025,1.546137809753418,-1.9007939100265503,1.488363265991211,-1.5656147003173828,-0.5086649060249329,-1.8625144958496094,1.9911731481552124,0.3283747732639313,-1.2782623767852783,0.3058883547782898,0.8774999380111694,1.0221112966537476,-1.940205693244934,0.588846743106842,0.5593993067741394,0.30700764060020447,1.2912251949310303,-0.1356431245803833,-0.5709957480430603,0.4309167265892029,-0.2104087620973587,-0.5402694344520569,0.12089145183563232,0.16742739081382751,1.063814401626587,-0.3411400318145752,1.2046748399734497,-0.6335935592651367,-0.14588502049446106,0.3828904628753662,1.4131842851638794,1.7332950830459595,3.307610034942627,1.162245273590088,-0.9729639291763306,-0.46695563197135925,0.2148646116256714,0.6806907653808594,1.5201356410980225,-1.2624552249908447,1.314371109008789,0.09520161151885986,-0.9870500564575195,1.5092661380767822,-0.1598958671092987,0.7562374472618103,-1.1293971538543701,0.3770352900028229,0.2857174873352051,-0.27297258377075195,-1.1838092803955078,-0.5171256065368652,-2.226879119873047,0.3248170018196106,-1.3408608436584473,0.47957322001457214,-0.5380295515060425,1.1424190998077393,0.4389530420303345,-0.2586577236652374,0.36967113614082336,-0.3180963695049286,-0.9614667296409607,0.369521826505661,-0.6835331916809082,-1.0154829025268555,1.8758549690246582,-1.0921992063522339,1.430380940437317,-1.9404306411743164,0.06923884153366089,0.5411370396614075,0.6165738105773926,0.94249427318573,-1.3649412393569946,0.95359206199646,-1.0295677185058594,0.11811846494674683,0.4358847141265869,0.046909622848033905,0.9680815935134888,-0.2296317219734192,-1.7374581098556519,-2.039868116378784,0.9469903111457825,-0.14665398001670837,-1.0464359521865845,-0.13085176050662994,-1.482181429862976,0.8794727921485901,-0.4336332082748413,0.3108454942703247,0.3954316973686218,0.5402332544326782,0.39055344462394714,0.20027512311935425,-0.5114972591400146,-0.343101441860199,0.08168192207813263,0.8653395771980286,0.8592986464500427,-0.7787736058235168,0.026307225227355957,0.7735876441001892,0.19347569346427917,1.5183786153793335,-0.9813058376312256,1.7949244976043701,0.625691294670105,-0.26036784052848816,-0.04292970895767212,0.25188183784484863,-0.8872372508049011,0.955609142780304,0.4456726312637329,-0.234573096036911,-1.2889795303344727,0.5746593475341797,0.6955689787864685,0.6354227066040039,0.06024491786956787,0.03812766075134277,-0.4084241986274719,0.2744165062904358,-0.6806255578994751,0.42743149399757385,0.32595449686050415,-0.43264201283454895,-1.6266204118728638,1.1582272052764893,0.508802056312561,0.19342681765556335,-1.370840311050415,-1.1598527431488037,-0.2715218663215637,-1.4343538284301758,0.038186512887477875,0.7464053630828857,0.4757060408592224,0.6582463383674622,1.5907480716705322,1.3038413524627686,-2.549067974090576,-0.5799538493156433,1.0772578716278076,-0.5943768620491028,-0.9257768392562866,-1.059278964996338,-0.5369540452957153,1.116685390472412,-0.43081945180892944,1.1969377994537354,0.020401179790496826,0.3423488438129425,0.329504132270813,-1.0362180471420288,-0.17256474494934082,0.5912492871284485,-0.2567782998085022,-1.156477928161621,-0.10847877711057663,1.9250191450119019,-1.6969928741455078,0.22598563134670258,-0.5309101939201355,-0.5292924642562866,-0.6072181463241577,0.6699094772338867,-0.018415160477161407,1.5566425323486328,0.3678363263607025,-2.55838942527771,-0.5803811550140381,2.1474311351776123,0.4233826696872711,-0.21417587995529175,0.17630541324615479,-1.3047844171524048,-0.5276045203208923,-0.4361104667186737,-1.163507342338562,-0.15867829322814941,-0.6066491603851318 -2939,-0.3926928639411926,-0.8679734468460083,1.021302580833435,-1.980318307876587,-1.043173909187317,-0.35301077365875244,-1.7739179134368896,0.40140870213508606,-0.37046679854393005,0.6164866089820862,-0.23110565543174744,0.7183535099029541,-0.049001745879650116,0.019022464752197266,-0.39836567640304565,-1.2763381004333496,-0.1819407343864441,0.7031399011611938,-1.567386507987976,-0.05072978138923645,-0.12852853536605835,0.670495331287384,1.8308073282241821,0.7681219577789307,-0.5505932569503784,-0.2618197500705719,-1.2831470966339111,-2.391517400741577,0.15882176160812378,-1.255304217338562,-1.043537974357605,-1.1805088520050049,0.071663498878479,-0.9139502048492432,-0.3787412941455841,-0.03007414937019348,-2.603060245513916,0.06846430897712708,1.6530933380126953,-0.21257160604000092,-0.5341718792915344,-0.5703883171081543,-0.04257839918136597,0.9611524343490601,0.3110063970088959,-0.4648301601409912,0.6689500212669373,-1.3851020336151123,-1.2304322719573975,-1.1325746774673462,1.610143780708313,-0.18880900740623474,0.25108015537261963,1.8422367572784424,-2.9148313999176025,0.465952068567276,-0.34217873215675354,-0.8885087966918945,0.31147056818008423,0.8558501601219177,-0.9017657041549683,-2.5297179222106934,0.3446003794670105,-0.2544492483139038,-0.08138832449913025,1.546137809753418,-1.9007939100265503,1.488363265991211,-1.1508022546768188,-0.5086649060249329,-1.8625144958496094,1.9911731481552124,0.3283747732639313,-1.2782623767852783,0.10402783751487732,0.8774999380111694,1.3939647674560547,-1.6028698682785034,0.3776119351387024,0.5593993067741394,0.1368495374917984,1.2912251949310303,-0.1356431245803833,-0.5709957480430603,0.4309167265892029,-0.2104087620973587,-0.5402694344520569,0.12089145183563232,0.16742739081382751,1.063814401626587,-0.3020372986793518,1.2046748399734497,-0.1509648561477661,-0.14588502049446106,0.3828904628753662,1.7714275121688843,1.7332950830459595,2.3890655040740967,1.5111265182495117,-0.9729639291763306,-0.46695563197135925,0.6971501111984253,0.6261905431747437,1.5201356410980225,-0.4095863699913025,1.270023226737976,0.09520161151885986,0.5014206171035767,1.3410313129425049,-0.1598958671092987,0.47616249322891235,-1.1293971538543701,0.3770352900028229,0.2857174873352051,-0.27297258377075195,-1.1838092803955078,-0.5171256065368652,-2.226879119873047,0.3248170018196106,-1.3408608436584473,0.47957322001457214,-0.5380295515060425,0.09758114814758301,0.4389530420303345,-0.2586577236652374,-0.03589019179344177,-0.3180963695049286,-0.9097214937210083,-1.0950267314910889,-0.6835331916809082,-1.0154829025268555,1.8758549690246582,-1.0921992063522339,1.430380940437317,-1.9404306411743164,0.06923884153366089,0.5986908674240112,0.4278397560119629,0.94249427318573,-1.3649412393569946,0.6351937651634216,-1.0295677185058594,0.11811846494674683,-0.5726108551025391,0.6055561900138855,0.9680815935134888,-1.088726282119751,-1.7374581098556519,-2.039868116378784,0.9469903111457825,-0.14665398001670837,-1.0464359521865845,-0.13085176050662994,-1.0313175916671753,0.8794727921485901,-0.4336332082748413,0.3108454942703247,0.3954316973686218,0.5402332544326782,0.21630166471004486,0.20027512311935425,-0.6827477216720581,-0.343101441860199,-0.14625868201255798,0.8653395771980286,0.8592986464500427,-0.7787736058235168,0.026307225227355957,0.7735876441001892,0.19347569346427917,1.4839982986450195,-0.9813058376312256,1.7949244976043701,0.3369995951652527,-0.5579487085342407,-0.04292970895767212,0.25188183784484863,-0.8872372508049011,0.6668068170547485,0.4456726312637329,-0.234573096036911,-1.2889795303344727,0.5746593475341797,0.6955689787864685,0.6354227066040039,-0.15065672993659973,0.03812766075134277,-0.3581283986568451,-0.06237408518791199,-0.7888690233230591,0.42743149399757385,0.6226435303688049,-0.43264201283454895,-1.6266204118728638,1.1582272052764893,0.508802056312561,0.06625843048095703,-1.370840311050415,-1.1598527431488037,-0.2715218663215637,-1.4343538284301758,0.038186512887477875,1.106626272201538,0.4757060408592224,0.6582463383674622,1.4284998178482056,1.3038413524627686,-2.549067974090576,-0.5799538493156433,1.0772578716278076,-0.5943768620491028,-0.9257768392562866,-1.059278964996338,-0.5369540452957153,0.9421332478523254,0.6703212857246399,1.1969377994537354,0.11589758098125458,0.3423488438129425,0.329504132270813,-1.4176607131958008,-0.17256474494934082,0.5152596831321716,-0.34238043427467346,-0.5934123992919922,-0.07595786452293396,1.9250191450119019,-1.6672959327697754,0.22598563134670258,-0.2863924503326416,-0.5292924642562866,-0.6072181463241577,0.6699094772338867,-0.28580841422080994,1.5566425323486328,0.3678363263607025,-2.55838942527771,-0.5803811550140381,2.1474311351776123,0.4233826696872711,-0.21417587995529175,0.17630541324615479,-1.3047844171524048,-0.6994650959968567,-0.4361104667186737,-1.2991145849227905,-0.15867829322814941,-0.6066491603851318 -2940,-0.3926928639411926,-0.878434956073761,0.19061154127120972,-1.980318307876587,-1.043173909187317,-0.35301077365875244,-1.7739179134368896,0.40140870213508606,-0.37046679854393005,0.6164866089820862,-0.3125009536743164,0.7183535099029541,-0.4562055766582489,0.019022464752197266,-0.39836567640304565,-1.2763381004333496,-0.04222245514392853,0.7444712519645691,-1.567386507987976,-0.29141366481781006,-0.12852853536605835,0.670495331287384,1.8308073282241821,0.7681219577789307,-0.1273607611656189,-0.2618197500705719,-1.2831470966339111,-2.1812901496887207,0.15882176160812378,-1.5329225063323975,-1.02573823928833,-1.1805088520050049,0.3875857889652252,-0.3983551859855652,-0.3787412941455841,-0.03007414937019348,-2.603060245513916,-0.2614485025405884,1.6530933380126953,-0.21257160604000092,-0.4453158378601074,-0.5703883171081543,-0.04257839918136597,0.9611524343490601,0.3110063970088959,-0.4648301601409912,0.015840530395507812,-1.3851020336151123,-1.2304322719573975,-1.1325746774673462,1.610143780708313,-0.18880900740623474,0.25108015537261963,1.8422367572784424,-2.518376111984253,0.4884553551673889,-0.34217873215675354,-0.173031747341156,0.31147056818008423,0.4209398031234741,-0.6466029286384583,-2.5297179222106934,0.3446003794670105,-0.2544492483139038,-0.08138832449913025,1.5295366048812866,-1.9007939100265503,1.488363265991211,-1.0471208095550537,-0.799758791923523,-1.8363982439041138,1.9911731481552124,0.3283747732639313,-0.9815273284912109,0.10402783751487732,0.8774999380111694,1.3939647674560547,-1.6028698682785034,0.3776119351387024,0.5593993067741394,0.47317832708358765,1.2912251949310303,-0.4292597472667694,-0.5709957480430603,0.4309167265892029,-0.2104087620973587,-0.5402694344520569,0.12089145183563232,0.16742739081382751,0.30660247802734375,-0.3020372986793518,1.2046748399734497,-0.1509648561477661,-0.14588502049446106,0.3828904628753662,1.702558159828186,1.7332950830459595,2.3890655040740967,1.5111265182495117,-0.9729639291763306,-0.46695563197135925,0.6971501111984253,1.2990151643753052,1.5201356410980225,-0.8299640417098999,1.440075397491455,0.09520161151885986,0.5014206171035767,1.3410313129425049,0.41212233901023865,0.47616249322891235,-1.1293971538543701,0.11964300274848938,0.2857174873352051,-0.5258493423461914,-0.7413734197616577,-0.5171256065368652,-2.226879119873047,-0.2642374634742737,-1.3408608436584473,0.18414905667304993,0.12364065647125244,0.09758114814758301,0.6947137117385864,-0.2586577236652374,-0.03589019179344177,-0.8681695461273193,-0.9097214937210083,-1.0825773477554321,-0.6835331916809082,-1.0154829025268555,1.7907359600067139,-1.0921992063522339,1.9420948028564453,-1.7040811777114868,0.06923884153366089,1.3533729314804077,0.4278397560119629,-0.03827202320098877,-1.5268751382827759,0.10853219032287598,-0.8594079613685608,0.11811846494674683,-0.35792315006256104,0.6055561900138855,0.7824179530143738,-1.088726282119751,-1.7374581098556519,-2.039868116378784,0.9469903111457825,-0.14665398001670837,-0.6466566324234009,-0.13085176050662994,-0.34025895595550537,0.5107946395874023,-0.4336332082748413,0.3108454942703247,0.3954316973686218,0.5402332544326782,0.09107594192028046,0.20027512311935425,-0.5878251791000366,0.055272072553634644,-0.14625868201255798,0.8653395771980286,0.8592986464500427,-0.7787736058235168,0.033804427832365036,0.7735876441001892,0.19347569346427917,1.4839982986450195,-0.9813058376312256,1.7949244976043701,0.3369995951652527,-0.5579487085342407,-0.04292970895767212,0.25188183784484863,-1.0782084465026855,0.6668068170547485,0.4456726312637329,-0.24045827984809875,-1.2889795303344727,0.5746593475341797,0.6428415179252625,0.6354227066040039,-0.15065672993659973,-0.6189910173416138,-0.3581283986568451,-0.06237408518791199,-0.7888690233230591,0.42743149399757385,0.6226435303688049,-0.43264201283454895,-1.6266204118728638,0.7964845895767212,0.8246829509735107,0.06843652576208115,-1.370840311050415,-1.1598527431488037,-0.2715218663215637,-1.4343538284301758,0.038186512887477875,1.106626272201538,0.35283735394477844,0.6582463383674622,1.033172845840454,1.3038413524627686,-2.549067974090576,-0.5799538493156433,0.5233284831047058,-0.5943768620491028,-0.9257768392562866,-1.5471343994140625,-0.5369540452957153,1.3872534036636353,0.6703212857246399,1.1969377994537354,0.11589758098125458,0.3423488438129425,0.329504132270813,-0.8576556444168091,-0.17256474494934082,0.7639928460121155,-0.34238043427467346,-0.5934123992919922,-0.07595786452293396,1.9250191450119019,-2.0020525455474854,0.22598563134670258,-0.20185282826423645,-0.5292924642562866,-0.6072181463241577,0.6699094772338867,-0.24985730648040771,1.399896502494812,0.3678363263607025,-2.55838942527771,-0.5803811550140381,2.1474311351776123,0.7585365772247314,-0.21417587995529175,0.17630541324615479,-0.8395686149597168,-0.6994650959968567,-0.4926532804965973,-1.2991145849227905,-0.15867829322814941,-0.4123799502849579 -2941,-0.188483327627182,-0.878434956073761,0.19061154127120972,-1.980318307876587,-1.043173909187317,-0.35301077365875244,-1.2678042650222778,0.40140870213508606,-0.37046679854393005,0.6164866089820862,-0.1879245936870575,1.0336368083953857,-0.4562055766582489,0.019022464752197266,-0.39836567640304565,-1.2763381004333496,-0.04222245514392853,0.7444712519645691,-1.567386507987976,-0.29141366481781006,-0.12852853536605835,0.670062780380249,1.8308073282241821,0.7681219577789307,-0.20612289011478424,-0.2618197500705719,-1.2831470966339111,-2.1812901496887207,0.15882176160812378,-1.5329225063323975,-1.4599937200546265,-1.1805088520050049,0.3875857889652252,-0.3983551859855652,-0.3787412941455841,0.16291454434394836,-2.603060245513916,-0.2614485025405884,0.6708422899246216,-0.21257160604000092,-0.4453158378601074,-0.5703883171081543,0.4494955241680145,0.9611524343490601,0.3110063970088959,-0.4648301601409912,0.015840530395507812,-1.3851020336151123,-1.3727840185165405,-1.1325746774673462,1.610143780708313,-0.18880900740623474,0.6483154296875,1.8422367572784424,-3.112208366394043,0.2782222032546997,0.1826678216457367,-0.07002915441989899,0.5194244980812073,0.4209398031234741,-0.6466029286384583,-2.431161642074585,0.3446003794670105,-0.2544492483139038,-0.08138832449913025,1.5295366048812866,-1.9007939100265503,1.488363265991211,-1.6223926544189453,-1.44008469581604,-1.8363982439041138,1.6524906158447266,0.3283747732639313,-0.9815273284912109,-0.10958002507686615,0.8774999380111694,1.3939647674560547,-1.6028698682785034,0.3776119351387024,0.5593993067741394,0.47317832708358765,0.8930661082267761,-0.4292597472667694,-0.5709957480430603,0.4309167265892029,-0.2104087620973587,-0.5402694344520569,-0.14619040489196777,0.16742739081382751,0.9625489115715027,-0.3020372986793518,1.2046748399734497,-0.1509648561477661,-0.4996242821216583,0.3828904628753662,1.702558159828186,1.7332950830459595,2.3890655040740967,1.5111265182495117,-0.9729639291763306,-0.46695563197135925,0.6971501111984253,1.2990151643753052,1.5201356410980225,-0.8299640417098999,1.440075397491455,0.09520161151885986,0.8374043107032776,1.3745042085647583,0.41212233901023865,0.47616249322891235,-0.7549852132797241,0.11964300274848938,0.2857174873352051,-0.5258493423461914,-0.7413734197616577,-0.5171256065368652,-2.226879119873047,-0.2642374634742737,-1.77057683467865,1.1474136114120483,0.12364065647125244,0.17412398755550385,0.6947137117385864,-0.2586577236652374,-0.03589019179344177,-0.8681695461273193,-0.9097214937210083,-1.0825773477554321,-0.6835331916809082,-0.8828181028366089,1.7907359600067139,-0.5608294010162354,1.9420948028564453,-1.7040811777114868,0.06923884153366089,1.3533729314804077,0.4278397560119629,-0.03827202320098877,-1.541290283203125,0.10853219032287598,-0.8594079613685608,0.11811846494674683,-0.38238534331321716,0.6055561900138855,0.7824179530143738,-1.088726282119751,-1.7374581098556519,-2.039868116378784,0.9469903111457825,-0.14665398001670837,-1.0662673711776733,-0.13085176050662994,-0.34025895595550537,0.5107946395874023,-0.4336332082748413,0.3108454942703247,-0.28475844860076904,0.5402332544326782,0.09107594192028046,0.20027512311935425,-0.5878251791000366,-0.13090679049491882,-0.14625868201255798,1.3097078800201416,0.8592986464500427,-0.7787736058235168,-0.7365169525146484,0.7735876441001892,0.19347569346427917,1.9799327850341797,-0.9813058376312256,1.7949244976043701,0.3369995951652527,-0.5579487085342407,-0.04292970895767212,0.2679562568664551,-1.0782084465026855,0.6668068170547485,0.4456726312637329,0.5066279172897339,-1.2889795303344727,0.27580589056015015,0.6428415179252625,0.6354227066040039,-0.9143286943435669,-0.4200204908847809,-0.3581283986568451,-0.06237408518791199,-0.7888690233230591,0.42743149399757385,0.6037794351577759,-0.43264201283454895,-1.6266204118728638,0.7964845895767212,0.8246829509735107,0.06843652576208115,-1.370840311050415,-1.1598527431488037,-0.2715218663215637,-1.4343538284301758,0.038186512887477875,1.1936700344085693,0.35283735394477844,0.6582463383674622,1.033172845840454,1.3038413524627686,-2.549067974090576,-0.5799538493156433,0.5233284831047058,-0.14103290438652039,-0.8488572835922241,-1.5471343994140625,-0.2934890389442444,1.3872534036636353,0.6703212857246399,1.1969377994537354,0.11589758098125458,0.3423488438129425,0.329504132270813,-1.1563315391540527,-1.1590042114257812,0.7639928460121155,-0.32010549306869507,-0.5934123992919922,-0.07595786452293396,1.9250191450119019,-2.0020525455474854,0.22598563134670258,-0.20185282826423645,-0.5292924642562866,-0.25043654441833496,0.6699094772338867,-0.24985730648040771,1.399896502494812,0.3678363263607025,-2.55838942527771,-0.5803811550140381,2.1474311351776123,0.7585365772247314,-0.21417587995529175,0.17630541324615479,-0.8395686149597168,-0.6994650959968567,-0.4926532804965973,-1.2991145849227905,-0.32856690883636475,-0.4123799502849579 -2942,-0.188483327627182,-0.878434956073761,0.19061154127120972,-1.980318307876587,-1.043173909187317,-0.20800308883190155,-1.2678042650222778,0.6460890769958496,-0.8374695777893066,0.6164866089820862,0.048529163002967834,1.0336368083953857,-0.32501664757728577,0.019022464752197266,-0.1619669497013092,-1.3202217817306519,-0.04222245514392853,0.7444712519645691,-1.567386507987976,-0.29141366481781006,0.012614130973815918,0.670062780380249,1.8308073282241821,0.6972522735595703,0.38376468420028687,-0.2618197500705719,-1.2831470966339111,-2.1812901496887207,0.15882176160812378,-1.5329225063323975,-1.4599937200546265,-1.1805088520050049,0.2691715359687805,-0.3983551859855652,-0.49461227655410767,0.38738200068473816,-2.603060245513916,-0.2614485025405884,0.011335015296936035,-0.6354734897613525,-0.4453158378601074,-0.20072296261787415,0.4494955241680145,1.0256788730621338,0.3110063970088959,-0.4648301601409912,0.015840530395507812,-1.3851020336151123,-1.3727840185165405,-1.1325746774673462,1.610143780708313,-0.18880900740623474,0.6483154296875,1.8422367572784424,-3.1092417240142822,0.2782222032546997,0.1826678216457367,-0.07002915441989899,0.5194244980812073,0.2262800931930542,-0.6466029286384583,-2.5106348991394043,0.3446003794670105,0.11237534880638123,0.06453931331634521,1.5295366048812866,-1.9007939100265503,1.488363265991211,-1.6223926544189453,-1.44008469581604,-1.8363982439041138,1.6524906158447266,0.37789270281791687,-0.9815273284912109,-0.10958002507686615,0.8774999380111694,1.3939647674560547,-1.6645563840866089,0.2629591226577759,0.5593993067741394,0.285592257976532,0.8930661082267761,-0.5370460152626038,-0.5709957480430603,0.4309167265892029,-0.2104087620973587,-0.5402694344520569,-0.14619040489196777,0.16742739081382751,0.4491209387779236,-0.3020372986793518,1.1209547519683838,-0.1509648561477661,-0.5293585062026978,0.2627899646759033,1.702558159828186,1.409083604812622,2.3890655040740967,1.5111265182495117,-0.9729639291763306,-0.46695563197135925,0.3486906886100769,1.0895090103149414,1.5201356410980225,-0.025753438472747803,1.440075397491455,0.09520161151885986,0.8374043107032776,1.3745042085647583,0.41212233901023865,0.47616249322891235,-0.7549852132797241,0.11964300274848938,0.2857174873352051,-0.5258493423461914,-0.7413734197616577,-0.5171256065368652,-2.226879119873047,-0.2642374634742737,-1.77057683467865,1.1474136114120483,0.12364065647125244,0.17412398755550385,0.6947137117385864,-0.2586577236652374,-0.03589019179344177,-0.8681695461273193,-0.9097214937210083,-1.0825773477554321,-0.6835331916809082,-0.8828181028366089,1.7907359600067139,-0.5608294010162354,1.9341261386871338,-1.7040811777114868,-0.1469368189573288,1.3533729314804077,-0.18593424558639526,1.3557977676391602,-1.541290283203125,-0.27326005697250366,-1.1367692947387695,0.11811846494674683,-0.8085249662399292,0.36399751901626587,0.2055361270904541,-1.088726282119751,-1.7374581098556519,-2.039868116378784,0.2499098777770996,-0.14665398001670837,-1.0662673711776733,0.3132483959197998,-0.34025895595550537,0.5107946395874023,-0.4336332082748413,0.3123261332511902,-0.28475844860076904,0.8915385007858276,0.7183910608291626,0.19395452737808228,-0.5878251791000366,-0.13090679049491882,-0.14625868201255798,1.3097078800201416,0.8592986464500427,-0.7787736058235168,-0.7365169525146484,0.7735876441001892,0.7444076538085938,1.9799327850341797,-1.3703473806381226,1.7949244976043701,0.3369995951652527,-0.5579487085342407,-0.04292970895767212,-0.17618778347969055,-1.028032660484314,0.6668068170547485,0.4456726312637329,0.5066279172897339,-0.22515654563903809,0.27580589056015015,0.6428415179252625,0.031112849712371826,-0.9143286943435669,-0.5867919921875,-0.3581283986568451,-0.007750909775495529,-1.005489468574524,0.42743149399757385,0.6037794351577759,-0.43264201283454895,-1.6266204118728638,0.7964845895767212,0.8246829509735107,0.13345766067504883,-1.370840311050415,-1.1598527431488037,-0.2715218663215637,-1.4343538284301758,0.2680820822715759,0.41606009006500244,0.08067846298217773,0.6582463383674622,1.033172845840454,1.3038413524627686,-2.549067974090576,-0.5799538493156433,0.5233284831047058,-0.19316540658473969,-0.8488572835922241,-1.5471343994140625,-0.7497190833091736,1.3872534036636353,0.6703212857246399,1.1683093309402466,0.11589758098125458,0.3423488438129425,0.329504132270813,-1.1563315391540527,-1.1590042114257812,0.7639928460121155,-0.32010549306869507,-1.0630278587341309,-0.07595786452293396,1.9250191450119019,-2.0020525455474854,0.22598563134670258,-0.20185282826423645,-0.5292924642562866,-0.25043654441833496,0.6699094772338867,-0.24985730648040771,1.477601170539856,0.3678363263607025,-1.5063464641571045,-0.5803811550140381,2.1474311351776123,0.7585365772247314,-0.7747452855110168,-0.4146311283111572,-1.2103376388549805,-1.132317304611206,-0.4926532804965973,-1.2991145849227905,-0.32856690883636475,0.1807478964328766 -2943,0.04680827260017395,-0.878434956073761,0.19061154127120972,-1.980318307876587,-0.8496870398521423,-0.3310175836086273,-1.2678042650222778,0.6460890769958496,-0.8374695777893066,0.695022463798523,0.048529163002967834,1.0336368083953857,-0.32501664757728577,0.019022464752197266,-0.1619669497013092,-0.7274759411811829,-0.09145330637693405,0.5532997846603394,-1.567386507987976,-0.29141366481781006,0.03242385759949684,0.670062780380249,1.8308073282241821,0.6972522735595703,-0.05281528830528259,-0.2618197500705719,-1.2831470966339111,-2.1812901496887207,0.15882176160812378,-1.1097630262374878,-1.4599937200546265,-1.1805088520050049,0.2236761599779129,-0.3983551859855652,-0.49461227655410767,0.310553640127182,-2.603060245513916,-0.2614485025405884,0.2900698482990265,-0.6354734897613525,-0.3707369565963745,-0.03550471365451813,0.5024327039718628,0.9701031446456909,0.3110063970088959,-0.4648301601409912,0.015840530395507812,-1.107583999633789,-1.3727840185165405,-1.7479274272918701,1.5855257511138916,-0.18880900740623474,0.6855155229568481,1.8422367572784424,-3.1092417240142822,0.2782222032546997,-0.48320242762565613,-0.2619248330593109,0.5194244980812073,0.2262800931930542,-0.8606383204460144,-2.5106348991394043,0.3446003794670105,0.11237534880638123,0.1115773618221283,1.5295366048812866,-1.9007939100265503,1.488363265991211,-1.6223926544189453,-1.44008469581604,-1.8363982439041138,1.6524906158447266,0.37789270281791687,-0.9815273284912109,0.558368980884552,0.8774999380111694,1.3290406465530396,-1.572190523147583,0.2629591226577759,0.34088414907455444,0.20449894666671753,0.8930661082267761,-0.5370460152626038,-0.7119576930999756,0.4663843810558319,-0.2104087620973587,-0.5402694344520569,-0.14619040489196777,0.16742739081382751,0.4491209387779236,0.17383787035942078,1.1209547519683838,-0.1509648561477661,1.1043267250061035,0.2627899646759033,1.5183286666870117,1.409083604812622,2.517913579940796,1.4145269393920898,-0.9729639291763306,-0.46695563197135925,0.3486906886100769,1.0895090103149414,1.2827486991882324,0.15065185725688934,1.440075397491455,0.09520161151885986,0.6354255080223083,1.5623435974121094,0.41212233901023865,0.1747346818447113,-0.7549852132797241,0.11964300274848938,0.2857174873352051,-0.5258493423461914,-0.7413734197616577,-0.5171256065368652,-2.226879119873047,-0.2642374634742737,-1.77057683467865,0.3063300848007202,0.12364065647125244,0.17412398755550385,0.5712204575538635,-0.2586577236652374,-0.03589019179344177,-0.8681695461273193,-0.9097214937210083,-1.0825773477554321,-0.6835331916809082,-0.8828181028366089,1.7907359600067139,-0.5608294010162354,1.9341261386871338,-1.1870180368423462,0.409690260887146,1.3533729314804077,-0.18593424558639526,0.9680213928222656,-1.541290283203125,-0.27326005697250366,-0.5219178199768066,0.11811846494674683,-0.8085249662399292,0.36399751901626587,0.2055361270904541,0.14742326736450195,-1.8192360401153564,-2.4912710189819336,0.2499098777770996,-0.5304378867149353,-1.0662673711776733,0.3132483959197998,-0.17979952692985535,0.5107946395874023,-0.4336332082748413,-0.009014874696731567,-0.28475844860076904,0.8915385007858276,0.7183910608291626,0.2636013627052307,-0.5582769513130188,0.7217457294464111,-0.14625868201255798,1.3097078800201416,0.8592986464500427,-0.7787736058235168,-0.7365169525146484,0.7735876441001892,0.7444076538085938,1.9799327850341797,-1.3703473806381226,1.4297176599502563,0.31700414419174194,-0.5579487085342407,-0.04292970895767212,-0.17618778347969055,-1.028032660484314,0.6668068170547485,0.5603876113891602,0.5066279172897339,-0.22515654563903809,0.27580589056015015,1.2974112033843994,0.031112849712371826,-0.9143286943435669,-0.5867919921875,-0.3581283986568451,-0.07500967383384705,-1.005489468574524,0.42743149399757385,0.6037794351577759,-0.43264201283454895,-2.1148383617401123,0.7964845895767212,0.49546360969543457,0.1701461225748062,-1.3486473560333252,-1.1598527431488037,-0.2715218663215637,-1.4343538284301758,0.2680820822715759,0.41606009006500244,0.08067846298217773,0.6813570857048035,1.033172845840454,1.3038413524627686,-2.549067974090576,-0.5799538493156433,0.5233284831047058,-0.19316540658473969,-0.8488572835922241,-1.4146277904510498,-0.7497190833091736,1.3872534036636353,0.20520463585853577,1.1683093309402466,0.11589758098125458,0.3423488438129425,0.2873523533344269,-1.1563315391540527,-1.1590042114257812,0.7639928460121155,-0.32010549306869507,-1.4496424198150635,-0.07595786452293396,1.9250191450119019,-2.0020525455474854,0.22598563134670258,-0.20185282826423645,-0.5292924642562866,-0.45097604393959045,0.6699094772338867,-0.4420163035392761,1.547081470489502,0.3678363263607025,-1.5063464641571045,-0.5803811550140381,2.2796249389648438,0.7585365772247314,-0.7747452855110168,-0.4146311283111572,-1.2103376388549805,-0.9153432250022888,-0.574263334274292,-1.2991145849227905,-0.32856690883636475,0.1807478964328766 -2944,-0.3360850512981415,-0.8354083299636841,1.0397815704345703,-1.3371658325195312,-0.8496870398521423,-0.3310175836086273,-1.4019502401351929,0.6460890769958496,-0.8374695777893066,0.695022463798523,-0.12147076427936554,1.0336368083953857,0.038148313760757446,0.019022464752197266,0.1732083559036255,-0.7274759411811829,-0.09145330637693405,0.5532997846603394,-1.567386507987976,-0.29141366481781006,-0.002087365835905075,0.670062780380249,1.8308073282241821,0.2775484323501587,-0.05281528830528259,-0.2618197500705719,-1.2831470966339111,-2.163362741470337,0.15882176160812378,-1.1097630262374878,-1.4599937200546265,-1.1805088520050049,0.18752442300319672,-0.3983551859855652,-0.49461227655410767,0.310553640127182,-2.603060245513916,-0.2614485025405884,0.2900698482990265,-0.6354734897613525,-0.5544959902763367,-0.03550471365451813,0.5024327039718628,0.9701031446456909,0.3110063970088959,-0.4648301601409912,-0.832747757434845,-1.070694088935852,-1.3727840185165405,-2.025832176208496,1.5855257511138916,-0.18880900740623474,0.6855155229568481,1.8375253677368164,-3.1092417240142822,0.2782222032546997,-0.48320242762565613,-0.2619248330593109,0.5194244980812073,0.8168078660964966,-0.689444363117218,-2.5106348991394043,0.3446003794670105,0.11237534880638123,0.5133887529373169,1.4893875122070312,-2.38250470161438,1.488363265991211,-1.6579588651657104,-1.44008469581604,-1.8363982439041138,1.6524906158447266,0.8443468809127808,-0.9815273284912109,0.558368980884552,0.8774999380111694,1.3290406465530396,-1.6740965843200684,0.2629591226577759,0.34088414907455444,0.20449894666671753,0.8930661082267761,-0.5370460152626038,-0.8530056476593018,-0.10410359501838684,-0.2104087620973587,1.0888144969940186,-0.4005187451839447,0.16742739081382751,0.4491209387779236,0.17383787035942078,1.1209547519683838,-0.1509648561477661,1.1043267250061035,0.2627899646759033,1.4273815155029297,1.409083604812622,2.9826862812042236,1.4145269393920898,-0.9729639291763306,0.21152666211128235,0.3486906886100769,1.316359043121338,1.2827486991882324,0.15065185725688934,1.440075397491455,0.09520161151885986,0.6354255080223083,1.5623435974121094,0.41212233901023865,0.1747346818447113,-0.7549852132797241,0.11964300274848938,0.2857174873352051,-0.5258493423461914,-0.7413734197616577,-0.5171256065368652,-2.226879119873047,-0.2642374634742737,-1.77057683467865,0.3063300848007202,0.12364065647125244,0.17412398755550385,0.5712204575538635,-0.2586577236652374,-0.03589019179344177,-0.8681695461273193,-0.9097214937210083,-0.35138529539108276,-0.6835331916809082,-1.0656274557113647,1.7907359600067139,-0.5608294010162354,1.9341261386871338,-0.5182991027832031,0.409690260887146,1.3533729314804077,-0.18593424558639526,1.7737787961959839,-1.541290283203125,-0.27326005697250366,-0.10358890891075134,0.11811846494674683,-0.8085249662399292,0.36399751901626587,-0.24110281467437744,0.29063963890075684,-1.8713362216949463,-2.3537235260009766,0.2499098777770996,-0.5304378867149353,-1.1619189977645874,0.03501978516578674,-0.17979952692985535,0.08595046401023865,-0.5613107085227966,-0.4105529487133026,0.0729542076587677,0.8915385007858276,0.7183910608291626,0.15906421840190887,-0.5582769513130188,0.7217457294464111,-0.14625868201255798,1.3097078800201416,0.8592986464500427,-0.7787736058235168,-0.7365169525146484,0.7735876441001892,0.14816612005233765,1.9799327850341797,-2.2716283798217773,1.4297176599502563,0.31700414419174194,-0.30463242530822754,-0.3497975766658783,0.18115556240081787,-1.028032660484314,0.6668068170547485,0.5603876113891602,0.5066279172897339,-0.7811428308486938,0.27580589056015015,1.2974112033843994,0.031112849712371826,-0.9143286943435669,-0.5867919921875,-0.3581283986568451,1.6058990955352783,-1.005489468574524,0.9799038171768188,0.6037794351577759,-0.051747292280197144,-2.1148383617401123,0.5046231746673584,0.49546360969543457,0.1701461225748062,-1.3486473560333252,-1.1598527431488037,-0.2715218663215637,-1.4343538284301758,0.3143811523914337,0.41606009006500244,0.08067846298217773,0.6921938061714172,0.8050599098205566,1.3038413524627686,-2.549067974090576,-0.5799538493156433,0.5233284831047058,0.6059529185295105,-0.8488572835922241,-1.4146277904510498,-0.7497190833091736,1.3872534036636353,0.20520463585853577,1.1683093309402466,0.0649411603808403,0.3423488438129425,0.2873523533344269,-0.8910109996795654,-1.1590042114257812,0.7639928460121155,-0.013498097658157349,-1.4496424198150635,-0.07595786452293396,1.9250191450119019,-2.625019073486328,0.22598563134670258,-0.15607641637325287,-0.5292924642562866,-0.45097604393959045,0.6699094772338867,-0.4420163035392761,1.547081470489502,0.3678363263607025,-1.4361364841461182,-0.8029068112373352,1.6973754167556763,0.8981810808181763,-0.7747452855110168,-0.4647229015827179,-1.2103376388549805,-0.9153432250022888,-0.500580370426178,-1.2991145849227905,-0.32856690883636475,-0.2976609170436859 -2945,-0.3360850512981415,-0.8354083299636841,1.010585069656372,-1.8637638092041016,-0.8496870398521423,-0.3310175836086273,-1.4019502401351929,0.6460890769958496,-0.8374695777893066,0.695022463798523,-0.06957262754440308,1.0336368083953857,0.038148313760757446,0.019022464752197266,-0.2617751657962799,-0.7274759411811829,-0.09145330637693405,0.5532997846603394,-1.567386507987976,-0.31469273567199707,-0.3520272374153137,0.7223981618881226,1.8308073282241821,0.2775484323501587,-0.05281528830528259,-0.2618197500705719,-1.2831470966339111,-2.163362741470337,0.15882176160812378,-1.1097630262374878,-1.473847508430481,-1.1235132217407227,0.18752442300319672,-0.3983551859855652,-0.49461227655410767,0.310553640127182,-2.603060245513916,0.1398008167743683,0.2900698482990265,-0.6354734897613525,-0.5544959902763367,-0.03550471365451813,0.5024327039718628,0.9701031446456909,-0.11248040199279785,-0.4648301601409912,-0.832747757434845,-1.070694088935852,-1.3727840185165405,-2.025832176208496,1.5855257511138916,-0.18880900740623474,0.6855155229568481,1.8375253677368164,-3.1092417240142822,0.7394899725914001,0.09875348210334778,-0.2619248330593109,0.5194244980812073,0.8168078660964966,-0.689444363117218,-2.5106348991394043,0.3446003794670105,0.11237534880638123,0.534197986125946,1.4893875122070312,-2.38250470161438,1.488363265991211,-1.3837261199951172,-1.7911298274993896,-1.8363982439041138,1.6524906158447266,0.8443468809127808,-0.9815273284912109,0.2691863477230072,0.8774999380111694,1.3290406465530396,-1.7234288454055786,-0.1486208736896515,0.34088414907455444,0.20449894666671753,1.2804218530654907,-0.5370460152626038,-0.8530056476593018,-0.10410359501838684,-0.2104087620973587,1.8913516998291016,-0.4005187451839447,0.16742739081382751,0.4491209387779236,0.421869158744812,1.1209547519683838,-0.1509648561477661,0.06735706329345703,0.2627899646759033,1.3399375677108765,1.409083604812622,2.3803999423980713,1.4145269393920898,-0.9729639291763306,0.5978938341140747,0.3486906886100769,1.316359043121338,1.3436706066131592,0.15065185725688934,1.440075397491455,-1.5197774171829224,0.6354255080223083,1.2733561992645264,0.41212233901023865,0.1747346818447113,-0.7549852132797241,0.11964300274848938,0.2857174873352051,0.3481719493865967,-0.7413734197616577,-0.1549314558506012,-2.226879119873047,-0.2642374634742737,-1.1932861804962158,0.3063300848007202,0.5633383989334106,0.17412398755550385,0.5712204575538635,-0.2586577236652374,-0.03589019179344177,-0.8681695461273193,-0.9097214937210083,-0.35138529539108276,-0.6835331916809082,-1.0656274557113647,1.7907359600067139,-0.5608294010162354,1.4010984897613525,-1.1997556686401367,0.409690260887146,1.3533729314804077,-0.18593424558639526,1.7737787961959839,-1.541290283203125,-0.27326005697250366,-0.10358890891075134,0.11811846494674683,-0.8085249662399292,0.36399751901626587,-0.24110281467437744,0.29063963890075684,-1.6590549945831299,-2.730973243713379,-0.10047465562820435,-0.36293524503707886,-1.1619189977645874,0.03501978516578674,-0.17979952692985535,0.08595046401023865,-0.5613107085227966,-0.4105529487133026,0.0729542076587677,0.8915385007858276,0.7183910608291626,-0.10329212248325348,-0.2221907079219818,0.7217457294464111,-0.8791791200637817,1.3097078800201416,0.8592986464500427,-0.7787736058235168,-0.014560341835021973,0.7735876441001892,0.9580837488174438,1.9799327850341797,-1.9487457275390625,1.4297176599502563,0.31700414419174194,-0.30463242530822754,-0.3497975766658783,0.4559122920036316,-1.028032660484314,0.6668068170547485,0.9028258323669434,0.5066279172897339,-0.7811428308486938,0.27580589056015015,1.2974112033843994,0.5604205131530762,-1.1100152730941772,-0.05709797143936157,-0.3581283986568451,1.6058990955352783,-1.005489468574524,0.9799038171768188,0.6037794351577759,-0.051747292280197144,-2.1148383617401123,0.5046231746673584,0.49546360969543457,0.1701461225748062,-1.3486473560333252,-1.1598527431488037,-0.20999759435653687,-1.4343538284301758,0.3143811523914337,0.41606009006500244,-0.1479211151599884,0.6921938061714172,0.8050599098205566,1.4601887464523315,-2.549067974090576,-0.5799538493156433,0.5233284831047058,0.6059529185295105,-1.1489875316619873,-1.3971422910690308,-0.7497190833091736,1.7226194143295288,0.20520463585853577,1.1683093309402466,0.7354968786239624,0.48691341280937195,0.18847650289535522,-0.8910109996795654,-1.1590042114257812,0.7639928460121155,-0.013498097658157349,-1.4496424198150635,-0.07595786452293396,1.5774637460708618,-2.625019073486328,0.22598563134670258,-0.31696897745132446,-0.5292924642562866,-0.3988219201564789,0.6699094772338867,-0.4420163035392761,1.547081470489502,0.3678363263607025,-2.0462117195129395,-0.8029068112373352,1.4144301414489746,0.8981810808181763,-0.7747452855110168,-0.11855554580688477,-1.2103376388549805,-0.9153432250022888,-0.500580370426178,-1.2592651844024658,-0.32856690883636475,-0.2976609170436859 -2946,-0.3360850512981415,-0.29056859016418457,-0.5403081178665161,-1.8637638092041016,-0.8496870398521423,-0.3310175836086273,-1.6115968227386475,0.6460890769958496,-0.8374695777893066,0.695022463798523,-0.06957262754440308,1.0336368083953857,-0.07914335280656815,0.1538471132516861,0.28174927830696106,-0.7274759411811829,-0.2538505494594574,0.5532997846603394,-1.567386507987976,-0.31469273567199707,-0.3520272374153137,0.7223981618881226,1.8308073282241821,0.2775484323501587,-0.05281528830528259,-0.2618197500705719,-1.9094915390014648,-1.6391866207122803,0.15882176160812378,-1.1097630262374878,-1.0285866260528564,-1.1235132217407227,-0.11080138385295868,-0.5869123935699463,-0.6405338048934937,-0.23043593764305115,-2.603060245513916,0.1398008167743683,0.2900698482990265,-0.6354734897613525,-0.5544959902763367,-0.07686401158571243,0.5024327039718628,0.6474712491035461,-0.11248040199279785,-0.576962947845459,-0.832747757434845,-1.070694088935852,-1.3727840185165405,-2.025832176208496,1.5855257511138916,-0.18880900740623474,0.6855155229568481,1.8375253677368164,-3.1092417240142822,0.7394899725914001,1.0721166133880615,-0.2619248330593109,0.5194244980812073,0.8168078660964966,-0.59007728099823,-2.51289963722229,0.3446003794670105,0.11237534880638123,0.3493984043598175,1.4893875122070312,-2.38250470161438,1.488363265991211,-1.3837261199951172,-1.7911298274993896,-1.8363982439041138,1.6524906158447266,0.8443468809127808,-0.9815273284912109,0.2691863477230072,0.9896451234817505,1.3290406465530396,-1.7234288454055786,-0.1486208736896515,0.5855217576026917,0.20449894666671753,1.2804218530654907,-0.5370460152626038,-0.8530056476593018,-0.10410359501838684,-0.2104087620973587,0.46218669414520264,-0.4005187451839447,0.16742739081382751,0.4491209387779236,0.3566149175167084,1.1209547519683838,0.07034550607204437,0.06735706329345703,0.27397993206977844,1.6365270614624023,1.409083604812622,2.3803999423980713,0.9409652352333069,-1.0340266227722168,0.13843607902526855,0.3486906886100769,1.316359043121338,1.42229425907135,0.15065185725688934,1.3609074354171753,-0.961091935634613,0.6354255080223083,1.2733561992645264,0.41212233901023865,-0.8283443450927734,-0.7549852132797241,0.11964300274848938,0.2857174873352051,0.3481719493865967,-0.5300426483154297,-0.1549314558506012,-2.226879119873047,-0.2642374634742737,-1.1932861804962158,0.3063300848007202,-0.20129907131195068,0.17412398755550385,0.6621738076210022,-0.2586577236652374,-0.03589019179344177,-0.8681695461273193,-0.9097214937210083,-0.35138529539108276,-1.0673450231552124,-1.487555980682373,1.7907359600067139,-0.5608294010162354,1.4010984897613525,-1.1997556686401367,0.783329427242279,1.3533729314804077,-0.18593424558639526,1.7737787961959839,-1.541290283203125,-0.6882897615432739,-0.10358890891075134,-0.0027711614966392517,-0.8085249662399292,0.36399751901626587,-0.24110281467437744,0.29063963890075684,-1.6590549945831299,-2.730973243713379,-0.10047465562820435,-0.44404834508895874,-1.1619189977645874,0.03501978516578674,-0.3187295198440552,0.08595046401023865,-0.5613107085227966,-0.4105529487133026,0.0729542076587677,0.8915385007858276,0.7183910608291626,-0.10329212248325348,-0.3583003282546997,0.7217457294464111,-0.08505076169967651,1.3097078800201416,1.4264252185821533,-0.013222098350524902,0.6588696241378784,0.7735876441001892,0.9580837488174438,2.1896095275878906,-1.9487457275390625,1.4297176599502563,0.31700414419174194,0.06934615969657898,-0.3497975766658783,0.4559122920036316,-0.6757506728172302,0.6668068170547485,0.36691993474960327,0.5611385107040405,-0.9658821821212769,0.09996697306632996,1.2974112033843994,0.6330543160438538,-1.1100152730941772,-0.3226604759693146,-0.3581283986568451,1.3474531173706055,-1.005489468574524,0.9799038171768188,0.6037794351577759,-0.051747292280197144,-2.053628921508789,0.5046231746673584,0.49546360969543457,0.1701461225748062,-1.2770100831985474,-1.1598527431488037,-0.595847487449646,-0.476169228553772,0.7463014125823975,0.41606009006500244,-0.0055862367153167725,0.6921938061714172,0.8050599098205566,1.4601887464523315,-2.549067974090576,-0.5799538493156433,0.5384698510169983,0.024337828159332275,-1.1489875316619873,-1.5669093132019043,-0.2391955852508545,1.7226194143295288,0.20520463585853577,0.7419853210449219,0.7354968786239624,0.30214643478393555,-0.003709837794303894,-0.2141721248626709,-1.1590042114257812,0.7639928460121155,-0.013498097658157349,0.14146685600280762,-0.07595786452293396,1.706409215927124,-2.516960620880127,0.22598563134670258,-0.31696897745132446,-0.5292924642562866,-0.3127537667751312,0.6699094772338867,-0.8284631967544556,1.3614470958709717,0.3678363263607025,-2.0462117195129395,-0.8029068112373352,1.4144301414489746,0.8981810808181763,-0.4706421196460724,-0.11855554580688477,-1.3276948928833008,-0.9153432250022888,-0.500580370426178,-1.2592651844024658,-0.32856690883636475,-0.2976609170436859 -2947,-0.3360850512981415,-0.29056859016418457,-0.5403081178665161,-1.2897770404815674,-0.8496870398521423,-0.2068912833929062,-1.4001628160476685,0.6460890769958496,-0.6644155383110046,0.695022463798523,-0.06957262754440308,1.0336368083953857,-0.4481769800186157,0.1538471132516861,0.28174927830696106,-0.7274759411811829,-0.23492474853992462,0.5532997846603394,-1.567386507987976,-0.3557581603527069,-0.08803167939186096,0.7223981618881226,1.4906880855560303,0.2775484323501587,-0.05281528830528259,-0.2618197500705719,-1.9094915390014648,-1.6391866207122803,0.25913697481155396,-1.1097630262374878,-1.4894869327545166,-1.1292109489440918,-0.11080138385295868,-0.5869123935699463,-0.6405338048934937,-0.23043593764305115,-2.8174564838409424,0.1398008167743683,0.2900698482990265,-0.6354734897613525,-0.3648167848587036,-0.23100686073303223,0.5024327039718628,0.6474712491035461,-0.11248040199279785,-0.576962947845459,-0.832747757434845,-1.070694088935852,-1.3727840185165405,-2.025832176208496,1.6532132625579834,0.8927804231643677,0.6855155229568481,1.8375253677368164,-2.4966392517089844,0.7394899725914001,1.0721166133880615,-0.2619248330593109,0.5194244980812073,0.8168078660964966,-0.59007728099823,-2.51289963722229,0.3006507456302643,0.11237534880638123,0.3493984043598175,1.4893875122070312,-2.38250470161438,1.488363265991211,-1.3837261199951172,-1.7911298274993896,-1.8363982439041138,1.6524906158447266,0.6098344326019287,-0.9815273284912109,0.2691863477230072,0.9896451234817505,1.3290406465530396,-1.7234288454055786,-0.1486208736896515,0.5855217576026917,0.26904115080833435,0.896100640296936,-0.7908564805984497,-0.8530056476593018,0.15067416429519653,-0.2960074543952942,0.46218669414520264,0.247293621301651,0.16742739081382751,0.4491209387779236,0.3566149175167084,1.1209547519683838,0.07034550607204437,-1.0418848991394043,0.5438117384910583,1.6365270614624023,1.409083604812622,2.3803999423980713,0.9409652352333069,-1.0340266227722168,0.13843607902526855,0.3486906886100769,1.1649420261383057,1.8920658826828003,0.15065185725688934,1.3609074354171753,-0.961091935634613,-0.17758208513259888,1.2733561992645264,-0.35746583342552185,-0.8283443450927734,-0.7549852132797241,0.512502908706665,0.2857174873352051,0.3481719493865967,-1.0237884521484375,-0.1549314558506012,-2.416769027709961,-0.2642374634742737,-1.1932861804962158,0.813704252243042,-0.20129907131195068,0.4873644709587097,0.6621738076210022,-0.2586577236652374,-0.03589019179344177,-1.6852705478668213,-0.9097214937210083,-0.35138529539108276,-2.0002315044403076,-1.487555980682373,1.7907359600067139,-0.5608294010162354,1.4010984897613525,-1.0491797924041748,0.783329427242279,1.3533729314804077,-0.18593424558639526,1.7737787961959839,-0.8903125524520874,-0.6882897615432739,-0.10358890891075134,-0.0027711614966392517,-0.8085249662399292,0.36399751901626587,-0.24110281467437744,0.29063963890075684,-1.5119237899780273,-2.730973243713379,-0.10047465562820435,-0.44404834508895874,-1.1619189977645874,0.03501978516578674,-0.3187295198440552,0.08595046401023865,-0.5613107085227966,-0.4105529487133026,-0.8296952247619629,0.8049468994140625,0.7183910608291626,-0.10329212248325348,-0.3583003282546997,0.7217457294464111,-0.08505076169967651,1.3097078800201416,1.4264252185821533,-0.013222098350524902,0.6588696241378784,-0.08927536010742188,0.9580837488174438,2.1896095275878906,-1.9487457275390625,2.1191344261169434,0.31700414419174194,0.06934615969657898,-0.537034809589386,0.4559122920036316,-0.6757506728172302,0.6668068170547485,0.36691993474960327,0.5611385107040405,-0.9658821821212769,0.4758112132549286,1.2974112033843994,-0.03912353515625,-1.1100152730941772,-0.3226604759693146,-0.3581283986568451,0.9748692512512207,-1.6522533893585205,0.9799038171768188,0.6037794351577759,-0.051747292280197144,-2.053628921508789,0.5046231746673584,0.49546360969543457,0.017760097980499268,-1.2770100831985474,-1.1598527431488037,-0.595847487449646,-0.41649329662323,0.7463014125823975,0.6472066640853882,-0.8612191677093506,0.7099311947822571,0.8050599098205566,1.4601887464523315,-2.549067974090576,-0.9526118040084839,0.5384698510169983,0.024337828159332275,-0.8999268412590027,-2.6034092903137207,-0.25885656476020813,1.7226194143295288,-0.3067355453968048,1.4578142166137695,0.7354968786239624,0.30214643478393555,-0.003709837794303894,-0.46293529868125916,-1.5243690013885498,0.7639928460121155,0.14015892148017883,0.11535666882991791,-0.5116680264472961,1.7608368396759033,-2.516960620880127,0.5325912237167358,-0.31696897745132446,-0.5250093936920166,-0.3127537667751312,0.6699094772338867,-0.8284631967544556,1.3614470958709717,0.3678363263607025,-1.3500136137008667,-0.8029068112373352,1.4144301414489746,0.8981810808181763,-0.4706421196460724,-0.11855554580688477,-1.3276948928833008,-0.9153432250022888,-0.500580370426178,-1.2592651844024658,-0.7596914768218994,-0.19546611607074738 -2948,-0.3360850512981415,-0.29056859016418457,-0.5403081178665161,-0.8060824871063232,-0.8496870398521423,-0.2068912833929062,-1.4001628160476685,0.6460890769958496,-0.6644155383110046,0.695022463798523,-0.06957262754440308,1.0336368083953857,-0.4481769800186157,0.1538471132516861,0.28174927830696106,-0.7274759411811829,-0.23492474853992462,0.5532997846603394,-1.567386507987976,-0.44192489981651306,-0.09786247462034225,0.7301312685012817,1.4906880855560303,0.5372892618179321,0.29131582379341125,-0.2618197500705719,-1.9094915390014648,-1.6391866207122803,0.7853615880012512,-1.1097630262374878,-1.4894869327545166,-1.1292109489440918,-0.11080138385295868,-0.31965723633766174,-0.6405338048934937,-0.5214623212814331,-2.884622812271118,0.07453295588493347,0.2900698482990265,-0.6354734897613525,-0.1778406798839569,-0.3305627405643463,0.5024327039718628,0.8219135999679565,0.06477010250091553,-0.576962947845459,-0.832747757434845,-1.070694088935852,-1.3727840185165405,-2.025832176208496,1.6532132625579834,0.8927804231643677,0.6855155229568481,1.7858202457427979,-2.4966392517089844,0.7394899725914001,1.0721166133880615,0.24732384085655212,0.3372427523136139,0.8168078660964966,-0.59007728099823,-2.9093503952026367,0.3006507456302643,0.11237534880638123,0.3493984043598175,1.4893875122070312,-2.38250470161438,1.488363265991211,-1.3837261199951172,-1.7290229797363281,-1.8363982439041138,1.4600083827972412,0.4313076138496399,-0.9815273284912109,0.3305276930332184,0.9896451234817505,0.8632055521011353,-1.7234288454055786,-0.1486208736896515,0.5855217576026917,0.26904115080833435,0.896100640296936,-0.7908564805984497,-0.8530056476593018,-0.16178375482559204,-0.2960074543952942,0.46218669414520264,0.247293621301651,0.16742739081382751,0.4491209387779236,0.6077444553375244,1.1209547519683838,-0.6823712587356567,-1.0418848991394043,0.5438117384910583,1.6365270614624023,1.409083604812622,2.3803999423980713,0.9409652352333069,-1.0340266227722168,-0.6698619723320007,0.3486906886100769,0.9185172319412231,1.8920658826828003,-1.3371692895889282,1.3609074354171753,-0.961091935634613,-0.004881441593170166,1.2733561992645264,-0.35746583342552185,-0.11745136976242065,-0.7143177390098572,0.512502908706665,0.2857174873352051,0.3481719493865967,-0.8370238542556763,-0.1549314558506012,-2.1487362384796143,-0.2642374634742737,-1.1932861804962158,0.813704252243042,-0.20129907131195068,0.4873644709587097,0.6621738076210022,-0.2586577236652374,-0.03589019179344177,-1.6852705478668213,-0.9097214937210083,-0.35138529539108276,-1.6086759567260742,-1.487555980682373,2.3205957412719727,-0.5608294010162354,1.4010984897613525,-1.0491797924041748,0.783329427242279,1.3533729314804077,1.0782177448272705,1.7737787961959839,-0.8903125524520874,0.024833858013153076,-0.10358890891075134,-0.0027711614966392517,-0.8085249662399292,0.36399751901626587,-0.24110281467437744,0.29063963890075684,-1.5119237899780273,-2.730973243713379,-0.10047465562820435,-0.40489569306373596,-0.28802943229675293,-0.01648828759789467,-0.3187295198440552,0.08595046401023865,-0.5613107085227966,-0.4105529487133026,-0.8296952247619629,0.8049468994140625,0.7183910608291626,-0.10329212248325348,-0.5998932123184204,0.7217457294464111,-0.08505076169967651,1.3097078800201416,1.3493337631225586,-0.30257001519203186,0.6588696241378784,-1.142488956451416,0.9580837488174438,1.6786704063415527,-1.9487457275390625,1.5372296571731567,0.31700414419174194,0.06934615969657898,-0.537034809589386,-0.0445096492767334,-0.6757506728172302,0.6668068170547485,0.6864408850669861,0.5611385107040405,-0.9658821821212769,0.6464821100234985,1.4135609865188599,-0.03912353515625,-1.1100152730941772,-0.3006836473941803,-0.6960741877555847,0.9748692512512207,-2.3222618103027344,0.9799038171768188,0.6037794351577759,-0.051747292280197144,-2.053628921508789,0.5046231746673584,1.373270034790039,0.3502180874347687,-1.7317689657211304,-1.1598527431488037,-0.595847487449646,-0.41649329662323,0.7463014125823975,0.560553252696991,-0.8612191677093506,0.5683603286743164,0.8050599098205566,1.4601887464523315,-2.2752554416656494,-0.9526118040084839,0.5384698510169983,0.024337828159332275,-0.8999268412590027,-2.1185595989227295,-0.25885656476020813,1.7226194143295288,-0.3067355453968048,1.4578142166137695,0.7815578579902649,0.30214643478393555,-0.003709837794303894,-0.46293529868125916,-1.4067999124526978,0.7639928460121155,-0.3205012083053589,0.11535666882991791,-0.5116680264472961,1.7608368396759033,-2.516960620880127,0.5325912237167358,-0.31696897745132446,-0.5250093936920166,-0.3127537667751312,1.3937242031097412,-0.5062951445579529,1.3614470958709717,-0.2908548414707184,-1.3500136137008667,-0.8029068112373352,1.4144301414489746,0.8981810808181763,-0.4706421196460724,0.012505754828453064,-1.3276948928833008,-0.5211628675460815,-0.500580370426178,-1.22450852394104,-0.7596914768218994,-0.19546611607074738 -2949,-0.02221819758415222,-0.29056859016418457,-0.7605658173561096,-0.8060824871063232,-0.8496870398521423,-0.2288062572479248,-1.4001628160476685,0.6460890769958496,-0.6644155383110046,0.695022463798523,-0.06957262754440308,1.0336368083953857,-0.4481769800186157,0.1538471132516861,-0.17829567193984985,-0.7274759411811829,-0.23492474853992462,0.6642114520072937,-1.567386507987976,-0.44192489981651306,-0.09786247462034225,0.7301312685012817,1.4906880855560303,0.5372892618179321,0.29131582379341125,-0.2618197500705719,-1.9094915390014648,-1.6391866207122803,0.21755152940750122,-1.1097630262374878,-1.4894869327545166,-1.1292109489440918,-0.19983705878257751,-0.31965723633766174,-0.6405338048934937,-0.3945607841014862,-2.897233724594116,-0.39442816376686096,0.2900698482990265,-0.6354734897613525,0.12144362926483154,-0.3305627405643463,0.4962148070335388,0.8219135999679565,-0.13028846681118011,-0.576962947845459,-0.832747757434845,-1.070694088935852,-1.3727840185165405,-2.6863059997558594,1.87744140625,0.8927804231643677,0.6855155229568481,1.7858202457427979,-2.3817286491394043,0.7394899725914001,1.0721166133880615,0.24732384085655212,0.3372427523136139,0.8168078660964966,-0.59007728099823,-2.2933621406555176,0.19383841753005981,0.11237534880638123,0.3493984043598175,1.4893875122070312,-2.38250470161438,1.2002931833267212,-0.8519815802574158,-1.7290229797363281,-1.8363982439041138,1.4600083827972412,0.4313076138496399,-0.6706289649009705,0.3305276930332184,0.9896451234817505,0.8632055521011353,-1.7234288454055786,-0.1486208736896515,0.5855217576026917,0.19223007559776306,0.896100640296936,-0.7908564805984497,-0.7025946974754333,-0.16178375482559204,-0.2960074543952942,0.46218669414520264,0.7752649784088135,0.16742739081382751,0.4491209387779236,0.6077444553375244,1.1209547519683838,-0.08542734384536743,-0.7583533525466919,0.21697849035263062,1.6365270614624023,1.3935896158218384,2.3803999423980713,0.9857238531112671,-1.0340266227722168,-0.20933601260185242,-0.9496954083442688,0.9185172319412231,1.8920658826828003,-1.3371692895889282,1.0146790742874146,-0.961091935634613,0.1288265436887741,1.2733561992645264,-0.35746583342552185,-0.11745136976242065,-0.7143177390098572,0.512502908706665,0.2857174873352051,0.1417352706193924,-0.8370238542556763,-0.25034284591674805,-2.1487362384796143,-0.2642374634742737,-1.1932861804962158,0.813704252243042,-0.9981681108474731,0.4873644709587097,0.6408551931381226,-0.6806937456130981,-0.03589019179344177,-1.6852705478668213,-0.9097214937210083,-0.35138529539108276,-1.6392052173614502,-1.487555980682373,2.3205957412719727,-0.5608294010162354,1.953432321548462,-1.0491797924041748,0.783329427242279,1.3533729314804077,1.0782177448272705,1.7737787961959839,-0.8903125524520874,0.024833858013153076,-0.10358890891075134,-0.4532757103443146,-0.8085249662399292,0.5424472093582153,-0.24110281467437744,0.29063963890075684,-1.2965118885040283,-2.730973243713379,-0.10047465562820435,-0.24185724556446075,-0.36527538299560547,-0.01648828759789467,-0.3187295198440552,0.08595046401023865,-0.6531142592430115,-0.4105529487133026,-0.9391680955886841,0.8049468994140625,0.7183910608291626,-0.10329212248325348,-1.1557203531265259,0.7217457294464111,-0.08505076169967651,1.3097078800201416,1.3493337631225586,-0.30257001519203186,0.6588696241378784,-1.142488956451416,0.05430185794830322,1.6786704063415527,-1.8274333477020264,1.5372296571731567,0.31700414419174194,0.06934615969657898,-0.537034809589386,-0.0445096492767334,-0.6757506728172302,0.6668068170547485,0.6813817620277405,0.5271863341331482,-0.9658821821212769,0.08450090885162354,1.4135609865188599,0.07059141248464584,-1.1100152730941772,-0.3006836473941803,-0.33545032143592834,0.9748692512512207,-2.3222618103027344,0.9799038171768188,0.6037794351577759,0.10046577453613281,-2.516812562942505,0.5046231746673584,0.8761614561080933,0.3502180874347687,-1.7317689657211304,-1.1598527431488037,-0.595847487449646,-0.41649329662323,0.9583994150161743,0.560553252696991,-0.8612191677093506,0.5683603286743164,0.8050599098205566,1.3232548236846924,-2.018648147583008,-0.4530256688594818,0.5384698510169983,0.024337828159332275,-0.8999268412590027,-2.9818191528320312,-0.25885656476020813,1.6768256425857544,-0.3067355453968048,1.4578142166137695,0.7815578579902649,0.30214643478393555,-0.003709837794303894,-0.46293529868125916,-1.5293678045272827,1.4407985210418701,-0.3205012083053589,0.11535666882991791,-0.719514787197113,1.7608368396759033,-2.516960620880127,-0.1412973403930664,-0.31696897745132446,-1.0951741933822632,-0.3127537667751312,1.3937242031097412,-0.13161751627922058,1.3614470958709717,-0.3671207129955292,-1.3500136137008667,-1.1820058822631836,1.4144301414489746,1.0473860502243042,-0.4706421196460724,0.3751385807991028,-1.3276948928833008,-0.5211628675460815,-0.34662485122680664,-1.22450852394104,-0.6645534634590149,-0.19546611607074738 -2950,-0.02221819758415222,0.2518192529678345,-0.7605658173561096,-0.8060824871063232,-0.8496870398521423,-0.6057812571525574,-1.5404038429260254,0.6460890769958496,-0.6644155383110046,0.695022463798523,-0.06957262754440308,1.411170244216919,-0.16181275248527527,0.1538471132516861,-0.17829567193984985,-0.7274759411811829,-0.23492474853992462,0.6642114520072937,-1.567386507987976,-0.4650612771511078,-0.1351338028907776,0.7301312685012817,1.4906880855560303,0.5372892618179321,0.29131582379341125,-0.2618197500705719,-1.9094915390014648,-1.6391866207122803,0.6188142895698547,-1.1097630262374878,-1.2925429344177246,-1.1292109489440918,-0.19983705878257751,-0.6698942184448242,-0.5950636267662048,-0.14915384352207184,-2.897233724594116,0.057482630014419556,0.2900698482990265,-0.1607235074043274,0.12144362926483154,-0.3305627405643463,0.4962148070335388,0.8219135999679565,-0.13028846681118011,-0.3265714645385742,-0.9689914584159851,-1.070694088935852,-1.3727840185165405,-2.6863059997558594,1.87744140625,1.818491816520691,0.6855155229568481,1.7858202457427979,-1.9958515167236328,0.7394899725914001,1.0721166133880615,0.24732384085655212,0.3372427523136139,0.8168078660964966,-0.59007728099823,-2.2933621406555176,0.19383841753005981,0.11237534880638123,0.3493984043598175,1.4893875122070312,-2.458997964859009,1.2002931833267212,-0.8519815802574158,-1.7290229797363281,-1.8363982439041138,1.822615623474121,0.4313076138496399,-0.6706289649009705,0.3305276930332184,1.0648834705352783,0.8632055521011353,-1.7234288454055786,-0.1486208736896515,0.5855217576026917,0.19223007559776306,0.896100640296936,-0.7908564805984497,-0.3584778606891632,-0.16178375482559204,-0.2960074543952942,1.0922431945800781,0.7752649784088135,0.16742739081382751,0.05381876230239868,0.7060661911964417,1.1209547519683838,0.09497791528701782,-0.7583533525466919,0.21697849035263062,1.6365270614624023,1.3935896158218384,2.3803999423980713,1.6381819248199463,-1.0340266227722168,-0.20933601260185242,-0.9496954083442688,1.7068426609039307,1.8920658826828003,-1.3371692895889282,1.0146790742874146,-0.5141055583953857,-0.7280819416046143,1.3662054538726807,-0.35746583342552185,-0.11745136976242065,-0.7143177390098572,0.512502908706665,0.2857174873352051,0.1417352706193924,-0.8370238542556763,-0.25034284591674805,-2.1487362384796143,-0.2642374634742737,-1.1932861804962158,0.20777904987335205,-0.9981681108474731,0.5793977379798889,0.46238088607788086,-0.6806937456130981,-0.03589019179344177,-1.6852705478668213,-0.9097214937210083,-0.35138529539108276,-0.877136766910553,-1.487555980682373,2.3205957412719727,-0.6705808639526367,1.953432321548462,-1.0491797924041748,0.783329427242279,1.3533729314804077,1.0782177448272705,1.5514938831329346,-0.8903125524520874,-0.10471923649311066,-0.10358890891075134,-0.4532757103443146,-0.09012061357498169,0.4317668378353119,0.8539494276046753,0.29063963890075684,-1.2965118885040283,-2.730973243713379,-0.10047465562820435,-0.3659915328025818,-0.36527538299560547,-0.01648828759789467,-0.024344801902770996,0.08595046401023865,-0.2337111532688141,-0.4105529487133026,-0.9391680955886841,0.8049468994140625,0.7183910608291626,0.610821545124054,-1.1557203531265259,0.32410502433776855,-0.08505076169967651,1.3097078800201416,0.3859381675720215,-0.30257001519203186,0.6588696241378784,-1.5710557699203491,0.05430185794830322,1.6786704063415527,-1.8274333477020264,1.5372296571731567,0.31700414419174194,0.06934615969657898,-0.537034809589386,-0.23321598768234253,-0.6757506728172302,0.6668068170547485,0.6813817620277405,0.6553168892860413,-0.9658821821212769,0.08450090885162354,0.8418344855308533,0.07059141248464584,-1.1100152730941772,0.24797692894935608,-0.33545032143592834,1.1299889087677002,-2.3222618103027344,0.9799038171768188,0.8577055931091309,0.10046577453613281,-2.516812562942505,0.5046231746673584,1.3113243579864502,-0.12911942601203918,-1.7317689657211304,-1.1598527431488037,-0.595847487449646,-0.41649329662323,0.9583994150161743,0.560553252696991,-0.8612191677093506,0.503424882888794,0.8050599098205566,1.3232548236846924,-2.011274814605713,-0.4530256688594818,0.5384698510169983,0.024337828159332275,-0.8999268412590027,-2.948523998260498,-0.896162748336792,1.5565539598464966,-0.3067355453968048,1.1748225688934326,0.7149326205253601,0.30214643478393555,-0.11620607227087021,-0.46293529868125916,-1.5293678045272827,1.4407985210418701,-0.3205012083053589,-1.2694153785705566,-1.0075562000274658,1.7608368396759033,-2.0402297973632812,-0.1412973403930664,-0.31696897745132446,-1.0951741933822632,-0.3127537667751312,1.3937242031097412,-0.13161751627922058,1.3614470958709717,-0.3671207129955292,-1.211868405342102,-1.0996911525726318,1.4144301414489746,1.0473860502243042,-0.4706421196460724,0.3751385807991028,-1.3276948928833008,-0.5211628675460815,-0.34662485122680664,-1.22450852394104,-0.6645534634590149,-0.19546611607074738 -2951,0.13942226767539978,0.2518192529678345,-0.7605658173561096,-0.8060824871063232,-0.8496870398521423,-0.6057812571525574,-1.5404038429260254,0.6460890769958496,-0.5177001953125,0.7387769222259521,0.24633696675300598,1.411170244216919,-0.16181275248527527,0.1538471132516861,-0.17829567193984985,-0.7274759411811829,-0.37844496965408325,0.6642114520072937,-1.567386507987976,-0.4650612771511078,-0.1351338028907776,0.7301312685012817,1.4624978303909302,0.5372892618179321,0.29131582379341125,-0.504627525806427,-1.9094915390014648,-1.4753566980361938,0.245550274848938,-1.1097630262374878,-1.2925429344177246,-1.1292109489440918,-0.19983705878257751,-0.6698942184448242,0.0691947340965271,-0.14915384352207184,-2.897233724594116,0.057482630014419556,-0.50471031665802,-0.08465933799743652,0.12144362926483154,-0.3305627405643463,0.5702508091926575,0.6456263065338135,-0.13028846681118011,-0.9032506942749023,-0.9689914584159851,-0.9447958469390869,-1.7052160501480103,-2.6863059997558594,1.87744140625,1.818491816520691,0.06201857328414917,1.7858202457427979,-2.548157215118408,1.2622747421264648,1.0721166133880615,0.24732384085655212,0.3372427523136139,0.8168078660964966,-0.59007728099823,-2.2933621406555176,0.3840155601501465,0.11237534880638123,0.1695317178964615,1.4893875122070312,-2.458997964859009,0.9379475116729736,-0.8519815802574158,-1.4150927066802979,-2.125483274459839,2.1486399173736572,0.4313076138496399,-0.6676390171051025,0.17303377389907837,1.0648834705352783,1.1700150966644287,-1.5900840759277344,-0.1486208736896515,0.5855217576026917,0.19223007559776306,1.244181752204895,-0.7908564805984497,-0.3584778606891632,-0.16178375482559204,-0.2960074543952942,1.0922431945800781,0.3729102313518524,0.16742739081382751,0.1124991923570633,0.7060661911964417,1.1209547519683838,-0.12995696067810059,-0.8636615872383118,0.21697849035263062,1.6365270614624023,1.3935896158218384,2.3803999423980713,1.5359039306640625,-0.8343988656997681,-0.15494617819786072,0.32165247201919556,1.7068426609039307,1.8920658826828003,-1.3371692895889282,1.0146790742874146,-0.39301854372024536,0.3096998929977417,1.468901515007019,-0.35746583342552185,-0.11745136976242065,-0.7143177390098572,0.3166143596172333,0.2857174873352051,0.1417352706193924,-0.8370238542556763,-0.25034284591674805,-2.1487362384796143,0.3866431713104248,-1.1932861804962158,0.20777904987335205,-0.9981681108474731,0.5793977379798889,0.46238088607788086,-0.6806937456130981,-0.03589019179344177,-1.6852705478668213,-0.909536600112915,-0.35138529539108276,-2.035245418548584,-1.487555980682373,2.3205957412719727,-0.6705808639526367,1.953432321548462,-1.0491797924041748,0.6285247802734375,1.3533729314804077,1.0782177448272705,0.4929546117782593,-0.8903125524520874,0.595797061920166,-0.10358890891075134,-0.4532757103443146,-0.09012061357498169,0.5053861737251282,0.4076383113861084,0.42720043659210205,-1.5637112855911255,-2.730973243713379,-0.10047465562820435,-0.42723214626312256,-0.36527538299560547,-0.07630174607038498,-0.024344801902770996,0.08595046401023865,-0.2337111532688141,-0.523628294467926,-0.9391680955886841,0.8049468994140625,0.1996978521347046,-0.037249863147735596,-1.3701140880584717,0.32410502433776855,-0.6504027247428894,0.42854422330856323,0.3859381675720215,-0.14591173827648163,0.22542232275009155,-1.5710557699203491,0.05430185794830322,1.6786704063415527,-1.8274333477020264,1.764478325843811,0.31700414419174194,-0.023424342274665833,-0.537034809589386,-0.23321598768234253,-0.6757506728172302,0.6668068170547485,0.5060272216796875,0.6553168892860413,-1.4890799522399902,0.08450090885162354,1.047451138496399,0.190627783536911,-1.1100152730941772,0.24797692894935608,-0.8275432586669922,1.1299889087677002,-2.3852105140686035,1.0511797666549683,0.7502682209014893,0.10046577453613281,-2.334416151046753,0.5046231746673584,1.3113243579864502,-0.12911942601203918,-1.7317689657211304,-1.1598527431488037,-0.595847487449646,0.10339337587356567,0.9583994150161743,0.560553252696991,-0.8612191677093506,0.9459787607192993,0.25298982858657837,1.3232548236846924,-1.9222743511199951,-0.4530256688594818,0.5384698510169983,0.10921364277601242,-0.8999268412590027,-2.948523998260498,-0.5757116079330444,1.5565539598464966,-0.3067355453968048,1.0896759033203125,0.7149326205253601,0.3132850229740143,-0.11620607227087021,-0.46293529868125916,-1.5293678045272827,1.4407985210418701,-0.44889798760414124,-1.2694153785705566,-1.0075562000274658,1.7608368396759033,-2.0402297973632812,0.2507179379463196,-0.31696897745132446,-1.3415908813476562,-0.3127537667751312,1.3937242031097412,-0.13161751627922058,1.3614470958709717,-0.3671207129955292,-1.786475658416748,-1.094160556793213,1.4144301414489746,1.0473860502243042,-0.4706421196460724,0.3751385807991028,-1.3276948928833008,-0.5211628675460815,-0.34662485122680664,-1.22450852394104,-0.6645534634590149,-0.19546611607074738 -2952,-0.055652469396591187,0.2518192529678345,-0.7605658173561096,-0.8060824871063232,-0.8496870398521423,-0.25632309913635254,-1.2041772603988647,0.5685296654701233,-0.5177001953125,0.7387769222259521,0.24633696675300598,1.411170244216919,-0.16181275248527527,0.1538471132516861,-0.17829567193984985,-0.7274759411811829,-0.37844496965408325,0.6642114520072937,-1.5274099111557007,-0.6242151856422424,-0.4765579104423523,0.7301312685012817,1.4624978303909302,0.5372892618179321,0.29131582379341125,-0.504627525806427,-1.9094915390014648,-0.8683162927627563,-0.14605212211608887,-1.1097630262374878,-1.2925429344177246,-1.1241763830184937,-0.19983705878257751,-0.6698942184448242,0.0691947340965271,-0.14915384352207184,-2.897233724594116,0.057482630014419556,-0.50471031665802,-0.08465933799743652,-0.013989359140396118,-0.5078414678573608,0.21508318185806274,0.5823907852172852,-0.13028846681118011,-0.9032506942749023,-0.9689914584159851,-0.9447958469390869,-1.3539468050003052,-2.6863059997558594,1.87744140625,1.818491816520691,0.3047821521759033,1.7858202457427979,-2.8755247592926025,0.5994350910186768,1.0721166133880615,0.23397719860076904,0.3372427523136139,0.8168078660964966,-0.822760283946991,-2.2933621406555176,0.6417633295059204,0.11237534880638123,0.1695317178964615,1.4893875122070312,-2.458997964859009,0.8740735650062561,-0.8519815802574158,-1.4150927066802979,-1.9623533487319946,1.4388759136199951,0.4313076138496399,-0.6319404244422913,0.17303377389907837,1.0648834705352783,1.1335787773132324,-1.5900840759277344,-0.1486208736896515,0.5855217576026917,0.19223007559776306,1.244181752204895,-0.7908564805984497,-0.1033327579498291,-0.2931787371635437,-0.2960074543952942,1.0922431945800781,0.37491923570632935,-0.8688002824783325,0.1124991923570633,0.367832213640213,1.1209547519683838,0.3988344669342041,-0.8636615872383118,0.21697849035263062,1.6365270614624023,1.3935896158218384,2.3803999423980713,1.1261639595031738,-0.8343988656997681,-0.15494617819786072,0.32165247201919556,1.7068426609039307,2.0897979736328125,-1.3371692895889282,1.0146790742874146,0.009908676147460938,0.3096998929977417,1.468901515007019,-0.35746583342552185,-0.11745136976242065,-0.7143177390098572,0.3166143596172333,0.2857174873352051,-0.051054447889328,-0.8370238542556763,-0.5625717639923096,-2.1487362384796143,-0.04968222975730896,-1.1932861804962158,0.20777904987335205,-0.9981681108474731,0.5793977379798889,0.46238088607788086,-0.6806937456130981,-0.03589019179344177,-1.2448818683624268,-0.909536600112915,-0.35138529539108276,-1.9462589025497437,-1.487555980682373,2.3205957412719727,-0.6705808639526367,1.953432321548462,-1.0491797924041748,0.39837244153022766,0.7571339011192322,1.0782177448272705,0.4929546117782593,-0.8903125524520874,0.9397132396697998,-0.10358890891075134,-0.4532757103443146,-0.09012061357498169,0.5053861737251282,0.4076383113861084,0.42720043659210205,-1.5637112855911255,-2.730973243713379,-0.10047465562820435,-0.42723214626312256,-0.8269453048706055,0.07471916824579239,-0.024344801902770996,-0.19185873866081238,-0.2337111532688141,-0.8994213342666626,-1.0673434734344482,0.8789969086647034,-0.08337345719337463,0.2016962319612503,-0.5014532804489136,0.32410502433776855,-0.6504027247428894,0.42854422330856323,0.3859381675720215,-0.14591173827648163,0.22542232275009155,-2.0265164375305176,0.05430185794830322,1.6786704063415527,-2.9276857376098633,1.764478325843811,0.31700414419174194,-1.0180922746658325,-0.6135383248329163,-0.43312159180641174,-0.6757506728172302,0.6668068170547485,0.41325151920318604,0.6553168892860413,-1.4890799522399902,0.08450090885162354,1.047451138496399,0.190627783536911,-1.1100152730941772,0.24797692894935608,-0.8275432586669922,1.1299889087677002,-1.431483268737793,0.9343297481536865,0.7502682209014893,0.5075303316116333,-2.334416151046753,0.5046231746673584,1.3113243579864502,-0.12911942601203918,-1.7317689657211304,-1.1598527431488037,-0.595847487449646,0.10339337587356567,0.9583994150161743,0.586104154586792,-0.8612191677093506,0.9459787607192993,-0.286950945854187,1.3232548236846924,-1.9222743511199951,-0.4530256688594818,0.5384698510169983,0.10921364277601242,-0.8999268412590027,-2.948523998260498,-0.5757116079330444,1.5565539598464966,-0.3067355453968048,1.0896759033203125,0.7149326205253601,0.5750554800033569,-0.11620607227087021,-0.46293529868125916,-1.5293678045272827,1.4407985210418701,-0.44889798760414124,-1.2694153785705566,-1.0075562000274658,1.7608368396759033,-2.0402297973632812,1.383166790008545,-0.7392295002937317,-1.3415908813476562,-0.3127537667751312,1.3937242031097412,-0.13161751627922058,1.3614470958709717,-0.3671207129955292,-1.786475658416748,-0.926979660987854,1.4144301414489746,1.0473860502243042,-0.4706421196460724,0.3751385807991028,-1.3276948928833008,-0.5211628675460815,-0.3995921015739441,-1.22450852394104,-0.6645534634590149,-0.19546611607074738 -2953,-0.055652469396591187,0.2518192529678345,-0.7605658173561096,-0.8060824871063232,-0.8496870398521423,-0.25632309913635254,-1.240958571434021,0.5685296654701233,-0.04183885455131531,0.7387769222259521,0.24633696675300598,1.3862279653549194,-0.16181275248527527,0.1426072120666504,-0.17829567193984985,-0.8005378842353821,-0.37844496965408325,0.5807952880859375,-1.6195924282073975,-0.6242151856422424,-0.4765579104423523,0.7301312685012817,1.4624978303909302,0.4363916516304016,0.29131582379341125,-0.914649248123169,-1.9364690780639648,-0.8683162927627563,-0.14605212211608887,-1.1097630262374878,-1.2925429344177246,-1.1241763830184937,-0.19983705878257751,-0.6698942184448242,-0.18990558385849,-0.025275610387325287,-2.897233724594116,0.020240016281604767,-0.50471031665802,-0.08465933799743652,-0.013989359140396118,-0.5078414678573608,0.202448770403862,0.5823907852172852,0.09698975086212158,-0.9032506942749023,-0.9689914584159851,-0.9447958469390869,-1.3539468050003052,-2.8868212699890137,1.87744140625,1.0023787021636963,0.3047821521759033,1.7858202457427979,-2.823899745941162,0.5994350910186768,1.0721166133880615,-0.3085086941719055,0.33598482608795166,0.8168078660964966,-0.520154595375061,-2.2933621406555176,0.6417633295059204,0.11237534880638123,0.1695317178964615,1.1968446969985962,-2.458997964859009,1.3206791877746582,-0.8519815802574158,-1.5638177394866943,-1.9623533487319946,1.4388759136199951,0.4313076138496399,-0.6319404244422913,0.06773514300584793,1.0648834705352783,1.1335787773132324,-1.5900840759277344,-0.1486208736896515,0.8254700303077698,0.19223007559776306,1.244181752204895,-0.7908564805984497,-0.18060657382011414,-0.2931787371635437,-0.2960074543952942,1.0922431945800781,0.37491923570632935,-0.8688002824783325,0.1124991923570633,0.367832213640213,1.1209547519683838,-0.015867650508880615,-0.8636615872383118,0.21697849035263062,1.6365270614624023,1.3935896158218384,2.974036455154419,1.1261639595031738,-0.8343988656997681,-0.15494617819786072,0.32165247201919556,0.8260665535926819,1.1899802684783936,-1.3371692895889282,1.0726007223129272,0.009908676147460938,0.17150676250457764,1.468901515007019,-0.35746583342552185,0.9854572415351868,-0.7143177390098572,0.3166143596172333,0.2857174873352051,0.2373630702495575,-0.8370238542556763,-0.9325496554374695,-2.1487362384796143,-0.04968222975730896,-1.1932861804962158,0.20777904987335205,-0.9981681108474731,0.5793977379798889,0.46238088607788086,-0.6806937456130981,-0.289751797914505,-0.6350823640823364,-0.909536600112915,-0.35138529539108276,-1.9462589025497437,-1.487555980682373,2.3205957412719727,-0.6705808639526367,1.422096610069275,-1.0491797924041748,0.39837244153022766,0.7571339011192322,1.0782177448272705,0.4929546117782593,-0.37347155809402466,0.9397132396697998,-0.10358890891075134,-0.4532757103443146,-0.09012061357498169,0.5053861737251282,0.4076383113861084,0.42720043659210205,-1.7296677827835083,-2.5239930152893066,0.046472445130348206,-0.6870675086975098,-0.8269453048706055,0.07471916824579239,0.09604987502098083,-0.19185873866081238,-0.2337111532688141,-0.8994213342666626,-1.0673434734344482,0.6140348315238953,-0.08337345719337463,0.2016962319612503,-0.5014532804489136,0.32410502433776855,-0.6504027247428894,0.42854422330856323,0.3859381675720215,-0.14591173827648163,0.2640497386455536,-2.2105255126953125,0.05430185794830322,1.6786704063415527,-2.9276857376098633,1.764478325843811,0.31700414419174194,-0.07654178142547607,-0.6135383248329163,-0.43312159180641174,-0.3000369668006897,0.6668068170547485,0.09582310914993286,0.6553168892860413,-1.1880054473876953,0.08450090885162354,1.3410067558288574,0.190627783536911,-0.41684913635253906,0.24797692894935608,-0.8275432586669922,1.1299889087677002,-1.0704305171966553,0.9343297481536865,0.7502682209014893,0.5392637848854065,-1.955867886543274,0.5046231746673584,1.3113243579864502,-0.12911942601203918,-1.4548754692077637,-0.9904085397720337,-0.595847487449646,0.5936187505722046,0.9583994150161743,0.687847375869751,-0.9074056148529053,1.0384371280670166,-0.286950945854187,1.3929197788238525,-1.9222743511199951,-0.4530256688594818,-0.040921807289123535,0.10921364277601242,-0.8999268412590027,-2.671274185180664,-1.2677581310272217,0.8142272233963013,-0.6923360824584961,1.0896759033203125,0.7149326205253601,0.5750554800033569,-0.11620607227087021,-0.8297974467277527,-1.0706909894943237,1.4407985210418701,-0.44889798760414124,-1.2694153785705566,-1.0075562000274658,1.7608368396759033,-2.0402297973632812,1.2692387104034424,-0.7392295002937317,-1.4886488914489746,-0.3127537667751312,1.3937242031097412,-0.13161751627922058,1.3614470958709717,-0.3671207129955292,-1.786475658416748,-1.3720940351486206,1.4144301414489746,0.7270783185958862,-0.8675006031990051,0.3751385807991028,-1.3276948928833008,-0.5211628675460815,-0.3995921015739441,-1.22450852394104,0.2843174934387207,-0.19546611607074738 -2954,-0.024437803775072098,0.2518192529678345,-0.7605658173561096,-0.8060824871063232,-0.8496870398521423,-0.25632309913635254,-1.240958571434021,0.5685296654701233,-0.13419827818870544,0.7387769222259521,0.062210842967033386,1.2647804021835327,-0.04662217199802399,0.1426072120666504,-0.17829567193984985,-0.8005378842353821,-0.37844496965408325,0.5807952880859375,-1.6195924282073975,-0.6242151856422424,-0.4765579104423523,0.7301312685012817,1.4624978303909302,0.4363916516304016,0.29131582379341125,-0.914649248123169,-1.7453726530075073,-0.8683162927627563,-0.14605212211608887,-1.3441623449325562,-1.2925429344177246,-1.2061008214950562,-0.6515741348266602,-0.6698942184448242,-0.6292611956596375,0.02895210310816765,-2.897233724594116,0.020240016281604767,-0.50471031665802,-0.08465933799743652,-0.5411365032196045,-0.5078414678573608,0.4750801920890808,0.5823907852172852,0.09698975086212158,-0.9032506942749023,-0.9689914584159851,-1.66832435131073,-1.3539468050003052,-2.0717270374298096,1.87744140625,1.0023787021636963,0.3321548402309418,1.7858202457427979,-2.823899745941162,0.4379025995731354,1.0721166133880615,-0.3085086941719055,0.33598482608795166,0.8168078660964966,-0.520154595375061,-2.936168670654297,0.6417633295059204,0.11237534880638123,-0.052167922258377075,1.394779920578003,-2.458997964859009,1.3206791877746582,-1.193385124206543,-1.062398910522461,-1.9623533487319946,1.4388759136199951,0.5141054391860962,-0.6319404244422913,0.06773514300584793,0.8604398965835571,1.4736120700836182,-1.749079942703247,-0.3288361430168152,0.8254700303077698,0.19223007559776306,1.244181752204895,-0.7908564805984497,-0.27552714943885803,-0.2931787371635437,-0.2960074543952942,1.0922431945800781,0.37491923570632935,-0.8688002824783325,-0.1741984635591507,0.367832213640213,1.213036298751831,-0.015867650508880615,-0.8636615872383118,0.21697849035263062,1.0720257759094238,1.3935896158218384,2.6332356929779053,1.1261639595031738,-0.8343988656997681,-0.15494617819786072,0.32165247201919556,1.5302977561950684,1.5983458757400513,-1.3371692895889282,1.0726007223129272,0.8661522269248962,0.17150676250457764,1.468901515007019,-0.35746583342552185,0.9854572415351868,-0.7012556791305542,0.3166143596172333,0.2857174873352051,0.2373630702495575,-0.8370238542556763,-1.0491840839385986,-2.1487362384796143,-0.04968222975730896,-0.09183883666992188,0.20777904987335205,-0.9981681108474731,0.5793977379798889,0.2758379578590393,-0.6806937456130981,0.2258664071559906,-0.6350823640823364,-0.8956248760223389,0.37346458435058594,-1.8614976406097412,-1.487555980682373,2.248950719833374,-0.6705808639526367,1.4021282196044922,-1.0491797924041748,0.39837244153022766,1.107408881187439,1.0782177448272705,0.4929546117782593,-0.37347155809402466,1.0126230716705322,-0.10358890891075134,-0.4532757103443146,-0.09012061357498169,0.4145922064781189,0.4076383113861084,0.7899871468544006,-1.2901318073272705,-2.5239930152893066,0.046472445130348206,-0.6870675086975098,-0.8269453048706055,0.07471916824579239,0.09604987502098083,-0.19185873866081238,-0.2337111532688141,-0.8994213342666626,-1.0673434734344482,0.6140348315238953,-0.08337345719337463,0.2016962319612503,-0.5014532804489136,0.32410502433776855,-0.6504027247428894,0.42854422330856323,0.24429228901863098,-0.14591173827648163,0.7446177005767822,-2.4456987380981445,0.5302325487136841,1.6786704063415527,-2.9276857376098633,1.764478325843811,0.31700414419174194,-0.07654178142547607,-0.6135383248329163,-0.5772121548652649,-0.3000369668006897,0.38585329055786133,0.09582310914993286,0.6228043437004089,-1.1880054473876953,0.08450090885162354,1.3410067558288574,0.4988035559654236,-0.41684913635253906,0.24797692894935608,-0.4608325958251953,0.5122478604316711,-1.1367489099502563,0.9343297481536865,0.7502682209014893,0.5392637848854065,-1.955867886543274,0.5046231746673584,0.7930567860603333,-0.12911942601203918,-1.4548754692077637,-0.08872443437576294,0.3081427812576294,0.5936187505722046,0.9583994150161743,0.007984936237335205,-0.9074056148529053,0.9043034315109253,-0.286950945854187,1.3929197788238525,-1.9222743511199951,-0.4530256688594818,0.9124138355255127,0.10921364277601242,-0.4814883768558502,-2.671274185180664,-1.2677581310272217,0.8142272233963013,-0.8999030590057373,0.9467387199401855,0.7149326205253601,0.5750554800033569,-0.11620607227087021,-0.8297974467277527,-1.0706909894943237,1.095768928527832,-0.44889798760414124,-1.2694153785705566,0.0028668642044067383,1.7608368396759033,-1.6510545015335083,0.9459254741668701,-0.7392295002937317,-0.8831998705863953,-0.3127537667751312,1.3937242031097412,-0.13161751627922058,1.2525650262832642,-0.3671207129955292,-1.786475658416748,-1.3720940351486206,1.90224027633667,0.7270783185958862,-0.8675006031990051,0.3751385807991028,-1.3276948928833008,-0.5211628675460815,-0.3995921015739441,-1.22450852394104,0.2843174934387207,-0.19546611607074738 -2955,-0.024437803775072098,0.04032091796398163,-0.7605658173561096,-0.8060824871063232,-0.8496870398521423,-0.25632309913635254,-1.240958571434021,0.5685296654701233,-0.13419827818870544,0.40933963656425476,0.35928088426589966,1.2647804021835327,-0.059234607964754105,0.5491888523101807,0.26751089096069336,-0.8005378842353821,-0.20257143676280975,0.5807952880859375,-1.6195924282073975,-0.6242151856422424,-0.4765579104423523,0.7301312685012817,1.1231553554534912,0.4363916516304016,0.29131582379341125,-0.7904032468795776,-1.6303960084915161,-0.8683162927627563,-0.2291806936264038,-1.3441623449325562,-1.2925429344177246,-1.0503937005996704,-1.0308772325515747,-0.6698942184448242,-0.6292611956596375,0.02895210310816765,-2.897233724594116,0.048246338963508606,0.08614891767501831,-0.14134471118450165,-0.5411365032196045,-0.5528631210327148,0.46184930205345154,0.5823907852172852,0.09698975086212158,-0.9032506942749023,-0.7376872301101685,-1.4404988288879395,-1.3539468050003052,-2.0717270374298096,1.87744140625,1.5816104412078857,0.3321548402309418,1.7858202457427979,-2.823899745941162,0.4379025995731354,1.0721166133880615,-0.3085086941719055,0.33598482608795166,0.8168078660964966,-0.520154595375061,-2.936168670654297,0.2599402368068695,0.10894301533699036,-0.41192445158958435,1.2097523212432861,-2.458997964859009,1.3206791877746582,-1.193385124206543,-1.062398910522461,-1.8060208559036255,1.4388759136199951,0.5141054391860962,-0.6319404244422913,-0.16651591658592224,0.25978296995162964,0.9741687178611755,-1.749079942703247,-0.3288361430168152,0.8254700303077698,0.19223007559776306,1.244181752204895,-0.7908564805984497,-0.27552714943885803,-0.5181605815887451,-0.2960074543952942,-0.5415672063827515,0.37491923570632935,-0.8688002824783325,0.6316515207290649,-0.4260003864765167,1.213036298751831,-0.015867650508880615,-0.8636615872383118,0.21697849035263062,1.0720257759094238,1.3935896158218384,2.6332356929779053,1.1261639595031738,-0.8442574739456177,-0.15494617819786072,0.25124892592430115,1.5302977561950684,1.5983458757400513,-1.3371692895889282,1.0726007223129272,0.8661522269248962,0.17150676250457764,1.468901515007019,-0.35746583342552185,0.9854572415351868,-0.7012556791305542,0.3166143596172333,0.2857174873352051,0.2373630702495575,-0.61197429895401,-1.0491840839385986,-2.1487362384796143,-0.04968222975730896,-0.09183883666992188,0.20777904987335205,-1.2525243759155273,0.5793977379798889,0.2758379578590393,-0.6806937456130981,0.2258664071559906,-0.6350823640823364,-0.8956248760223389,0.37346458435058594,-1.8614976406097412,-1.487555980682373,2.248950719833374,-0.6705808639526367,1.4021282196044922,-1.0491797924041748,0.39837244153022766,1.107408881187439,1.0782177448272705,0.4929546117782593,-0.6385796070098877,1.0126230716705322,-1.1310774087905884,-0.4532757103443146,-0.09012061357498169,0.4145922064781189,0.4076383113861084,0.7899871468544006,-1.2901318073272705,-2.4537672996520996,0.046472445130348206,-0.3549202084541321,-0.8269453048706055,0.07471916824579239,0.09604987502098083,-0.19185873866081238,-0.2337111532688141,-0.8994213342666626,-1.459490180015564,0.6140348315238953,0.26692867279052734,0.2016962319612503,-0.5014532804489136,0.32410502433776855,-0.6504027247428894,0.42854422330856323,0.24429228901863098,-0.14591173827648163,0.7446177005767822,-2.3482532501220703,0.5302325487136841,2.3182575702667236,-2.9276857376098633,1.764478325843811,0.31700414419174194,-0.07654178142547607,-0.6135383248329163,-0.5772121548652649,-0.2936175763607025,0.38585329055786133,0.09582310914993286,-0.09015846252441406,-1.1880054473876953,0.08450090885162354,1.3410067558288574,0.4988035559654236,-0.41684913635253906,0.24797692894935608,-0.2485470175743103,0.6587847471237183,-1.1367489099502563,0.9343297481536865,0.7502682209014893,0.5392637848854065,-1.8301143646240234,0.5046231746673584,0.7930567860603333,-0.12911942601203918,-1.4548754692077637,-0.08872443437576294,0.3081427812576294,0.7332899570465088,0.9583994150161743,0.007984936237335205,-0.6307460069656372,0.9043034315109253,1.0782526731491089,1.3929197788238525,-1.3723187446594238,-0.4530256688594818,0.9725623726844788,0.10921364277601242,-0.4814883768558502,-2.5062525272369385,-1.2677581310272217,0.8142272233963013,-0.6453709602355957,0.7701766490936279,0.7149326205253601,0.5750554800033569,-0.11620607227087021,-0.8297974467277527,-1.0706909894943237,0.9251236915588379,-0.44889798760414124,-1.2694153785705566,0.0028668642044067383,1.7608368396759033,-1.6510545015335083,1.2225606441497803,-0.7392295002937317,-0.8831998705863953,-0.3127537667751312,1.3937242031097412,-0.3629884123802185,1.2525650262832642,-0.3671207129955292,-1.786475658416748,-1.3720940351486206,1.90224027633667,0.5503695011138916,-0.551538348197937,0.3751385807991028,-1.2151000499725342,-0.5211628675460815,-0.3995921015739441,-1.22450852394104,0.2843174934387207,-0.19546611607074738 -2956,-0.024437803775072098,0.04032091796398163,-0.4401701092720032,-0.8060824871063232,-0.8496870398521423,-0.25632309913635254,-1.240958571434021,0.5685296654701233,-0.3873891234397888,0.40933963656425476,0.35928088426589966,1.2647804021835327,-0.059234607964754105,0.5491888523101807,0.26751089096069336,-0.8005378842353821,-0.1018664762377739,0.38736075162887573,-1.6195924282073975,-0.6242151856422424,-0.4765579104423523,0.999245285987854,1.1231553554534912,0.4363916516304016,0.29131582379341125,-0.7904032468795776,-1.6303960084915161,-0.8683162927627563,-0.2541514039039612,-1.3441623449325562,-1.2925429344177246,-1.0581004619598389,-1.0308772325515747,-0.6698942184448242,-0.625009298324585,0.02895210310816765,-2.897233724594116,0.048246338963508606,0.08614891767501831,-0.14134471118450165,-0.5411365032196045,-0.5528631210327148,0.42542093992233276,0.5622987747192383,0.09698975086212158,-1.02109956741333,-0.7376872301101685,-1.4404988288879395,-1.3539468050003052,-1.2815226316452026,1.730299711227417,1.7910019159317017,0.3321548402309418,1.9266489744186401,-2.823899745941162,0.4379025995731354,1.0721166133880615,-0.202621191740036,0.33598482608795166,0.8168078660964966,-0.6611214876174927,-2.4194869995117188,0.7106763124465942,0.10894301533699036,-0.41192445158958435,1.355811595916748,-2.6424014568328857,1.3206791877746582,-1.193385124206543,-0.6397160291671753,-1.3901307582855225,1.4388759136199951,0.5141054391860962,-0.6319404244422913,0.17233428359031677,0.1502414345741272,0.9741687178611755,-1.749079942703247,-0.3288361430168152,0.8285656571388245,0.19223007559776306,1.5900287628173828,-0.7908564805984497,-0.27552714943885803,0.49279797077178955,-0.2960074543952942,-0.5415672063827515,0.37491923570632935,-0.6502442359924316,0.6316515207290649,-0.4260003864765167,1.213036298751831,-0.015867650508880615,-0.8636615872383118,0.05860200524330139,1.0720257759094238,1.7847700119018555,2.6332356929779053,1.1603680849075317,-0.3458162248134613,-0.15494617819786072,0.07216575741767883,1.5302977561950684,1.5983458757400513,-1.3371692895889282,0.9907698035240173,0.2953585386276245,0.17150676250457764,1.3136714696884155,-0.35746583342552185,0.1579188108444214,-0.7012556791305542,0.3166143596172333,0.2857174873352051,0.5592532157897949,-0.61197429895401,-1.0491840839385986,-2.1487362384796143,-0.04968222975730896,-0.3992170989513397,0.20777904987335205,-1.2525243759155273,0.4138302505016327,0.2758379578590393,-0.6806937456130981,0.10740615427494049,-0.6350823640823364,-0.8956248760223389,0.050402432680130005,-1.8614976406097412,-1.1086368560791016,2.248950719833374,-0.6705808639526367,1.3525769710540771,-1.0491797924041748,0.15704065561294556,1.107408881187439,0.886462926864624,0.4929546117782593,-0.6186837553977966,1.0126230716705322,-1.1310774087905884,-0.4532757103443146,0.6199479103088379,-0.020839959383010864,0.21235895156860352,0.7899871468544006,-1.0624256134033203,-2.5232388973236084,0.046472445130348206,-0.3549202084541321,-1.2288408279418945,0.07471916824579239,0.09604987502098083,0.4824075400829315,-0.2337111532688141,-0.2822984457015991,-1.8923933506011963,0.6351858973503113,0.26692867279052734,0.2016962319612503,-1.161321997642517,0.32410502433776855,-0.31758418679237366,0.6665776371955872,0.9516485929489136,-0.14591173827648163,0.7919868230819702,-2.3482532501220703,0.5807963013648987,2.608983039855957,-2.9276857376098633,1.6782892942428589,0.31700414419174194,-0.07654178142547607,-0.6135383248329163,-0.5772121548652649,-0.3087964951992035,0.3656502366065979,0.0778704509139061,-0.09015846252441406,-1.1880054473876953,0.08450090885162354,0.7937885522842407,0.4988035559654236,-0.41684913635253906,0.24797692894935608,-0.0522574782371521,0.6587847471237183,-1.319024682044983,0.9343297481536865,0.7502682209014893,0.5392637848854065,-1.8560539484024048,0.13264939188957214,1.7862004041671753,-0.12911942601203918,-1.4042247533798218,-0.5746821165084839,0.3081427812576294,0.6339840292930603,0.6516534090042114,-0.10820535570383072,-0.8654863238334656,0.9043034315109253,1.0782526731491089,0.7129123210906982,-1.3723187446594238,-0.4530256688594818,0.9725623726844788,-0.025428451597690582,-0.4814883768558502,-1.5056111812591553,-1.2677581310272217,0.8142272233963013,-0.6453709602355957,0.7701766490936279,0.7149326205253601,0.5750554800033569,-0.11620607227087021,-0.8297974467277527,-0.615217924118042,0.9251236915588379,-0.44889798760414124,-1.2694153785705566,0.0028668642044067383,1.7608368396759033,-1.732071042060852,1.5149261951446533,-0.7392295002937317,-0.8831998705863953,-0.3127537667751312,1.3937242031097412,-0.3629884123802185,1.2525650262832642,-0.3671207129955292,-1.786475658416748,-0.9716254472732544,1.90224027633667,0.5503695011138916,-1.0290255546569824,0.3751385807991028,-0.8870663642883301,-0.15549269318580627,-0.39892062544822693,-1.22450852394104,0.2843174934387207,-0.19546611607074738 -2957,-0.1578187346458435,0.04032091796398163,-0.4401701092720032,-1.3642345666885376,-0.8496870398521423,-0.25632309913635254,-1.240958571434021,0.5685296654701233,-0.6370733976364136,0.40933963656425476,0.10030919313430786,1.2647804021835327,-0.059234607964754105,0.18747881054878235,0.3287571668624878,-0.8005378842353821,-0.1018664762377739,0.38736075162887573,-1.6195924282073975,-0.6242151856422424,-0.4765579104423523,0.999245285987854,1.1231553554534912,0.4363916516304016,0.29131582379341125,-0.7904032468795776,-1.5105478763580322,-0.8683162927627563,-0.2541514039039612,-1.3441623449325562,-1.2925429344177246,-1.5379291772842407,-1.1195114850997925,-0.35947686433792114,-0.625009298324585,0.02895210310816765,-2.897233724594116,0.048246338963508606,0.08614891767501831,-0.14134471118450165,-0.5411365032196045,-0.5528631210327148,0.42542093992233276,0.5622987747192383,0.09698975086212158,-0.6543587446212769,-0.370871901512146,-1.4404988288879395,-1.3539468050003052,-1.2815226316452026,1.730299711227417,1.7910019159317017,0.3321548402309418,1.9910777807235718,-2.823899745941162,0.4379025995731354,1.0721166133880615,-0.202621191740036,0.33598482608795166,0.8168078660964966,-0.6611214876174927,-2.4194869995117188,0.7106763124465942,0.10894301533699036,-0.41192445158958435,1.2454259395599365,-2.1718499660491943,1.6613528728485107,-1.3996323347091675,-0.6397160291671753,-1.9837894439697266,1.4388759136199951,0.5141054391860962,-0.8089802861213684,0.18916773796081543,0.1502414345741272,1.1453930139541626,-1.749079942703247,-0.3288361430168152,0.8285656571388245,0.19223007559776306,1.821155309677124,-0.36620670557022095,-0.28976792097091675,0.1635894477367401,-0.2960074543952942,-0.5415672063827515,0.21436868607997894,-0.8195593357086182,0.6316515207290649,-0.4260003864765167,0.6261792778968811,-0.40140965580940247,-0.8636615872383118,0.05860200524330139,1.1392701864242554,1.7847700119018555,2.6332356929779053,1.1603680849075317,-0.3458162248134613,-0.15494617819786072,0.07216575741767883,1.6388850212097168,1.5983458757400513,-1.3371692895889282,0.45430630445480347,-0.5312029719352722,0.17150676250457764,1.3136714696884155,-0.35746583342552185,0.1579188108444214,-0.7012556791305542,0.3166143596172333,0.2857174873352051,0.4686083495616913,-0.61197429895401,-1.0491840839385986,-2.1487362384796143,-0.04968222975730896,-0.3992170989513397,0.20777904987335205,-1.3640199899673462,0.4138302505016327,0.6464877128601074,-0.6806937456130981,0.10740615427494049,-0.20377224683761597,-0.8956248760223389,0.050402432680130005,-1.8614976406097412,-1.1086368560791016,2.5079004764556885,-0.6705808639526367,1.3525769710540771,-1.0491797924041748,0.7856809496879578,0.750151515007019,0.886462926864624,0.4929546117782593,-0.05584239959716797,1.0126230716705322,-1.1310774087905884,-0.4532757103443146,0.6199479103088379,-0.36336013674736023,0.21235895156860352,0.7899871468544006,-1.0624256134033203,-2.5232388973236084,0.7149333357810974,-0.3549202084541321,-1.2288408279418945,0.07471916824579239,0.09604987502098083,0.4824075400829315,-0.2337111532688141,-0.08785222470760345,-1.8923933506011963,0.6351858973503113,0.7679281830787659,0.2016962319612503,-1.161321997642517,0.32410502433776855,-0.31758418679237366,0.6665776371955872,0.23785167932510376,-0.21103915572166443,0.7919868230819702,-2.3482532501220703,0.5807963013648987,2.565263032913208,-2.295647144317627,1.6782892942428589,0.31700414419174194,-0.07654178142547607,-0.6135383248329163,-0.5772121548652649,-0.3087964951992035,0.39593106508255005,0.0778704509139061,-0.09015846252441406,-1.1880054473876953,0.2016514539718628,1.402221918106079,0.4988035559654236,-0.41684913635253906,0.24797692894935608,-0.9787536859512329,0.6587847471237183,-1.319024682044983,0.9343297481536865,0.7618547081947327,0.5866476893424988,-2.088233470916748,0.13264939188957214,1.1054003238677979,-0.12911942601203918,-1.4042247533798218,-0.5746821165084839,-0.7548795938491821,0.6339840292930603,0.6516534090042114,-0.6446210741996765,-0.8654863238334656,0.6800646185874939,1.0782526731491089,1.0972874164581299,-0.9957063794136047,-0.4530256688594818,0.9725623726844788,-0.025428451597690582,-1.1842676401138306,-1.843575119972229,-1.2677581310272217,0.9809117317199707,-0.6453709602355957,0.7701766490936279,0.7261686325073242,0.5750554800033569,-0.39379438757896423,-0.8297974467277527,-0.615217924118042,1.1191297769546509,-0.44889798760414124,-1.1060117483139038,-0.3950216770172119,1.7608368396759033,-1.732071042060852,1.460132122039795,-0.7392295002937317,-0.25903576612472534,-0.3127537667751312,1.6474076509475708,-0.3629884123802185,0.5918552875518799,-0.3671207129955292,-1.786475658416748,-0.9716254472732544,1.90224027633667,0.5389169454574585,-0.42071813344955444,0.3751385807991028,-0.8870663642883301,-0.15549269318580627,-0.39892062544822693,-0.3850085735321045,-0.4527469873428345,0.27177661657333374 -2958,-0.1578187346458435,0.04032091796398163,-1.13323974609375,-1.0802946090698242,-0.8496870398521423,-0.25632309913635254,-1.240958571434021,0.5685296654701233,-0.6370733976364136,0.40933963656425476,0.10030919313430786,1.2647804021835327,-0.059234607964754105,0.18747881054878235,0.3287571668624878,-0.8005378842353821,-0.1018664762377739,0.38736075162887573,-1.6195924282073975,-0.6242151856422424,-0.3657248318195343,0.9295029640197754,1.1231553554534912,0.4363916516304016,0.29131582379341125,-0.7694048881530762,-1.5105478763580322,-0.8683162927627563,-0.23683714866638184,-1.3441623449325562,-0.9707722067832947,-1.5379291772842407,-1.3863098621368408,-0.35947686433792114,-0.5508456230163574,0.14707349240779877,-2.375568151473999,0.048246338963508606,0.08614891767501831,-0.14134471118450165,-0.5411365032196045,-0.5528631210327148,0.42542093992233276,0.5622987747192383,0.09698975086212158,0.156097412109375,-0.370871901512146,-1.4404988288879395,-1.3539468050003052,-1.2815226316452026,1.730299711227417,1.7743632793426514,0.3321548402309418,1.9910777807235718,-2.8306009769439697,0.4379025995731354,1.0721166133880615,-0.202621191740036,0.33598482608795166,0.8168078660964966,-0.6611214876174927,-2.659576654434204,0.7106763124465942,0.10894301533699036,-0.12020054459571838,1.4805585145950317,-2.1718499660491943,1.5329867601394653,-1.3996323347091675,-0.6397160291671753,-1.9837894439697266,1.4388759136199951,0.5141054391860962,-0.8089802861213684,0.18916773796081543,0.26391085982322693,1.1453930139541626,-1.3347848653793335,-0.3288361430168152,0.8285656571388245,0.2303212583065033,1.8110034465789795,-0.36620670557022095,-0.28976792097091675,0.26556921005249023,-0.3514776825904846,-0.5415672063827515,0.21436868607997894,-0.8195593357086182,0.6316515207290649,-0.4260003864765167,0.6261792778968811,-0.40140965580940247,-0.4030134379863739,0.05860200524330139,1.1392701864242554,1.7847700119018555,2.6332356929779053,1.7195804119110107,-0.3458162248134613,-0.8347585201263428,0.07216575741767883,1.6388850212097168,1.5983458757400513,-1.3371692895889282,0.45430630445480347,-0.5312029719352722,0.17150676250457764,1.2307127714157104,-0.35746583342552185,0.1579188108444214,-0.7012556791305542,0.3166143596172333,0.2857174873352051,0.5286736488342285,-0.61197429895401,-1.0491840839385986,-2.1487362384796143,-0.7552434206008911,0.14769497513771057,0.3476884663105011,-1.3640199899673462,0.4138302505016327,0.2931952476501465,-0.9129365682601929,0.10740615427494049,-0.20377224683761597,-0.8956248760223389,0.050402432680130005,-1.8614976406097412,-1.1086368560791016,2.5079004764556885,-1.0524039268493652,1.5634392499923706,-0.7095427513122559,1.0373384952545166,0.750151515007019,0.886462926864624,0.4929546117782593,0.2576060891151428,1.0126230716705322,-1.1310774087905884,-0.5954490900039673,0.6199479103088379,-0.36336013674736023,0.21235895156860352,0.17350536584854126,-1.0624256134033203,-2.5232388973236084,0.7149333357810974,-0.3549202084541321,-1.4718152284622192,0.07471916824579239,0.09604987502098083,-1.0000288486480713,-0.2337111532688141,-0.08785222470760345,-1.9545825719833374,0.5715295076370239,0.7679281830787659,0.2016962319612503,-1.0588561296463013,0.32410502433776855,-0.31758418679237366,1.1333481073379517,0.23785167932510376,-0.21103915572166443,0.7919868230819702,-2.3482532501220703,0.34244439005851746,1.6511867046356201,-2.295647144317627,1.6782892942428589,0.33768463134765625,-0.07654178142547607,-0.6135383248329163,-0.5772121548652649,-0.3087964951992035,0.39593106508255005,0.9465674161911011,-0.09015846252441406,-1.1880054473876953,0.2016514539718628,1.402221918106079,1.12554931640625,-0.41684913635253906,0.24797692894935608,0.27500319480895996,0.6587847471237183,-1.319024682044983,0.9625157117843628,0.7618547081947327,0.46185898780822754,-2.088233470916748,-0.2964118719100952,1.1054003238677979,-0.12911942601203918,-1.4042247533798218,-0.7147217988967896,-0.7548795938491821,0.6339840292930603,0.6516534090042114,-0.6446210741996765,0.2104058861732483,0.6800646185874939,1.0782526731491089,1.0972874164581299,-0.9957063794136047,-0.4530256688594818,1.0147360563278198,-0.028124036267399788,-0.5502035021781921,-2.3161728382110596,-1.2677581310272217,0.9809117317199707,-0.6453709602355957,0.7701766490936279,0.9050079584121704,0.5750554800033569,-0.39379438757896423,-0.8297974467277527,-0.615217924118042,1.1191297769546509,-0.44889798760414124,-0.13090664148330688,-0.3950216770172119,1.9116106033325195,-1.732071042060852,1.460132122039795,-0.7392295002937317,-0.25903576612472534,-0.3127537667751312,1.6149911880493164,-0.3629884123802185,0.5918552875518799,-0.3671207129955292,-1.786475658416748,-0.9716254472732544,1.90224027633667,0.5389169454574585,0.1367982029914856,0.3751385807991028,-0.8870663642883301,-0.15549269318580627,-0.2987256944179535,-0.3850085735321045,0.19607508182525635,-0.7838999629020691 -2959,-0.1578187346458435,-0.6272832155227661,-0.7986631393432617,-1.0802946090698242,-0.8496870398521423,-0.25632309913635254,-1.240958571434021,0.44575437903404236,-0.6377072930335999,0.49311357736587524,0.10030919313430786,0.6982887387275696,-0.059234607964754105,0.061250850558280945,0.5222131013870239,-0.8248240351676941,-0.1018664762377739,1.016756296157837,-1.6195924282073975,-0.6604536175727844,-0.3657248318195343,0.9295029640197754,1.2449028491973877,0.4363916516304016,0.29131582379341125,-0.7694048881530762,-1.5105478763580322,-0.8683162927627563,0.32881098985671997,-1.3518223762512207,-0.9707722067832947,-1.5379291772842407,-0.6781175136566162,-0.35947686433792114,-0.6146290302276611,0.14707349240779877,-1.9498591423034668,0.048246338963508606,0.08614891767501831,-0.14134471118450165,-0.5411365032196045,-0.5528631210327148,0.42542093992233276,0.5622987747192383,-0.11877869069576263,0.156097412109375,-0.370871901512146,-1.4404988288879395,-1.8053447008132935,-1.2815226316452026,1.730299711227417,1.7743632793426514,0.3321548402309418,1.9910777807235718,-2.8306009769439697,0.6297383308410645,1.5088728666305542,-0.202621191740036,0.33598482608795166,0.8168078660964966,-0.915009081363678,-2.2875170707702637,0.7106763124465942,0.10894301533699036,-0.12020054459571838,1.4805585145950317,-2.1718499660491943,1.5329867601394653,-1.3996323347091675,-0.5397526621818542,-1.9837894439697266,1.4388759136199951,0.5141054391860962,-0.8089802861213684,0.4455486536026001,0.26391085982322693,1.1453930139541626,-1.3347848653793335,-0.3288361430168152,0.6436519622802734,0.2303212583065033,1.8110034465789795,0.05924266576766968,-0.28976792097091675,0.26556921005249023,-0.3514776825904846,-0.5415672063827515,0.25910618901252747,-0.8195593357086182,0.6316515207290649,-0.4260003864765167,0.6261792778968811,-0.5500787496566772,0.5549607276916504,0.05860200524330139,1.1392701864242554,1.7847700119018555,2.6332356929779053,1.7195804119110107,-0.6826766133308411,-0.8347585201263428,0.07216575741767883,1.6388850212097168,1.5983458757400513,-1.3371692895889282,0.45430630445480347,-1.001263976097107,0.17150676250457764,1.2307127714157104,-0.35746583342552185,1.4978584051132202,-0.7012556791305542,0.3166143596172333,-0.2450515627861023,0.5286736488342285,-0.61197429895401,-1.0491840839385986,-1.4637095928192139,-0.7552434206008911,0.14769497513771057,0.3476884663105011,-1.8281407356262207,0.4138302505016327,0.2931952476501465,-0.9482718706130981,0.32496556639671326,-0.20377224683761597,-0.8226600289344788,0.050402432680130005,-1.8614976406097412,-1.1086368560791016,2.5079004764556885,-1.0524039268493652,1.5634392499923706,-0.7095427513122559,0.37895750999450684,0.750151515007019,0.7952341437339783,0.4929546117782593,0.2576060891151428,0.6573529243469238,-1.1310774087905884,-0.08091968297958374,0.4583069682121277,0.4002912938594818,0.21235895156860352,0.17350536584854126,-1.0802372694015503,-2.5232388973236084,0.42472442984580994,-0.3549202084541321,-1.4718152284622192,0.07471916824579239,0.09604987502098083,-1.0000288486480713,-0.2337111532688141,-0.08785222470760345,-1.3810644149780273,0.7178717255592346,0.47489893436431885,0.2016962319612503,-1.0588561296463013,0.5965380668640137,-0.31758418679237366,1.1333481073379517,0.23785167932510376,-0.21103915572166443,0.2814330458641052,-2.3482532501220703,0.34244439005851746,2.836416721343994,-2.295647144317627,1.6782892942428589,0.33768463134765625,-0.07654178142547607,-0.6135383248329163,-0.13175749778747559,-0.3087964951992035,0.39593106508255005,0.9465674161911011,-0.09015846252441406,-1.1880054473876953,-0.13328838348388672,0.7402091026306152,1.12554931640625,-0.41684913635253906,0.6248714923858643,0.27500319480895996,0.6587847471237183,-1.319024682044983,0.5589832067489624,0.7618547081947327,0.46185898780822754,-2.448349714279175,-0.48512202501296997,1.1054003238677979,-0.776427149772644,-1.4042247533798218,-0.8700085878372192,-0.7548795938491821,0.6339840292930603,0.6516534090042114,-0.6446210741996765,0.2104058861732483,0.6800646185874939,1.405170202255249,0.8952014446258545,-0.9957063794136047,-0.4530256688594818,1.0147360563278198,-0.028124036267399788,-0.7305868268013,-2.27911376953125,-1.6621308326721191,0.9809117317199707,-0.6453709602355957,0.7701766490936279,0.9050079584121704,0.14588412642478943,-0.39379438757896423,-0.47615599632263184,-0.5028870701789856,1.1191297769546509,-0.44889798760414124,-0.13090664148330688,-0.3950216770172119,1.915352702140808,-1.732071042060852,1.460132122039795,-0.20806056261062622,-0.25903576612472534,-0.3127537667751312,1.7488477230072021,0.02897334098815918,0.5918552875518799,-0.5887606143951416,-1.786475658416748,-0.9716254472732544,1.90224027633667,0.49033740162849426,0.1367982029914856,0.3751385807991028,-0.8870663642883301,-0.8610721826553345,-0.2987256944179535,-0.3850085735321045,0.19607508182525635,-0.7838999629020691 -2960,-0.1578187346458435,-0.6382343769073486,-0.7986631393432617,-1.0802946090698242,-0.8496870398521423,-0.37888309359550476,-1.240958571434021,0.44575437903404236,-0.6377072930335999,0.49311357736587524,0.10030919313430786,0.6982887387275696,-0.02099490538239479,0.061250850558280945,0.3687131404876709,-1.0463322401046753,-0.1018664762377739,1.016756296157837,-1.6195924282073975,-0.5023948550224304,-0.49658411741256714,0.9295029640197754,1.2449028491973877,0.4363916516304016,0.29131582379341125,-0.7694048881530762,-1.2193130254745483,-0.4099293053150177,0.7265377044677734,-1.248923420906067,-0.9707722067832947,-1.5379291772842407,-0.6781175136566162,-0.35947686433792114,-0.6213980317115784,0.14707349240779877,-1.9204175472259521,0.048246338963508606,0.08614891767501831,-0.35482853651046753,-0.5411365032196045,-0.5528631210327148,0.42542093992233276,0.5622987747192383,0.2680395245552063,0.156097412109375,-0.2895190715789795,-1.4404988288879395,-1.8053447008132935,-1.2815226316452026,1.730299711227417,0.8786664605140686,0.3321548402309418,1.9753679037094116,-2.8306009769439697,0.5544658303260803,1.5088728666305542,0.18677213788032532,0.33598482608795166,0.1408180594444275,-0.915009081363678,-2.2875170707702637,0.6837669610977173,0.10894301533699036,-0.12020054459571838,1.5853201150894165,-2.1312592029571533,1.169067144393921,-1.3996323347091675,-0.5397526621818542,-1.8873933553695679,1.4388759136199951,0.5141054391860962,-0.8089802861213684,0.4455486536026001,0.15075047314167023,1.1453930139541626,-1.3347848653793335,-0.3288361430168152,0.7689130902290344,0.6673281192779541,1.8110034465789795,0.05924266576766968,-0.28976792097091675,0.26556921005249023,-0.06747594475746155,-0.5415672063827515,0.24637827277183533,-0.6804520487785339,1.1193081140518188,-0.4260003864765167,0.652948796749115,-0.5500787496566772,0.5549607276916504,0.05860200524330139,0.9277296662330627,1.7847700119018555,2.6332356929779053,1.5190707445144653,-0.6826766133308411,-1.171309232711792,-0.12167009711265564,1.304498314857483,1.5983458757400513,-1.3371692895889282,1.40391206741333,-1.001263976097107,0.17150676250457764,1.2307127714157104,-0.5284631848335266,0.9804518222808838,-0.7012556791305542,0.3166143596172333,-0.24031807482242584,-0.28373199701309204,-0.3415849208831787,-0.4817894697189331,-1.4637095928192139,-0.7552434206008911,0.14769497513771057,0.2267117202281952,-1.8281407356262207,0.4138302505016327,0.2931952476501465,-0.9482718706130981,0.32496556639671326,-0.20377224683761597,-1.0536577701568604,0.050402432680130005,-1.8614976406097412,-1.1086368560791016,2.5079004764556885,-1.0524039268493652,1.6678889989852905,-0.7095427513122559,0.37895750999450684,0.750151515007019,0.7952341437339783,0.4929546117782593,-0.019679784774780273,0.6573529243469238,-1.1310774087905884,0.11153490841388702,0.4583069682121277,0.4002912938594818,0.21235895156860352,0.17350536584854126,-1.0802372694015503,-2.7895195484161377,0.42472442984580994,-0.3549202084541321,-1.4718152284622192,0.40123435854911804,0.09604987502098083,-1.0000288486480713,-0.2337111532688141,-0.08785222470760345,-1.3810644149780273,0.7178717255592346,0.9082109332084656,0.2016962319612503,-0.23990899324417114,0.5965380668640137,-0.31758418679237366,1.1333481073379517,-0.46833550930023193,-0.5598933100700378,0.006383299827575684,-2.3482532501220703,0.34244439005851746,1.878210425376892,-2.059880018234253,1.6782892942428589,0.6742734313011169,-0.07654178142547607,-0.6135383248329163,-0.2240750789642334,-0.3087964951992035,0.39593106508255005,0.2979714274406433,-0.09015846252441406,-1.1880054473876953,-0.13328838348388672,0.7402091026306152,1.358263373374939,-0.41684913635253906,0.6248714923858643,0.27500319480895996,0.6587847471237183,-1.4039417505264282,0.9634585380554199,0.779539942741394,0.6937801837921143,-2.448349714279175,-0.48512202501296997,1.1054003238677979,-0.38525673747062683,-1.4042247533798218,-0.8700085878372192,-1.0001389980316162,0.6861640214920044,0.6516534090042114,-0.6446210741996765,0.2104058861732483,0.6800646185874939,1.405170202255249,0.8952014446258545,-0.9957063794136047,-0.9269393682479858,0.7253934144973755,-0.028124036267399788,-0.7305868268013,-2.1772327423095703,-1.56122887134552,0.7583944201469421,-0.6453709602355957,1.1060543060302734,0.1283695101737976,0.14588412642478943,-0.19843469560146332,-0.8541351556777954,-0.5028870701789856,1.1191297769546509,0.12302383780479431,-0.13090664148330688,-0.3950216770172119,1.8515007495880127,-1.7415233850479126,1.460132122039795,-0.20806056261062622,-0.25903576612472534,-0.4249679148197174,1.048279047012329,0.02897334098815918,0.5918552875518799,-0.5887606143951416,-1.786475658416748,-0.9716254472732544,1.90224027633667,0.49033740162849426,0.12416698783636093,0.3751385807991028,-1.1679794788360596,-0.8610721826553345,-0.38078439235687256,-1.1263967752456665,0.19607508182525635,-0.6711128950119019 -2961,-0.1578187346458435,-0.6382343769073486,-0.7986631393432617,-1.0802946090698242,-0.8496870398521423,-0.3033098876476288,-1.240958571434021,-0.10184964537620544,-0.6377072930335999,0.3878648281097412,0.10030919313430786,0.8318014144897461,-0.02099490538239479,0.061250850558280945,0.3687131404876709,-1.0463322401046753,-0.1018664762377739,1.016756296157837,-1.8076064586639404,-0.36273062229156494,-0.6355316042900085,1.1796795129776,1.2449028491973877,0.4363916516304016,0.29131582379341125,-0.7694048881530762,-1.2193130254745483,-0.8841837048530579,0.7265377044677734,-1.374648094177246,-0.9707722067832947,-0.5634412169456482,-0.6781175136566162,-0.35947686433792114,-0.6213980317115784,0.14707349240779877,-1.884519100189209,0.048246338963508606,0.08614891767501831,-0.02834475040435791,-0.5411365032196045,-0.5528631210327148,0.42542093992233276,0.5622987747192383,-0.3001719117164612,0.156097412109375,-0.2895190715789795,-1.5867329835891724,-1.8053447008132935,-1.2815226316452026,1.730299711227417,0.8786664605140686,0.3321548402309418,1.9753679037094116,-2.8306009769439697,0.5544658303260803,1.5088728666305542,0.18677213788032532,0.26249951124191284,0.1408180594444275,-0.915009081363678,-2.2875170707702637,0.6837669610977173,0.10894301533699036,-0.12020054459571838,1.5853201150894165,-2.192384958267212,1.7406079769134521,-1.4168773889541626,-0.5397526621818542,-1.8873933553695679,1.4388759136199951,0.5141054391860962,-0.8089802861213684,0.4455486536026001,0.15075047314167023,1.1453930139541626,-1.3347848653793335,-0.3288361430168152,0.4329972565174103,0.6673281192779541,1.8110034465789795,-0.007914923131465912,-0.2828356921672821,-0.036386966705322266,-0.06747594475746155,-0.5415672063827515,0.03202827274799347,-1.3139197826385498,1.1193081140518188,-0.4260003864765167,0.682630717754364,0.05632495880126953,0.8335881233215332,0.05860200524330139,0.9277296662330627,1.7847700119018555,2.6332356929779053,1.0335042476654053,-0.6826766133308411,-1.6136103868484497,-0.12167009711265564,1.304498314857483,1.4300004243850708,-1.3371692895889282,1.5943206548690796,-1.001263976097107,0.13686338067054749,1.2307127714157104,-0.5284631848335266,1.5719807147979736,-0.7012556791305542,0.3166143596172333,-0.24031807482242584,-0.28373199701309204,-0.3415849208831787,-0.4817894697189331,-1.4637095928192139,-0.7552434206008911,0.11197991669178009,0.2267117202281952,-1.8281407356262207,0.4138302505016327,0.2931952476501465,-0.9482718706130981,0.32496556639671326,-0.20377224683761597,-1.0536577701568604,0.050402432680130005,-1.530051350593567,-1.1086368560791016,2.6453022956848145,-1.0524039268493652,1.6678889989852905,-0.7095427513122559,0.025718092918395996,0.750151515007019,0.44197317957878113,0.4929546117782593,0.8282526135444641,1.3506606817245483,-1.097328543663025,0.11153490841388702,0.4583069682121277,0.4002912938594818,0.21235895156860352,0.048240527510643005,-1.3191416263580322,-2.7895195484161377,0.3612237572669983,-0.6182050704956055,-1.4718152284622192,0.40481820702552795,0.09604987502098083,-1.0000288486480713,0.2098681628704071,-0.08785222470760345,-1.3810644149780273,0.7178717255592346,0.9082109332084656,0.2016962319612503,-0.7540465593338013,0.7533273696899414,-0.31758418679237366,1.1333481073379517,-0.44307342171669006,-0.5598933100700378,0.006383299827575684,-2.3482532501220703,0.34244439005851746,1.878210425376892,-2.059880018234253,1.6782892942428589,0.5452947020530701,-0.07654178142547607,-0.6135383248329163,-0.2240750789642334,-0.3087964951992035,0.39593106508255005,0.45258837938308716,-0.09015846252441406,-1.1880054473876953,-0.13328838348388672,0.7402091026306152,0.9066863656044006,-0.41684913635253906,0.7721438407897949,0.049301013350486755,0.6587847471237183,-1.4039417505264282,0.7765009999275208,0.779539942741394,0.426225870847702,-2.448349714279175,-0.47726866602897644,0.7548863887786865,0.2374993860721588,-1.4042247533798218,-0.8700085878372192,-1.0001389980316162,0.6861640214920044,0.6516534090042114,-0.06156259775161743,0.2104058861732483,0.6800646185874939,1.405170202255249,1.3892414569854736,-0.6370387077331543,-0.9269393682479858,0.7253934144973755,0.08246178925037384,-0.7305868268013,-2.8526625633239746,-1.5676096677780151,1.1407430171966553,-0.37691566348075867,1.1149532794952393,0.5503556728363037,0.26751500368118286,-0.19843469560146332,-0.8541351556777954,-0.5028870701789856,1.1059120893478394,-0.36356109380722046,-0.13090664148330688,-0.3950216770172119,1.8515007495880127,-1.7415233850479126,1.460132122039795,-0.6298295855522156,-0.25903576612472534,-0.4249679148197174,1.048279047012329,0.02897334098815918,0.5918552875518799,-0.5887606143951416,-1.786475658416748,-0.9716254472732544,1.90224027633667,0.606370210647583,0.12416698783636093,0.3751385807991028,-0.9712190628051758,-0.8610721826553345,-0.38078439235687256,-0.7238751649856567,0.19607508182525635,-2.1713762283325195 -2962,0.11197096109390259,-0.6382343769073486,-0.7986631393432617,-1.0802946090698242,-0.8496870398521423,-0.10710088908672333,-1.574853777885437,-0.10184964537620544,-0.6377072930335999,0.3878648281097412,0.10030919313430786,0.8318014144897461,-0.1412256807088852,0.061250850558280945,0.3687131404876709,-1.201499104499817,-0.1018664762377739,1.016756296157837,-1.8076064586639404,-0.36273062229156494,-0.6355316042900085,0.8901419639587402,1.2449028491973877,0.4363916516304016,0.29131582379341125,-0.7694048881530762,-1.2193130254745483,-0.8841837048530579,0.7265377044677734,-1.374648094177246,-0.9707722067832947,-0.3594791293144226,-0.6781175136566162,-0.1772354692220688,-0.6213980317115784,-0.4550086259841919,-1.884519100189209,0.048246338963508606,0.08614891767501831,-0.36579081416130066,-0.5035792589187622,-0.49338406324386597,0.42542093992233276,1.1301519870758057,0.2419160008430481,0.2232186198234558,-0.380552738904953,-1.01279616355896,-1.8053447008132935,-1.2815226316452026,1.730299711227417,0.8786664605140686,0.3321548402309418,2.097346305847168,-2.8306009769439697,0.5544658303260803,1.5088728666305542,0.18677213788032532,0.26249951124191284,0.1408180594444275,-0.915009081363678,-2.1462392807006836,0.15179544687271118,0.10894301533699036,-0.12020054459571838,1.5853201150894165,-2.192384958267212,1.7406079769134521,-1.4168773889541626,-0.5397526621818542,-1.8873933553695679,1.4388759136199951,0.5141054391860962,-0.7816372513771057,0.6229287385940552,0.15075047314167023,1.1453930139541626,-1.4703330993652344,-0.23075370490550995,0.33237284421920776,0.43779894709587097,1.8110034465789795,-0.007914923131465912,-0.2828356921672821,-0.026568284258246422,-0.06747594475746155,-0.5415672063827515,0.03202827274799347,-1.3139197826385498,1.1193081140518188,-0.2723889648914337,-0.7060195803642273,-1.059514045715332,0.8335881233215332,0.05860200524330139,0.9277296662330627,1.7847700119018555,2.6332356929779053,1.0335042476654053,-0.6826766133308411,-1.6136103868484497,-0.19159409403800964,1.304498314857483,1.4300004243850708,-1.3371692895889282,1.5943206548690796,-1.001263976097107,0.13686338067054749,1.2307127714157104,-0.5284631848335266,1.5719807147979736,-0.7012556791305542,0.3166143596172333,-0.24031807482242584,-0.6959513425827026,-0.40611252188682556,-0.4817894697189331,-1.8098822832107544,-0.7552434206008911,-0.5850428938865662,-0.5253959894180298,-1.8281407356262207,0.05055403709411621,0.2931952476501465,-0.579922080039978,0.32496556639671326,0.26740190386772156,-1.0536577701568604,0.021466782316565514,-1.530051350593567,-1.1086368560791016,2.6453022956848145,-0.8930299878120422,1.5971918106079102,-0.7095427513122559,0.025718092918395996,-0.10289961099624634,0.44197317957878113,0.4929546117782593,0.8282526135444641,0.9251857995986938,-1.097328543663025,0.1636842042207718,0.4583069682121277,0.4002912938594818,0.21235895156860352,0.2722929120063782,-1.3191416263580322,-2.7895195484161377,0.3612237572669983,-0.6182050704956055,-1.4718152284622192,0.40481820702552795,0.30582118034362793,-0.36358481645584106,0.2098681628704071,-0.2993260622024536,-1.6484414339065552,0.7178717255592346,1.025667667388916,0.2016962319612503,-0.8266146779060364,0.7533273696899414,-0.31758418679237366,1.1333481073379517,-1.5542441606521606,-0.18963947892189026,0.006383299827575684,-2.3482532501220703,0.34244439005851746,2.3127458095550537,-2.059880018234253,1.7079108953475952,0.5452947020530701,-0.07654178142547607,-0.731615424156189,-0.2240750789642334,-0.3087964951992035,0.39593106508255005,0.07623335719108582,-0.09015846252441406,-1.1880054473876953,-0.13328838348388672,0.7402091026306152,-0.5030105710029602,0.1489475965499878,0.7721438407897949,-1.171337604522705,0.38530096411705017,-0.5623245239257812,0.7765009999275208,0.779539942741394,0.426225870847702,-2.448349714279175,-0.47726866602897644,0.7548863887786865,-0.46927472949028015,-1.4042247533798218,-0.8700085878372192,-1.0001389980316162,0.6861640214920044,0.6516534090042114,0.13432568311691284,0.2104058861732483,1.1893103122711182,1.405170202255249,1.3892414569854736,-0.6370387077331543,-0.9269393682479858,1.0196123123168945,-0.1123914122581482,-0.7305868268013,-2.8526625633239746,-1.5676096677780151,1.7429940700531006,-0.37691566348075867,1.1149532794952393,0.5285195112228394,0.26751500368118286,-0.40465694665908813,-1.3592618703842163,0.007580578327178955,1.1059120893478394,-0.36356109380722046,-0.13090664148330688,-0.0638798177242279,1.8515007495880127,-1.5470366477966309,0.4881674647331238,-0.50527423620224,-0.25903576612472534,-0.5317164659500122,1.0106346607208252,0.3248694837093353,0.5918552875518799,-1.0260592699050903,-1.786475658416748,-0.9716254472732544,2.011145830154419,0.606370210647583,-0.5384745001792908,0.3751385807991028,-0.9712190628051758,-0.8610721826553345,-0.38078439235687256,-0.7238751649856567,0.19607508182525635,-2.1713762283325195 -2963,0.11197096109390259,-0.6382343769073486,-0.7986631393432617,-1.0802946090698242,-0.8496870398521423,-0.5028466582298279,-1.586871862411499,-0.10979767143726349,-0.054479360580444336,0.5924937129020691,0.10030919313430786,0.975794792175293,0.09479382634162903,0.2951282262802124,0.3687131404876709,-1.201499104499817,-0.1018664762377739,1.016756296157837,-1.8076064586639404,-0.36273062229156494,-0.6355316042900085,1.151865005493164,0.2707623839378357,0.4363916516304016,0.29131582379341125,-0.7694048881530762,-1.2193130254745483,-0.8841837048530579,0.7265377044677734,-1.374648094177246,-0.9707722067832947,-0.6043518781661987,-0.6501753926277161,-0.4225342273712158,-0.6213980317115784,-0.4550086259841919,-1.8991823196411133,-0.1584644913673401,1.0663321018218994,-0.36579081416130066,-0.5035792589187622,-0.34803956747055054,0.42542093992233276,1.1301519870758057,0.2830989956855774,0.2232186198234558,-0.380552738904953,-1.01279616355896,-1.820916771888733,-1.2815226316452026,1.614672303199768,1.0099560022354126,0.6402859091758728,2.097346305847168,-2.8306009769439697,0.6467716097831726,1.5088728666305542,0.18677213788032532,0.26249951124191284,0.1408180594444275,-0.8379764556884766,-2.1462392807006836,0.005889862775802612,0.10894301533699036,-0.12020054459571838,1.5853201150894165,-2.192384958267212,1.6327135562896729,-1.1910552978515625,-0.5397526621818542,-1.932149887084961,1.4388759136199951,0.5141054391860962,-0.7816372513771057,0.6229287385940552,0.15075047314167023,1.503594160079956,-1.5929431915283203,-0.23075370490550995,0.47295111417770386,0.43779894709587097,1.2226972579956055,-0.007914923131465912,-0.4991092085838318,-0.15187177062034607,-0.06747594475746155,-0.5415672063827515,0.03202827274799347,-0.597522497177124,1.1193081140518188,-0.2723889648914337,-0.7060195803642273,-1.059514045715332,0.8335881233215332,0.05860200524330139,0.9277296662330627,1.7847700119018555,2.6332356929779053,1.022912859916687,-0.6826766133308411,-1.6136103868484497,-0.33453550934791565,1.304498314857483,1.4300004243850708,-1.3371692895889282,1.5943206548690796,-0.38686949014663696,-0.13634806871414185,1.2307127714157104,-0.5284631848335266,1.015069842338562,-0.7012556791305542,0.3166143596172333,0.06324248015880585,-0.4859582781791687,-0.40611252188682556,-0.4817894697189331,-1.8098822832107544,-0.7552434206008911,-1.2280898094177246,-0.30998820066452026,-1.8281407356262207,0.7669212818145752,0.2931952476501465,-0.369736909866333,0.1073954701423645,0.26740190386772156,-1.0536577701568604,0.021466782316565514,-1.3346574306488037,-0.22590237855911255,2.63015079498291,-1.1654657125473022,1.5971918106079102,-0.7095427513122559,-0.4044061005115509,0.7298160195350647,1.0784657001495361,0.4929546117782593,0.8282526135444641,0.9251857995986938,-1.097328543663025,0.1636842042207718,0.3899630308151245,0.4002912938594818,0.21235895156860352,0.2722929120063782,-1.3191416263580322,-2.2737226486206055,0.3612237572669983,-0.6182050704956055,-1.4718152284622192,0.40481820702552795,0.30582118034362793,-1.2093172073364258,0.003342956304550171,-0.2993260622024536,-1.5663580894470215,0.9457257986068726,0.7194780111312866,0.2016962319612503,-0.8266146779060364,0.7533273696899414,-0.31758418679237366,1.1333481073379517,-0.5354773998260498,0.2756885290145874,0.006383299827575684,-2.3482532501220703,0.7254714965820312,2.3127458095550537,-2.059880018234253,0.8179940581321716,0.5452947020530701,-0.07654178142547607,-0.731615424156189,-0.2240750789642334,-0.228727325797081,0.39593106508255005,0.07623335719108582,-0.06610582768917084,-1.1880054473876953,-0.13328838348388672,0.7696071267127991,-0.5030105710029602,0.1489475965499878,0.7721438407897949,-1.171337604522705,0.7838194370269775,-0.5623245239257812,0.8196241855621338,0.779539942741394,-0.24629411101341248,-1.949686050415039,-0.47726866602897644,0.7548863887786865,-0.5921712517738342,-1.4042247533798218,-0.8700085878372192,-1.0001389980316162,0.6861640214920044,0.6516534090042114,0.13432568311691284,0.2104058861732483,0.6044291853904724,1.405170202255249,1.3892414569854736,-0.6810266971588135,-0.9269393682479858,1.0196123123168945,0.39729464054107666,-0.7305868268013,-1.9448323249816895,-1.3045480251312256,1.7429940700531006,-0.000239640474319458,1.1149532794952393,0.5285195112228394,0.26751500368118286,0.5288264751434326,-1.3592618703842163,0.007580578327178955,1.1059120893478394,-0.19439440965652466,-0.13090664148330688,-0.0638798177242279,1.8515007495880127,-2.149167537689209,0.44881969690322876,-0.50527423620224,-0.25903576612472534,-0.5317164659500122,1.0106346607208252,0.3248694837093353,0.5918552875518799,-0.8624367117881775,-1.786475658416748,-0.9716254472732544,2.011145830154419,0.606370210647583,-0.5384745001792908,0.3751385807991028,-0.9712190628051758,-0.8610721826553345,-0.5844801068305969,-0.572425127029419,0.19607508182525635,-1.4660621881484985 -2964,0.10888353735208511,-0.5840353965759277,-0.7986631393432617,-1.0802946090698242,-0.5554125308990479,-0.5028466582298279,-1.586871862411499,-0.10979767143726349,-0.054479360580444336,0.7548620104789734,-0.3560263514518738,0.3214588761329651,0.2530616521835327,0.2951282262802124,0.3687131404876709,-1.201499104499817,-0.10257571190595627,0.9689085483551025,-1.6349581480026245,-0.36273062229156494,-0.6355316042900085,1.151865005493164,0.2707623839378357,0.4363916516304016,0.29131582379341125,-0.7694048881530762,-1.2193130254745483,-1.2006075382232666,0.2637847065925598,-1.374648094177246,-0.9707722067832947,-0.6043518781661987,-0.6501753926277161,-0.4225342273712158,-0.8635303974151611,-0.4550086259841919,-1.853380560874939,-0.18007826805114746,1.0663321018218994,-0.36579081416130066,-0.5035792589187622,-0.34803956747055054,0.23703643679618835,1.1561866998672485,0.2830989956855774,0.2232186198234558,-0.380552738904953,-1.01279616355896,-1.7882684469223022,-1.2815226316452026,1.5188045501708984,1.0099560022354126,0.5940377116203308,2.097346305847168,-2.8306009769439697,0.6467716097831726,1.0579731464385986,0.18677213788032532,0.26249951124191284,0.1408180594444275,-0.8379764556884766,-2.1462392807006836,0.005889862775802612,0.10894301533699036,-0.12020054459571838,1.5853201150894165,-2.192384958267212,1.6327135562896729,-1.1910552978515625,-0.5397526621818542,-1.932149887084961,2.5640838146209717,0.5141054391860962,-0.7816372513771057,0.6229287385940552,0.4885110855102539,1.503594160079956,-1.5929431915283203,-0.23075370490550995,0.47295111417770386,0.7782425880432129,1.352674961090088,-0.007914923131465912,-0.29050713777542114,-0.15187177062034607,-0.06747594475746155,0.8492465019226074,0.03202827274799347,-0.597522497177124,1.3738549947738647,-0.2723889648914337,-0.7060195803642273,-1.059514045715332,0.8098644614219666,-0.30279597640037537,0.5787034034729004,1.7847700119018555,2.9572641849517822,1.022912859916687,-0.6826766133308411,-1.6136103868484497,-0.5630871057510376,1.304498314857483,1.4300004243850708,-0.9296354055404663,1.5943206548690796,-0.38686949014663696,-0.13634806871414185,1.5852245092391968,-0.4953705072402954,1.015069842338562,-0.7012556791305542,0.3166143596172333,0.06324248015880585,-0.4859582781791687,-0.40611252188682556,-0.4817894697189331,-1.8098822832107544,-0.7204850316047668,-1.2280898094177246,-0.30998820066452026,-2.3035688400268555,0.7669212818145752,0.2931952476501465,-0.369736909866333,-0.3386364281177521,0.26740190386772156,-1.0536577701568604,0.021466782316565514,-0.9174240827560425,-0.1923726201057434,2.7420451641082764,-1.328906774520874,1.5971918106079102,-0.7095427513122559,-0.4044061005115509,0.7298160195350647,1.0784657001495361,0.4929546117782593,0.8282526135444641,0.5846235752105713,-1.097328543663025,0.1636842042207718,0.3899630308151245,0.4002912938594818,0.21235895156860352,-0.8708937764167786,-1.3191416263580322,-1.7141185998916626,0.3612237572669983,-0.5904086232185364,-1.4718152284622192,0.40481820702552795,0.30582118034362793,-1.2093172073364258,0.003342956304550171,-0.2993260622024536,-0.9676827788352966,0.9457257986068726,0.7194780111312866,0.2016962319612503,-1.0429518222808838,0.2923932373523712,-0.31758418679237366,1.1333481073379517,-0.46175599098205566,0.2756885290145874,0.756470799446106,-3.018946409225464,0.7254714965820312,2.3127458095550537,-2.059880018234253,1.5687177181243896,0.5452947020530701,-0.04629816114902496,-0.34536075592041016,-0.2240750789642334,-0.2503899931907654,0.39593106508255005,0.07623335719108582,-0.06610582768917084,-0.6478780508041382,0.28478869795799255,0.7696071267127991,-0.888788104057312,0.8461993932723999,0.7721438407897949,-1.171337604522705,0.7838194370269775,-0.5623245239257812,0.8196241855621338,0.779539942741394,-0.24629411101341248,-1.949686050415039,-0.811657190322876,0.7548863887786865,-0.5921712517738342,-1.4042247533798218,-0.8700085878372192,-0.36751872301101685,0.9965708255767822,1.0270270109176636,0.13432568311691284,-0.2739664912223816,0.6044291853904724,1.405170202255249,1.3892414569854736,-0.6810266971588135,-1.4216920137405396,-0.16689705848693848,-0.0023768246173858643,-0.7305868268013,-1.9448323249816895,-1.3045480251312256,1.7429940700531006,-0.000239640474319458,1.337504267692566,-0.14919513463974,0.26751500368118286,0.5288264751434326,-1.3592618703842163,0.007580578327178955,1.1059120893478394,-0.7843213081359863,-0.13090664148330688,-0.0638798177242279,1.8515007495880127,-2.149167537689209,0.44881969690322876,-0.5376226305961609,-0.25903576612472534,-0.7173123359680176,1.3747904300689697,0.3248694837093353,0.5918552875518799,-0.8624367117881775,-1.786475658416748,-0.9716254472732544,2.011145830154419,1.2806267738342285,-0.5384745001792908,0.3751385807991028,-0.9712190628051758,-0.8610721826553345,-0.7131128311157227,-0.572425127029419,0.19607508182525635,-0.7658401727676392 -2965,-0.45362213253974915,-0.5840353965759277,-0.7986631393432617,-1.0802946090698242,-0.05364173650741577,-0.46733641624450684,-0.9531462788581848,-0.10979767143726349,-0.054479360580444336,0.7548620104789734,-0.3560263514518738,-0.11504495143890381,0.2530616521835327,0.2951282262802124,0.1574709415435791,-1.201499104499817,-0.10257571190595627,0.9689085483551025,-1.4836668968200684,-0.36273062229156494,-0.6355316042900085,1.151865005493164,0.8860317468643188,0.4363916516304016,0.29131582379341125,-0.5804188251495361,-1.2895150184631348,-1.2006075382232666,0.2637847065925598,-1.374648094177246,-0.8882012963294983,-0.6043518781661987,-0.6501753926277161,-0.4225342273712158,-0.8635303974151611,0.3729766607284546,-1.853380560874939,-0.18007826805114746,0.49808192253112793,-0.36579081416130066,-0.812696099281311,-0.34803956747055054,0.10917817056179047,1.1561866998672485,0.2830989956855774,0.2232186198234558,-0.380552738904953,-1.01279616355896,-1.7882684469223022,-1.2815226316452026,1.5188045501708984,1.0099560022354126,0.49135538935661316,2.097346305847168,-2.8306009769439697,0.6467716097831726,1.1472541093826294,0.18677213788032532,0.26249951124191284,0.9118995666503906,-0.8379764556884766,-2.1462392807006836,0.005889862775802612,0.10894301533699036,-0.12020054459571838,1.5853201150894165,-2.192384958267212,1.6327135562896729,-1.1910552978515625,-0.5397526621818542,-1.932149887084961,2.5640838146209717,0.5141054391860962,-1.1909886598587036,0.6229287385940552,0.6881230473518372,1.5229589939117432,-1.574256181716919,-0.23075370490550995,0.6200531721115112,0.4449947476387024,1.352674961090088,-0.007914923131465912,-0.46005526185035706,-0.15187177062034607,-0.06747594475746155,0.8492465019226074,0.0776425153017044,-0.597522497177124,1.0994763374328613,0.21839898824691772,-0.2172410488128662,-1.059514045715332,0.8098644614219666,-0.30279597640037537,0.5787034034729004,1.7847700119018555,2.9572641849517822,1.022912859916687,-0.8948527574539185,-1.6136103868484497,-0.5630871057510376,1.304498314857483,1.4300004243850708,-0.9296354055404663,1.5283660888671875,-0.38686949014663696,-0.13634806871414185,1.5852245092391968,-0.4953705072402954,1.015069842338562,-0.9251613616943359,0.3166143596172333,0.06324248015880585,-0.4859582781791687,-0.18607617914676666,-0.4817894697189331,-1.5499743223190308,-0.7204850316047668,-0.9142456650733948,-0.30998820066452026,-2.481546401977539,0.30404403805732727,0.2931952476501465,-0.369736909866333,-0.40092894434928894,0.26740190386772156,-0.7372543811798096,0.021466782316565514,-0.9174240827560425,-0.1258361041545868,2.7420451641082764,-1.328906774520874,1.5971918106079102,-0.7095427513122559,-0.4044061005115509,0.7298160195350647,1.0784657001495361,0.4929546117782593,-0.11669248342514038,0.5846235752105713,-1.097328543663025,0.1636842042207718,0.3899630308151245,0.4905150532722473,0.21235895156860352,-0.8708937764167786,-1.3191416263580322,-1.7141185998916626,-0.023277372121810913,-0.28174951672554016,-1.0941691398620605,0.40481820702552795,0.30582118034362793,-1.2093172073364258,0.5332933664321899,-0.2993260622024536,-0.9676827788352966,0.9457257986068726,0.4973437786102295,0.2016962319612503,-1.3042235374450684,0.2923932373523712,-0.31758418679237366,1.1333481073379517,-0.46175599098205566,0.2756885290145874,0.3883163034915924,-3.1985924243927,0.5527279376983643,1.904371976852417,-2.059880018234253,1.5687177181243896,0.5452947020530701,-0.04629816114902496,-0.34536075592041016,-0.2240750789642334,-0.9599295258522034,0.39593106508255005,0.07623335719108582,0.24955473840236664,-0.8617252707481384,0.28478869795799255,0.7696071267127991,-0.888788104057312,0.8461993932723999,0.7721438407897949,-1.171337604522705,0.7838194370269775,-0.5623245239257812,0.9024146199226379,0.7411075830459595,-0.24629411101341248,-1.949686050415039,0.46928083896636963,0.7548863887786865,-0.5921712517738342,-1.4042247533798218,-0.8700085878372192,-0.8686110377311707,0.9965708255767822,1.060057520866394,0.13432568311691284,-0.2739664912223816,0.6044291853904724,1.405170202255249,1.274458408355713,-0.6014254093170166,-1.4216920137405396,-0.16689705848693848,-0.0023768246173858643,-0.7305868268013,-1.9448323249816895,-1.3045480251312256,1.7429940700531006,-0.11844827979803085,1.337504267692566,-0.14919513463974,0.2217722237110138,0.5288264751434326,-1.2780464887619019,0.387313574552536,0.7755454778671265,-0.6056989431381226,-0.13090664148330688,-0.0638798177242279,1.8515007495880127,-2.149167537689209,0.8428326845169067,-0.5376226305961609,-0.25903576612472534,-0.7173123359680176,1.3747904300689697,0.3248694837093353,0.8286654949188232,-0.8624367117881775,-1.786475658416748,-0.9716254472732544,2.011145830154419,1.2865099906921387,-0.5384745001792908,0.44430845975875854,-0.9712190628051758,-1.1088495254516602,-0.47812241315841675,-0.5099691152572632,0.7057656645774841,-0.36486342549324036 -2966,-0.6312443017959595,-0.5840353965759277,-0.7986631393432617,-1.0802946090698242,-0.07516707479953766,-0.4856889843940735,-0.9531462788581848,-0.10979767143726349,0.3874717652797699,0.7548620104789734,-0.3560263514518738,-0.11504495143890381,0.2530616521835327,0.2951282262802124,-0.26270025968551636,-1.344609260559082,-0.10257571190595627,0.9689085483551025,-1.4836668968200684,-0.01933521032333374,-0.30417707562446594,0.9451937079429626,1.2350668907165527,0.41808250546455383,0.29131582379341125,-0.5804188251495361,-1.2895150184631348,-0.7040899991989136,0.2637847065925598,-1.374648094177246,-0.8495228886604309,-0.6043518781661987,-0.6501753926277161,-0.13029664754867554,-0.8635303974151611,0.3729766607284546,-1.853380560874939,-0.18007826805114746,0.49808192253112793,-0.36579081416130066,-0.812696099281311,-0.34803956747055054,0.10917817056179047,1.1561866998672485,-0.17180433869361877,0.2232186198234558,-0.380552738904953,-1.01279616355896,-1.7882684469223022,-1.2815226316452026,1.4939435720443726,1.316044569015503,0.21891942620277405,2.097346305847168,-2.8306009769439697,0.6467716097831726,1.3715916872024536,0.18677213788032532,0.26249951124191284,0.927046537399292,-0.7077850699424744,-2.1462392807006836,0.005889862775802612,0.10894301533699036,-0.12020054459571838,1.7717751264572144,-2.192384958267212,1.6327135562896729,-1.469522476196289,-0.970568060874939,-2.0821094512939453,2.5640838146209717,0.5141054391860962,-1.1909886598587036,0.6229287385940552,0.6881230473518372,1.499640703201294,-1.574256181716919,-0.23075370490550995,0.4492591619491577,0.4449947476387024,1.352674961090088,-0.43462324142456055,-0.3991904556751251,0.21867159008979797,-0.3649052083492279,0.8492465019226074,0.0776425153017044,-0.597522497177124,1.0994763374328613,0.21839898824691772,-0.2172410488128662,-1.059514045715332,0.2911674976348877,-0.30279597640037537,0.5787034034729004,1.7847700119018555,2.9572641849517822,1.1858718395233154,-1.2467612028121948,-0.5503908395767212,-0.5630871057510376,1.304498314857483,1.5999226570129395,-0.9296354055404663,2.0149710178375244,-0.38686949014663696,-0.13634806871414185,1.5852245092391968,-0.4953705072402954,1.015069842338562,-1.1474206447601318,0.3166143596172333,-0.17128153145313263,-0.493110716342926,-0.18607617914676666,-0.4817894697189331,-1.5499743223190308,-0.30930623412132263,-0.9142456650733948,-0.30998820066452026,-2.351905345916748,0.30404403805732727,0.2931952476501465,-0.369736909866333,-0.40092894434928894,-0.11262786388397217,-0.7372543811798096,0.021466782316565514,-0.9174240827560425,-0.7341076135635376,2.3275258541107178,-1.3349963426589966,1.5971918106079102,-0.7095427513122559,-0.4044061005115509,0.7298160195350647,1.0784657001495361,0.4929546117782593,-0.8279212117195129,0.5846235752105713,-1.097328543663025,0.1636842042207718,0.3899630308151245,0.5553611516952515,0.21235895156860352,-0.8708937764167786,-0.9838773012161255,-1.9229981899261475,-0.023277372121810913,-0.5234065055847168,-1.0941691398620605,0.18325947225093842,0.30582118034362793,-1.2093172073364258,0.5332933664321899,-0.2993260622024536,-0.41317135095596313,0.9457257986068726,0.8253273963928223,0.08356152474880219,-1.3042235374450684,0.2923932373523712,-0.14649809896945953,1.1333481073379517,-0.23566041886806488,-0.12300801277160645,0.3883163034915924,-3.2907063961029053,0.5527279376983643,1.904371976852417,-2.059880018234253,1.0737810134887695,0.5452947020530701,-0.10165716707706451,-0.34536075592041016,-0.2240750789642334,-1.4518797397613525,0.39593106508255005,0.13576862215995789,0.24955473840236664,-0.8617252707481384,0.28478869795799255,0.7696071267127991,-0.888788104057312,0.8461993932723999,0.7721438407897949,-1.171337604522705,0.7838194370269775,-0.013283133506774902,0.9024146199226379,0.7411075830459595,-0.24629411101341248,-1.4915772676467896,0.46928083896636963,0.7548863887786865,-0.5631417036056519,-1.4042247533798218,-0.8700085878372192,-0.4837370812892914,0.7465528249740601,1.060057520866394,0.13432568311691284,-0.2739664912223816,0.6044291853904724,1.405170202255249,1.388992190361023,-0.5281563997268677,-1.4216920137405396,0.5195451974868774,0.456148236989975,-1.042694330215454,-1.9448323249816895,-1.3045480251312256,1.7429940700531006,-0.11844827979803085,1.3294405937194824,-0.14919513463974,0.2217722237110138,-0.14515483379364014,-1.2780464887619019,0.387313574552536,1.0560712814331055,-0.6056989431381226,-0.13090664148330688,-0.0638798177242279,1.8515007495880127,-2.149167537689209,1.4239139556884766,-0.5376226305961609,-0.9418985843658447,-0.11544829607009888,1.3747904300689697,0.0958952009677887,0.705910325050354,-0.8624367117881775,-1.786475658416748,-0.1231851577758789,2.011145830154419,1.2865099906921387,-0.5384745001792908,0.5293334722518921,-0.9712190628051758,-1.1088495254516602,-0.47812241315841675,-0.5099691152572632,0.11392098665237427,-0.9467840194702148 -2967,-0.5634458661079407,-0.5840353965759277,-0.7986631393432617,-1.0802946090698242,0.0417591854929924,-0.4856889843940735,-1.2171261310577393,-0.10979767143726349,0.3874717652797699,0.7548620104789734,-0.3560263514518738,-0.11504495143890381,0.2530616521835327,0.6391258835792542,0.26807695627212524,-0.993911862373352,-0.10257571190595627,0.6724480390548706,-1.4836668968200684,-0.01933521032333374,-0.25997889041900635,0.9451937079429626,1.2350668907165527,0.2002040147781372,0.29131582379341125,-0.2933371663093567,-1.2895150184631348,-0.7040899991989136,0.2637847065925598,-1.0318706035614014,-0.8495228886604309,-0.6923812627792358,-0.6501753926277161,-0.13029664754867554,-0.8635303974151611,0.3729766607284546,-2.1870474815368652,-0.18007826805114746,0.4598214030265808,0.07694754004478455,-0.7368440628051758,-0.5957314372062683,0.10917817056179047,1.1561866998672485,-0.17180433869361877,0.2232186198234558,-0.380552738904953,-1.3320566415786743,-1.6935369968414307,-1.579045295715332,1.4939435720443726,1.316044569015503,0.21891942620277405,2.097346305847168,-2.8306009769439697,0.6467716097831726,0.9300369024276733,0.18677213788032532,0.018310412764549255,0.927046537399292,-0.7077850699424744,-1.8389520645141602,0.005889862775802612,0.10894301533699036,-0.12020054459571838,1.7717751264572144,-1.6706969738006592,1.6463291645050049,-1.469522476196289,-0.970568060874939,-2.0821094512939453,2.5640838146209717,0.7635535597801208,-1.1909886598587036,0.6229287385940552,0.6881230473518372,1.2907813787460327,-1.5334839820861816,-0.23075370490550995,0.4492591619491577,0.4449947476387024,1.352674961090088,-0.5189648866653442,-0.3991904556751251,-0.04084011912345886,-0.3649052083492279,0.23191672563552856,0.0776425153017044,-0.597522497177124,1.0123393535614014,0.21839898824691772,-0.2172410488128662,-1.059514045715332,-0.2472829818725586,-0.30279597640037537,0.8252699971199036,1.7847700119018555,2.9572641849517822,1.1858718395233154,-1.2467612028121948,-0.5503908395767212,-0.5630871057510376,1.3778979778289795,1.1270384788513184,-0.9296354055404663,2.0149710178375244,-0.38686949014663696,-0.13634806871414185,1.5852245092391968,-0.8227417469024658,1.015069842338562,-1.1474206447601318,0.3166143596172333,-0.17128153145313263,-0.493110716342926,-0.12881061434745789,-0.5999230742454529,-1.5499743223190308,-0.30930623412132263,-0.9142456650733948,-0.46783924102783203,-1.2180455923080444,0.08194015920162201,0.2931952476501465,-0.369736909866333,-0.17378883063793182,-0.11262786388397217,-0.7372543811798096,-0.08281771838665009,-1.1708979606628418,-0.7967231273651123,2.255465030670166,-1.3349963426589966,1.5971918106079102,-0.17520582675933838,-0.4044061005115509,0.7298160195350647,1.0784657001495361,0.4929546117782593,-1.010416030883789,1.1728205680847168,-1.097328543663025,-1.054686427116394,0.3899630308151245,0.5553611516952515,0.21235895156860352,-0.8708937764167786,-0.9838773012161255,-1.9229981899261475,-0.023277372121810913,-0.25914448499679565,-1.5272860527038574,0.18325947225093842,0.30582118034362793,-1.2093172073364258,1.0984647274017334,-0.2993260622024536,-0.41317135095596313,0.9457257986068726,0.551868736743927,-0.3700990676879883,-1.0796189308166504,0.2923932373523712,-0.14649809896945953,1.1688910722732544,-0.23566041886806488,-0.12300801277160645,0.3883163034915924,-2.789578437805176,0.5527279376983643,1.904371976852417,-2.059880018234253,0.6114497184753418,0.5452947020530701,-0.10165716707706451,-0.34536075592041016,-0.2240750789642334,-1.4518797397613525,0.39593106508255005,0.13576862215995789,0.6030399203300476,-2.131639003753662,0.28478869795799255,0.7696071267127991,-0.888788104057312,0.8461993932723999,0.7721438407897949,-1.1407573223114014,0.7838194370269775,-0.013283133506774902,0.9024146199226379,0.7411075830459595,-0.24629411101341248,-1.4915772676467896,0.3256509304046631,0.7548863887786865,-0.3068836033344269,-1.4042247533798218,-0.33848005533218384,-0.4837370812892914,0.7465528249740601,0.6821417808532715,0.7209542989730835,-0.24123522639274597,0.6044291853904724,1.405170202255249,0.9171711206436157,-0.5281563997268677,-1.3848356008529663,0.5195451974868774,0.456148236989975,-1.042694330215454,-1.9448323249816895,-1.3045480251312256,1.7429940700531006,0.3682688772678375,1.1160463094711304,-0.14919513463974,0.2217722237110138,-0.14515483379364014,-1.2780464887619019,0.387313574552536,1.0560712814331055,-0.6056989431381226,-0.13090664148330688,-0.0638798177242279,1.8515007495880127,-2.149167537689209,1.4239139556884766,-0.5376226305961609,-0.9418985843658447,-0.11544829607009888,1.3747904300689697,0.0958952009677887,0.705910325050354,-1.5850658416748047,-1.786475658416748,-0.8307521939277649,1.6486707925796509,1.2865099906921387,-0.5384745001792908,0.5293334722518921,-0.9025858640670776,-1.0280916690826416,-0.47812241315841675,-0.5099691152572632,0.11392098665237427,-1.1105740070343018 -2968,-0.5634458661079407,-0.20884442329406738,-0.7986631393432617,-1.0802946090698242,0.0417591854929924,-0.4856889843940735,-1.825872540473938,-0.1707778424024582,0.3874717652797699,0.7548620104789734,-0.3738839626312256,-0.11504495143890381,0.2530616521835327,0.6391258835792542,0.26807695627212524,-0.993911862373352,-0.10257571190595627,0.6724480390548706,-1.999772310256958,-0.01933521032333374,-0.2968430519104004,1.2536472082138062,1.2350668907165527,0.2002040147781372,0.00619468092918396,-0.41704097390174866,-1.2400394678115845,-1.2150673866271973,0.2637847065925598,-1.1327950954437256,-0.8495228886604309,-0.6923812627792358,-0.8959038853645325,0.02066570520401001,-1.220047116279602,0.3729766607284546,-2.1870474815368652,-0.18007826805114746,0.4598214030265808,0.07694754004478455,-0.7368440628051758,-0.5957314372062683,0.10917817056179047,1.1561866998672485,-0.17180433869361877,0.2232186198234558,-0.380552738904953,-1.437736988067627,-1.6935369968414307,-1.579045295715332,1.5902000665664673,1.316044569015503,0.21891942620277405,2.097346305847168,-2.8306009769439697,0.6467716097831726,0.9300369024276733,0.18677213788032532,0.018310412764549255,1.2887924909591675,-0.7077850699424744,-1.736098051071167,-0.49544891715049744,0.10894301533699036,-0.12020054459571838,1.7717751264572144,-1.8697246313095093,1.6335227489471436,-1.469522476196289,-0.970568060874939,-2.0821094512939453,2.222275733947754,0.7635535597801208,-1.0631860494613647,0.6229287385940552,0.6881230473518372,1.2907813787460327,-1.5221322774887085,-0.23075370490550995,0.4492591619491577,0.4449947476387024,1.352674961090088,-0.5189648866653442,-0.6634638905525208,-0.04084011912345886,-0.3649052083492279,0.23191672563552856,0.0776425153017044,-0.597522497177124,1.0123393535614014,0.23303048312664032,0.2924356460571289,-0.5324700474739075,-0.2472829818725586,-0.30279597640037537,0.8252699971199036,1.7847700119018555,2.9572641849517822,1.1858718395233154,-1.2467612028121948,-0.5503908395767212,-0.5630871057510376,1.3778979778289795,1.2483971118927002,-1.4190183877944946,2.0149710178375244,-0.38686949014663696,-0.22379299998283386,1.5852245092391968,-0.8227417469024658,1.015069842338562,-1.1474206447601318,0.3166143596172333,0.9035168290138245,-0.493110716342926,-0.12881061434745789,-0.5999230742454529,-1.5499743223190308,-0.30930623412132263,-0.531653642654419,-0.46783924102783203,-1.797751784324646,0.1953487992286682,0.2931952476501465,-0.8097779750823975,-0.17378883063793182,-0.11262786388397217,-0.7372543811798096,-0.08281771838665009,-1.1708979606628418,-0.4593976140022278,2.1258864402770996,-1.179405689239502,1.5971918106079102,-0.17520582675933838,-0.4044061005115509,0.7298160195350647,1.0784657001495361,0.4929546117782593,0.08118665218353271,1.1728205680847168,-1.1540422439575195,-0.6554256677627563,0.17035019397735596,0.5553611516952515,0.21235895156860352,-1.2974570989608765,-0.9838773012161255,-1.9229981899261475,0.6489108800888062,-0.42671334743499756,-1.5272860527038574,0.18325947225093842,0.30582118034362793,-1.2093172073364258,0.34957772493362427,-0.2993260622024536,-0.41317135095596313,0.9457257986068726,1.2365567684173584,-0.3700990676879883,-1.0866535902023315,0.2923932373523712,-0.14649809896945953,1.1688910722732544,-0.8787930607795715,-0.12300801277160645,0.3883163034915924,-2.747767925262451,0.5527279376983643,1.904371976852417,-0.06751072406768799,0.6114497184753418,0.5874750018119812,-0.10165716707706451,-0.34536075592041016,-0.6334341764450073,-1.4518797397613525,0.39593106508255005,0.13576862215995789,0.6030399203300476,-2.1952896118164062,0.28478869795799255,0.7696071267127991,-0.5915645360946655,0.8461993932723999,0.7721438407897949,-1.1407573223114014,0.7838194370269775,-0.013283133506774902,0.9024146199226379,0.7411075830459595,-0.24629411101341248,-1.4915772676467896,0.3256509304046631,0.7548863887786865,-0.3068836033344269,-1.4042247533798218,-0.7605390548706055,-0.4837370812892914,0.7465528249740601,0.6821417808532715,0.26901572942733765,-0.24123522639274597,0.6044291853904724,0.8974613547325134,0.9171711206436157,-0.5281563997268677,-0.9329301118850708,0.8232150077819824,0.39849671721458435,-1.042694330215454,-2.0675673484802246,-1.646685242652893,1.7429940700531006,0.3682688772678375,1.1160463094711304,-0.14919513463974,0.2217722237110138,-0.14515483379364014,-1.2780464887619019,0.387313574552536,1.0171165466308594,-0.6056989431381226,-0.13090664148330688,-0.0638798177242279,1.8515007495880127,-2.149167537689209,1.026563048362732,-0.5376226305961609,-0.9418985843658447,-0.11544829607009888,0.7665413022041321,0.0958952009677887,0.705910325050354,-1.5850658416748047,-1.786475658416748,-0.8307521939277649,1.6486707925796509,1.2865099906921387,-0.5384745001792908,0.48026543855667114,-0.9025858640670776,-1.0280916690826416,-0.0561223030090332,-0.5099691152572632,0.11392098665237427,-1.1105740070343018 -2969,-0.5634458661079407,-0.20884442329406738,-0.7986631393432617,-1.0802946090698242,0.0417591854929924,-0.4856889843940735,-1.825872540473938,-0.1707778424024582,-0.07480266690254211,0.7548620104789734,0.10511332750320435,-0.11504495143890381,0.2530616521835327,0.6391258835792542,0.26807695627212524,-1.0268986225128174,-0.10257571190595627,0.6724480390548706,-1.999772310256958,-0.01933521032333374,-0.2968430519104004,1.2536472082138062,0.8404371738433838,0.2002040147781372,0.00619468092918396,-0.41704097390174866,-1.2400394678115845,-1.2033545970916748,0.1874554455280304,-1.1327950954437256,-0.8495228886604309,-0.6923812627792358,-0.8959038853645325,-0.5117478966712952,-1.220047116279602,-0.3081830143928528,-2.3531298637390137,-0.18007826805114746,0.4598214030265808,-0.06953397393226624,-1.0665836334228516,-0.5957314372062683,0.10917817056179047,1.1561866998672485,-0.17180433869361877,0.2232186198234558,-0.380552738904953,-1.3877687454223633,-2.2724225521087646,-1.579045295715332,1.5902000665664673,1.316044569015503,0.7044566869735718,2.097346305847168,-2.8306009769439697,0.8490961194038391,0.9300369024276733,0.18677213788032532,0.018310412764549255,1.2887924909591675,-0.7077850699424744,-2.278301477432251,-0.49544891715049744,0.044073671102523804,-0.12020054459571838,1.9155362844467163,-1.8697246313095093,1.2593917846679688,-1.469522476196289,-0.970568060874939,-2.0821094512939453,2.222275733947754,0.7635535597801208,-1.0631860494613647,0.02173471450805664,0.6881230473518372,1.2907813787460327,-1.5452828407287598,-0.23075370490550995,0.4492591619491577,0.4449947476387024,2.019176483154297,-0.5189648866653442,-0.6634638905525208,-0.04084011912345886,-0.3649052083492279,0.23191672563552856,0.0776425153017044,-0.597522497177124,0.10437875986099243,0.23303048312664032,0.2924356460571289,-0.5324700474739075,0.43835312128067017,-0.6136192679405212,0.8252699971199036,1.7847700119018555,2.9572641849517822,1.1858718395233154,-1.2467612028121948,-0.5503908395767212,0.24039524793624878,1.3778979778289795,1.2483971118927002,-1.890814185142517,2.0149710178375244,-0.38686949014663696,-0.22379299998283386,1.505979299545288,-0.8227417469024658,1.015069842338562,-1.1474206447601318,0.3166143596172333,0.28608012199401855,-0.7847250699996948,-0.12881061434745789,-0.5999230742454529,-1.5499743223190308,-0.30930623412132263,-0.531653642654419,-0.46783924102783203,-0.8920403122901917,1.045157790184021,0.2931952476501465,-0.8097779750823975,-0.17378883063793182,-0.11262786388397217,-0.7372543811798096,-0.05085500329732895,-1.1708979606628418,-0.4593976140022278,2.1258864402770996,-1.179405689239502,1.5971918106079102,-0.17520582675933838,-0.4044061005115509,0.7298160195350647,1.0784657001495361,0.4929546117782593,0.08118665218353271,1.1728205680847168,-0.18024814128875732,0.4640796184539795,-0.3987606167793274,0.5553611516952515,0.21235895156860352,-1.2974570989608765,-0.9838773012161255,-1.9229981899261475,0.6489108800888062,-0.42671334743499756,-1.5272860527038574,0.18325947225093842,0.30582118034362793,-1.2093172073364258,0.5865990519523621,-0.2993260622024536,-0.41317135095596313,0.9457257986068726,1.2365567684173584,-0.3700990676879883,-1.51936936378479,0.3997630476951599,-1.1967971324920654,1.1688910722732544,-0.8787930607795715,0.23080173134803772,0.5912911891937256,-2.747767925262451,0.5527279376983643,1.5634284019470215,-0.06751072406768799,0.5478021502494812,0.5874750018119812,-0.10165716707706451,-0.34536075592041016,-0.6334341764450073,-1.4518797397613525,0.3193122446537018,0.13576862215995789,0.6030399203300476,-2.1952896118164062,0.19105109572410583,0.7696071267127991,-1.4031872749328613,0.45537132024765015,0.7721438407897949,-1.1407573223114014,0.7838194370269775,-0.9047402143478394,0.5214406847953796,0.7411075830459595,-0.24629411101341248,-1.272719144821167,0.3256509304046631,0.7548863887786865,0.02447870373725891,-1.2736990451812744,-0.7605390548706055,-0.4837370812892914,1.046754240989685,0.6821417808532715,0.09286762773990631,-0.24123522639274597,0.6044291853904724,0.8974613547325134,0.9171711206436157,-0.5281563997268677,-0.9329301118850708,0.8232150077819824,0.39849671721458435,-0.5803415775299072,-2.0675673484802246,-1.646685242652893,1.2733467817306519,0.3682688772678375,1.5204395055770874,-0.14919513463974,0.2217722237110138,-0.14515483379364014,-1.0077027082443237,0.387313574552536,1.0171165466308594,-0.6056989431381226,-0.13090664148330688,-0.0638798177242279,1.8515007495880127,-1.637346625328064,1.3606512546539307,-0.5376226305961609,-0.9418985843658447,-0.11544829607009888,0.7320418953895569,-0.26164212822914124,0.705910325050354,-0.30295121669769287,-1.786475658416748,-1.1299152374267578,1.6505712270736694,1.2865099906921387,-0.5384745001792908,0.48026543855667114,-0.9025858640670776,-0.3088725805282593,-0.0561223030090332,-0.5099691152572632,0.11392098665237427,-0.3144029974937439 -2970,-0.5083869099617004,-0.20884442329406738,-1.3063468933105469,-1.0802946090698242,0.0417591854929924,-0.4856889843940735,-1.825872540473938,-0.1707778424024582,-0.07480266690254211,0.7548620104789734,0.10511332750320435,-0.11504495143890381,0.2530616521835327,0.6391258835792542,-0.059976786375045776,-1.0268986225128174,-0.10257571190595627,0.6724480390548706,-1.999772310256958,-0.01933521032333374,-0.20201534032821655,1.0725936889648438,0.9675605297088623,0.2002040147781372,0.3293829560279846,-0.41704097390174866,-1.2400394678115845,-1.2033545970916748,0.1874554455280304,-1.1327950954437256,-0.8495228886604309,-0.8209614157676697,-0.7498827576637268,-0.8431663513183594,-1.220047116279602,-0.3081830143928528,-2.3531298637390137,-0.18007826805114746,0.4598214030265808,-0.06953397393226624,-1.0895251035690308,-0.36259469389915466,0.10917817056179047,0.9489984512329102,-0.2788952589035034,0.5448875427246094,-0.380552738904953,-1.3877687454223633,-2.2724225521087646,-1.2960200309753418,1.5902000665664673,1.316044569015503,0.25415775179862976,2.097346305847168,-2.8306009769439697,0.6702298521995544,0.9300369024276733,-0.34464362263679504,0.018310412764549255,1.2887924909591675,-0.5386770367622375,-2.278301477432251,-0.4056442975997925,0.044073671102523804,-0.6491988897323608,1.9155362844467163,-2.2555127143859863,1.2593917846679688,-1.469522476196289,-0.970568060874939,-2.0821094512939453,2.222275733947754,0.7635535597801208,-1.2108337879180908,0.02173471450805664,0.6881230473518372,1.325145959854126,-1.5584367513656616,-0.23075370490550995,0.4492591619491577,0.4449947476387024,1.603548288345337,-0.5189648866653442,-0.6634638905525208,0.5446709394454956,-0.3649052083492279,0.23191672563552856,0.0776425153017044,-0.597522497177124,0.6354168653488159,0.23303048312664032,0.2924356460571289,-0.5324700474739075,1.2419320344924927,-0.5430389046669006,0.8252699971199036,1.7847700119018555,2.9572641849517822,1.1854889392852783,-1.2467612028121948,-0.5503908395767212,0.24039524793624878,1.3778979778289795,0.8413746356964111,-1.890814185142517,1.6319859027862549,-0.8660072088241577,-0.22379299998283386,1.505979299545288,-0.8227417469024658,0.1834741234779358,-1.1474206447601318,0.09141147136688232,0.28608012199401855,-0.7847250699996948,-0.12881061434745789,-0.5999230742454529,-1.5499743223190308,-0.30930623412132263,-0.7088260054588318,-0.46783924102783203,-0.8920403122901917,1.045157790184021,-0.07459640502929688,-0.5321347713470459,0.23018057644367218,-0.11262786388397217,-0.7372543811798096,-0.05085500329732895,-1.1708979606628418,-0.4593976140022278,2.1258864402770996,-1.179405689239502,1.5971918106079102,-0.17520582675933838,-0.4044061005115509,0.7298160195350647,0.9139937162399292,0.4929546117782593,-0.6136499643325806,1.1035367250442505,-0.18024814128875732,0.3056321144104004,-0.3987606167793274,-0.6485646963119507,0.21235895156860352,-1.2974570989608765,-0.9838773012161255,-1.7409628629684448,0.6489108800888062,-0.42671334743499756,-1.5272860527038574,0.18325947225093842,0.30582118034362793,-1.2093172073364258,0.5865990519523621,-0.2993260622024536,-0.41317135095596313,0.8470961451530457,0.9052121639251709,-0.3304751515388489,-1.51936936378479,0.3997630476951599,-2.1042184829711914,1.1688910722732544,-0.8787930607795715,-0.13660550117492676,0.9921829700469971,-2.209873676300049,0.5527279376983643,1.5634284019470215,-0.06751072406768799,0.6867880821228027,0.5874750018119812,0.18070603907108307,-0.34536075592041016,0.36297327280044556,-2.0242671966552734,0.3193122446537018,-0.15560615062713623,0.31272128224372864,-2.1952896118164062,0.19105109572410583,1.091799259185791,-1.7621797323226929,0.45537132024765015,0.7721438407897949,-1.2146575450897217,1.0198310613632202,-0.9047402143478394,0.5214406847953796,0.7411075830459595,-0.07881049811840057,-1.272719144821167,-0.3197360634803772,1.3123607635498047,0.02447870373725891,-1.2736990451812744,-0.7605390548706055,-0.4837370812892914,1.046754240989685,0.6821417808532715,0.09286762773990631,0.10755139589309692,0.6044291853904724,0.8974613547325134,0.9171711206436157,-0.6091790795326233,-0.9329301118850708,0.8232150077819824,0.39849671721458435,-0.5803415775299072,-1.7924792766571045,-1.646685242652893,1.2733467817306519,0.3682688772678375,1.5204395055770874,-0.14919513463974,0.37772971391677856,-0.14515483379364014,-1.0077027082443237,0.387313574552536,1.0171165466308594,-0.6056989431381226,-0.13090664148330688,-0.5816233158111572,1.8515007495880127,-1.637346625328064,1.3606512546539307,-0.24631190299987793,-0.20785510540008545,-0.38764145970344543,0.7320418953895569,-0.26164212822914124,0.705910325050354,0.14059367775917053,-1.786475658416748,-1.1299152374267578,1.856701135635376,1.2865099906921387,-0.5384745001792908,0.48026543855667114,-0.7469680309295654,-0.3088725805282593,-0.0561223030090332,-0.814491331577301,0.24246551096439362,-1.0832020044326782 -2971,-0.4603768289089203,-0.20884442329406738,-1.3063468933105469,-1.0802946090698242,-0.2683491110801697,-0.4856889843940735,-1.825872540473938,-0.1714978665113449,-0.07480266690254211,1.0936390161514282,0.09334612637758255,-0.11504495143890381,0.2530616521835327,0.6391258835792542,-0.059976786375045776,-1.0268986225128174,-0.10257571190595627,0.7935769557952881,-1.999772310256958,-0.11216077208518982,0.05300629138946533,1.0725936889648438,0.9675605297088623,0.2002040147781372,0.3293829560279846,-0.27155986428260803,-1.2400394678115845,-1.2033545970916748,0.1874554455280304,-1.239357590675354,-1.1523592472076416,-0.8209614157676697,-1.1399710178375244,-0.8788601756095886,-0.9719954133033752,-0.3081830143928528,-2.3531298637390137,-0.18007826805114746,0.4598214030265808,-0.06953397393226624,-1.0895251035690308,-0.36259469389915466,0.5422086119651794,0.9489984512329102,-0.3525662422180176,0.1774192750453949,-0.380552738904953,-1.248187780380249,-2.366516590118408,-1.5013412237167358,1.5902000665664673,1.316044569015503,0.25415775179862976,2.097346305847168,-2.8306009769439697,0.6254562139511108,0.9300369024276733,-0.34464362263679504,0.21146570146083832,1.2887924909591675,-0.7413778901100159,-2.320643186569214,-0.4056442975997925,0.044073671102523804,-0.6491988897323608,1.9155362844467163,-1.9637269973754883,1.1524767875671387,-1.380525827407837,-0.970568060874939,-2.0821094512939453,2.3948025703430176,0.7635535597801208,-1.2108337879180908,-0.09455468505620956,0.6881230473518372,1.5414685010910034,-1.4790440797805786,-0.23075370490550995,0.4492591619491577,0.4449947476387024,1.603548288345337,-0.5959001779556274,-0.6634638905525208,0.5446709394454956,-0.3649052083492279,0.23191672563552856,0.0776425153017044,-0.597522497177124,0.6354168653488159,0.23303048312664032,0.2924356460571289,-0.5324700474739075,1.2419320344924927,-0.5430389046669006,0.8252699971199036,1.7847700119018555,2.9572641849517822,1.5832252502441406,-0.2756490111351013,-0.5503908395767212,0.24039524793624878,1.3778979778289795,0.8413746356964111,-2.403747320175171,1.243446946144104,-1.552492618560791,-0.22379299998283386,1.505979299545288,-0.5498584508895874,0.11149846017360687,-1.1474206447601318,0.09141147136688232,0.28608012199401855,-0.7847250699996948,0.08686167001724243,-0.5999230742454529,-1.5499743223190308,-0.30930623412132263,-0.7088260054588318,-0.8032993078231812,-0.8920403122901917,1.045157790184021,0.7365103363990784,-0.5321347713470459,0.23018057644367218,-0.11262786388397217,-0.7372543811798096,-0.05085500329732895,-1.1708979606628418,-0.4593976140022278,2.408405303955078,-1.179405689239502,0.9660089612007141,-0.5377451181411743,-0.34961095452308655,0.7298160195350647,0.6336991786956787,0.4929546117782593,-0.6136499643325806,1.1035367250442505,-0.18024814128875732,0.3056321144104004,-0.3987606167793274,-0.6485646963119507,0.9104481339454651,-1.653308391571045,-0.9838773012161255,-1.7409628629684448,0.6489108800888062,-0.42671334743499756,-1.5272860527038574,0.18325947225093842,0.30582118034362793,-1.1215617656707764,0.5865990519523621,-0.2993260622024536,-0.25289562344551086,1.0465291738510132,0.9052121639251709,-0.3304751515388489,-1.51936936378479,0.8591752052307129,-2.1042184829711914,1.1688910722732544,-0.8787930607795715,-0.13660550117492676,0.9921829700469971,-2.209873676300049,0.5527279376983643,1.5634284019470215,-0.06751072406768799,0.4566813111305237,0.8629612922668457,-0.0701807290315628,-0.34536075592041016,0.36297327280044556,-2.0242671966552734,0.3193122446537018,-0.15560615062713623,0.31272128224372864,-2.1952896118164062,0.27908405661582947,1.9300615787506104,-1.7621797323226929,0.45537132024765015,0.7721438407897949,-1.2146575450897217,1.0198310613632202,-0.49979832768440247,0.36192095279693604,0.7411075830459595,-0.07881049811840057,-1.272719144821167,-0.3197360634803772,1.3123607635498047,-0.1042996495962143,-1.2736990451812744,-0.7605390548706055,-0.33529889583587646,1.046754240989685,0.6821417808532715,0.09286762773990631,0.10755139589309692,0.8578526973724365,0.8974613547325134,1.4144638776779175,-0.6091790795326233,-0.9329301118850708,0.8232150077819824,-0.2662184536457062,-0.7064997553825378,-1.7924792766571045,-0.6327552795410156,1.2733467817306519,0.3682688772678375,1.4849170446395874,-0.14919513463974,0.37772971391677856,-0.14515483379364014,-0.5551691055297852,0.387313574552536,1.0758517980575562,-0.6056989431381226,-0.13090664148330688,-0.5816233158111572,1.8515007495880127,-1.455137014389038,1.4097665548324585,-0.24631190299987793,-0.20785510540008545,-0.38764145970344543,0.7320418953895569,-0.24502705037593842,0.705910325050354,0.14059367775917053,-1.786475658416748,-0.6319546103477478,1.856701135635376,1.5526779890060425,-0.5384745001792908,0.48026543855667114,-0.789483904838562,-0.3088725805282593,-0.0561223030090332,-0.814491331577301,0.24246551096439362,-1.0832020044326782 -2972,-0.4603768289089203,-0.20884442329406738,-1.3063468933105469,-1.0802946090698242,-0.2683491110801697,-0.4856889843940735,-1.7710676193237305,-0.7459339499473572,-0.07480266690254211,1.0936390161514282,0.09334612637758255,-0.11504495143890381,0.2530616521835327,0.6391258835792542,-0.059976786375045776,-1.0268986225128174,-0.10257571190595627,0.7935769557952881,-1.999772310256958,-0.11216077208518982,-0.6164076924324036,0.9576156139373779,1.03523588180542,0.4322171211242676,0.30207309126853943,-0.27155986428260803,-1.709545373916626,-1.2033545970916748,0.1874554455280304,-1.239357590675354,-1.5729758739471436,-0.8969713449478149,-1.1399710178375244,-0.7349158525466919,-0.9719954133033752,-0.3081830143928528,-2.3531298637390137,-0.18007826805114746,0.4598214030265808,-0.06953397393226624,-1.0651777982711792,-0.36304888129234314,0.5422086119651794,0.9489984512329102,-0.3525662422180176,0.1774192750453949,-0.380552738904953,-1.248187780380249,-2.1169469356536865,-1.5013412237167358,1.5902000665664673,1.316044569015503,0.5714198350906372,2.097346305847168,-2.2724883556365967,0.41936933994293213,0.9300369024276733,-0.34464362263679504,0.21146570146083832,1.2887924909591675,-0.7413778901100159,-1.8452366590499878,-0.4056442975997925,0.044073671102523804,-0.6491988897323608,1.9155362844467163,-1.9637269973754883,1.1524767875671387,-1.380525827407837,-0.970568060874939,-2.0821094512939453,2.3948025703430176,0.7451664805412292,-1.2108337879180908,0.22724556922912598,0.6881230473518372,1.472084641456604,-1.4790440797805786,-0.23075370490550995,0.7146252393722534,0.4449947476387024,1.603548288345337,-1.2290351390838623,-0.6634638905525208,0.5446709394454956,-0.16129902005195618,0.23191672563552856,0.0776425153017044,-0.6963745951652527,0.6354168653488159,0.23303048312664032,0.2924356460571289,-0.5324700474739075,0.9716181755065918,0.4468536376953125,1.2568156719207764,1.6699111461639404,2.9572641849517822,1.287447214126587,-0.7509835958480835,-0.5503908395767212,0.42825061082839966,1.1283308267593384,0.8413746356964111,-1.0715824365615845,1.243446946144104,-1.919567584991455,-0.22379299998283386,1.505979299545288,-0.5922930240631104,-0.08954213559627533,-1.1474206447601318,0.8432058691978455,0.28608012199401855,-0.7847250699996948,-0.3072923719882965,-1.2361226081848145,-1.6674529314041138,-0.30930623412132263,-0.9489086866378784,-0.8032993078231812,-0.8920403122901917,1.045157790184021,0.7365103363990784,-0.5321347713470459,0.23018057644367218,-0.11262786388397217,-0.7372543811798096,-0.05085500329732895,-1.3423151969909668,-0.29975083470344543,2.408405303955078,-1.179405689239502,0.9660089612007141,-0.5377451181411743,-0.34961095452308655,0.7298160195350647,0.6336991786956787,0.4929546117782593,-0.6136499643325806,1.1035367250442505,-0.18024814128875732,0.3056321144104004,-0.3987606167793274,-0.6485646963119507,0.9104481339454651,-1.653308391571045,-0.9838773012161255,-1.7409628629684448,0.6489108800888062,-0.42671334743499756,-1.5272860527038574,0.18325947225093842,0.30582118034362793,-1.2985154390335083,0.5865990519523621,-0.2993260622024536,-0.5186176300048828,1.0465291738510132,1.1898481845855713,-0.3304751515388489,-1.2852423191070557,0.8591752052307129,-2.1042184829711914,1.1688910722732544,-0.8787930607795715,-0.13660550117492676,0.9921829700469971,-2.209873676300049,0.7931637763977051,1.5634284019470215,-0.06135815382003784,0.3407215476036072,0.8629612922668457,0.36158621311187744,-0.34536075592041016,0.20108185708522797,-2.0242671966552734,0.3193122446537018,-0.15560615062713623,0.31272128224372864,-2.1952896118164062,0.27908405661582947,1.9300615787506104,-0.33879542350769043,0.45537132024765015,0.7721438407897949,-1.2146575450897217,0.8365195989608765,-0.7688273191452026,0.5144630074501038,0.7411075830459595,-0.07881049811840057,-1.272719144821167,-0.3197360634803772,0.5827435851097107,-0.1214524507522583,-1.5698386430740356,-0.7182618379592896,-0.33529889583587646,1.2852680683135986,0.6821417808532715,1.2152752876281738,0.10755139589309692,0.8578526973724365,0.8974613547325134,1.091810941696167,-0.6091790795326233,-0.8161765933036804,0.8232150077819824,-0.2662184536457062,-0.6268922090530396,-1.7924792766571045,-0.6327552795410156,1.2733467817306519,0.3682688772678375,1.4849170446395874,-0.14919513463974,0.4176422357559204,-0.14515483379364014,-1.6180819272994995,0.387313574552536,1.0758517980575562,-0.6056989431381226,0.24858546257019043,-0.5816233158111572,1.8515007495880127,-1.6475999355316162,1.4097665548324585,-0.24631190299987793,-1.1796506643295288,-0.38764145970344543,0.7320418953895569,-0.24502705037593842,0.705910325050354,0.14059367775917053,-1.7540420293807983,-0.6319546103477478,1.856701135635376,1.5526779890060425,-0.5384745001792908,0.48026543855667114,-0.789483904838562,-0.3088725805282593,-0.0561223030090332,-0.814491331577301,0.24246551096439362,-1.0832020044326782 -2973,-0.4603768289089203,-0.20884442329406738,-1.4068844318389893,-1.0802946090698242,-0.2683491110801697,-0.4856889843940735,-1.7710676193237305,-0.26171526312828064,-0.07480266690254211,1.0936390161514282,0.09334612637758255,-0.11504495143890381,0.2530616521835327,1.0435404777526855,-0.059976786375045776,-1.0268986225128174,-0.10257571190595627,0.7935769557952881,-1.8899047374725342,-0.11216077208518982,-0.6164076924324036,0.9576156139373779,1.03523588180542,0.9227717518806458,0.30207309126853943,-0.27155986428260803,-1.709545373916626,-1.2033545970916748,0.07765023410320282,-1.239357590675354,-1.8798906803131104,-0.8093223571777344,-1.1399710178375244,-0.6039105653762817,-0.9719954133033752,-0.3081830143928528,-3.0219342708587646,-0.7324216365814209,0.4598214030265808,-0.06953397393226624,-1.0651777982711792,-0.36304888129234314,0.5422086119651794,0.8387228846549988,-0.024199187755584717,0.4736161231994629,-0.380552738904953,-1.248187780380249,-2.2182345390319824,-1.5013412237167358,1.5902000665664673,1.316044569015503,0.5714198350906372,2.097346305847168,-2.2724883556365967,0.41936933994293213,0.9300369024276733,-0.3574782907962799,0.21146570146083832,1.2887924909591675,-0.7413778901100159,-1.8452366590499878,0.09502589702606201,0.044073671102523804,-0.6491988897323608,1.5345321893692017,-1.9637269973754883,1.1524767875671387,-1.473871111869812,-0.970568060874939,-2.0016088485717773,2.3283424377441406,0.4559819996356964,-1.2108337879180908,0.22724556922912598,0.6881230473518372,0.9826431274414062,-1.4790440797805786,-0.23075370490550995,0.7146252393722534,0.2908499240875244,1.603548288345337,-0.665305495262146,-0.6634638905525208,0.5446709394454956,-0.31682777404785156,0.23191672563552856,0.3344956040382385,-0.6963745951652527,0.6354168653488159,0.23303048312664032,0.2924356460571289,-0.5324700474739075,0.9716181755065918,0.4468536376953125,1.0285634994506836,1.6699111461639404,2.9572641849517822,1.0958601236343384,-1.1979963779449463,-0.5503908395767212,0.42825061082839966,1.1283308267593384,1.2895376682281494,-1.0715824365615845,1.243446946144104,-0.7037409543991089,-0.15772704780101776,1.6022670269012451,-0.07963067293167114,-0.08954213559627533,-0.8198078870773315,0.9947778582572937,0.865967333316803,-1.381075382232666,-0.3072923719882965,-1.2361226081848145,-1.6674529314041138,-0.30930623412132263,-0.9489086866378784,-0.10756462812423706,-0.8920403122901917,1.045157790184021,0.46375614404678345,-0.5321347713470459,0.43026894330978394,-0.19806745648384094,-0.7372543811798096,-0.05085500329732895,-1.3423151969909668,-0.29975083470344543,1.845717430114746,-1.179405689239502,1.2293076515197754,-0.5377451181411743,-0.34961095452308655,0.7298160195350647,0.10843104124069214,1.0719106197357178,-0.6136499643325806,1.1035367250442505,-0.18024814128875732,-0.5260646343231201,-0.3987606167793274,-0.6485646963119507,0.9104481339454651,-2.284705638885498,-0.1921703815460205,-2.151132106781006,0.6489108800888062,-0.42671334743499756,-2.0758635997772217,0.18325947225093842,0.24287721514701843,-1.0942137241363525,0.5865990519523621,-0.2993260622024536,-0.5186176300048828,1.0465291738510132,0.43112677335739136,-0.27444952726364136,-1.4398670196533203,0.8591752052307129,-2.1042184829711914,1.1688910722732544,-1.4315627813339233,-0.3789779543876648,0.6285239458084106,-2.209873676300049,0.7931637763977051,1.5634284019470215,-0.06135815382003784,0.3407215476036072,0.8629612922668457,0.36158621311187744,-0.34536075592041016,0.1342737376689911,-2.0242671966552734,0.39402422308921814,0.14139848947525024,0.31272128224372864,-1.9293932914733887,0.27908405661582947,1.9300615787506104,-0.33879542350769043,0.6007886528968811,0.7721438407897949,-1.2146575450897217,0.8365195989608765,-1.1748756170272827,1.4692351818084717,0.41018161177635193,-0.5844200253486633,-1.4964795112609863,-0.3197360634803772,0.3922136127948761,-0.505226731300354,-1.255705714225769,-0.7182618379592896,-0.33529889583587646,1.2852680683135986,0.6821417808532715,0.8001843690872192,0.10755139589309692,0.8578526973724365,0.8974613547325134,0.9894250631332397,-0.9434467554092407,-0.8161765933036804,0.5184831023216248,0.13199639320373535,-0.6268922090530396,-2.078918218612671,-0.6327552795410156,1.2733467817306519,-0.0753965675830841,1.4849170446395874,0.03641287982463837,0.37584561109542847,0.9142415523529053,-1.6180819272994995,0.387313574552536,1.0758517980575562,-0.6056989431381226,-0.09377378225326538,-0.5816233158111572,1.8515007495880127,-1.6475999355316162,1.4097665548324585,0.2120334804058075,-1.1796506643295288,-0.38764145970344543,0.4148273766040802,-0.24502705037593842,0.705910325050354,0.059657976031303406,-1.7540420293807983,-0.6319546103477478,2.5644278526306152,1.5526779890060425,-0.5384745001792908,-0.39614248275756836,-0.789483904838562,-0.3088725805282593,-0.0561223030090332,-0.9774597883224487,0.24246551096439362,-1.0832020044326782 -2974,-0.4603768289089203,-0.20884442329406738,-1.4068844318389893,-0.7048197984695435,-0.2683491110801697,-0.2325223982334137,-1.7710676193237305,-0.26171526312828064,-0.07480266690254211,1.0936390161514282,0.3889613747596741,-0.11504495143890381,0.010477006435394287,0.12094330787658691,-0.059976786375045776,-1.1125245094299316,-0.10257571190595627,0.7935769557952881,-1.8899047374725342,-0.09289470314979553,-0.6164076924324036,0.9576156139373779,1.03523588180542,0.2779802680015564,0.360735148191452,-1.0316076278686523,-1.709545373916626,-0.982606053352356,0.5148918628692627,-1.239357590675354,-1.8798906803131104,-0.8093223571777344,-1.1931376457214355,-0.6039105653762817,-0.9719954133033752,-0.3081830143928528,-3.0219342708587646,-0.5639742612838745,0.14948084950447083,-0.06953397393226624,-1.111832618713379,-0.36304888129234314,0.5422086119651794,0.7922894954681396,-0.6237071752548218,0.4736161231994629,-0.380552738904953,-1.248187780380249,-2.2182345390319824,-1.5013412237167358,1.5902000665664673,1.316044569015503,0.5714198350906372,2.097346305847168,-2.2724883556365967,0.41936933994293213,0.9300369024276733,-0.3574782907962799,0.5652391910552979,1.2887924909591675,-0.7413778901100159,-1.8452366590499878,0.09502589702606201,0.044073671102523804,-0.2067250907421112,1.8134078979492188,-1.9637269973754883,1.1524767875671387,-1.027055025100708,-0.970568060874939,-2.0016088485717773,2.3283424377441406,0.4559819996356964,-1.2108337879180908,0.22724556922912598,0.6881230473518372,0.672916054725647,-1.7681254148483276,-0.23075370490550995,0.689233124256134,0.2908499240875244,1.603548288345337,-0.665305495262146,-0.6634638905525208,0.5446709394454956,-0.4277229905128479,-0.46861952543258667,0.3344956040382385,-0.6963745951652527,0.6354168653488159,0.18557289242744446,-0.2133660912513733,-0.5324700474739075,0.9716181755065918,0.41768789291381836,1.0285634994506836,1.6699111461639404,2.739145517349243,1.0958601236343384,-1.1979963779449463,-0.5503908395767212,0.3592718243598938,0.7134357690811157,1.2734109163284302,-1.0715824365615845,1.243446946144104,-0.7478145956993103,-0.15772704780101776,1.6022670269012451,-0.09202996641397476,0.24336440861225128,-0.8198078870773315,0.9947778582572937,0.5809941291809082,-1.381075382232666,-0.3072923719882965,-1.2361226081848145,-1.6674529314041138,-0.30930623412132263,-0.9489086866378784,-0.10756462812423706,-0.887654721736908,1.045157790184021,0.46375614404678345,-0.5321347713470459,0.43026894330978394,-0.19806745648384094,-0.7372543811798096,0.8652265667915344,-0.8504910469055176,0.2650515139102936,2.2999463081359863,-1.179405689239502,1.2293076515197754,-0.20232948660850525,-0.34961095452308655,0.7298160195350647,0.10843104124069214,0.3830941915512085,-0.6136499643325806,0.9512840509414673,-0.23483732342720032,-0.5260646343231201,-0.3987606167793274,-0.6485646963119507,0.9104481339454651,-2.284705638885498,-0.6878288984298706,-1.578239917755127,0.6489108800888062,-0.42671334743499756,-2.0758635997772217,0.18325947225093842,0.20197045803070068,-1.066787600517273,-0.002146303653717041,-0.2993260622024536,-0.09635832905769348,1.0465291738510132,0.32251542806625366,-0.27444952726364136,-1.8093005418777466,0.8591752052307129,-2.1042184829711914,1.1688910722732544,-1.2062759399414062,-0.3789779543876648,0.6285239458084106,-2.209873676300049,0.7931637763977051,1.5634284019470215,-0.06135815382003784,0.7645384669303894,0.6193692088127136,0.3515777289867401,-0.34536075592041016,0.09263402223587036,-2.0242671966552734,0.39402422308921814,0.4164303243160248,0.22907578945159912,-1.9293932914733887,0.27908405661582947,1.9300615787506104,-0.33879542350769043,0.6007886528968811,0.7721438407897949,-1.2146575450897217,0.8365195989608765,-1.2878004312515259,1.4692351818084717,0.9485012292861938,-0.5844200253486633,-1.4964795112609863,-0.3197360634803772,0.2831973433494568,-0.505226731300354,-1.255705714225769,-0.7182618379592896,-0.33529889583587646,1.2852680683135986,0.6957245469093323,0.8001843690872192,0.10755139589309692,0.8578526973724365,0.8974613547325134,1.2569444179534912,-0.9434467554092407,-0.8161765933036804,0.5184831023216248,0.22153905034065247,-0.6268922090530396,-2.1541619300842285,-0.6542052626609802,1.2733467817306519,-0.0753965675830841,1.4849170446395874,0.03641287982463837,0.37584561109542847,0.9142415523529053,-0.3359924554824829,0.387313574552536,0.8624852895736694,-0.6056989431381226,-0.09377378225326538,-0.4959617257118225,1.9731793403625488,-1.520754098892212,0.6555935740470886,0.2120334804058075,-1.1796506643295288,-0.38764145970344543,0.13745424151420593,-0.24502705037593842,0.705910325050354,0.059657976031303406,-1.7540420293807983,-0.6319546103477478,2.137026309967041,1.1436123847961426,-0.5384745001792908,-0.2540677785873413,-0.789483904838562,-0.3088725805282593,-0.0561223030090332,-1.5178112983703613,0.24246551096439362,-1.0832020044326782 -2975,-0.4603768289089203,-0.20884442329406738,-1.4068844318389893,-0.7048197984695435,-0.2683491110801697,-0.2325223982334137,-1.7710676193237305,-0.18622906506061554,-0.07480266690254211,1.0936390161514282,0.3889613747596741,-0.09996826201677322,0.010477006435394287,0.12094330787658691,-0.059976786375045776,-0.8962224721908569,0.06969285756349564,0.7935769557952881,-1.8899047374725342,-0.09289470314979553,-0.6164076924324036,0.8433194160461426,1.03523588180542,0.6082601547241211,0.360735148191452,-1.0316076278686523,-1.709545373916626,-0.9590886235237122,0.5148918628692627,-1.239357590675354,-1.2953977584838867,-0.8093223571777344,-1.498820424079895,-0.6039105653762817,-0.9719954133033752,0.03986075520515442,-3.0219342708587646,-0.36661267280578613,0.14948084950447083,-0.06953397393226624,-0.274321973323822,-0.36304888129234314,0.5422086119651794,0.6745414733886719,-0.6237071752548218,0.4736161231994629,-0.380552738904953,-1.248187780380249,-2.2182345390319824,-1.5013412237167358,1.5902000665664673,1.316044569015503,0.8700987696647644,2.097346305847168,-2.2724883556365967,0.41936933994293213,0.9300369024276733,-0.3574782907962799,0.48393070697784424,1.2887924909591675,-0.7413778901100159,-1.8452366590499878,0.09502589702606201,0.044073671102523804,-0.2067250907421112,1.8134078979492188,-1.4841265678405762,1.4164546728134155,-0.8481886982917786,-0.970568060874939,-1.6634018421173096,2.3283424377441406,0.46811163425445557,-0.8862447738647461,0.33680054545402527,0.49033021926879883,1.3098208904266357,-1.5193560123443604,-0.23075370490550995,0.689233124256134,0.2908499240875244,1.603548288345337,-0.665305495262146,-0.6634638905525208,0.5446709394454956,-0.4277229905128479,-0.46861952543258667,-0.003998130559921265,-0.6963745951652527,0.8785394430160522,0.18557289242744446,-0.2133660912513733,-0.42552024126052856,1.570959210395813,0.41768789291381836,1.0285634994506836,1.6699111461639404,2.739145517349243,1.476089596748352,-1.1979963779449463,-0.527288556098938,0.3886192739009857,0.7134357690811157,1.2734109163284302,-1.1146453619003296,1.243446946144104,-0.7478145956993103,-0.15772704780101776,1.6022670269012451,-0.6180195212364197,0.24336440861225128,-0.8198078870773315,0.5031187534332275,0.5809941291809082,-1.381075382232666,-0.3072923719882965,-1.2361226081848145,-1.6674529314041138,-0.30930623412132263,-0.9489086866378784,-0.10756462812423706,-0.9836158752441406,1.5253448486328125,0.46375614404678345,-0.5321347713470459,0.43026894330978394,-0.19806745648384094,-0.7372543811798096,0.3024561405181885,-0.8504910469055176,0.21903640031814575,2.277557849884033,-0.8536188006401062,1.2293076515197754,-0.20232948660850525,0.03418451547622681,0.960915744304657,0.10843104124069214,0.3830941915512085,-0.1846623420715332,0.5885477662086487,-0.23483732342720032,-0.6533468961715698,-0.3987606167793274,-0.6485646963119507,0.4463767111301422,-2.6281814575195312,-1.2477248907089233,-1.8410332202911377,0.6489108800888062,-0.42671334743499756,-2.0758635997772217,0.18325947225093842,0.20197045803070068,-0.6489797830581665,-0.002146303653717041,0.32264554500579834,-0.8791354894638062,1.0465291738510132,0.7147647142410278,0.6663388013839722,-1.8093005418777466,0.8591752052307129,-2.1042184829711914,1.1688910722732544,-1.2062759399414062,-0.993619978427887,0.6285239458084106,-2.209873676300049,0.49077337980270386,1.5634284019470215,-0.06135815382003784,0.7645384669303894,0.5115618109703064,0.5909807682037354,-0.34536075592041016,0.09263402223587036,-2.0242671966552734,0.34868955612182617,0.4164303243160248,0.22907578945159912,-1.9293932914733887,0.4990975260734558,1.9300615787506104,-0.33879542350769043,-0.03479933738708496,0.7721438407897949,-1.2311757802963257,0.8365195989608765,-1.2878004312515259,1.4692351818084717,0.4273409843444824,-0.5945743918418884,-1.536578893661499,-0.3197360634803772,0.2831973433494568,-0.697178065776825,-1.4987823963165283,-0.4338524043560028,-0.33529889583587646,1.2852680683135986,0.6957245469093323,0.8001843690872192,1.6707561016082764,0.8578526973724365,0.8974613547325134,1.2569444179534912,-0.7688015103340149,-0.8263864517211914,0.5184831023216248,0.22153905034065247,-0.6268922090530396,-2.1541619300842285,-0.32326722145080566,1.2733467817306519,-0.0753965675830841,1.4849170446395874,-0.20458979904651642,0.37584561109542847,0.9142415523529053,-0.3359924554824829,0.7748758792877197,0.8624852895736694,-0.6056989431381226,-0.09377378225326538,-0.4959617257118225,2.138496160507202,-1.520754098892212,0.6555935740470886,0.2120334804058075,-1.1796506643295288,-0.7647384405136108,0.13745424151420593,-0.24502705037593842,0.705910325050354,-0.11006607115268707,-2.0281662940979004,-0.6935651898384094,2.137026309967041,1.1436123847961426,-0.5384745001792908,-0.2540677785873413,-0.789483904838562,-0.3088725805282593,-0.0561223030090332,-1.5178112983703613,0.24246551096439362,-1.8877031803131104 -2976,-0.4603768289089203,-0.20884442329406738,-0.7400133013725281,-0.7048197984695435,-0.2683491110801697,-0.2325223982334137,-1.7889800071716309,-0.18622906506061554,-0.07480266690254211,0.7573027610778809,0.3889613747596741,-0.28877905011177063,0.010477006435394287,0.12094330787658691,-0.059976786375045776,-0.8962224721908569,0.4178781807422638,0.7935769557952881,-1.8899047374725342,-0.09289470314979553,-0.34665608406066895,0.7802788615226746,1.03523588180542,0.6082601547241211,0.360735148191452,-1.0316076278686523,-1.6178268194198608,-0.9590886235237122,0.5148918628692627,-1.239357590675354,-1.2953977584838867,-0.8093223571777344,-1.498820424079895,-0.6039105653762817,-0.9719954133033752,0.03986075520515442,-3.0219342708587646,-0.36661267280578613,0.14948084950447083,-0.06953397393226624,-0.274321973323822,-0.400969922542572,0.5422086119651794,0.8228340148925781,-0.28606826066970825,0.28250038623809814,-0.380552738904953,-1.294801950454712,-2.2182345390319824,-1.5013412237167358,1.5902000665664673,1.316044569015503,0.8700987696647644,1.7853671312332153,-2.5371439456939697,0.44416338205337524,0.9300369024276733,-0.3574782907962799,0.48393070697784424,1.2887924909591675,-0.7413778901100159,-1.8452366590499878,0.09502589702606201,-0.4669109880924225,0.05946698784828186,1.8134078979492188,-1.4841265678405762,1.4164546728134155,-0.8481886982917786,-0.7262254357337952,-2.0432770252227783,2.3283424377441406,0.46811163425445557,-0.8862447738647461,0.33680054545402527,0.35690438747406006,1.3098208904266357,-1.5193560123443604,-0.23075370490550995,0.689233124256134,0.2908499240875244,1.2675702571868896,-0.665305495262146,-0.6634638905525208,-0.1948966383934021,-0.4277229905128479,0.6573558449745178,0.5024433135986328,-1.332746982574463,0.8785394430160522,0.18557289242744446,-0.2133660912513733,-0.5482144355773926,1.570959210395813,0.41768789291381836,1.0285634994506836,1.6699111461639404,2.739145517349243,1.3249927759170532,-1.4953951835632324,-0.527288556098938,0.3886192739009857,0.7134357690811157,1.2734109163284302,-1.1146453619003296,1.243446946144104,-0.7478145956993103,-0.15772704780101776,1.6022670269012451,-0.7796115279197693,0.24336440861225128,-0.7145849466323853,0.5031187534332275,0.5809941291809082,-1.6101552248001099,-0.3072923719882965,-1.3646750450134277,-1.6674529314041138,-0.30930623412132263,-0.9489086866378784,-0.10756462812423706,-0.9836158752441406,1.5253448486328125,0.46375614404678345,-0.4347835183143616,0.43026894330978394,-0.19806745648384094,-0.7610215544700623,0.3024561405181885,-0.8504910469055176,0.5954968929290771,2.277557849884033,-0.8536188006401062,1.2293076515197754,-0.20232948660850525,-0.5239078402519226,0.773449718952179,0.10843104124069214,0.3830941915512085,-0.7775946259498596,0.5885477662086487,-0.23483732342720032,-0.3316177725791931,-0.3987606167793274,-1.1146537065505981,-0.371514230966568,-2.4263806343078613,-1.2477248907089233,-2.343478202819824,0.6489108800888062,-0.42671334743499756,-2.0758635997772217,0.18325947225093842,0.20197045803070068,-0.49710285663604736,0.12224169820547104,0.02106785774230957,-0.8791354894638062,1.2334498167037964,0.7147647142410278,-0.09818768501281738,-1.8093005418777466,0.8591752052307129,-2.1042184829711914,0.45565855503082275,-0.9208565950393677,-0.8620235919952393,0.6285239458084106,-2.209873676300049,0.49077337980270386,1.6001896858215332,-0.06135815382003784,0.7645384669303894,0.5115618109703064,0.5909807682037354,-0.6243454217910767,-0.19705528020858765,-2.0242671966552734,0.23976588249206543,0.4164303243160248,0.22907578945159912,-1.9293932914733887,0.4990975260734558,1.2624342441558838,-0.33879542350769043,-0.03479933738708496,0.7721438407897949,-0.2939246892929077,0.8365195989608765,-1.5886447429656982,1.4692351818084717,0.4273409843444824,-0.5945743918418884,-1.536578893661499,-0.3197360634803772,0.266488641500473,-0.688524603843689,-1.4987823963165283,-0.9477276802062988,-0.33529889583587646,1.2852680683135986,0.6957245469093323,0.9768823981285095,1.2944496870040894,0.8578526973724365,0.8974613547325134,1.303581714630127,-0.4899660348892212,-0.8263864517211914,0.643717348575592,0.22153905034065247,-0.353095680475235,-2.1541619300842285,-0.83892422914505,1.2733467817306519,0.26648131012916565,1.4849170446395874,-0.20458979904651642,0.019221365451812744,0.9142415523529053,-0.3359924554824829,0.7748758792877197,0.8624852895736694,-0.6056989431381226,-0.09377378225326538,0.09644025564193726,1.9536950588226318,-1.975502610206604,0.6555935740470886,0.2120334804058075,-1.604687213897705,-1.0249665975570679,-0.13478580117225647,-0.5610739588737488,0.705910325050354,-0.11006607115268707,-2.0281662940979004,-1.1351351737976074,2.137026309967041,1.1436123847961426,-0.5384745001792908,-0.2540677785873413,-1.1960511207580566,-0.3088725805282593,-0.0561223030090332,-1.1700408458709717,-0.0799211710691452,-1.8877031803131104 -2977,-0.4603768289089203,-0.20884442329406738,-0.7400133013725281,-0.7048197984695435,-0.2683491110801697,-0.2325223982334137,-1.7889800071716309,-0.18622906506061554,-0.07480266690254211,0.7573027610778809,0.3889613747596741,-0.01507943868637085,0.010477006435394287,-0.24506324529647827,-0.059976786375045776,-0.8962224721908569,0.3480340838432312,0.7935769557952881,-1.8899047374725342,-0.09289470314979553,-0.2378004640340805,0.7802788615226746,1.03523588180542,0.6082601547241211,0.360735148191452,-1.0383576154708862,-1.6178268194198608,-0.9590886235237122,0.5148918628692627,-1.239357590675354,-1.525316834449768,-0.8093223571777344,-1.498820424079895,-0.4318823516368866,-0.6382331848144531,0.03986075520515442,-2.7170181274414062,-0.6516528129577637,0.14948084950447083,-0.06953397393226624,-0.274321973323822,-0.400969922542572,0.5422086119651794,0.8228340148925781,0.009690344333648682,0.28250038623809814,-0.380552738904953,-1.294801950454712,-1.9365057945251465,-1.5013412237167358,1.5902000665664673,1.316044569015503,0.8700987696647644,1.7853671312332153,-2.6998682022094727,0.44416338205337524,0.35435599088668823,-0.3574782907962799,0.5142664909362793,1.2887924909591675,-0.7413778901100159,-1.8452366590499878,0.09502589702606201,-0.12475499510765076,0.05946698784828186,1.8134078979492188,-1.4841265678405762,1.4164546728134155,-0.8481886982917786,-0.7262254357337952,-2.0432770252227783,2.3283424377441406,0.46811163425445557,-0.8862447738647461,0.33680054545402527,0.35690438747406006,0.6972321271896362,-1.5193560123443604,-0.23075370490550995,0.6740927696228027,0.2212889939546585,1.2675702571868896,-0.4820314049720764,-0.42475372552871704,-0.1948966383934021,-0.4277229905128479,0.6573558449745178,0.3503878116607666,-1.332746982574463,0.8785394430160522,0.18557289242744446,-0.2133660912513733,-0.7614228129386902,1.570959210395813,1.0506412982940674,1.0285634994506836,1.6699111461639404,2.739145517349243,1.093741774559021,-1.766648530960083,-0.44769078493118286,0.3886192739009857,0.6313757300376892,1.2734109163284302,-1.1146453619003296,1.243446946144104,-0.7478145956993103,-0.15772704780101776,1.8742257356643677,-0.7796115279197693,0.24336440861225128,-0.7145849466323853,0.5031187534332275,0.00464397668838501,-1.6101552248001099,-0.3072923719882965,-1.3646750450134277,-1.6674529314041138,-0.30930623412132263,-1.0845099687576294,-0.10756462812423706,-0.9836158752441406,1.5253448486328125,0.46375614404678345,-0.4347835183143616,0.43026894330978394,-0.19806745648384094,-0.8853470683097839,0.3024561405181885,-0.8504910469055176,-0.07745552062988281,2.277557849884033,-0.8536188006401062,0.793764591217041,-0.20232948660850525,-0.5239078402519226,0.773449718952179,0.10843104124069214,0.3830941915512085,-0.7775946259498596,0.5885477662086487,-0.23483732342720032,-0.3316177725791931,-1.2946245670318604,-1.1146537065505981,-0.371514230966568,-2.4263806343078613,-1.2477248907089233,-2.343478202819824,0.5341230034828186,-0.7867008447647095,-2.0065786838531494,-0.16648565232753754,0.20197045803070068,-0.44509243965148926,0.12224169820547104,0.02106785774230957,-1.3885524272918701,0.6172631978988647,0.7147647142410278,0.05945448577404022,-1.8093005418777466,0.8591752052307129,-2.1042184829711914,0.45565855503082275,-0.9208565950393677,-0.8620235919952393,0.6285239458084106,-2.209873676300049,0.49077337980270386,1.6001896858215332,-0.06135815382003784,1.1565544605255127,0.2472423017024994,0.5909807682037354,-0.6243454217910767,-0.4282403588294983,-2.0242671966552734,0.23976588249206543,0.7806510925292969,0.22907578945159912,-1.9293932914733887,0.6971763372421265,1.2624342441558838,-0.33879542350769043,-0.03479933738708496,0.7885045409202576,-0.2939246892929077,0.5013103485107422,-1.5886447429656982,1.411747694015503,0.4273409843444824,-0.4970332980155945,-1.536578893661499,-0.3197360634803772,0.266488641500473,-0.688524603843689,-1.4987823963165283,-0.9477276802062988,-0.33529889583587646,1.2852680683135986,0.6957245469093323,0.9768823981285095,0.8692101240158081,0.8578526973724365,0.8974613547325134,1.4000167846679688,-0.4899660348892212,-0.8263864517211914,0.3944525122642517,0.22153905034065247,-0.353095680475235,-2.1541619300842285,-0.8528453707695007,1.2948546409606934,0.26648131012916565,1.4849170446395874,-0.20458979904651642,0.019221365451812744,1.2755173444747925,-0.3359924554824829,0.7748758792877197,0.8624852895736694,-0.6056989431381226,-0.5309897661209106,0.09644025564193726,1.9536950588226318,-1.975502610206604,0.5232509970664978,-0.427461177110672,-1.087192416191101,-0.8736715316772461,-0.13478580117225647,-0.5610739588737488,0.705910325050354,-0.11006607115268707,-1.8048717975616455,-1.1351351737976074,2.137026309967041,1.1436123847961426,-0.5384745001792908,-0.2540677785873413,-1.1960511207580566,-0.3088725805282593,-0.0561223030090332,-1.1700408458709717,0.3817940354347229,-1.8877031803131104 -2978,-0.4603768289089203,-0.20884442329406738,-0.7400133013725281,-0.7048197984695435,-0.2683491110801697,-0.2325223982334137,-1.7980177402496338,-0.18622906506061554,-0.07480266690254211,0.7573027610778809,0.3889613747596741,-0.01507943868637085,0.010477006435394287,-0.6516385674476624,-0.059976786375045776,-0.8962224721908569,0.3480340838432312,0.8183053731918335,-1.8952138423919678,-0.09289470314979553,-0.2378004640340805,0.6948749423027039,0.5907711386680603,0.6082601547241211,0.360735148191452,-1.0383576154708862,-1.6178268194198608,-0.9590886235237122,0.5148918628692627,-1.239357590675354,-1.525316834449768,-0.6269961595535278,-1.498820424079895,-0.4318823516368866,-1.0286524295806885,0.03986075520515442,-2.7170181274414062,-0.6516528129577637,-0.052578166127204895,-0.06953397393226624,-0.274321973323822,-0.6408926844596863,0.4730399250984192,0.8228340148925781,0.20817962288856506,0.28250038623809814,-0.5748096704483032,-1.301995038986206,-1.7340061664581299,-1.5013412237167358,1.443731427192688,2.2407939434051514,0.8700987696647644,1.7853671312332153,-2.6998682022094727,0.39084646105766296,0.3882008194923401,-0.17235369980335236,0.5142664909362793,1.2887924909591675,-0.7413778901100159,-1.792376160621643,0.09502589702606201,-0.12475499510765076,0.05946698784828186,1.8134078979492188,-1.4841265678405762,1.4164546728134155,-0.8481886982917786,-1.2085700035095215,-2.0432770252227783,2.3283424377441406,0.23500041663646698,-0.8862447738647461,0.143548846244812,0.35690438747406006,0.6972321271896362,-1.5193560123443604,-0.23075370490550995,0.6740927696228027,0.2212889939546585,1.2675702571868896,-0.4820314049720764,-0.42475372552871704,0.42477530241012573,-0.3291833996772766,2.1575238704681396,0.3503878116607666,-1.332746982574463,0.8785394430160522,0.18557289242744446,-0.2133660912513733,-0.7614228129386902,1.570959210395813,1.0506412982940674,1.3166612386703491,1.6699111461639404,2.739145517349243,1.093741774559021,-1.766648530960083,0.01547396183013916,0.3886192739009857,0.6313757300376892,1.2734109163284302,-1.1146453619003296,1.243446946144104,-0.7478145956993103,-0.15772704780101776,1.8742257356643677,0.036112427711486816,0.24336440861225128,-0.7145849466323853,0.5031187534332275,0.00464397668838501,-1.6101552248001099,-0.3072923719882965,-1.3646750450134277,-1.6674529314041138,-0.30930623412132263,-1.0845099687576294,0.5526189208030701,-0.9836158752441406,1.5253448486328125,0.46375614404678345,-0.4347835183143616,0.43026894330978394,-0.19806745648384094,-0.8853470683097839,0.46552664041519165,-0.8504910469055176,1.048640489578247,2.496056318283081,-0.8536188006401062,0.793764591217041,-0.20232948660850525,-0.5239078402519226,0.773449718952179,0.10843104124069214,0.3830941915512085,-0.7775946259498596,0.5885477662086487,-0.23483732342720032,-0.7740318775177002,-1.2946245670318604,-1.1146537065505981,-0.371514230966568,-2.4263806343078613,-1.2477248907089233,-2.523270606994629,0.8352643847465515,-0.7867008447647095,-0.8130794763565063,-0.16648565232753754,0.20197045803070068,-0.04510578513145447,0.12224169820547104,0.054046597331762314,-1.7668200731277466,0.6172631978988647,0.7441821098327637,0.05945448577404022,-1.8093005418777466,0.8591752052307129,-2.1042184829711914,0.45565855503082275,0.15987622737884521,0.1718883514404297,-0.10727280378341675,-2.209873676300049,0.49077337980270386,1.6001896858215332,-0.06135815382003784,1.1565544605255127,0.2472423017024994,0.5909807682037354,-0.7500335574150085,-0.4282403588294983,-2.0242671966552734,0.23976588249206543,0.7806510925292969,0.22907578945159912,-1.9293932914733887,0.6971763372421265,1.2624342441558838,-0.33879542350769043,-0.03479933738708496,0.7885045409202576,-0.2939246892929077,-0.10358220338821411,-1.5886447429656982,1.411747694015503,0.4273409843444824,-0.4970332980155945,-1.536578893661499,-0.3197360634803772,0.266488641500473,-0.688524603843689,-1.4987823963165283,-1.0286444425582886,-0.33529889583587646,0.26696670055389404,0.6957245469093323,0.9768823981285095,0.8692101240158081,1.31821608543396,0.8974613547325134,1.4000167846679688,-0.6083117723464966,-0.8263864517211914,0.3944525122642517,0.13923567533493042,-0.2354634702205658,-2.4041688442230225,-0.2710908055305481,1.3497884273529053,0.26648131012916565,1.3754054307937622,-0.6626023650169373,0.10460305213928223,1.2755173444747925,-0.45563775300979614,0.4382608234882355,0.8624852895736694,-0.6056989431381226,-0.5309897661209106,-0.47829073667526245,1.9536950588226318,-1.975502610206604,0.3627164363861084,-0.20978321135044098,-1.087192416191101,-0.8736715316772461,-0.13478580117225647,0.22057503461837769,0.705910325050354,-0.11006607115268707,-1.8048717975616455,-1.1351351737976074,2.137026309967041,1.1436123847961426,-0.5384745001792908,0.10349911451339722,-1.295937418937683,-0.3088725805282593,-0.17167992889881134,-1.1700408458709717,0.3817940354347229,-1.7859711647033691 -2979,-0.4603768289089203,-0.20884442329406738,-0.7400133013725281,-0.7048197984695435,-0.2683491110801697,-0.2325223982334137,-1.7980177402496338,-0.18622906506061554,-0.4213222861289978,0.7573027610778809,0.3889613747596741,-0.01507943868637085,0.010477006435394287,-0.5948376655578613,-0.060630325227975845,-0.8962224721908569,0.3480340838432312,0.8183053731918335,-1.8952138423919678,-0.09289470314979553,0.15812061727046967,0.7750244140625,0.5907711386680603,0.6082601547241211,0.360735148191452,-1.0383576154708862,-1.6178268194198608,-0.9590886235237122,0.5148918628692627,-1.239357590675354,-1.4105535745620728,-0.9181030988693237,-1.498820424079895,-0.4318823516368866,-1.2062299251556396,0.03986075520515442,-2.7170181274414062,-0.3065917193889618,0.03641830384731293,-0.06953397393226624,-0.274321973323822,-0.6408926844596863,0.4730399250984192,0.8228340148925781,0.20817962288856506,-0.12279552221298218,-0.793933629989624,-1.301995038986206,-1.613533854484558,-1.9897034168243408,1.443731427192688,0.21746420860290527,0.8700987696647644,1.7853671312332153,-2.6998682022094727,0.39084646105766296,0.3723421096801758,0.07851974666118622,0.5142664909362793,1.6169620752334595,-0.7413778901100159,-1.792376160621643,0.09502589702606201,-0.12475499510765076,0.05946698784828186,1.7842161655426025,-1.4841265678405762,1.4164546728134155,-0.8481886982917786,-1.2085700035095215,-1.5916776657104492,2.3283424377441406,0.5022247433662415,-0.8862447738647461,0.143548846244812,0.35690438747406006,1.0030620098114014,-1.5193560123443604,-0.23075370490550995,0.6740927696228027,0.2212889939546585,1.2675702571868896,-0.455910325050354,-0.41899213194847107,0.3121294379234314,-0.7253848314285278,2.1575238704681396,0.3503878116607666,-1.332746982574463,0.8785394430160522,-0.19152027368545532,0.04635480046272278,-0.7614228129386902,1.570959210395813,1.21975576877594,1.3166612386703491,1.6699111461639404,2.739145517349243,1.093741774559021,-1.766648530960083,0.01547396183013916,0.3886192739009857,0.6313757300376892,1.2734109163284302,-0.9189928770065308,1.831697702407837,-0.7478145956993103,-0.15772704780101776,2.152617931365967,0.036112427711486816,0.24336440861225128,-0.7145849466323853,0.5031187534332275,0.00464397668838501,-1.6101552248001099,-0.3072923719882965,-1.3646750450134277,-1.6674529314041138,-0.30930623412132263,-1.0845099687576294,0.5526189208030701,-0.9836158752441406,1.5253448486328125,0.46375614404678345,-0.4347835183143616,0.2933383285999298,-0.19806745648384094,-0.8853470683097839,0.46552664041519165,-0.8504910469055176,0.8033392429351807,2.496056318283081,-0.8536188006401062,0.793764591217041,-0.20232948660850525,-0.5239078402519226,0.6490271687507629,0.10843104124069214,0.3830941915512085,-0.7775946259498596,0.5885477662086487,-0.23483732342720032,-0.9860396385192871,-1.5280733108520508,-1.1304839849472046,-0.371514230966568,-2.0441577434539795,-1.2477248907089233,-2.523270606994629,0.8352643847465515,-0.7867008447647095,-0.8130794763565063,-0.1954527050256729,0.20197045803070068,-0.44458815455436707,0.12224169820547104,0.054046597331762314,-1.7668200731277466,0.6172631978988647,0.7441821098327637,0.03960149735212326,-1.8093005418777466,0.5311989784240723,-2.1042184829711914,0.01968809962272644,0.15987622737884521,0.3509632349014282,-0.10727280378341675,-2.209873676300049,0.7056687474250793,1.6001896858215332,0.12333978712558746,1.1565544605255127,0.3252023458480835,0.4247705042362213,-0.17599451541900635,-0.4282403588294983,-2.0242671966552734,0.23976588249206543,0.6307057738304138,0.22041340172290802,-1.9293932914733887,0.6971763372421265,1.2624342441558838,0.15120777487754822,-0.03479933738708496,0.7885045409202576,-0.2939246892929077,-0.10358220338821411,-1.5886447429656982,1.411747694015503,0.036296337842941284,0.05814707279205322,-1.536578893661499,-0.3197360634803772,-0.34284844994544983,-0.0470660924911499,-0.8952325582504272,-1.3781968355178833,-0.33529889583587646,0.6137650012969971,0.6957245469093323,0.9768823981285095,0.8692101240158081,1.31821608543396,0.8974613547325134,1.4000167846679688,-0.6083117723464966,-0.988010823726654,0.3944525122642517,-0.34247449040412903,-0.2354634702205658,-2.4041688442230225,-0.2710908055305481,1.3497884273529053,0.26648131012916565,1.5162053108215332,-0.6626023650169373,0.10460305213928223,0.5338076949119568,-0.45563775300979614,0.4382608234882355,0.8624852895736694,-0.0747748613357544,-0.5309897661209106,-0.47829073667526245,1.9536950588226318,-0.7953755855560303,0.3627164363861084,-0.20978321135044098,-0.6753443479537964,-0.8736715316772461,-0.13478580117225647,0.22057503461837769,0.705910325050354,-0.11006607115268707,-1.8048717975616455,-0.36806797981262207,2.137026309967041,1.1436123847961426,-0.5384745001792908,0.10349911451339722,-1.295937418937683,-0.31261706352233887,-0.17167992889881134,-1.1700408458709717,0.3817940354347229,-1.4813246726989746 -2980,-0.4072457551956177,-0.20884442329406738,-0.7400133013725281,-0.7048197984695435,-0.2683491110801697,-0.2325223982334137,-1.7980177402496338,-0.18622906506061554,-0.4213222861289978,0.7573027610778809,0.3889613747596741,-0.01507943868637085,0.44092756509780884,-0.5948376655578613,-0.060630325227975845,-0.9127296805381775,-0.3417961001396179,0.8183053731918335,-1.8952138423919678,-0.09289470314979553,0.10553282499313354,0.7750244140625,0.3314692974090576,0.6082601547241211,0.360735148191452,-1.0383576154708862,-1.6178268194198608,-0.9590886235237122,0.5417646765708923,-1.239357590675354,-1.4105535745620728,-0.8978343605995178,-1.498820424079895,-0.4318823516368866,-1.5005033016204834,0.03986075520515442,-2.7170181274414062,-0.3065917193889618,0.03641830384731293,-0.39269840717315674,-0.5528587102890015,-0.6408926844596863,0.4730399250984192,0.8228340148925781,0.20817962288856506,-0.16253483295440674,-0.26719313859939575,-1.2251482009887695,-1.4810898303985596,-1.5880088806152344,1.443731427192688,0.37427347898483276,0.8700987696647644,1.8261903524398804,-2.6998682022094727,0.39084646105766296,0.3723421096801758,0.07851974666118622,0.5142664909362793,1.6169620752334595,-0.938021183013916,-1.792376160621643,0.09502589702606201,-0.12475499510765076,-0.5868618488311768,1.7842161655426025,-1.4841265678405762,1.4164546728134155,-0.8481886982917786,-1.2085700035095215,-2.11161470413208,2.3283424377441406,0.5022247433662415,-0.8862447738647461,0.01937025785446167,-0.005752533674240112,1.0030620098114014,-1.5193560123443604,-0.8421517014503479,0.6740927696228027,0.2212889939546585,1.2675702571868896,-0.455910325050354,-0.41899213194847107,-0.1914159655570984,-0.7253848314285278,2.1575238704681396,0.3503878116607666,-1.332746982574463,0.8785394430160522,-0.19152027368545532,0.04635480046272278,-0.7614228129386902,1.570959210395813,0.5854964852333069,1.4290791749954224,1.6699111461639404,2.739145517349243,1.093741774559021,-1.766648530960083,0.01547396183013916,0.3886192739009857,0.6313757300376892,0.7296561598777771,-0.9189928770065308,1.831697702407837,-0.49464496970176697,-0.15772704780101776,1.9144032001495361,0.036112427711486816,0.24336440861225128,-0.7145849466323853,0.5031187534332275,0.00464397668838501,-2.0497655868530273,-0.3072923719882965,-1.163128137588501,-1.7458664178848267,0.6854572296142578,-1.0845099687576294,0.5526189208030701,0.6054034233093262,1.5253448486328125,0.46375614404678345,-0.4347835183143616,0.18494068086147308,-0.19806745648384094,-1.0615274906158447,0.46552664041519165,-0.8504910469055176,0.5055819749832153,2.496056318283081,-0.16256338357925415,1.1803746223449707,-0.20232948660850525,-0.5239078402519226,0.6490271687507629,0.10843104124069214,0.3830941915512085,-0.7775946259498596,0.5885477662086487,-0.23483732342720032,-0.17642545700073242,-1.5280733108520508,-1.1976109743118286,-0.6480838060379028,-2.0441577434539795,-0.9051053524017334,-2.523270606994629,0.8352643847465515,-0.7867008447647095,-0.8130794763565063,-0.1954527050256729,0.20197045803070068,-0.5125737190246582,0.6616122126579285,0.054046597331762314,-1.7668200731277466,0.6172631978988647,0.7441821098327637,0.2256605327129364,-1.8093005418777466,0.5311989784240723,-2.1042184829711914,0.01968809962272644,-0.1930408477783203,-0.07945868372917175,-0.6627312302589417,-2.7017669677734375,0.8014432191848755,1.7538632154464722,0.15610244870185852,1.1565544605255127,0.3252023458480835,0.4247705042362213,-0.17599451541900635,-0.2792798578739166,-2.0242671966552734,0.23976588249206543,0.1435844600200653,0.22041340172290802,-1.3206889629364014,0.6971763372421265,1.2624342441558838,0.15120777487754822,-0.03479933738708496,0.17821848392486572,-0.2939246892929077,-0.10358220338821411,-1.5886447429656982,0.7934633493423462,0.23230887949466705,0.05814707279205322,-1.536578893661499,-0.3197360634803772,-0.34284844994544983,-0.0470660924911499,-0.9173551201820374,-1.3781968355178833,-0.33529889583587646,0.6137650012969971,0.6957245469093323,0.9768823981285095,0.8692101240158081,1.31821608543396,1.045291781425476,1.4000167846679688,-0.8656313419342041,-0.040240466594696045,0.3944525122642517,-0.34247449040412903,-0.2354634702205658,-2.4041688442230225,-0.2710908055305481,1.3497884273529053,0.26648131012916565,1.2275991439819336,-0.13145023584365845,0.10460305213928223,0.5338076949119568,-0.8964952826499939,0.4382608234882355,0.8624852895736694,-0.0747748613357544,-0.5309897661209106,-0.47829073667526245,1.9536950588226318,-0.7953755855560303,-0.10873264074325562,-0.6727468371391296,-0.6753443479537964,-0.952034592628479,0.30344003438949585,-0.005133464932441711,0.8907721042633057,-0.11006607115268707,-1.8048717975616455,-0.36806797981262207,2.137026309967041,1.1436123847961426,-0.5384745001792908,0.10349911451339722,-1.295937418937683,-0.31261706352233887,-0.29914000630378723,-1.1700408458709717,-0.4435313940048218,-1.4813246726989746 -2981,0.03948649764060974,-0.20884442329406738,-0.7400133013725281,-0.7048197984695435,-0.2683491110801697,-0.2325223982334137,-1.4210041761398315,-0.2270217090845108,-0.4213222861289978,0.7573027610778809,0.3889613747596741,-0.01507943868637085,0.44092756509780884,-0.23633787035942078,-0.060630325227975845,-0.7368977069854736,-0.3417961001396179,0.8183053731918335,-1.8952138423919678,-0.09289470314979553,0.10553282499313354,0.7750244140625,0.3314692974090576,0.6082601547241211,0.360735148191452,-1.2395975589752197,-1.6178268194198608,-1.1683385372161865,0.5417646765708923,-1.3002208471298218,-1.4105535745620728,-0.8978343605995178,-1.498820424079895,-0.5493409037590027,-1.5005033016204834,0.03986075520515442,-2.4815802574157715,-0.3065917193889618,0.03641830384731293,-0.39269840717315674,-0.5528587102890015,-0.6408926844596863,0.3901222050189972,0.88494473695755,-0.0008857101202011108,0.10834449529647827,-0.23180502653121948,-1.2251482009887695,-1.4835035800933838,-1.5880088806152344,1.443731427192688,0.7478358745574951,0.8700987696647644,1.8261903524398804,-2.6998682022094727,0.39084646105766296,0.3723421096801758,0.07851974666118622,0.5142664909362793,1.6169620752334595,-0.938021183013916,-1.792376160621643,0.09502589702606201,-0.12475499510765076,-0.5868618488311768,1.7324577569961548,-1.4841265678405762,1.4164546728134155,-0.8481886982917786,-1.2085700035095215,-2.11161470413208,2.3283424377441406,0.5022247433662415,-0.8862447738647461,0.01937025785446167,0.5128762722015381,1.0030620098114014,-1.5193560123443604,-0.8421517014503479,0.6740927696228027,0.2212889939546585,1.170608639717102,-0.455910325050354,-0.4058154821395874,0.10637694597244263,-0.7253848314285278,0.31072306632995605,0.3503878116607666,-1.332746982574463,0.8785394430160522,-0.19152027368545532,0.04635480046272278,-0.7614228129386902,1.2810173034667969,0.5854964852333069,1.4290791749954224,1.6699111461639404,2.739145517349243,1.093741774559021,-2.3498706817626953,0.3858090341091156,0.3886192739009857,0.6313757300376892,0.7296561598777771,-0.9189928770065308,1.831697702407837,-0.49464496970176697,-0.15772704780101776,1.9144032001495361,0.1962634027004242,0.24336440861225128,-0.6728508472442627,0.5031187534332275,0.00464397668838501,-2.0497655868530273,-0.3072923719882965,-1.163128137588501,-1.7458664178848267,0.6854572296142578,-1.2627698183059692,0.5526189208030701,0.6054034233093262,1.5253448486328125,0.46375614404678345,-0.4347835183143616,0.18494068086147308,-0.13410024344921112,-1.0007030963897705,0.46552664041519165,-0.8504910469055176,0.5055819749832153,2.496056318283081,-0.16256338357925415,2.1324219703674316,-0.20232948660850525,-0.5239078402519226,0.6490271687507629,0.10843104124069214,0.41627103090286255,-0.34846556186676025,0.5885477662086487,-0.011772111058235168,-0.3910549581050873,-1.5280733108520508,-1.1976109743118286,-0.6480838060379028,-2.0441577434539795,-1.504270315170288,-2.523270606994629,0.8352643847465515,-0.7867008447647095,-0.8130794763565063,-0.1954527050256729,0.20197045803070068,-0.5125737190246582,0.6616122126579285,-0.18265391886234283,-1.6248552799224854,0.6172631978988647,0.9880543947219849,0.4658406674861908,-1.8093005418777466,0.5546683669090271,-2.1042184829711914,-1.1329748630523682,-0.1930408477783203,-0.050061240792274475,-0.6627312302589417,-2.7017669677734375,0.8014432191848755,1.7538632154464722,0.15610244870185852,1.4046722650527954,0.3252023458480835,-0.23866775631904602,-0.9122793078422546,-0.2792798578739166,-2.0580031871795654,0.23976588249206543,0.1435844600200653,0.22041340172290802,-1.2474550008773804,0.6971763372421265,0.6290598511695862,0.787338137626648,-0.10960352420806885,0.17821848392486572,-0.2939246892929077,-0.043108925223350525,-1.2571594715118408,0.7934633493423462,0.23230887949466705,0.05814707279205322,-1.5428497791290283,-0.3197360634803772,-0.34284844994544983,-0.0470660924911499,-0.9173551201820374,-1.3781968355178833,-0.7351408004760742,1.0966613292694092,0.7541555166244507,0.9768823981285095,0.8692101240158081,1.4962220191955566,1.045291781425476,1.4000167846679688,-0.8656313419342041,-0.040240466594696045,0.3944525122642517,-0.34247449040412903,-0.6123504638671875,-2.4041688442230225,-0.2710908055305481,1.3497884273529053,0.23201884329319,1.2275991439819336,0.10457266867160797,0.10460305213928223,0.5338076949119568,-0.8964952826499939,-0.2007332146167755,0.8624852895736694,-0.1573953926563263,-0.5197545886039734,-0.5261691212654114,1.7915153503417969,-0.7953755855560303,-0.24870659410953522,-0.6727468371391296,-0.6851890683174133,-0.7474018335342407,0.0007507205009460449,-0.005133464932441711,0.7116877436637878,-0.11006607115268707,-1.8048717975616455,-0.2569364905357361,2.141842842102051,1.1436123847961426,-0.5384745001792908,0.10349911451339722,-0.7826213836669922,-0.36160391569137573,-0.29914000630378723,-1.5761644840240479,-0.4435313940048218,-1.511007308959961 -2982,0.03948649764060974,-0.20884442329406738,-1.1422803401947021,-0.7048197984695435,-0.2683491110801697,-0.2325223982334137,-1.6020902395248413,-0.2270217090845108,-0.45838963985443115,0.7573027610778809,0.3889613747596741,-0.01507943868637085,0.44092756509780884,-0.23633787035942078,0.38474440574645996,-1.088155746459961,-0.18372702598571777,0.5174201130867004,-1.8952138423919678,-0.09289470314979553,0.29883652925491333,0.7750244140625,0.7773686647415161,0.6082601547241211,0.360735148191452,-1.2395975589752197,-1.7056294679641724,-1.1683385372161865,0.5417646765708923,-1.3002208471298218,-1.4105535745620728,-0.8978343605995178,-1.498820424079895,-1.1810274124145508,-1.5005033016204834,0.03986075520515442,-2.4815802574157715,-0.3065917193889618,0.2820501923561096,-0.39269840717315674,-0.5528587102890015,-0.6408926844596863,0.3901222050189972,0.88494473695755,-0.0008857101202011108,0.10834449529647827,-0.23180502653121948,-1.03178071975708,-1.218312382698059,-1.5880088806152344,1.443731427192688,0.7478358745574951,0.5678595304489136,1.8261903524398804,-2.6998682022094727,0.39084646105766296,0.3723421096801758,0.07851974666118622,0.4976789951324463,1.6169620752334595,-0.938021183013916,-2.0011508464813232,0.04503139108419418,-0.12475499510765076,-0.5868618488311768,1.6883708238601685,-1.4841265678405762,1.4164546728134155,-0.8481886982917786,-1.2085700035095215,-2.0770576000213623,2.3283424377441406,0.5022247433662415,-0.8862447738647461,0.01937025785446167,0.5128762722015381,1.0030620098114014,-1.5065484046936035,-0.8421517014503479,0.6740927696228027,0.2212889939546585,1.170608639717102,-0.9986588358879089,-0.4058154821395874,0.10637694597244263,-0.7608096599578857,0.08267240226268768,0.3995162546634674,-1.332746982574463,0.8785394430160522,-0.19152027368545532,0.04635480046272278,-0.7614228129386902,0.804682731628418,0.5854964852333069,1.4290791749954224,0.893679141998291,2.739145517349243,1.5606648921966553,-2.3498706817626953,0.3858090341091156,0.3886192739009857,0.6313757300376892,0.8850258588790894,-0.9189928770065308,1.831697702407837,-0.8342368602752686,-0.15772704780101776,1.5426886081695557,0.1962634027004242,0.24336440861225128,-0.6728508472442627,0.5031187534332275,0.40360504388809204,-1.752331018447876,-0.3072923719882965,-1.163128137588501,-1.7458664178848267,0.6854572296142578,-1.2627698183059692,0.5574768781661987,0.6054034233093262,1.5253448486328125,0.46375614404678345,-0.4347835183143616,0.18494068086147308,-0.3382335901260376,-1.0007030963897705,0.7800079584121704,-0.8504910469055176,0.5055819749832153,2.3019399642944336,0.15136000514030457,1.7822539806365967,-0.6494063138961792,-0.5239078402519226,0.6490271687507629,0.10843104124069214,0.41627103090286255,-0.34846556186676025,0.5885477662086487,-0.011772111058235168,-0.3910549581050873,-1.5280733108520508,-0.4371029734611511,-0.6480838060379028,-2.0441577434539795,-1.504270315170288,-2.523270606994629,0.9749841094017029,-0.7867008447647095,-1.376723051071167,-0.1954527050256729,0.20197045803070068,-0.5125737190246582,0.6616122126579285,-0.18265391886234283,-1.6248552799224854,0.9659970998764038,0.9880543947219849,0.18072697520256042,-1.8093005418777466,0.5546683669090271,-1.821101188659668,-1.1329748630523682,-0.316758930683136,0.004691619426012039,-0.6627312302589417,-2.07844877243042,0.8014432191848755,1.7538632154464722,0.15610244870185852,1.4046722650527954,0.3252023458480835,-0.23866775631904602,-0.41638314723968506,-0.2792798578739166,-2.0580031871795654,0.23976588249206543,0.1435844600200653,0.22041340172290802,-1.2474550008773804,0.15733134746551514,0.6290598511695862,0.787338137626648,0.4692259430885315,0.3898305296897888,-0.2939246892929077,0.4913296103477478,-1.2571594715118408,0.7934633493423462,0.008802324533462524,-0.1234830766916275,-1.5428497791290283,-0.3197360634803772,-0.9465651512145996,-0.0470660924911499,-1.0726778507232666,-1.3781968355178833,-1.0592079162597656,1.0966613292694092,0.7541555166244507,0.6784815192222595,0.8692101240158081,0.8375255465507507,0.8694558143615723,1.4000167846679688,-0.9333764910697937,-0.040240466594696045,0.38646596670150757,-0.3690812885761261,-0.6123504638671875,-2.4041688442230225,-0.2710908055305481,1.2476263046264648,0.23201884329319,1.2275991439819336,-0.2882172465324402,0.4911539852619171,0.5338076949119568,-0.8964952826499939,0.265346884727478,0.8624852895736694,-0.2768609821796417,-0.4912970960140228,-0.5261691212654114,1.8794424533843994,-0.7953755855560303,-0.05970579385757446,-0.6727468371391296,-0.6851890683174133,-0.7490312457084656,0.0007507205009460449,-0.005133464932441711,0.7116877436637878,-0.11006607115268707,-1.2791774272918701,-0.2569364905357361,2.141842842102051,1.1436123847961426,-0.5384745001792908,0.10349911451339722,-0.5504079461097717,-0.36160391569137573,-0.29914000630378723,-1.5761644840240479,-0.4435313940048218,-1.511007308959961 -2983,-0.40430158376693726,-0.5511432886123657,-0.49294334650039673,-1.4630059003829956,-0.2683491110801697,-0.2325223982334137,-1.6549346446990967,0.7306403517723083,-0.034166038036346436,0.7573027610778809,0.3889613747596741,-0.01507943868637085,0.44092756509780884,-0.40297627449035645,0.08401894569396973,-1.088155746459961,-0.18372702598571777,0.5174201130867004,-1.8952138423919678,-0.09289470314979553,0.29883652925491333,0.7750244140625,0.9004561901092529,0.6082601547241211,0.360735148191452,-1.2395975589752197,-1.7056294679641724,-1.1683385372161865,0.5417646765708923,-1.3002208471298218,-1.4105535745620728,-0.8978343605995178,-1.498820424079895,-1.1810274124145508,-1.5005033016204834,0.03986075520515442,-2.4815802574157715,-0.3065917193889618,0.2820501923561096,-0.39269840717315674,-0.19092914462089539,-0.6408926844596863,0.3901222050189972,0.9919060468673706,-0.0008857101202011108,0.10834449529647827,-0.23180502653121948,-1.03178071975708,-1.218312382698059,-1.5880088806152344,1.443731427192688,0.5428025722503662,0.5678595304489136,2.1456527709960938,-2.6998682022094727,0.39084646105766296,0.3723421096801758,0.07851974666118622,0.4976789951324463,1.664040207862854,-0.7155068516731262,-1.6649274826049805,0.4365939497947693,-0.12475499510765076,-0.5868618488311768,1.6883708238601685,-1.4841265678405762,1.4164546728134155,-0.8540639877319336,-1.2085700035095215,-2.0770576000213623,2.3283424377441406,0.5022247433662415,-0.8862447738647461,0.01937025785446167,0.5128762722015381,1.0030620098114014,-1.4055137634277344,-0.8421517014503479,0.6740927696228027,0.005247622728347778,1.170608639717102,-0.43186336755752563,-0.84818035364151,0.013008356094360352,-0.7608096599578857,0.08267240226268768,0.3995162546634674,-1.332746982574463,0.8785394430160522,-0.19152027368545532,0.04635480046272278,-0.46913784742355347,-0.21501588821411133,0.5854964852333069,1.4290791749954224,0.893679141998291,2.739145517349243,1.5606648921966553,-2.3498706817626953,0.3858090341091156,0.3886192739009857,0.6313757300376892,0.8850258588790894,-1.1808156967163086,1.831697702407837,-0.8342368602752686,-0.15772704780101776,1.5426886081695557,0.1962634027004242,0.24336440861225128,-0.6728508472442627,0.5031187534332275,0.40360504388809204,-1.752331018447876,-0.3072923719882965,-1.3608487844467163,-1.1872079372406006,-0.15978342294692993,-1.2627698183059692,0.5574768781661987,0.6054034233093262,1.5253448486328125,0.46375614404678345,-0.8480503559112549,0.18494068086147308,-0.3382335901260376,-1.0007030963897705,1.3096809387207031,-0.7291134595870972,0.5055819749832153,2.3019399642944336,0.15136000514030457,1.7822539806365967,-0.6494063138961792,-0.5239078402519226,0.6490271687507629,0.10843104124069214,-2.2990570068359375,-0.2884676158428192,0.5885477662086487,-0.011772111058235168,-0.3910549581050873,-1.5280733108520508,-0.4371029734611511,-0.5109466910362244,-2.0441577434539795,-1.504270315170288,-2.523270606994629,0.9749841094017029,-0.7081934809684753,-1.1312146186828613,-0.1954527050256729,0.20197045803070068,-0.5125737190246582,0.008943021297454834,-0.18265391886234283,-1.3485186100006104,0.9659970998764038,0.9880543947219849,0.6717476844787598,-1.9173388481140137,0.11747142672538757,-1.821101188659668,-0.9492944478988647,-0.316758930683136,0.004691619426012039,-0.6627312302589417,-2.07844877243042,0.8014432191848755,1.7538632154464722,0.15610244870185852,1.4046722650527954,0.3252023458480835,-0.23866775631904602,-0.3674705922603607,-0.2792798578739166,-2.0580031871795654,0.23976588249206543,0.1435844600200653,0.22041340172290802,-1.2474550008773804,0.8123337030410767,0.9533818960189819,0.787338137626648,0.4692259430885315,0.6969916820526123,-0.7279888391494751,0.4913296103477478,-1.2571594715118408,0.904516339302063,0.008802324533462524,-0.538428544998169,-1.5514867305755615,-0.3197360634803772,-0.9465651512145996,-0.0470660924911499,-1.0726778507232666,-1.2298702001571655,-1.0592079162597656,1.331788420677185,0.20735669136047363,0.6784815192222595,0.8692101240158081,0.8375255465507507,0.8694558143615723,1.4000167846679688,-0.9333764910697937,-0.040240466594696045,0.38646596670150757,-0.45211803913116455,-0.6123504638671875,-2.4041688442230225,-0.6751282215118408,1.7968575954437256,0.23201884329319,1.2275991439819336,-0.2882172465324402,0.4911539852619171,0.5338076949119568,-0.8964952826499939,0.265346884727478,0.8624852895736694,-0.2768609821796417,-0.4912970960140228,-0.5261691212654114,1.7403860092163086,-0.7953755855560303,-0.05970579385757446,-0.6727468371391296,-0.6851890683174133,-0.7490312457084656,0.0007507205009460449,-0.005133464932441711,0.7116877436637878,-0.2379230111837387,-1.2791774272918701,-0.645362138748169,2.141842842102051,1.1436123847961426,-0.5384745001792908,0.10349911451339722,-0.5504079461097717,-0.05514711141586304,-0.29914000630378723,-1.4001315832138062,-0.4435313940048218,-1.511007308959961 -2984,-0.40430158376693726,-0.5511432886123657,-0.49294334650039673,-1.4630059003829956,-0.2683491110801697,-0.2325223982334137,-1.3485288619995117,0.7306403517723083,-0.034166038036346436,0.7573027610778809,0.3889613747596741,0.10057257115840912,0.44092756509780884,-0.14855480194091797,0.08401894569396973,-1.088155746459961,-0.18372702598571777,0.5174201130867004,-1.2278956174850464,-0.09289470314979553,0.42698413133621216,0.7750244140625,0.9004561901092529,0.8708415031433105,0.360735148191452,-1.2395975589752197,-1.2300134897232056,-1.1683385372161865,0.5417646765708923,-1.3002208471298218,-1.3054734468460083,-0.8978343605995178,-1.498820424079895,-0.5502529740333557,-1.5005033016204834,0.03986075520515442,-2.4815802574157715,-0.3065917193889618,-0.3210405111312866,-0.39269840717315674,-0.8747779130935669,-0.6408926844596863,0.4461836814880371,0.9919060468673706,0.0679331123828888,-0.25117623805999756,-0.23180502653121948,-1.1280004978179932,-1.218312382698059,-1.5880088806152344,1.443731427192688,0.5428025722503662,0.5678595304489136,2.1456527709960938,-2.6998682022094727,0.6054811477661133,0.3723421096801758,0.07851974666118622,0.19121050834655762,1.664040207862854,-0.7155068516731262,-1.6649274826049805,0.4365939497947693,-0.4853499233722687,-0.7720879316329956,1.3601276874542236,-1.4460331201553345,1.0109953880310059,-0.8540639877319336,-1.2085700035095215,-2.0770576000213623,2.3283424377441406,0.5022247433662415,-0.6848995089530945,0.01937025785446167,0.5128762722015381,1.527649164199829,-1.4055137634277344,-0.8421517014503479,0.6567542552947998,0.005247622728347778,1.170608639717102,-0.43186336755752563,-0.84818035364151,0.12205477058887482,-0.7608096599578857,-0.15558284521102905,0.3995162546634674,-0.6306151747703552,1.1975066661834717,-0.19152027368545532,0.03477540612220764,-0.46913784742355347,-0.21501588821411133,0.5854964852333069,1.4290791749954224,0.893679141998291,2.739145517349243,1.3838626146316528,-2.3498706817626953,0.3858090341091156,-0.4297718107700348,0.6762384176254272,0.8850258588790894,-1.1808156967163086,1.831697702407837,-0.8342368602752686,0.33944010734558105,1.5426886081695557,0.1737152338027954,0.24336440861225128,-0.7100138664245605,0.5031187534332275,0.4870343506336212,-1.752331018447876,-0.3072923719882965,-1.3608487844467163,-1.1872079372406006,-0.15978342294692993,-1.2627698183059692,0.5574768781661987,0.6054034233093262,1.5253448486328125,0.12404581904411316,-0.8480503559112549,0.46862655878067017,-0.22769640386104584,-1.0007030963897705,1.3096809387207031,-0.7291134595870972,0.5555835962295532,2.3019399642944336,0.15136000514030457,1.7822539806365967,-0.6494063138961792,-0.5239078402519226,0.6490271687507629,0.2688444256782532,-1.3987864255905151,-0.16000030934810638,1.3733503818511963,-0.011772111058235168,-0.3910549581050873,-1.5280733108520508,-0.8204667568206787,-0.5109466910362244,-2.0441577434539795,-1.504270315170288,-2.523270606994629,0.9749841094017029,-0.7081934809684753,-1.1312146186828613,-0.1954527050256729,0.20197045803070068,-0.5125737190246582,-0.07962997257709503,-0.18265391886234283,-1.0442079305648804,0.9659970998764038,0.9880543947219849,0.6717476844787598,-1.8478087186813354,0.9532910585403442,-1.749838948249817,-0.9492944478988647,-0.316758930683136,0.004691619426012039,-0.8384795188903809,-2.07844877243042,0.49304577708244324,1.8270591497421265,0.15610244870185852,1.2105128765106201,1.8262529373168945,-0.23866775631904602,-0.4442515969276428,-0.2792798578739166,-2.0580031871795654,0.23976588249206543,0.1435844600200653,0.22041340172290802,-1.2474550008773804,0.8123337030410767,0.9533818960189819,0.787338137626648,0.4692259430885315,0.6969916820526123,-0.7317312359809875,0.4913296103477478,-1.2571594715118408,0.904516339302063,-0.10881108790636063,-0.538428544998169,-1.5514867305755615,-0.3197360634803772,-0.9465651512145996,0.13661789894104004,-1.0726778507232666,-1.2298702001571655,-1.0592079162597656,1.331788420677185,0.20735669136047363,0.6784815192222595,1.2332489490509033,0.8375255465507507,1.1719515323638916,1.4000167846679688,-0.9333764910697937,-0.040240466594696045,0.7281308174133301,-0.45211803913116455,-0.6123504638671875,-2.4041688442230225,-0.6751282215118408,1.7968575954437256,0.23201884329319,1.2275991439819336,-0.41000333428382874,0.4911539852619171,0.2671898305416107,-0.8964952826499939,-0.8956775665283203,0.8624852895736694,-0.2768609821796417,-0.1966000497341156,-0.5261691212654114,1.9379937648773193,-0.7953755855560303,-0.05970579385757446,-0.44222918152809143,-0.6851890683174133,-0.7490312457084656,-0.2881423234939575,-0.36162734031677246,0.7116877436637878,-0.2379230111837387,-1.2791774272918701,-0.645362138748169,2.141842842102051,1.1436123847961426,-0.5384745001792908,0.10349911451339722,-0.5504079461097717,-0.05514711141586304,-0.09629078209400177,-1.4001315832138062,-0.4435313940048218,-1.511007308959961 -2985,-0.40430158376693726,-0.5511432886123657,-0.49294334650039673,-1.5400422811508179,-0.2683491110801697,-0.2325223982334137,-1.4244190454483032,0.7306403517723083,-0.034166038036346436,0.7573027610778809,0.3889613747596741,0.10057257115840912,0.44092756509780884,-0.14855480194091797,0.02623554691672325,-1.088155746459961,-0.18372702598571777,0.5174201130867004,-1.2278956174850464,-0.09289470314979553,0.42698413133621216,0.7750244140625,0.9004561901092529,0.8708415031433105,0.360735148191452,-1.2395975589752197,-2.0511763095855713,-1.1683385372161865,0.28202736377716064,-1.3002208471298218,-1.3054734468460083,-0.8978343605995178,-1.5354633331298828,-0.38970625400543213,-1.5005033016204834,-0.44980520009994507,-2.4815802574157715,-0.3065917193889618,-0.3210405111312866,-0.39269840717315674,-0.8747779130935669,-0.6408926844596863,0.4461836814880371,0.9919060468673706,-0.004830658435821533,-0.1247948557138443,-0.23180502653121948,-1.1280004978179932,-1.218312382698059,-1.5880088806152344,1.443731427192688,0.5428025722503662,0.7724072933197021,2.1456527709960938,-2.5936899185180664,0.6054811477661133,0.3723421096801758,0.07851974666118622,0.19121050834655762,1.664040207862854,-0.8247119188308716,-2.094176769256592,0.4365939497947693,-0.4853499233722687,-0.7720879316329956,1.3601276874542236,-1.4460331201553345,1.0109953880310059,-0.9780446887016296,-1.2085700035095215,-2.0770576000213623,2.3283424377441406,0.5022247433662415,-0.6848995089530945,0.01937025785446167,0.2490045130252838,1.527649164199829,-1.4055137634277344,-0.8421517014503479,0.734997034072876,-0.1972825974225998,1.170608639717102,-0.43186336755752563,-0.874943733215332,0.12205477058887482,-0.7608096599578857,-0.15558284521102905,0.16112302243709564,0.0483892560005188,1.1975066661834717,-0.19152027368545532,0.7115955352783203,-0.46913784742355347,-0.21501588821411133,0.5854964852333069,1.4290791749954224,0.893679141998291,2.739145517349243,1.3491090536117554,-2.3498706817626953,-0.46304455399513245,-0.4297718107700348,0.9497950077056885,0.8850258588790894,-0.15360355377197266,1.831697702407837,-0.6718746423721313,0.33944010734558105,1.5426886081695557,0.1737152338027954,0.24336440861225128,-0.7100138664245605,0.11892497539520264,0.4870343506336212,-1.752331018447876,-0.3072923719882965,-1.7239009141921997,-1.1872079372406006,0.33671683073043823,-1.2627698183059692,0.5574768781661987,0.8139601349830627,1.5253448486328125,0.5863204002380371,-0.8480503559112549,0.46862655878067017,-0.22769640386104584,-1.0987571477890015,1.3096809387207031,-0.7291134595870972,0.5555835962295532,2.3019399642944336,-0.08357739448547363,1.7822539806365967,-0.6494063138961792,-0.5239078402519226,0.6490271687507629,0.2688444256782532,-1.3987864255905151,-0.16000030934810638,1.3733503818511963,-0.011772111058235168,-0.3910549581050873,-0.5585103034973145,-0.8204667568206787,-0.5109466910362244,-2.3301305770874023,-1.504270315170288,-2.5068814754486084,0.9749841094017029,-0.8562324643135071,-1.2343313694000244,-0.1954527050256729,0.20197045803070068,0.029781043529510498,-0.07962997257709503,-0.18265391886234283,-1.5210812091827393,0.9659970998764038,0.9880543947219849,0.5763077139854431,-1.8478087186813354,0.9532910585403442,-1.749838948249817,-0.9492944478988647,0.32348090410232544,0.004691619426012039,-0.11948376893997192,-1.6070916652679443,0.8770588636398315,1.8504054546356201,-0.22809109091758728,1.2105128765106201,1.7528916597366333,-0.23866775631904602,-0.4442515969276428,-0.2792798578739166,-2.0580031871795654,0.23976588249206543,0.1435844600200653,0.22041340172290802,-1.3495253324508667,0.8123337030410767,0.6442424058914185,0.787338137626648,0.4692259430885315,0.6969916820526123,-0.7317312359809875,0.4913296103477478,-1.2571594715118408,0.9519754648208618,-0.10881108790636063,-0.538428544998169,-1.5514867305755615,-0.3197360634803772,-0.9465651512145996,0.13661789894104004,-1.0726778507232666,-1.0990370512008667,-0.43002641201019287,1.3006296157836914,0.6417098045349121,0.6784815192222595,1.2332489490509033,1.0703198909759521,1.1719515323638916,1.4000167846679688,-1.225266933441162,-0.040240466594696045,0.06902319192886353,-0.45211803913116455,-1.145695686340332,-2.4041688442230225,-1.8539798259735107,1.7968575954437256,0.23201884329319,1.2275991439819336,-0.41000333428382874,0.4911539852619171,0.2671898305416107,-0.8964952826499939,-0.8956775665283203,1.2493386268615723,-0.2768609821796417,-0.8487765789031982,-0.5261691212654114,1.9379937648773193,-0.7953755855560303,-0.05970579385757446,-0.44222918152809143,-1.5454355478286743,-0.7490312457084656,-0.6648584604263306,-0.13406889140605927,0.7159872651100159,-0.2379230111837387,-1.2791774272918701,-0.645362138748169,2.141842842102051,1.19617760181427,-0.5384745001792908,0.10349911451339722,-1.2127200365066528,-0.10319308936595917,-0.09629078209400177,-1.4001315832138062,-0.4435313940048218,-1.511007308959961 -2986,-0.40430158376693726,-0.8612540364265442,-0.49294334650039673,-1.495801329612732,-0.2683491110801697,-0.2325223982334137,-1.4244190454483032,0.7306403517723083,-0.034166038036346436,0.7573027610778809,0.36271628737449646,-0.7768348455429077,0.44092756509780884,-0.14855480194091797,-0.27788296341896057,-1.088155746459961,-0.18372702598571777,0.3842710852622986,-1.2333792448043823,-0.09289470314979553,-0.08708447217941284,0.5526492595672607,1.3247572183609009,0.8708415031433105,-0.16201844811439514,-1.2395975589752197,-1.7774336338043213,-1.1683385372161865,0.28202736377716064,-1.3002208471298218,-1.3054734468460083,-0.8978343605995178,-1.5354633331298828,-0.31034353375434875,-1.5005033016204834,-0.44980520009994507,-2.4815802574157715,-0.3065917193889618,-0.3210405111312866,0.0894322395324707,-0.8747779130935669,-0.6408926844596863,0.12309801578521729,0.30590903759002686,-0.004830658435821533,-0.1247948557138443,-0.4204665422439575,-1.1280004978179932,-1.218312382698059,-1.5880088806152344,1.6332017183303833,1.1286503076553345,0.3069170415401459,2.1456527709960938,-2.5936899185180664,0.6054811477661133,0.3723421096801758,-0.20900936424732208,0.19121050834655762,1.664040207862854,-0.8409957885742188,-2.258942127227783,0.4365939497947693,-0.743269145488739,-0.7720879316329956,1.255996584892273,-1.4460331201553345,1.0109953880310059,-0.9780446887016296,-1.2085700035095215,-2.0770576000213623,2.3283424377441406,0.5022247433662415,-0.6848995089530945,0.01937025785446167,0.2490045130252838,1.527649164199829,-1.4055137634277344,-0.8421517014503479,0.734997034072876,-0.1972825974225998,1.170608639717102,-0.43186336755752563,-0.874943733215332,0.04010103642940521,-0.7608096599578857,-0.15558284521102905,0.16112302243709564,0.2171541005373001,0.46125710010528564,-0.19152027368545532,0.7115955352783203,-0.806236743927002,0.4911530017852783,0.5318715572357178,0.7063299417495728,0.893679141998291,2.739145517349243,1.2786431312561035,-2.3498706817626953,-0.46304455399513245,-0.4297718107700348,0.9497950077056885,0.8850258588790894,-0.15360355377197266,1.831697702407837,-0.6718746423721313,0.06751245260238647,1.5426886081695557,0.1737152338027954,0.20483119785785675,-0.671186625957489,0.11892497539520264,0.4870343506336212,-1.6682322025299072,-0.3072923719882965,-1.7239009141921997,-1.1872079372406006,0.33671683073043823,-1.3433283567428589,0.4122174382209778,0.4291475713253021,1.5253448486328125,0.5863204002380371,-0.8480503559112549,0.46862655878067017,-0.22769640386104584,-1.0987571477890015,1.3096809387207031,-0.7291134595870972,0.5555835962295532,2.3019399642944336,-0.08357739448547363,1.7822539806365967,-0.6494063138961792,-0.5239078402519226,0.6490271687507629,0.2688444256782532,-0.32913661003112793,-0.16000030934810638,0.9064449071884155,-0.011772111058235168,-0.3910549581050873,-0.5585103034973145,-0.8204667568206787,0.3909042477607727,-1.876446008682251,-1.504270315170288,-2.5068814754486084,0.9628796577453613,-0.08352512121200562,-1.2343313694000244,-0.06423109769821167,0.20197045803070068,0.029781043529510498,-0.07962997257709503,-0.18265391886234283,-1.1105204820632935,0.9659970998764038,0.9880543947219849,0.3392722010612488,-1.8478087186813354,0.8203341960906982,-1.749838948249817,-0.9492944478988647,0.32348090410232544,0.004691619426012039,-0.11948376893997192,-1.6070916652679443,0.6966726779937744,1.958829402923584,-0.22809109091758728,1.2105128765106201,1.7528916597366333,-0.4006403982639313,-0.4442515969276428,-0.2792798578739166,-1.9019733667373657,1.0323960781097412,0.1435844600200653,0.22041340172290802,-1.0016988515853882,0.8123337030410767,0.6442424058914185,0.787338137626648,0.27464011311531067,0.36856168508529663,-0.7317312359809875,0.4913296103477478,-1.6911797523498535,0.9519754648208618,0.5236867666244507,-0.24497604370117188,-1.2657686471939087,-0.3197360634803772,-0.9465651512145996,0.13661789894104004,-1.1766588687896729,-1.0990370512008667,-0.43002641201019287,1.3006296157836914,0.6417098045349121,0.6784815192222595,1.2332489490509033,1.1760196685791016,1.1719515323638916,1.4000167846679688,-1.3676834106445312,-0.040240466594696045,0.24442622065544128,-0.45211803913116455,-1.145695686340332,-2.4041688442230225,-1.8539798259735107,1.4334368705749512,0.23201884329319,1.2275991439819336,-0.41000333428382874,0.4911539852619171,0.2671898305416107,-0.8964952826499939,-0.8956775665283203,1.2493386268615723,-0.6141437292098999,-0.9918144345283508,-0.5261691212654114,1.9379937648773193,-0.6197364330291748,-0.33219796419143677,-0.8054351806640625,-1.5454355478286743,-0.7490312457084656,-0.6648584604263306,-0.3410937786102295,0.7159872651100159,-0.2379230111837387,-1.2791774272918701,-0.8870198130607605,2.141842842102051,1.19617760181427,-0.5384745001792908,-0.026344746351242065,-1.2127200365066528,-0.10319308936595917,-0.47138798236846924,-1.4001315832138062,-0.4435313940048218,-1.511007308959961 -2987,-0.40430158376693726,-0.7900307178497314,-0.49294334650039673,-1.495801329612732,-0.2683491110801697,-0.34528225660324097,-1.4190325736999512,0.7306403517723083,-0.034166038036346436,0.7573027610778809,0.36271628737449646,-0.7768348455429077,-0.0026422441005706787,-0.14855480194091797,-0.27788296341896057,-0.6942126750946045,-0.18372702598571777,0.6631014347076416,-1.2333792448043823,-0.09289470314979553,-0.24372674524784088,0.7992104291915894,1.071123719215393,0.47117602825164795,-0.16201844811439514,-1.2395975589752197,-1.7774336338043213,-1.1683385372161865,0.4579196572303772,-1.3002208471298218,-1.5204832553863525,-0.8978343605995178,-1.5354633331298828,-0.31034353375434875,-1.0488975048065186,-0.06210607290267944,-2.4815802574157715,-0.3065917193889618,-0.3210405111312866,-0.21309953927993774,-0.4586779475212097,-0.6408926844596863,0.12309801578521729,0.30590903759002686,-0.004830658435821533,-0.1247948557138443,-0.4204665422439575,-1.1280004978179932,-1.218312382698059,-1.2213424444198608,1.6332017183303833,0.7299492955207825,0.3069170415401459,2.1456527709960938,-2.5936899185180664,0.6054811477661133,0.3723421096801758,-0.20900936424732208,0.24271267652511597,1.664040207862854,-0.6272144317626953,-2.258942127227783,0.4365939497947693,-0.743269145488739,-0.5057027339935303,1.255996584892273,-1.4460331201553345,1.6942651271820068,-0.9780446887016296,-1.2085700035095215,-1.4688916206359863,2.4039008617401123,0.6122996211051941,-0.6848995089530945,0.01937025785446167,0.3486160933971405,1.527649164199829,-1.4055137634277344,-0.8421517014503479,0.734997034072876,-0.1972825974225998,1.170608639717102,-0.3050706088542938,-0.9471676349639893,0.41785889863967896,-0.7608096599578857,-0.15558284521102905,0.16112302243709564,0.2171541005373001,1.1933574676513672,-0.19152027368545532,0.7115955352783203,-0.806236743927002,-0.8573712110519409,0.5318715572357178,0.7063299417495728,0.893679141998291,2.9197185039520264,1.2786431312561035,-1.291290521621704,-0.46304455399513245,-0.4297718107700348,0.9497950077056885,0.8850258588790894,-0.15360355377197266,1.831697702407837,-0.6718746423721313,-0.506658136844635,1.5426886081695557,0.09546225517988205,0.20483119785785675,-0.671186625957489,0.6644759178161621,0.23328161239624023,-1.6682322025299072,-0.3072923719882965,-2.046180009841919,-1.1872079372406006,0.33671683073043823,-1.3433283567428589,-0.27146410942077637,0.4291475713253021,1.5253448486328125,0.5863204002380371,-0.8480503559112549,0.5885431170463562,-0.22769640386104584,-1.0987571477890015,1.3096809387207031,-0.7291134595870972,0.5109661221504211,2.3019399642944336,-0.08357739448547363,1.7822539806365967,-0.9741847515106201,-0.5239078402519226,0.6490271687507629,0.2688444256782532,-0.32913661003112793,-0.16000030934810638,0.37660646438598633,-0.011772111058235168,-0.7953587770462036,-0.5585103034973145,0.22817933559417725,0.3909042477607727,-2.1588222980499268,-1.504270315170288,-2.5068814754486084,0.9628796577453613,-0.4104698896408081,-1.2343313694000244,-0.2809593081474304,0.20197045803070068,0.029781043529510498,0.4793824553489685,-0.18265391886234283,-1.1105204820632935,0.8897882699966431,0.9880543947219849,0.3392722010612488,-1.8478087186813354,0.8203341960906982,-1.749838948249817,0.4221392869949341,0.32348090410232544,-0.8035684823989868,-0.11948376893997192,-1.6070916652679443,0.6966726779937744,2.4351885318756104,-0.22809109091758728,1.2105128765106201,1.7528916597366333,-0.4006403982639313,-0.4442515969276428,-0.05579918622970581,-1.9019733667373657,1.0323960781097412,0.03031758964061737,0.008802682161331177,-1.0016988515853882,0.8123337030410767,0.8478257060050964,0.787338137626648,0.27464011311531067,0.36856168508529663,-0.7317312359809875,0.5469474792480469,-1.6911797523498535,0.9519754648208618,0.5236867666244507,-0.24497604370117188,-1.128387212753296,-0.3197360634803772,-1.425064206123352,0.13661789894104004,-0.539914071559906,-1.0990370512008667,-0.43002641201019287,1.3006296157836914,0.9726170301437378,0.6784815192222595,1.2332489490509033,1.1760196685791016,1.1719515323638916,1.4000167846679688,-1.3676834106445312,-0.040240466594696045,-0.5042201280593872,-0.45211803913116455,-1.145695686340332,-2.4041688442230225,-2.3545525074005127,1.4334368705749512,0.23201884329319,1.0800156593322754,0.2406514585018158,0.011701583862304688,0.2671898305416107,-0.8964952826499939,-0.8956775665283203,0.6292726397514343,-0.3632875978946686,-0.9918144345283508,-0.4558839797973633,1.9379937648773193,-0.6197364330291748,-0.33219796419143677,-0.8054351806640625,-1.3131297826766968,-0.9581518769264221,-0.3446047604084015,-0.3410937786102295,0.7159872651100159,-0.5171314477920532,-1.2791774272918701,-0.8870198130607605,2.141842842102051,1.19617760181427,-0.5384745001792908,-0.026344746351242065,-1.4509960412979126,-0.3067723512649536,-0.7687526345252991,-1.4001315832138062,-0.4435313940048218,-1.511007308959961 -2988,-0.40430158376693726,-0.7900307178497314,-0.49294334650039673,-1.495801329612732,-0.2683491110801697,-0.34528225660324097,-1.4190325736999512,0.7306403517723083,-0.034166038036346436,0.7573027610778809,0.36271628737449646,-0.7768348455429077,-0.0026422441005706787,0.13035959005355835,-0.19559919834136963,-0.6942126750946045,-0.18372702598571777,0.6631014347076416,-1.4226213693618774,-0.09289470314979553,-0.24372674524784088,0.7992104291915894,1.071123719215393,0.47117602825164795,-0.16201844811439514,-0.8282923698425293,-1.7774336338043213,-1.1683385372161865,0.4579196572303772,-1.3002208471298218,-1.8201591968536377,-0.8978343605995178,-1.5354633331298828,-0.31034353375434875,-1.0488975048065186,-0.06210607290267944,-3.142195224761963,-0.45274507999420166,-0.3210405111312866,-0.21309953927993774,-0.4586779475212097,-0.6408926844596863,0.398359090089798,0.30590903759002686,0.14684884250164032,-0.1247948557138443,-0.5349780917167664,-1.1280004978179932,-1.1951396465301514,-1.2213424444198608,1.6332017183303833,0.7299492955207825,0.3069170415401459,2.1456527709960938,-1.810642957687378,0.6054811477661133,-0.1510254144668579,-0.1888207197189331,0.24271267652511597,1.664040207862854,-0.6272144317626953,-2.258942127227783,0.3753984272480011,-0.743269145488739,-0.44510403275489807,1.2540475130081177,-1.4460331201553345,1.6942651271820068,-0.9780446887016296,-1.2085700035095215,-2.0834968090057373,2.4039008617401123,0.5030477046966553,-0.6848995089530945,0.08120688796043396,0.15860621631145477,1.6648221015930176,-2.050896644592285,-0.48618149757385254,0.734997034072876,0.43502986431121826,1.170608639717102,-0.4541022479534149,-0.684116005897522,0.41785889863967896,-0.7608096599578857,-0.15558284521102905,0.16112302243709564,0.2171541005373001,1.264377474784851,-0.16495183110237122,0.7115955352783203,-0.806236743927002,-0.8573712110519409,0.5731227993965149,1.5316352844238281,0.893679141998291,2.9197185039520264,1.3320097923278809,-0.7551615238189697,-0.13383787870407104,-0.4297718107700348,0.9497950077056885,0.8850258588790894,-0.15360355377197266,1.831697702407837,-0.6718746423721313,-0.506658136844635,1.569860816001892,0.5175969004631042,0.20483119785785675,-0.789658784866333,0.6644759178161621,0.6739660501480103,-1.6682322025299072,-0.3072923719882965,-2.046180009841919,-0.40645837783813477,0.33671683073043823,-1.3433283567428589,0.6059959530830383,0.4291475713253021,0.49135637283325195,0.5732126235961914,-0.2722001075744629,0.3796839118003845,-0.22769640386104584,-0.7904517650604248,-0.10222208499908447,-0.7291134595870972,0.5052534937858582,2.3019399642944336,-0.08357739448547363,0.7488844394683838,-0.9741847515106201,-0.5239078402519226,-0.14594364166259766,0.2688444256782532,-0.8314198851585388,-0.02136629819869995,0.7466539144515991,-0.011772111058235168,-0.7953587770462036,-0.5585103034973145,0.2365269660949707,0.23929435014724731,-2.1588222980499268,-1.513861894607544,-2.5068814754486084,1.0082111358642578,-0.4104698896408081,-1.2343313694000244,-0.2809593081474304,0.20197045803070068,0.029781043529510498,0.23534293472766876,-0.18265391886234283,-0.7689321637153625,0.8897882699966431,0.9880543947219849,0.3392722010612488,-1.8478087186813354,0.8203341960906982,-2.0088305473327637,0.4221392869949341,0.32348090410232544,-1.245513677597046,-0.11948376893997192,-0.9103285670280457,0.6966726779937744,2.0527560710906982,-0.6131930947303772,1.2105128765106201,1.7528916597366333,-0.4006403982639313,-0.4442515969276428,-0.05579918622970581,-1.9019733667373657,1.0323960781097412,0.03031758964061737,0.008802682161331177,-1.8164476156234741,0.8123337030410767,0.8478257060050964,0.787338137626648,0.9119250774383545,0.34500449895858765,-0.7317312359809875,0.5469474792480469,-1.6911797523498535,0.9519754648208618,0.5236867666244507,-0.24497604370117188,-1.128387212753296,-0.3197360634803772,-1.858496904373169,0.08387336134910583,-0.539914071559906,-0.8706204891204834,-0.43002641201019287,1.3006296157836914,0.9726170301437378,0.6784815192222595,1.2332489490509033,0.8791080713272095,0.16147375106811523,1.178465485572815,-2.070690155029297,-0.9740251302719116,-0.5042201280593872,-0.45211803913116455,-1.145695686340332,-2.1356074810028076,-2.3545525074005127,1.4334368705749512,0.23201884329319,0.666949450969696,0.2406514585018158,0.011701583862304688,0.30287665128707886,-0.8964952826499939,-0.8956775665283203,0.6292726397514343,-0.3632875978946686,-0.1636645793914795,-0.4558839797973633,1.9379937648773193,-0.5134802460670471,-0.5397889614105225,-0.7762228846549988,-1.3131297826766968,-0.9581518769264221,-0.3446047604084015,-0.055640578269958496,1.3218553066253662,-0.5171314477920532,-1.8253216743469238,-0.8870198130607605,2.141842842102051,1.19617760181427,-0.5384745001792908,-0.026344746351242065,-1.4509960412979126,-0.3067723512649536,-0.7687526345252991,-1.4001315832138062,-0.4435313940048218,-1.511007308959961 -2989,-0.40430158376693726,-0.7900307178497314,-0.49294334650039673,-1.495801329612732,-0.2683491110801697,-0.41248539090156555,-1.4190325736999512,0.9220162034034729,-0.034166038036346436,0.7573027610778809,0.36271628737449646,-0.7768348455429077,-0.0026422441005706787,0.22543421387672424,0.27505791187286377,-0.6942126750946045,-0.18372702598571777,0.4958694875240326,-1.4226213693618774,-0.09289470314979553,-0.24372674524784088,0.7992104291915894,1.071123719215393,0.47117602825164795,-0.28210926055908203,-1.1957205533981323,-1.7774336338043213,-1.1683385372161865,0.47160184383392334,-1.3002208471298218,-1.7401243448257446,-0.8978343605995178,-1.5354633331298828,-0.40636447072029114,-1.0488975048065186,-0.06210607290267944,-3.142195224761963,-0.4296115040779114,-0.3210405111312866,-0.21309953927993774,-0.4586779475212097,-0.3668156564235687,0.6177548170089722,0.30590903759002686,0.3178529143333435,-0.1247948557138443,-0.5349780917167664,-1.1280004978179932,-1.4345173835754395,-1.2213424444198608,1.2207415103912354,0.7299492955207825,0.3069170415401459,1.9066075086593628,-1.7618623971939087,0.6054811477661133,-0.1510254144668579,-0.1888207197189331,0.24271267652511597,1.664040207862854,-0.6272144317626953,-2.258942127227783,-0.0036846399307250977,-0.5441726446151733,-0.44510403275489807,1.2540475130081177,-1.4460331201553345,1.2871642112731934,-0.9780446887016296,-1.2085700035095215,-2.0834968090057373,1.7547152042388916,0.44002529978752136,-1.0442510843276978,0.08120688796043396,0.622644305229187,1.6648221015930176,-1.6671415567398071,-0.48618149757385254,0.9463684558868408,0.3388371169567108,1.170608639717102,-0.4541022479534149,-0.684116005897522,0.41785889863967896,-0.7608096599578857,-0.15558284521102905,0.16112302243709564,0.2171541005373001,0.8684178590774536,-0.16495183110237122,0.7115955352783203,0.21883928775787354,-0.8573712110519409,-0.18520301580429077,0.8911910057067871,0.893679141998291,2.9197185039520264,1.3320097923278809,-0.7551615238189697,-0.13383787870407104,-0.8972914218902588,0.9497950077056885,1.263468623161316,-0.15360355377197266,1.831697702407837,0.07423895597457886,-0.506658136844635,1.569860816001892,0.5175969004631042,0.20483119785785675,-0.789658784866333,0.6644759178161621,0.6739660501480103,-1.3822627067565918,-0.5327786207199097,-2.046180009841919,-0.40645837783813477,0.33671683073043823,-0.6353098750114441,0.6059959530830383,0.4291475713253021,0.49135637283325195,0.5732126235961914,-0.2722001075744629,0.1860477775335312,-0.22769640386104584,-0.7904517650604248,-0.10222208499908447,-0.8583321571350098,0.5052534937858582,2.0329482555389404,-0.08357739448547363,0.7488844394683838,-1.279837965965271,-0.06869804859161377,-0.14594364166259766,0.2688444256782532,-0.8314198851585388,-0.02136629819869995,0.7466539144515991,-0.011772111058235168,-0.2264220118522644,-0.5585103034973145,0.2365269660949707,0.23929435014724731,-2.1588222980499268,-1.513861894607544,-2.5068814754486084,1.0082111358642578,-0.4104698896408081,-1.2343313694000244,-0.2809593081474304,0.20197045803070068,0.029781043529510498,0.23534293472766876,-0.18265391886234283,-1.1958328485488892,0.8897882699966431,0.9880543947219849,0.6528237462043762,-1.8478087186813354,0.8203341960906982,-1.3796212673187256,0.4221392869949341,0.32348090410232544,-1.245513677597046,-0.6394758224487305,-0.9103285670280457,0.6966726779937744,2.0527560710906982,-0.6131930947303772,1.2105128765106201,1.7528916597366333,-0.4006403982639313,-0.4442515969276428,-0.05579918622970581,-1.9019733667373657,1.0323960781097412,0.03031758964061737,0.008802682161331177,-1.8164476156234741,0.8123337030410767,0.8478257060050964,0.787338137626648,-0.2288762331008911,0.34500449895858765,-1.3934905529022217,0.5469474792480469,-1.3991332054138184,0.9519754648208618,0.5236867666244507,-0.24497604370117188,-1.128387212753296,-0.3197360634803772,-1.858496904373169,0.15215158462524414,-1.4046140909194946,-0.8706204891204834,-0.43002641201019287,1.3006296157836914,0.9726170301437378,0.7719631791114807,1.0470120906829834,0.8791080713272095,1.0271315574645996,1.2615923881530762,-2.070690155029297,-0.9740251302719116,-0.5042201280593872,-0.160050630569458,-0.6840848922729492,-2.1356074810028076,-2.3545525074005127,1.4334368705749512,0.23201884329319,1.1535727977752686,0.5395055413246155,0.011701583862304688,0.30287665128707886,-0.8964952826499939,-0.8956775665283203,0.714330792427063,-0.4297105073928833,-0.627391517162323,0.23490744829177856,1.9379937648773193,-1.2257466316223145,-0.5397889614105225,-0.7762228846549988,-1.3131297826766968,-0.1390742063522339,0.27077534794807434,-0.2608000636100769,0.8720321655273438,-0.1642252504825592,-1.7959572076797485,-0.8870198130607605,2.141842842102051,1.19617760181427,-0.5384745001792908,-0.026344746351242065,-1.4509960412979126,-0.3067723512649536,-0.7687526345252991,-1.4260326623916626,-0.4435313940048218,-1.511007308959961 -2990,-0.34001439809799194,-0.7900307178497314,-0.49294334650039673,-1.495801329612732,-0.2683491110801697,-0.5234389305114746,-1.4190325736999512,0.9220162034034729,-0.034166038036346436,0.7573027610778809,0.36271628737449646,-0.13246238231658936,-0.0026422441005706787,0.22543421387672424,0.2736333906650543,-0.6942126750946045,-0.9226365089416504,0.4958694875240326,-1.4226213693618774,0.17499113082885742,-0.24372674524784088,0.7992104291915894,1.071123719215393,0.47117602825164795,-0.28210926055908203,-1.1957205533981323,-1.7774336338043213,-0.6000921726226807,0.47160184383392334,-1.3002208471298218,-1.7401243448257446,-0.8978343605995178,-1.5354633331298828,-0.4421389400959015,-1.0488975048065186,-0.8450645804405212,-3.142195224761963,-0.17868855595588684,-0.3210405111312866,-0.21309953927993774,-0.4586779475212097,-0.3668156564235687,0.6177548170089722,0.6235519647598267,0.3178529143333435,-0.1247948557138443,-0.2877286970615387,-0.9975861310958862,-1.4345173835754395,-1.2214019298553467,1.2207415103912354,0.7299492955207825,0.3069170415401459,1.9066075086593628,-1.7618623971939087,0.6054811477661133,-0.1510254144668579,0.01979796588420868,0.24271267652511597,1.7589640617370605,-0.6272144317626953,-2.258942127227783,-0.25272607803344727,-0.5441726446151733,-0.44510403275489807,1.2540475130081177,-1.6637133359909058,1.2871642112731934,-0.9780446887016296,-1.1164129972457886,-2.0834968090057373,1.7547152042388916,0.7563223838806152,-1.0442510843276978,0.13607734441757202,0.622644305229187,1.6648221015930176,-1.453250527381897,-0.48618149757385254,0.9790824055671692,0.3388371169567108,1.6048365831375122,-0.016444355249404907,-0.684116005897522,0.5039870738983154,-0.7608096599578857,-0.15558284521102905,0.16112302243709564,0.2171541005373001,0.8684178590774536,-0.16495183110237122,0.7115955352783203,0.21883928775787354,-0.8573712110519409,-0.18520301580429077,0.8911910057067871,1.1242374181747437,2.9197185039520264,1.3320097923278809,-0.19892042875289917,0.3472607731819153,-0.8972914218902588,0.9497950077056885,1.0735297203063965,-0.15360355377197266,1.831697702407837,0.07423895597457886,-0.506658136844635,1.569860816001892,0.004977524280548096,0.20483119785785675,-0.789658784866333,0.6644759178161621,0.15596526861190796,-1.3822627067565918,-0.5327786207199097,-1.3330368995666504,-0.40645837783813477,0.33671683073043823,-0.23724690079689026,0.6059959530830383,0.4291475713253021,0.49135637283325195,0.5732126235961914,-0.2722001075744629,0.49867337942123413,-0.019601985812187195,0.19964826107025146,-0.10222208499908447,-1.1902081966400146,-0.6369969248771667,2.0329482555389404,-0.08357739448547363,0.7488844394683838,-1.279837965965271,-0.06869804859161377,-0.14594364166259766,0.2688444256782532,-0.8314198851585388,-0.02136629819869995,1.4028326272964478,-0.011772111058235168,-0.6091854572296143,-0.5585103034973145,0.2365269660949707,0.23929435014724731,-2.1588222980499268,-1.6896114349365234,-2.5068814754486084,1.0082111358642578,-0.1648271679878235,-1.2343313694000244,-0.2809593081474304,-0.29962706565856934,0.029781043529510498,0.23534293472766876,-0.18265391886234283,-0.40598511695861816,0.8897882699966431,0.33735620975494385,0.6528237462043762,-1.4851486682891846,0.8203341960906982,-1.3796212673187256,0.43042439222335815,0.23184829950332642,-1.245513677597046,-1.3707342147827148,-0.9103285670280457,0.6966726779937744,2.0527560710906982,-0.6131930947303772,1.552592158317566,1.7528916597366333,0.6968135833740234,-0.4442515969276428,-0.05579918622970581,-1.9019733667373657,1.0323960781097412,0.03031758964061737,0.008802682161331177,-1.8164476156234741,0.8123337030410767,0.8478257060050964,0.787338137626648,-0.604171633720398,0.34500449895858765,-1.3934905529022217,0.5469474792480469,-1.6122922897338867,0.9519754648208618,0.5236867666244507,-0.24497604370117188,-0.6619663238525391,-0.3197360634803772,-1.858496904373169,0.15215158462524414,-1.4046140909194946,-0.8706204891204834,-0.8131377696990967,0.8466787338256836,0.5995978713035583,0.7719631791114807,0.720159649848938,0.8791080713272095,1.0271315574645996,1.2615923881530762,-1.4695818424224854,-0.4511846899986267,-0.03297746181488037,-0.160050630569458,-1.0603597164154053,-2.1356074810028076,-2.3545525074005127,1.1151909828186035,0.23201884329319,0.822568416595459,0.5395055413246155,0.011701583862304688,0.30287665128707886,-1.1077401638031006,-0.8956775665283203,1.1505868434906006,-0.4297105073928833,-0.627391517162323,-1.122708797454834,1.9379937648773193,-1.2257466316223145,-0.35014504194259644,-0.7762228846549988,-1.3131297826766968,-0.1390742063522339,0.27077534794807434,-0.2608000636100769,0.8332608342170715,-0.1642252504825592,-1.5020321607589722,-0.8870198130607605,2.0301597118377686,1.19617760181427,-0.5384745001792908,-0.026344746351242065,-0.7973547577857971,-0.3067723512649536,-0.7687526345252991,-1.4260326623916626,-1.1144275665283203,-1.511007308959961 -2991,-0.34001439809799194,-0.7900307178497314,-0.49294334650039673,-1.8599263429641724,-0.2683491110801697,-0.5234389305114746,-1.4190325736999512,0.9220162034034729,-0.034166038036346436,0.7573027610778809,0.36271628737449646,0.9067087173461914,-0.0026422441005706787,-0.06654620170593262,0.378766804933548,-0.974496603012085,-0.9226365089416504,0.4958694875240326,-1.8174036741256714,-0.4687722325325012,-0.02253168821334839,0.7992104291915894,1.071123719215393,0.47117602825164795,0.10086381435394287,-1.1957205533981323,-1.7774336338043213,-1.9782174825668335,0.47160184383392334,-1.3002208471298218,-1.7401243448257446,-0.8978343605995178,-1.5354633331298828,0.023631125688552856,-0.7154172658920288,-1.0941619873046875,-3.142195224761963,-0.17868855595588684,-0.3210405111312866,-0.21309953927993774,-0.4586779475212097,-0.053462982177734375,0.6177548170089722,0.7763660550117493,0.3178529143333435,-0.035099826753139496,-0.8348788022994995,-0.9975861310958862,-1.4345173835754395,-1.2214019298553467,1.994839072227478,0.7299492955207825,0.3069170415401459,2.003030300140381,-1.7618623971939087,0.6442978978157043,-0.1510254144668579,0.01979796588420868,0.24271267652511597,1.7589640617370605,-0.6272144317626953,-2.258942127227783,-0.25272607803344727,-1.0704234838485718,-0.44510403275489807,1.2540475130081177,-1.6637133359909058,1.2871642112731934,-0.9780446887016296,-1.1164129972457886,-2.0834968090057373,2.114053249359131,0.7563223838806152,-1.0442510843276978,0.11716614663600922,0.622644305229187,1.2640587091445923,-1.453250527381897,-0.037508368492126465,0.9790824055671692,0.2497406005859375,1.6048365831375122,-0.016444355249404907,-0.684116005897522,0.1782013177871704,-0.7608096599578857,-0.15558284521102905,0.16112302243709564,0.4545297920703888,0.8684178590774536,-0.16495183110237122,0.7115955352783203,0.21883928775787354,-0.8573712110519409,0.33535993099212646,0.5647865533828735,1.2518781423568726,2.9913761615753174,1.3320097923278809,-0.19892042875289917,0.8580441474914551,-0.8972914218902588,0.9497950077056885,1.0735297203063965,-0.15360355377197266,1.831697702407837,0.5880904793739319,-1.47788667678833,1.569860816001892,0.004977524280548096,0.20483119785785675,-1.5029118061065674,0.6644759178161621,0.2984710931777954,-1.3822627067565918,-1.070062518119812,-0.9558929204940796,-0.40645837783813477,0.33671683073043823,-0.23724690079689026,0.6059959530830383,0.4291475713253021,0.3964522182941437,0.5732126235961914,-1.2269642353057861,0.016668319702148438,-0.019601985812187195,0.19964826107025146,-0.6452152729034424,-1.1902081966400146,-1.1638377904891968,2.0329482555389404,-0.08357739448547363,1.072061538696289,-1.279837965965271,-0.06869804859161377,0.22228941321372986,0.2688444256782532,-0.8314198851585388,0.2088136374950409,1.4028326272964478,-0.011772111058235168,-0.6091854572296143,-0.5585103034973145,-0.09211066365242004,0.23929435014724731,-2.302246332168579,-1.6896114349365234,-2.7470703125,1.0082111358642578,-0.16586782038211823,-1.2343313694000244,-0.2809593081474304,-0.29962706565856934,0.029781043529510498,0.1671789437532425,0.4852588176727295,-0.40598511695861816,0.8897882699966431,0.3246486186981201,0.6528237462043762,-1.4851486682891846,0.8203341960906982,-1.3796212673187256,0.43042439222335815,0.23184829950332642,-1.6374142169952393,-1.3707342147827148,-0.9103285670280457,0.6966726779937744,2.0527560710906982,-0.6131930947303772,1.552592158317566,1.64354407787323,0.5780726671218872,-0.4442515969276428,-0.05579918622970581,-1.9101145267486572,1.0323960781097412,0.046947699040174484,0.008802682161331177,-1.8164476156234741,1.1526298522949219,0.8478257060050964,-0.4716196060180664,-0.604171633720398,0.34500449895858765,-1.3934905529022217,0.7777652144432068,-1.6122922897338867,0.9519754648208618,0.5251046419143677,-0.03811158239841461,-0.6619663238525391,-0.5909109115600586,-1.1613805294036865,0.22211341559886932,-1.4046140909194946,-0.8706204891204834,-0.8131377696990967,1.1458661556243896,0.5995978713035583,0.7719631791114807,0.720159649848938,1.0664254426956177,1.0271315574645996,1.223649263381958,-1.4695818424224854,-0.5048736929893494,-0.03297746181488037,-0.32206839323043823,-1.0603597164154053,-2.1356074810028076,-2.3545525074005127,1.658913254737854,0.23201884329319,0.7377092838287354,0.5696155428886414,0.011701583862304688,0.30287665128707886,-1.1077401638031006,-0.8956775665283203,1.0301237106323242,-0.4297105073928833,-0.43326327204704285,-1.122708797454834,2.3096213340759277,-1.2257466316223145,-0.35014504194259644,-0.7762228846549988,-1.3131297826766968,-0.1390742063522339,0.27077534794807434,-0.9381123185157776,0.8332608342170715,-0.1642252504825592,-1.5020321607589722,-1.1434078216552734,2.0301597118377686,0.6399067044258118,-0.5384745001792908,-0.026344746351242065,-1.537996530532837,-0.3067723512649536,-0.7687526345252991,-1.4260326623916626,-1.1144275665283203,-2.044902801513672 -2992,-0.34001439809799194,-0.7900307178497314,-0.28418123722076416,-1.771793007850647,-0.2683491110801697,-0.5234389305114746,-1.4190325736999512,0.9220162034034729,0.19953127205371857,0.7573027610778809,0.6605676412582397,0.9067087173461914,-0.48980244994163513,-0.7425902485847473,0.06683948636054993,-1.1470773220062256,-0.9226365089416504,0.4958694875240326,-1.863569974899292,-0.4687722325325012,0.3736872971057892,0.7992104291915894,1.071123719215393,0.47117602825164795,0.10086381435394287,-1.1957205533981323,-1.7774336338043213,-0.9547668695449829,0.47160184383392334,-1.3442862033843994,-1.7401243448257446,-0.8978343605995178,-1.5354633331298828,0.023631125688552856,-0.7154172658920288,-1.0941619873046875,-3.142195224761963,-0.17868855595588684,-0.3210405111312866,-0.43156418204307556,-0.4586779475212097,-0.3637791574001312,0.6049249172210693,0.7763660550117493,-0.016867905855178833,-0.035099826753139496,-0.8348788022994995,-1.4193155765533447,-1.4345173835754395,-1.2214019298553467,1.994839072227478,0.7299492955207825,0.3069170415401459,2.003030300140381,-1.7618623971939087,0.6442978978157043,-0.04972177743911743,-0.22225810587406158,0.5564152002334595,1.7589640617370605,-0.6272144317626953,-2.258942127227783,-0.04100453853607178,-1.0704234838485718,-0.44510403275489807,1.2540475130081177,-1.6637133359909058,1.2871642112731934,-1.0811641216278076,-1.1164129972457886,-2.0834968090057373,1.5891962051391602,0.816818118095398,-1.0442510843276978,0.11716614663600922,0.622644305229187,1.2640587091445923,-1.3394114971160889,-0.037508368492126465,0.9790824055671692,0.2497406005859375,1.6048365831375122,-0.016444355249404907,-0.684116005897522,0.18280082941055298,-0.24090981483459473,1.8131611347198486,0.14378373324871063,0.19980472326278687,0.8684178590774536,-0.16495183110237122,0.0030551552772521973,0.21883928775787354,-0.3833979070186615,0.33535993099212646,0.5647865533828735,1.2518781423568726,2.9913761615753174,1.3320097923278809,-0.11386902630329132,0.7039697170257568,-0.9724315404891968,0.9497950077056885,0.9743695855140686,-0.15360355377197266,1.708675503730774,0.5880904793739319,-1.47788667678833,1.569860816001892,0.004977524280548096,0.20483119785785675,-1.6764557361602783,0.6644759178161621,0.2984710931777954,-1.3822627067565918,-1.070062518119812,-0.5448381304740906,-0.40645837783813477,0.33671683073043823,-0.23724690079689026,1.1330361366271973,0.4291475713253021,0.3964522182941437,0.5732126235961914,-1.2269642353057861,0.016668319702148438,-0.019601985812187195,0.19964826107025146,-1.3054096698760986,-1.1902081966400146,-1.1638377904891968,2.0329482555389404,-0.2029695361852646,1.072061538696289,-1.279837965965271,-0.10701674222946167,0.8639411926269531,0.2688444256782532,-1.2658220529556274,0.2088136374950409,1.4028326272964478,-0.33368003368377686,0.15173429250717163,-0.5585103034973145,-0.6146339178085327,0.23929435014724731,-2.302246332168579,-1.7135709524154663,-2.159083366394043,1.0082111358642578,-0.18195940554141998,-1.2343313694000244,-0.2809593081474304,-0.29962706565856934,0.029781043529510498,0.1671789437532425,0.7151787281036377,-0.40598511695861816,0.8897882699966431,0.3246486186981201,0.43044722080230713,-1.4851486682891846,0.8203341960906982,-1.3796212673187256,0.43042439222335815,0.23184829950332642,-1.6374142169952393,-1.3707342147827148,-0.9103285670280457,0.4579046368598938,2.0527560710906982,-0.6131930947303772,1.275872826576233,1.64354407787323,0.5780726671218872,-0.6815694570541382,-0.05579918622970581,-1.9101145267486572,1.0323960781097412,0.046947699040174484,-0.012487862259149551,-1.8164476156234741,1.1526298522949219,0.8478257060050964,-0.4716196060180664,-0.604171633720398,0.24180859327316284,-1.3934905529022217,0.7777652144432068,-1.6122922897338867,0.9519754648208618,0.5251046419143677,-0.03811158239841461,-0.6619663238525391,-0.5909109115600586,-1.4483428001403809,0.16300614178180695,-1.4046140909194946,-0.8706204891204834,-0.8131377696990967,1.1458661556243896,0.5995978713035583,0.25994473695755005,0.720159649848938,1.0664254426956177,0.5226075649261475,1.223649263381958,-1.672399878501892,-0.5048736929893494,0.27293702960014343,-0.32206839323043823,-1.0603597164154053,-2.1356074810028076,-2.5270049571990967,1.658913254737854,0.4799749255180359,0.7377092838287354,-0.11057788133621216,0.2747444212436676,0.30287665128707886,-1.1077401638031006,-0.8956775665283203,1.0301237106323242,-0.4297105073928833,-0.43326327204704285,-1.122708797454834,2.3096213340759277,-1.2257466316223145,-0.35014504194259644,-0.7762228846549988,-1.4351332187652588,-0.03022293746471405,0.27077534794807434,-0.9381123185157776,0.8332608342170715,-0.1642252504825592,-1.1810519695281982,-1.1434078216552734,2.0301597118377686,0.597076952457428,-0.5384745001792908,0.3332016170024872,-1.537996530532837,-0.3067723512649536,-0.7687526345252991,-1.4260326623916626,-0.9989044070243835,-2.044902801513672 -2993,-0.34001439809799194,-0.7900307178497314,-0.28418123722076416,-1.771793007850647,-0.2683491110801697,-0.5234389305114746,-1.6282737255096436,0.9220162034034729,0.19953127205371857,0.5870444774627686,-0.15302127599716187,0.5440464019775391,0.3641694486141205,-0.7425902485847473,-0.18272116780281067,-1.1470773220062256,-0.9226365089416504,0.4958694875240326,-1.863569974899292,-0.4687722325325012,0.10578835010528564,0.7992104291915894,1.071123719215393,0.47117602825164795,-0.39653849601745605,-0.6328746676445007,-1.7774336338043213,-0.9547668695449829,0.47160184383392334,-1.3442862033843994,-1.624008297920227,-0.8978343605995178,-1.5354633331298828,-0.029811318963766098,-0.7154172658920288,-0.6906431913375854,-3.4480807781219482,-0.17868855595588684,0.012948662042617798,-0.2688789963722229,-0.5887901782989502,-0.6195775866508484,0.3632690906524658,0.43895208835601807,-0.016867905855178833,-0.035099826753139496,-0.8348788022994995,-1.224092721939087,-1.4345173835754395,-1.432860016822815,1.994839072227478,0.7037235498428345,0.3896084129810333,2.0980024337768555,-1.7618623971939087,0.8680893182754517,-0.04972177743911743,-0.22225810587406158,0.5564152002334595,1.7589640617370605,-0.6272144317626953,-2.159653663635254,-0.04100453853607178,-1.0704234838485718,-0.44510403275489807,1.5645123720169067,-1.7164926528930664,1.543630599975586,-1.0811641216278076,-1.8148679733276367,-2.0834968090057373,1.5891962051391602,0.816818118095398,-1.0442510843276978,0.11716614663600922,0.622644305229187,1.2640587091445923,-1.876554012298584,-0.31804391741752625,0.7970744967460632,0.2497406005859375,1.6048365831375122,-0.016444355249404907,-0.684116005897522,0.18280082941055298,-0.24090981483459473,1.8131611347198486,0.03188352286815643,-0.14355379343032837,0.8684178590774536,-0.16495183110237122,0.0030551552772521973,-0.04875805974006653,-1.7762563228607178,0.33535993099212646,0.816513180732727,1.5599726438522339,2.9913761615753174,1.3320097923278809,-0.445037305355072,0.7039697170257568,-1.322216510772705,0.9497950077056885,1.1615545749664307,-0.15360355377197266,1.708675503730774,0.5880904793739319,-1.47788667678833,1.569860816001892,0.004977524280548096,0.20483119785785675,-1.6764557361602783,0.6644759178161621,0.2984710931777954,-1.3822627067565918,-0.3303337097167969,-0.7099146842956543,-0.40645837783813477,0.32406893372535706,-0.23724690079689026,1.1330361366271973,0.8758844137191772,0.3964522182941437,0.5732126235961914,-0.8061395883560181,0.11606249213218689,-0.6691972613334656,0.19964826107025146,-0.7738924026489258,-1.2766907215118408,-1.1638377904891968,2.0329482555389404,-0.2029695361852646,1.072061538696289,-0.9600387811660767,-0.10701674222946167,0.8639411926269531,0.2688444256782532,-1.2658220529556274,0.2088136374950409,1.4028326272964478,-0.8039382696151733,0.15173429250717163,-0.5585103034973145,-0.6146339178085327,0.24653410911560059,-2.302246332168579,-1.8900871276855469,-2.0626754760742188,0.9940687417984009,-0.3274126946926117,-1.2343313694000244,-0.2809593081474304,-0.29962706565856934,0.029781043529510498,0.1671789437532425,0.7151787281036377,-0.40598511695861816,0.4954122304916382,0.3246486186981201,0.43044722080230713,-1.4851486682891846,-0.3988262414932251,-1.3796212673187256,0.43042439222335815,0.23184829950332642,-2.3546011447906494,-1.3707342147827148,-0.9103285670280457,0.4579046368598938,2.0527560710906982,-0.6131930947303772,1.275872826576233,1.64354407787323,0.5780726671218872,-0.6815694570541382,-0.05579918622970581,-1.8493772745132446,0.9259169697761536,0.046947699040174484,-0.012487862259149551,-1.8164476156234741,1.1526298522949219,0.8478257060050964,0.08156919479370117,-0.604171633720398,0.24180859327316284,-1.3934905529022217,0.7777652144432068,-1.6122922897338867,0.9519754648208618,0.3214801549911499,0.49598002433776855,-0.6619663238525391,-0.5909109115600586,-1.4483428001403809,0.16300614178180695,-1.3163657188415527,-0.6698733568191528,-0.8131377696990967,1.1458661556243896,0.5995978713035583,0.25994473695755005,0.720159649848938,1.026518702507019,0.5226075649261475,1.223649263381958,-1.3630564212799072,-1.0473384857177734,0.4397011995315552,-0.32206839323043823,-1.0603597164154053,-2.1356074810028076,-2.5270049571990967,1.5954358577728271,0.4799749255180359,0.9897772073745728,-0.34207189083099365,0.4428386092185974,0.30287665128707886,-0.1759340763092041,-0.8956775665283203,1.0301237106323242,-0.4297105073928833,-0.799945592880249,-1.122708797454834,2.3096213340759277,-1.2257466316223145,-0.35014504194259644,-0.7762228846549988,-1.0314916372299194,-0.03022293746471405,0.27077534794807434,-0.9381123185157776,0.8332608342170715,-0.1399294137954712,-1.1810519695281982,-1.1434078216552734,2.0301597118377686,0.5204414129257202,0.11950010061264038,0.29917797446250916,-1.2158098220825195,-0.3067723512649536,-0.7687526345252991,-1.4233523607254028,-1.7006356716156006,-2.044902801513672 -2994,-0.34001439809799194,-0.39442726969718933,-0.28418123722076416,-1.771793007850647,-0.2683491110801697,-0.5234389305114746,-1.6282737255096436,0.9220162034034729,0.19953127205371857,0.5870444774627686,-0.15302127599716187,0.5440464019775391,0.3641694486141205,-0.9079976677894592,-0.18272116780281067,-0.8206470608711243,-1.1892337799072266,0.4958694875240326,-1.863569974899292,-0.4687722325325012,0.2085406482219696,0.8595728874206543,0.9908735752105713,0.47117602825164795,-0.4051961898803711,-0.6328746676445007,-1.7774336338043213,-1.420649528503418,0.47160184383392334,-1.5320603847503662,-1.624008297920227,-0.8978343605995178,-1.6011732816696167,-0.38817426562309265,-0.7154172658920288,-0.6906431913375854,-3.6508913040161133,-0.17868855595588684,0.012948662042617798,-0.2688789963722229,-0.5887901782989502,-0.6195775866508484,0.5570759773254395,0.36009034514427185,-0.016867905855178833,-0.035099826753139496,-0.8348788022994995,-1.224092721939087,-1.4345173835754395,-1.432860016822815,1.994839072227478,0.7037235498428345,0.3896084129810333,2.0980024337768555,-1.7618623971939087,0.8680893182754517,-0.04972177743911743,0.43395888805389404,0.6320005655288696,1.7589640617370605,-0.8672208786010742,-2.159653663635254,-0.04100453853607178,-1.6139745712280273,-0.44510403275489807,1.6104384660720825,-1.7164926528930664,1.543630599975586,-1.0811641216278076,-1.8148679733276367,-2.0834968090057373,0.9751648902893066,0.816818118095398,-1.0442510843276978,0.11716614663600922,0.622644305229187,1.2640587091445923,-2.187558650970459,-0.31804391741752625,0.7970744967460632,0.2497406005859375,1.6048365831375122,-0.803847074508667,-0.5428062677383423,0.18280082941055298,-0.24090981483459473,1.8131611347198486,0.03188352286815643,-0.14355379343032837,0.8684178590774536,-0.16495183110237122,0.0030551552772521973,-0.04875805974006653,-1.9110223054885864,0.33535993099212646,1.401590347290039,1.5194340944290161,2.83925199508667,1.3968377113342285,-0.445037305355072,0.7039697170257568,-0.5983811616897583,0.9497950077056885,1.1615545749664307,-0.15360355377197266,1.708675503730774,0.5880904793739319,-1.47788667678833,1.4802757501602173,0.004977524280548096,0.3617667853832245,-1.6764557361602783,0.6644759178161621,0.2984710931777954,-1.3822627067565918,-0.9137089252471924,-0.6392331123352051,-0.40645837783813477,0.32406893372535706,-1.0296984910964966,1.1330361366271973,0.8758844137191772,0.39814919233322144,0.5732126235961914,-0.5172594785690308,0.11606249213218689,-0.6691972613334656,-0.40774625539779663,-0.7738924026489258,-1.2766907215118408,-1.1638377904891968,2.0329482555389404,-0.2029695361852646,1.072061538696289,-0.9600387811660767,0.13028186559677124,0.8639411926269531,0.41496825218200684,-1.2658220529556274,0.2088136374950409,0.56778484582901,-0.8039382696151733,0.15173429250717163,0.7380092144012451,-0.6146339178085327,-0.354206383228302,-1.6213784217834473,-1.8900871276855469,-2.0626754760742188,0.9940687417984009,-0.5953990817070007,-1.2343313694000244,-0.2809593081474304,-0.29962706565856934,0.029781043529510498,0.1671789437532425,0.7151787281036377,-0.40598511695861816,0.4954122304916382,0.3246486186981201,0.43044722080230713,-1.4851486682891846,-0.3988262414932251,-1.3796212673187256,0.43042439222335815,-0.3168267607688904,-2.3546011447906494,-1.3707342147827148,-0.9103285670280457,0.4579046368598938,2.0527560710906982,-0.6131930947303772,0.3853001594543457,1.64354407787323,1.1281218528747559,-0.6815694570541382,-0.05579918622970581,-2.4014477729797363,0.3560570478439331,0.046947699040174484,-0.012487862259149551,-1.7117326259613037,1.1526298522949219,0.8478257060050964,1.6053344011306763,-0.604171633720398,0.321561336517334,-1.4505008459091187,0.7777652144432068,-1.6122922897338867,0.9519754648208618,0.4792057275772095,0.5028122663497925,-0.6619663238525391,-0.5909109115600586,-1.4483428001403809,0.16300614178180695,-1.3163657188415527,-0.6698733568191528,-0.8131377696990967,1.1458661556243896,0.5202853083610535,0.25994473695755005,0.720159649848938,1.026518702507019,0.5223783850669861,1.223649263381958,-1.3630564212799072,-0.4612113833427429,0.3357229232788086,-0.32206839323043823,-1.0603597164154053,-1.332615852355957,-2.5270049571990967,1.6573578119277954,-0.1993556022644043,0.9302614331245422,-0.34207189083099365,0.4428386092185974,0.048792243003845215,-0.1759340763092041,-0.9437233209609985,1.0301237106323242,-0.4297105073928833,-0.799945592880249,-0.48977744579315186,2.3096213340759277,-1.2257466316223145,-0.35014504194259644,-0.7762228846549988,-0.7377733588218689,-0.03022293746471405,0.27077534794807434,-0.9381123185157776,1.1820435523986816,-0.1399294137954712,-1.1810519695281982,-1.1434078216552734,2.0301597118377686,0.5204414129257202,0.11950010061264038,-0.31490209698677063,-1.2158098220825195,-0.3067723512649536,-0.16633623838424683,-1.4233523607254028,-1.8187718391418457,-2.044902801513672 -2995,-0.34001439809799194,-0.39442726969718933,-1.056291103363037,-1.771793007850647,-0.2683491110801697,-0.5234389305114746,-1.6282737255096436,0.6043709516525269,-0.5362313389778137,0.5870444774627686,0.18710404634475708,0.5440464019775391,0.3641694486141205,-0.9079976677894592,0.016010582447052002,-0.8206470608711243,-1.1892337799072266,0.4958694875240326,-1.863569974899292,-0.4687722325325012,0.2085406482219696,1.1381595134735107,0.9908735752105713,0.4946683645248413,-0.33463039994239807,-0.6328746676445007,-1.7774336338043213,-1.433376669883728,0.47160184383392334,-1.5320603847503662,-1.624008297920227,-1.041685938835144,-1.6011732816696167,-0.38817426562309265,-1.284993290901184,-0.6906431913375854,-3.349302053451538,-0.17868855595588684,0.012948662042617798,-0.2688789963722229,-0.5887901782989502,-0.7283067107200623,0.5570759773254395,0.36009034514427185,-0.016867905855178833,-0.035099826753139496,-0.8348788022994995,-1.224092721939087,-1.201033592224121,-0.919861912727356,1.994839072227478,0.7037235498428345,0.3896084129810333,2.0980024337768555,-1.9285176992416382,0.8680893182754517,-0.04972177743911743,0.43395888805389404,0.5640963315963745,0.7031440734863281,-0.8672208786010742,-2.159653663635254,-0.04100453853607178,-1.6139745712280273,0.16914066672325134,1.6104384660720825,-1.7164926528930664,1.056117296218872,-1.4353443384170532,-0.9598767161369324,-2.0834968090057373,0.9751648902893066,0.816818118095398,-1.0442510843276978,0.11716614663600922,0.622644305229187,1.3737006187438965,-1.9705911874771118,-0.31804391741752625,1.0268807411193848,0.2497406005859375,1.531677484512329,-0.803847074508667,-0.5428062677383423,0.18280082941055298,-0.24090981483459473,0.2995326519012451,0.03188352286815643,-0.14355379343032837,0.8684178590774536,-0.16495183110237122,0.0030551552772521973,-0.04875805974006653,-1.569886565208435,0.5027480125427246,1.401590347290039,1.5194340944290161,2.9179110527038574,1.3968377113342285,-0.33217853307724,0.7039697170257568,-0.5983811616897583,0.8580363392829895,1.0747408866882324,0.09033501148223877,1.708675503730774,0.5880904793739319,-1.47788667678833,1.4802757501602173,0.03013760782778263,0.3617667853832245,-1.6764557361602783,0.6644759178161621,0.2984710931777954,-1.3822627067565918,-0.5754624605178833,-0.6392331123352051,-0.40645837783813477,0.32406893372535706,-1.0296984910964966,1.1330361366271973,0.6157587766647339,0.10282212495803833,0.9913896918296814,-0.15632495284080505,0.11606249213218689,-0.6691972613334656,-0.40774625539779663,-0.6360440254211426,-1.2766907215118408,-1.1638377904891968,2.573247194290161,-0.2029695361852646,1.072061538696289,-0.9600387811660767,0.1953740119934082,0.8639411926269531,0.41496825218200684,-0.20295381546020508,0.2088136374950409,0.56778484582901,-0.8039382696151733,0.15173429250717163,0.7380092144012451,-1.432884931564331,-0.354206383228302,-1.3182212114334106,-1.8900871276855469,-2.0626754760742188,0.5213695764541626,-0.7324941754341125,-1.2343313694000244,-0.5000706315040588,-0.29499393701553345,0.029781043529510498,0.1671789437532425,0.7151787281036377,-0.08515706658363342,0.4954122304916382,0.3246486186981201,0.43044722080230713,-1.4845792055130005,-0.3988262414932251,-1.1886495351791382,0.43042439222335815,-0.1960124671459198,-1.694553017616272,-1.821874737739563,-0.9103285670280457,0.06967297196388245,2.0527560710906982,-0.6131930947303772,0.796629786491394,1.64354407787323,0.9025146961212158,-0.6815694570541382,-0.05579918622970581,-2.2138512134552,0.3560570478439331,0.046947699040174484,-0.012487862259149551,-1.7117326259613037,0.6512140035629272,0.8478257060050964,0.23857927322387695,-0.604171633720398,-0.1729850172996521,-1.4505008459091187,0.7777652144432068,-1.6122922897338867,0.9519754648208618,0.9992262721061707,0.25897860527038574,-0.6619663238525391,-0.5909109115600586,-1.4483428001403809,-0.7288842797279358,-1.3163657188415527,-0.7531989812850952,-0.8131377696990967,1.1458661556243896,0.5202853083610535,0.25994473695755005,0.720159649848938,1.026518702507019,0.5223783850669861,1.223649263381958,-0.5227680206298828,-0.4612113833427429,0.3357229232788086,-0.32206839323043823,-1.0603597164154053,-1.498533010482788,-2.5270049571990967,1.6573578119277954,-0.2724921703338623,1.1860581636428833,-0.34207189083099365,0.727820634841919,0.048792243003845215,-0.1759340763092041,-0.9437233209609985,0.8194632530212402,-0.38263896107673645,-1.3482508659362793,-0.48977744579315186,2.3096213340759277,-1.2257466316223145,-0.35014504194259644,-0.7762228846549988,-0.4719371497631073,-0.03022293746471405,0.7647393941879272,-0.484884113073349,0.9651205539703369,-0.1399294137954712,-1.527727484703064,-0.892824113368988,2.0301597118377686,0.5204414129257202,0.11950010061264038,-0.31490209698677063,-0.4970936179161072,-0.3067723512649536,-0.3643467426300049,-1.4233523607254028,-1.8187718391418457,-2.044902801513672 -2996,-0.34001439809799194,-0.39442726969718933,-1.056291103363037,-1.771793007850647,-0.2683491110801697,-0.3266763687133789,-1.6282737255096436,0.6043709516525269,-0.5362313389778137,0.6650058031082153,0.18710404634475708,0.5440464019775391,0.2807674705982208,-0.9079976677894592,0.016010582447052002,-0.8206470608711243,-0.8485628366470337,0.4958694875240326,-1.863569974899292,-0.4687722325325012,-0.4203999936580658,1.1381595134735107,0.9908735752105713,0.4946683645248413,-0.33463039994239807,-0.6328746676445007,-1.7774336338043213,-1.433376669883728,0.39217984676361084,-1.5320603847503662,-1.4030799865722656,-0.5314546227455139,-1.6011732816696167,-1.3270474672317505,-1.284993290901184,-0.6906431913375854,-3.349302053451538,-0.17868855595588684,0.012948662042617798,-0.2688789963722229,-0.6600057482719421,-0.7283067107200623,0.5570759773254395,0.6455759406089783,-0.016867905855178833,-0.1482616364955902,-0.8348788022994995,-1.224092721939087,-0.687725841999054,-0.7324740886688232,1.7274255752563477,0.892392635345459,0.09408414363861084,2.0980024337768555,-1.9285176992416382,0.8680893182754517,-0.04972177743911743,0.43395888805389404,0.1348690688610077,1.1394705772399902,-0.8672208786010742,-2.2515957355499268,-0.04100453853607178,-1.1976016759872437,0.16914066672325134,1.6104384660720825,-1.7164926528930664,1.056117296218872,-1.3105552196502686,-1.5879616737365723,-2.0834968090057373,0.9751648902893066,0.816818118095398,-1.0442510843276978,0.3008682131767273,0.622644305229187,1.1403701305389404,-1.9705911874771118,-0.31804391741752625,1.0268807411193848,0.11591903865337372,1.531677484512329,-0.6899994611740112,-0.6130317449569702,-0.633778989315033,-0.24090981483459473,1.982125997543335,0.03188352286815643,-0.14355379343032837,0.8684178590774536,-0.16495183110237122,-0.9243708252906799,-0.04875805974006653,-1.569886565208435,0.6860992908477783,1.401590347290039,1.5194340944290161,2.9179110527038574,1.0645697116851807,-0.33217853307724,0.6477829813957214,-0.5983811616897583,1.326124668121338,1.0747408866882324,0.09033501148223877,1.708675503730774,0.5880904793739319,-1.47788667678833,1.452643632888794,0.03013760782778263,0.42367857694625854,-1.6764557361602783,0.6644759178161621,0.40133023262023926,-0.2696704864501953,-0.5754624605178833,-0.6392331123352051,-0.40645837783813477,0.32406893372535706,-0.5156624913215637,1.1330361366271973,0.6157587766647339,0.9796976447105408,0.3482757806777954,-0.1594763547182083,0.11606249213218689,-0.6691972613334656,-0.40774625539779663,-1.1696927547454834,-1.2766907215118408,-1.1638377904891968,2.573247194290161,-0.2029695361852646,1.3658170700073242,-0.6484141945838928,0.1953740119934082,0.8639411926269531,0.41496825218200684,-0.20295381546020508,0.5488923192024231,0.9025766849517822,-0.2470046877861023,0.15173429250717163,0.7380092144012451,-1.432884931564331,0.06044939160346985,-1.3182212114334106,-1.8900871276855469,-2.386448621749878,0.5213695764541626,-0.7324941754341125,-1.2343313694000244,-0.5000706315040588,-0.29499393701553345,0.029781043529510498,0.4087081551551819,0.7151787281036377,-0.08515706658363342,0.36541110277175903,0.2861540615558624,0.43044722080230713,-1.4845792055130005,0.7603353261947632,-1.1886495351791382,0.7657228112220764,-0.1960124671459198,-1.832076072692871,-1.821874737739563,-1.2162110805511475,-0.3253905773162842,2.0527560710906982,-1.3887999057769775,1.3258512020111084,1.4345170259475708,0.9025146961212158,-0.6815694570541382,-0.05579918622970581,-2.1917264461517334,0.15787677466869354,0.046947699040174484,-0.012487862259149551,-1.7117326259613037,0.6512140035629272,0.8478257060050964,0.23857927322387695,-0.604171633720398,-0.21147561073303223,-1.4505008459091187,0.7777652144432068,-1.349677562713623,0.9519754648208618,0.9992262721061707,0.25897860527038574,-0.6619663238525391,-0.5909109115600586,-0.6143772602081299,-0.4657881259918213,-1.3163657188415527,-0.7531989812850952,-0.8131377696990967,1.1458661556243896,1.1946918964385986,0.25994473695755005,0.720159649848938,1.026518702507019,0.5223783850669861,1.4085407257080078,-0.5227680206298828,-0.4612113833427429,0.3357229232788086,-0.32206839323043823,-0.9523114562034607,-1.498533010482788,-2.5032429695129395,1.4987740516662598,-0.2724921703338623,1.1860581636428833,-0.34207189083099365,0.727820634841919,0.4841552972793579,-0.1759340763092041,-0.9437233209609985,0.8194632530212402,-0.38263896107673645,-1.3482508659362793,-0.48977744579315186,2.145231246948242,-1.2257466316223145,-0.35014504194259644,-0.7762228846549988,-0.4719371497631073,-0.03022293746471405,0.3070005178451538,-0.484884113073349,1.6149983406066895,-0.1399294137954712,-1.527727484703064,-0.5780176520347595,2.0301597118377686,0.5204414129257202,0.11950010061264038,0.0030961930751800537,-0.4970936179161072,-0.3067723512649536,-0.3643467426300049,-1.4233523607254028,-1.8187718391418457,-2.044902801513672 -2997,-0.34001439809799194,-0.39442726969718933,-1.056291103363037,-1.771793007850647,-0.2683491110801697,-0.3266763687133789,-1.6282737255096436,0.6043709516525269,-0.5362313389778137,0.6650058031082153,0.18710404634475708,0.5440464019775391,0.2807674705982208,-0.4938212037086487,0.016010582447052002,-0.8206470608711243,-1.2333041429519653,0.4958694875240326,-1.5601165294647217,-0.4687722325325012,-0.0793103575706482,1.1381595134735107,0.9908735752105713,0.4946683645248413,-0.33463039994239807,-0.8699097037315369,-2.05407452583313,-1.433376669883728,0.39217984676361084,-1.5320603847503662,-1.4030799865722656,-0.5314546227455139,-1.6011732816696167,-1.00321626663208,-1.284993290901184,-0.6906431913375854,-3.349302053451538,-0.17868855595588684,0.012948662042617798,-0.2688789963722229,-0.6600057482719421,-0.8426035046577454,0.5570759773254395,0.6455759406089783,-0.016867905855178833,-0.1482616364955902,-0.8348788022994995,-1.587372899055481,-0.687725841999054,-0.7324740886688232,1.2596397399902344,0.892392635345459,0.09408414363861084,2.0980024337768555,-1.9285176992416382,0.8680893182754517,0.06771501898765564,0.43539151549339294,0.1508430540561676,1.1394705772399902,-0.8672208786010742,-2.2515957355499268,-0.04100453853607178,-1.1976016759872437,-0.07475301623344421,1.6104384660720825,-1.7164926528930664,1.056117296218872,-0.7288547158241272,-1.5879616737365723,-2.0834968090057373,0.9751648902893066,0.2264971137046814,-1.167744755744934,-0.29062598943710327,0.622644305229187,1.1403701305389404,-1.9705911874771118,-0.31804391741752625,1.0268807411193848,-0.03387804329395294,0.947732150554657,-0.8856871128082275,-0.6130317449569702,-0.633778989315033,-0.24090981483459473,1.1746037006378174,0.27369368076324463,-0.14355379343032837,0.5496401786804199,-0.7299289703369141,-0.48981672525405884,-0.04875805974006653,-1.310594916343689,-0.5158491134643555,1.401590347290039,1.3751552104949951,2.7483227252960205,0.8334851861000061,-0.6942309141159058,0.6477829813957214,-0.5983811616897583,1.23885977268219,1.0747408866882324,0.09033501148223877,1.708675503730774,0.5880904793739319,-0.9387770295143127,1.452643632888794,0.03013760782778263,0.3861476182937622,-1.6764557361602783,0.6644759178161621,0.40133023262023926,0.14913782477378845,-0.5754624605178833,-0.6392331123352051,-0.40645837783813477,0.32406893372535706,-1.0841875076293945,1.1330361366271973,0.9845948815345764,0.9796976447105408,0.3482757806777954,-0.1594763547182083,0.11606249213218689,-0.6691972613334656,-0.14312437176704407,-1.1696927547454834,-1.2766907215118408,-1.1638377904891968,2.573247194290161,-0.2029695361852646,1.3658170700073242,-0.9616190195083618,0.1953740119934082,0.8639411926269531,0.41496825218200684,-0.20295381546020508,-0.7462348341941833,0.9025766849517822,-0.2470046877861023,-0.8543568253517151,0.7380092144012451,-1.432884931564331,0.06044939160346985,-1.3182212114334106,-1.728093147277832,-2.386448621749878,0.5213695764541626,-0.7324941754341125,-1.2343313694000244,-0.040075987577438354,-0.29499393701553345,-0.3553868532180786,0.4087081551551819,0.7151787281036377,-0.08515706658363342,0.7522988319396973,0.2861540615558624,-0.13879680633544922,-1.771838903427124,0.7603353261947632,-1.690341591835022,0.7657228112220764,-0.2711777687072754,-1.832076072692871,-1.821874737739563,-1.2162110805511475,0.7771987915039062,2.0527560710906982,-1.3887999057769775,1.3258512020111084,0.8775025606155396,0.9025146961212158,-0.6815694570541382,-0.05579918622970581,-2.1917264461517334,0.15787677466869354,0.046947699040174484,-0.012487862259149551,-1.7117326259613037,1.093739628791809,0.7560380697250366,0.23857927322387695,-1.0551948547363281,-0.21147561073303223,-1.4505008459091187,0.7777652144432068,-1.349677562713623,0.47640544176101685,0.9992262721061707,0.25897860527038574,-1.1533846855163574,-0.5909109115600586,-1.5968999862670898,-0.4657881259918213,-1.292149305343628,-1.021237850189209,-0.8131377696990967,0.3787693977355957,1.1946918964385986,0.6364941596984863,0.720159649848938,1.026518702507019,0.5223783850669861,1.4085407257080078,-1.3979451656341553,-0.4612113833427429,-0.6386620402336121,-0.471842497587204,-0.9523114562034607,-1.498533010482788,-2.5032429695129395,1.2219712734222412,-0.2724921703338623,1.0151385068893433,-0.1548507809638977,0.727820634841919,-0.1231917142868042,-0.1759340763092041,-0.9437233209609985,0.9476099610328674,-0.38263896107673645,-1.3482508659362793,-0.48977744579315186,2.4951107501983643,-1.4344075918197632,-0.35014504194259644,-0.27070367336273193,-0.7480694055557251,-0.03022293746471405,0.3070005178451538,-0.484884113073349,1.6149983406066895,-0.1399294137954712,-1.527727484703064,-0.2160574197769165,2.0301597118377686,0.5204414129257202,0.11950010061264038,0.18337786197662354,-0.5846734642982483,-0.3067723512649536,-0.3643467426300049,-1.4233523607254028,-1.8187718391418457,-2.044902801513672 -2998,-0.11325883865356445,-0.19605685770511627,-1.056291103363037,-1.771793007850647,-0.2683491110801697,-0.3266763687133789,-1.6282737255096436,-0.1443912386894226,-0.5362313389778137,0.8822965025901794,0.18710404634475708,0.5440464019775391,0.2807674705982208,-0.746788501739502,0.016010582447052002,-0.8206470608711243,-1.2333041429519653,1.050684928894043,-1.5601165294647217,-0.4687722325325012,-0.0793103575706482,0.7499417066574097,0.9908735752105713,0.4946683645248413,-0.5461130142211914,-0.21837389469146729,-2.05407452583313,-1.433376669883728,0.39217984676361084,-1.5320603847503662,-1.4030799865722656,-0.5314546227455139,-1.6011732816696167,-1.00321626663208,-1.284993290901184,-0.6906431913375854,-3.017747402191162,-0.17868855595588684,0.012948662042617798,-0.2688789963722229,-0.6600057482719421,-0.8426035046577454,0.5570759773254395,0.6455759406089783,-0.016867905855178833,-0.1482616364955902,-0.8348788022994995,-1.587372899055481,-0.37114736437797546,-1.266883134841919,1.2596397399902344,0.892392635345459,0.09408414363861084,2.0853323936462402,-1.7620103359222412,0.8680893182754517,0.06771501898765564,0.43539151549339294,0.1508430540561676,0.5139274597167969,-0.8672208786010742,-2.2515957355499268,-0.04100453853607178,-1.1976016759872437,-0.3644157350063324,1.9416066408157349,-1.7164926528930664,1.056117296218872,-0.7288547158241272,-1.5879616737365723,-2.0834968090057373,0.9751648902893066,0.5654789805412292,-1.167744755744934,-0.29062598943710327,0.5271344780921936,1.1403701305389404,-1.9705911874771118,-0.5032533407211304,0.8987749218940735,-0.03387804329395294,0.947732150554657,-0.8856871128082275,-0.6130317449569702,-0.633778989315033,-0.10896238684654236,1.4674103260040283,0.27369368076324463,-0.14355379343032837,0.5496401786804199,-0.7299289703369141,-0.48981672525405884,-0.04875805974006653,-1.310594916343689,-0.5158491134643555,1.401590347290039,1.3751552104949951,2.9753456115722656,1.3528001308441162,-0.6942309141159058,0.6477829813957214,-0.48067808151245117,1.23885977268219,1.0747408866882324,0.09033501148223877,2.022583484649658,0.5880904793739319,-0.9387770295143127,1.452643632888794,0.0037175361067056656,0.3861476182937622,-1.6764557361602783,0.6644759178161621,0.7532023191452026,0.14913782477378845,-0.5754624605178833,-0.6392331123352051,-0.40645837783813477,0.32406893372535706,-0.7070670127868652,1.2926602363586426,0.9845948815345764,1.1979255676269531,0.3482757806777954,-0.1594763547182083,0.11606249213218689,-0.6691972613334656,-0.14312437176704407,-1.1696927547454834,-1.2766907215118408,-0.4509289860725403,2.1236798763275146,-0.2029695361852646,1.3658170700073242,-0.9616190195083618,0.1953740119934082,0.8639411926269531,0.5443108081817627,-0.20295381546020508,-0.7462348341941833,0.9025766849517822,-0.2470046877861023,-0.8543568253517151,0.7380092144012451,-1.432884931564331,0.06044939160346985,-1.3182212114334106,-1.728093147277832,-2.386448621749878,-0.13269329071044922,-0.7324941754341125,-1.4136182069778442,-0.040075987577438354,-0.29499393701553345,-0.8123521208763123,0.482802152633667,0.7151787281036377,-0.08515706658363342,1.0712801218032837,0.2861540615558624,-0.13879680633544922,-0.615726113319397,0.7603353261947632,-1.690341591835022,1.0463156700134277,-0.2711777687072754,-1.832076072692871,-2.37808895111084,-1.2162110805511475,0.24665451049804688,2.0527560710906982,-1.3887999057769775,1.3258512020111084,0.8775025606155396,0.9025146961212158,-0.4074057936668396,0.12501053512096405,-1.6965668201446533,0.15787677466869354,0.046947699040174484,-0.012487862259149551,-1.7117326259613037,1.093739628791809,0.38147875666618347,0.23857927322387695,-1.0551948547363281,-0.21147561073303223,-1.0807392597198486,0.7777652144432068,-1.1357964277267456,0.6520287394523621,0.9992262721061707,0.09073536098003387,-1.1533846855163574,-0.7149928212165833,-1.5968999862670898,-0.4657881259918213,-1.292149305343628,-1.021237850189209,-0.8131377696990967,0.3787693977355957,1.1946918964385986,0.6364941596984863,0.720159649848938,1.026518702507019,0.5223783850669861,1.4085407257080078,-1.3979451656341553,-0.6683977842330933,0.6599199175834656,-0.3603832721710205,-0.608647346496582,-1.498533010482788,-2.5032429695129395,1.2219712734222412,-0.2724921703338623,1.0151385068893433,-0.1548507809638977,0.727820634841919,-0.1231917142868042,-0.37473994493484497,-0.9437233209609985,1.2257224321365356,-0.38263896107673645,-1.3482508659362793,-0.48977744579315186,2.4951107501983643,-1.0366724729537964,-0.9868950843811035,-0.13692638278007507,-0.7480694055557251,-0.03022293746471405,0.3070005178451538,-0.484884113073349,1.6149983406066895,-0.11715827882289886,-0.9577105045318604,-0.2160574197769165,2.0301597118377686,0.5204414129257202,0.11950010061264038,0.18337786197662354,-0.5846734642982483,-0.3067723512649536,-0.3643467426300049,-0.9233397841453552,-1.8187718391418457,-2.044902801513672 -2999,-0.3897400200366974,-0.19605685770511627,-0.646896481513977,-1.771793007850647,-0.2683491110801697,-0.2791118025779724,-1.7502007484436035,0.9690161347389221,-0.5362313389778137,0.8822965025901794,0.18710404634475708,0.5440464019775391,0.2807674705982208,-0.746788501739502,0.016010582447052002,-0.8206470608711243,-1.2333041429519653,1.050684928894043,-1.5601165294647217,-0.3019999861717224,-0.0793103575706482,0.7499417066574097,0.9908735752105713,0.4163249135017395,-0.050142109394073486,-0.21837389469146729,-2.05407452583313,-1.290446400642395,0.3975943326950073,-1.5320603847503662,-1.4030799865722656,-1.2124786376953125,-1.590045690536499,-0.33012109994888306,-1.284993290901184,-0.6906431913375854,-3.018160581588745,-0.17868855595588684,0.012948662042617798,-0.09037609398365021,-0.6600057482719421,-0.8426035046577454,0.5570759773254395,0.6455759406089783,0.3549309968948364,-0.1482616364955902,-0.8348788022994995,-1.587372899055481,-0.37114736437797546,-0.16975271701812744,1.2596397399902344,0.892392635345459,0.09408414363861084,2.0853323936462402,-1.8178291320800781,0.8680893182754517,0.06771501898765564,-0.07670149207115173,0.1508430540561676,0.8620171546936035,-0.8772354125976562,-2.1828513145446777,-0.3605160713195801,-1.1976016759872437,-0.3644157350063324,1.919600248336792,-1.7164926528930664,1.056117296218872,-0.7288547158241272,-1.5879616737365723,-2.0834968090057373,0.9751648902893066,0.5763659477233887,-1.167744755744934,-0.29062598943710327,0.5271344780921936,1.579786777496338,-2.1342217922210693,-0.5032533407211304,0.8987749218940735,-0.03387804329395294,1.1213247776031494,-0.7630521059036255,-0.6130317449569702,-0.7703619003295898,-0.10896238684654236,1.4674103260040283,0.27369368076324463,-0.14355379343032837,1.1440349817276,-0.76863694190979,-0.48981672525405884,-0.04875805974006653,-1.4028234481811523,-0.5158491134643555,1.401590347290039,1.3751552104949951,3.1402854919433594,1.331140398979187,-0.6942309141159058,0.14650487899780273,0.13791340589523315,1.23885977268219,1.0747408866882324,0.09033501148223877,1.838965892791748,0.5880904793739319,-0.9387770295143127,1.277972936630249,0.0037175361067056656,0.3861476182937622,-1.7365537881851196,0.6644759178161621,0.776808500289917,0.14913782477378845,-0.5754624605178833,-0.38996952772140503,-0.40645837783813477,0.32406893372535706,-0.7070670127868652,1.2926602363586426,0.9845948815345764,1.1979255676269531,0.3482757806777954,-0.1594763547182083,0.11606249213218689,-1.2878117561340332,0.020297497510910034,-1.1696927547454834,-1.2766907215118408,-0.2021748423576355,2.1236798763275146,-0.2029695361852646,1.3658170700073242,-0.9616190195083618,-0.18859687447547913,0.8639411926269531,0.5443108081817627,-0.20295381546020508,-0.992464542388916,0.9025766849517822,-0.13820329308509827,-0.8543568253517151,0.7380092144012451,-1.432884931564331,0.10911598801612854,-1.3182212114334106,-1.8487050533294678,-2.784635543823242,-0.13269329071044922,-0.44077324867248535,-1.4136182069778442,0.3169865012168884,-0.29499393701553345,-1.4930448532104492,0.482802152633667,0.7633407115936279,-0.3033772110939026,1.0712801218032837,0.2861540615558624,-0.13879680633544922,-0.7643901705741882,0.7143375873565674,-1.690341591835022,1.0463156700134277,-0.2711777687072754,-1.6491780281066895,-2.37808895111084,-1.2162110805511475,0.24665451049804688,2.16184663772583,-1.3887999057769775,1.3258512020111084,0.8775025606155396,0.9025146961212158,-0.4074057936668396,0.12501053512096405,-1.6965668201446533,0.15787677466869354,0.046947699040174484,-0.012487862259149551,-1.936409831047058,0.8280867338180542,0.38147875666618347,0.23857927322387695,-1.0551948547363281,-0.21147561073303223,-0.5060666799545288,0.7777652144432068,-1.1357964277267456,0.6520287394523621,0.9992262721061707,0.09073536098003387,-1.1533846855163574,-0.7149928212165833,-2.4966180324554443,-0.4657881259918213,-1.292149305343628,-1.021237850189209,-0.8131377696990967,0.3787693977355957,1.1946918964385986,0.6364941596984863,0.720159649848938,1.026518702507019,0.5223783850669861,1.4085407257080078,-1.3979451656341553,-0.40202248096466064,0.7695415019989014,-0.3603832721710205,-1.0967273712158203,-1.498533010482788,-2.5032429695129395,1.2219712734222412,-0.2724921703338623,1.0892518758773804,-0.9646794199943542,0.727820634841919,-0.1231917142868042,-0.37473994493484497,-0.9437233209609985,1.2257224321365356,-0.38263896107673645,-1.3482508659362793,-0.48977744579315186,2.4951107501983643,-1.0366724729537964,-0.6912522912025452,-0.13692638278007507,-0.7480694055557251,-0.03022293746471405,0.3070005178451538,-0.484884113073349,1.2914804220199585,-0.11715827882289886,-0.9577105045318604,-0.2160574197769165,2.0301597118377686,0.20919188857078552,0.11950010061264038,0.18337786197662354,-0.5846734642982483,-0.3067723512649536,-0.3643467426300049,-0.9233397841453552,-1.8187718391418457,-2.2558090686798096 -3000,-0.3897400200366974,-0.19605685770511627,0.0790206789970398,-1.771793007850647,-0.2683491110801697,-0.2791118025779724,-1.7502007484436035,0.9690161347389221,-0.5362313389778137,0.8822965025901794,0.18710404634475708,0.37174224853515625,0.2807674705982208,-0.746788501739502,0.016010582447052002,-0.9584383964538574,-1.2333041429519653,1.050684928894043,-1.5601165294647217,-0.3019999861717224,-0.0793103575706482,0.7499417066574097,0.9908735752105713,0.4163249135017395,-0.050142109394073486,-0.21837389469146729,-2.05407452583313,-1.2992836236953735,0.3975943326950073,-1.5320603847503662,-1.4030799865722656,-1.2124786376953125,-1.9761210680007935,-0.33012109994888306,-1.284993290901184,-0.6906431913375854,-3.018160581588745,-0.17868855595588684,0.012948662042617798,-0.09037609398365021,-0.6600057482719421,-0.8426035046577454,0.5570759773254395,0.6455759406089783,0.3549309968948364,-0.1482616364955902,-0.8348788022994995,-1.587372899055481,-0.6482337713241577,-0.16975271701812744,1.2596397399902344,0.892392635345459,0.09408414363861084,2.0853323936462402,-2.099457263946533,0.8680893182754517,0.9987444877624512,-0.07670149207115173,0.6295397281646729,0.8620171546936035,-1.1704431772232056,-2.1828513145446777,-0.3605160713195801,-1.5554535388946533,-0.3644157350063324,1.919600248336792,-1.7164926528930664,1.056117296218872,-0.7288547158241272,-1.5443443059921265,-2.0834968090057373,0.9751648902893066,0.5763659477233887,-1.167744755744934,0.279987096786499,0.5271344780921936,1.435603380203247,-1.860974669456482,-0.5032533407211304,0.8987749218940735,-0.03387804329395294,1.1213247776031494,-0.7630521059036255,-0.6130317449569702,-0.7703619003295898,-0.10896238684654236,1.4674103260040283,0.27369368076324463,-0.14355379343032837,1.1440349817276,-0.76863694190979,-0.48981672525405884,-0.04875805974006653,-1.4465882778167725,-0.8377958536148071,1.401590347290039,1.3751552104949951,3.1402854919433594,1.331140398979187,-0.6942309141159058,0.14650487899780273,-0.07104752957820892,1.23885977268219,1.0747408866882324,0.09033501148223877,1.838965892791748,0.5880904793739319,-0.9387770295143127,1.277972936630249,0.0037175361067056656,0.3861476182937622,-1.4162403345108032,0.8615944981575012,0.016372621059417725,0.5255959630012512,-0.5754624605178833,-0.38996952772140503,-0.2427121251821518,0.32406893372535706,-0.7240580916404724,1.2926602363586426,1.1609355211257935,1.1979255676269531,0.10736635327339172,-0.1594763547182083,0.11606249213218689,-1.3316713571548462,-0.4298822283744812,-1.1696927547454834,-1.2766907215118408,-0.2021748423576355,2.1236798763275146,-0.2029695361852646,1.7571372985839844,-0.9616190195083618,-0.18859687447547913,0.8639411926269531,1.022512674331665,-0.20295381546020508,-0.5933949947357178,0.9025766849517822,-0.13820329308509827,-0.8543568253517151,0.7380092144012451,-1.432884931564331,0.10911598801612854,-1.3182212114334106,-1.706656575202942,-2.784635543823242,-0.13269329071044922,-0.13519242405891418,-1.34031081199646,0.3169865012168884,-0.29499393701553345,-1.4930448532104492,0.482802152633667,0.7633407115936279,-0.3033772110939026,0.9221163392066956,-0.2786478102207184,-0.13879680633544922,-0.9525445699691772,1.1017496585845947,-1.690341591835022,1.0463156700134277,-0.2711777687072754,-1.6491780281066895,-1.5673682689666748,-1.2162110805511475,0.24665451049804688,2.471266746520996,-1.3887999057769775,1.3258512020111084,0.8775025606155396,0.9025146961212158,-0.4074057936668396,0.26428741216659546,-1.6965668201446533,0.15787677466869354,0.046947699040174484,-0.012487862259149551,-0.9380650520324707,0.9924014210700989,0.38147875666618347,0.23857927322387695,-1.0551948547363281,-0.21147561073303223,-0.5060666799545288,0.7777652144432068,-1.7823255062103271,1.5391435623168945,0.9992262721061707,-0.059598684310913086,-1.1533846855163574,-0.7149928212165833,-2.4966180324554443,-0.4657881259918213,-1.292149305343628,-1.021237850189209,-1.2424774169921875,0.3787693977355957,1.1131893396377563,0.6364941596984863,0.720159649848938,1.026518702507019,0.5477498769760132,1.3371996879577637,-1.3979451656341553,-0.40202248096466064,0.7695415019989014,-0.3603832721710205,-1.1100661754608154,-1.9730720520019531,-1.310686469078064,1.2219712734222412,-0.2074531763792038,1.0892518758773804,-1.8387172222137451,0.727820634841919,-0.1231917142868042,-0.37473994493484497,-0.9437233209609985,0.9786237478256226,-0.38263896107673645,-1.3357099294662476,-0.48977744579315186,2.4951107501983643,-1.0366724729537964,-0.6912522912025452,-0.13692638278007507,-0.5266354084014893,-0.03022293746471405,0.3070005178451538,-0.484884113073349,1.2914804220199585,0.3790441155433655,-0.9577105045318604,-1.0636811256408691,2.0301597118377686,0.6711812615394592,0.11950010061264038,0.18337786197662354,-0.4429917633533478,-0.3067723512649536,-0.3643467426300049,-0.9233397841453552,-1.8187718391418457,-2.2558090686798096 diff --git a/example/start/outputs/logs/parameter_convergence/sources_mean.csv b/example/start/outputs/logs/parameter_convergence/sources_mean.csv deleted file mode 100644 index 201ca8137..000000000 --- a/example/start/outputs/logs/parameter_convergence/sources_mean.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,0.0 -50,0.0 -100,0.0 -150,0.0 -200,0.0 -250,0.0 -300,0.0 -350,0.0 -400,0.0 -450,0.0 -500,0.0 -550,0.0 -600,0.0 -650,0.0 -700,0.0 -750,0.0 -800,0.0 -850,0.0 -900,0.0 -950,0.0 -1000,0.0 -1050,0.0 -1100,0.0 -1150,0.0 -1200,0.0 -1250,0.0 -1300,0.0 -1350,0.0 -1400,0.0 -1450,0.0 -1500,0.0 -1550,0.0 -1600,0.0 -1650,0.0 -1700,0.0 -1750,0.0 -1800,0.0 -1850,0.0 -1900,0.0 -1950,0.0 -2000,0.0 -2050,0.0 -2100,0.0 -2150,0.0 -2200,0.0 -2250,0.0 -2300,0.0 -2350,0.0 -2400,0.0 -2450,0.0 -2500,0.0 -2550,0.0 -2600,0.0 -2650,0.0 -2700,0.0 -2750,0.0 -2800,0.0 -2850,0.0 -2900,0.0 -2950,0.0 -3000,0.0 diff --git a/example/start/outputs/logs/parameter_convergence/sources_std.csv b/example/start/outputs/logs/parameter_convergence/sources_std.csv deleted file mode 100644 index 7e686e94a..000000000 --- a/example/start/outputs/logs/parameter_convergence/sources_std.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,1.0 -50,1.0 -100,1.0 -150,1.0 -200,1.0 -250,1.0 -300,1.0 -350,1.0 -400,1.0 -450,1.0 -500,1.0 -550,1.0 -600,1.0 -650,1.0 -700,1.0 -750,1.0 -800,1.0 -850,1.0 -900,1.0 -950,1.0 -1000,1.0 -1050,1.0 -1100,1.0 -1150,1.0 -1200,1.0 -1250,1.0 -1300,1.0 -1350,1.0 -1400,1.0 -1450,1.0 -1500,1.0 -1550,1.0 -1600,1.0 -1650,1.0 -1700,1.0 -1750,1.0 -1800,1.0 -1850,1.0 -1900,1.0 -1950,1.0 -2000,1.0 -2050,1.0 -2100,1.0 -2150,1.0 -2200,1.0 -2250,1.0 -2300,1.0 -2350,1.0 -2400,1.0 -2450,1.0 -2500,1.0 -2550,1.0 -2600,1.0 -2650,1.0 -2700,1.0 -2750,1.0 -2800,1.0 -2850,1.0 -2900,1.0 -2950,1.0 -3000,1.0 diff --git a/example/start/outputs/logs/parameter_convergence/tau.csv b/example/start/outputs/logs/parameter_convergence/tau.csv deleted file mode 100644 index 1fbfdfc83..000000000 --- a/example/start/outputs/logs/parameter_convergence/tau.csv +++ /dev/null @@ -1,100 +0,0 @@ -2901,83.67172241210938,87.7042007446289,89.8486328125,74.96443939208984,92.45817565917969,85.36865234375,75.80342102050781,85.68698120117188,78.4206771850586,72.78189849853516,80.00231170654297,82.72465515136719,88.58541870117188,90.9332504272461,84.31096649169922,79.56047058105469,88.15605163574219,73.33350372314453,68.47592163085938,78.71932220458984,92.21287536621094,72.933349609375,84.79872131347656,81.44049072265625,68.28093719482422,82.24539184570312,88.60198211669922,81.07173919677734,76.8807373046875,77.75408172607422,72.27095031738281,73.66671752929688,81.10578155517578,88.55005645751953,83.06505584716797,80.58753967285156,63.73480224609375,85.11088562011719,86.43955993652344,79.32089233398438,74.23078155517578,67.87294006347656,77.39527893066406,77.85481262207031,85.98038482666016,82.77164459228516,96.39325714111328,74.47042083740234,76.93357849121094,97.51679229736328,83.91812896728516,93.48809814453125,81.18878173828125,88.04501342773438,73.87442016601562,78.6670913696289,85.33477783203125,78.03050231933594,88.54327392578125,83.04199981689453,61.79716873168945,84.71887969970703,77.18254852294922,87.11091613769531,83.22443389892578,82.61168670654297,72.45946502685547,83.49091339111328,71.3142318725586,85.42698669433594,76.4944839477539,99.92105102539062,77.50432586669922,65.04712677001953,68.4706802368164,92.18498992919922,88.69578552246094,86.6590347290039,93.12168884277344,79.86095428466797,75.61795806884766,76.00725555419922,86.3288803100586,77.30209350585938,80.93207550048828,80.71218872070312,78.89494323730469,80.15797424316406,86.07354736328125,80.55982971191406,72.86302947998047,82.32701110839844,79.34889221191406,82.82661437988281,73.2763671875,78.3769760131836,76.9802017211914,59.684974670410156,80.66651916503906,89.6812973022461,68.40718841552734,78.6072769165039,85.57867431640625,69.7807846069336,73.13705444335938,77.95408630371094,81.23612976074219,79.76663208007812,70.86813354492188,78.3111572265625,83.59400177001953,74.96221160888672,80.32860565185547,83.27303314208984,82.24384307861328,72.95793914794922,90.64200592041016,73.83605194091797,73.02682495117188,79.49280548095703,91.5575942993164,74.5674057006836,86.91563415527344,63.23148727416992,82.76849365234375,61.76332473754883,86.40090942382812,78.44867706298828,89.20828247070312,82.39205932617188,84.57537841796875,79.17223358154297,76.63520050048828,76.69810485839844,79.0868911743164,86.6953125,68.82530975341797,71.6274642944336,75.85041046142578,80.76797485351562,86.66104888916016,71.87574005126953,74.37228393554688,80.80538940429688,77.32958221435547,86.80889129638672,77.91188049316406,86.27558135986328,76.69978332519531,96.25505828857422,81.07157135009766,81.12662506103516,80.78575134277344,79.05591583251953,90.2213363647461,77.82498168945312,86.89128875732422,88.88582611083984,83.81295013427734,79.69068145751953,81.5932388305664,77.34498596191406,91.43216705322266,78.1732406616211,99.26097106933594,91.2237548828125,72.85043334960938,88.20913696289062,78.80059051513672,91.1234130859375,83.09478759765625,82.86212921142578,86.05204010009766,83.26795959472656,90.23186492919922,80.80401611328125,75.72293853759766,80.82230377197266,86.4105224609375,86.1318359375,80.17708587646484,86.04574584960938,88.09680938720703,76.88337707519531,81.85594177246094,85.70681762695312,86.03709411621094,79.49346923828125,58.812538146972656,65.01409912109375,71.74786376953125,69.05271911621094,71.94734191894531,80.85726165771484,93.23737335205078,95.18018341064453,76.65702819824219,80.08489227294922,85.54358673095703,85.74628448486328,87.43970489501953,83.01164245605469,88.99785614013672,75.76937866210938,78.93863677978516,82.51831817626953,82.23068237304688,87.73744201660156,64.00507354736328,87.85106658935547,90.6378173828125,82.0017318725586,72.31945037841797,79.8292236328125,88.28804779052734,75.93670654296875,55.16691207885742,82.94026184082031,75.18565368652344,88.08523559570312,74.78673553466797,88.43550872802734,82.60216522216797,78.42594909667969,79.10747528076172,76.32528686523438,74.85262298583984,71.5553970336914,94.24919891357422,59.44655990600586,88.95649719238281,80.78802490234375,74.08419799804688,78.01533508300781,72.05318450927734,87.91597747802734,73.47129821777344,76.63702392578125,87.16725158691406,79.30743408203125,83.5571060180664,75.51724243164062,86.43263244628906,89.30012512207031,87.40453338623047,74.58688354492188,73.94821166992188,82.59138488769531 -2902,84.02852630615234,88.11737060546875,91.58606719970703,74.96443939208984,92.45817565917969,85.36865234375,75.80342102050781,85.68698120117188,77.1528549194336,72.78189849853516,79.91141510009766,82.72465515136719,89.87157440185547,90.9332504272461,84.31096649169922,79.56047058105469,88.15605163574219,73.33350372314453,68.47592163085938,78.71932220458984,92.4093017578125,72.9312973022461,84.79872131347656,81.44049072265625,68.28093719482422,87.67198944091797,88.60198211669922,79.1675796508789,76.8807373046875,77.75408172607422,72.27095031738281,73.66671752929688,76.33540344238281,88.55005645751953,83.06505584716797,80.58753967285156,64.07508087158203,85.14776611328125,85.71786499023438,79.32089233398438,74.23078155517578,67.87294006347656,77.39527893066406,77.85481262207031,85.98038482666016,82.58817291259766,96.39325714111328,74.47042083740234,76.93357849121094,97.51679229736328,83.99764251708984,93.48809814453125,81.18878173828125,87.8866958618164,73.87442016601562,78.36001586914062,85.33477783203125,78.03050231933594,88.54327392578125,83.04199981689453,61.79716873168945,84.71887969970703,77.18254852294922,87.11893463134766,83.22443389892578,82.34732818603516,72.45946502685547,83.49091339111328,71.3142318725586,85.42698669433594,76.4944839477539,101.09083557128906,77.50432586669922,65.04712677001953,69.10332489013672,92.18498992919922,88.69578552246094,86.6590347290039,93.12168884277344,79.86095428466797,75.61795806884766,76.00725555419922,87.28528594970703,77.30209350585938,80.93207550048828,80.71218872070312,78.89494323730469,80.15797424316406,86.07354736328125,80.55982971191406,73.28596496582031,82.32701110839844,79.34889221191406,82.82661437988281,72.45458221435547,78.3769760131836,76.9802017211914,59.684974670410156,80.66651916503906,89.6812973022461,68.40718841552734,78.6072769165039,85.57867431640625,69.32719421386719,75.02066802978516,77.27647399902344,81.23612976074219,79.76663208007812,70.86813354492188,78.3111572265625,83.59400177001953,74.96221160888672,80.103759765625,83.27303314208984,82.24384307861328,72.95793914794922,92.18452453613281,73.83605194091797,72.32032012939453,79.49280548095703,86.17902374267578,74.5674057006836,89.478515625,63.23148727416992,82.76849365234375,61.76332473754883,86.40090942382812,78.89997863769531,85.25948333740234,81.89510345458984,84.57537841796875,79.17223358154297,77.386962890625,76.69810485839844,79.0868911743164,86.6953125,71.31617736816406,71.22421264648438,75.85041046142578,83.43118286132812,86.66104888916016,71.87574005126953,73.42971801757812,80.80538940429688,76.76995849609375,86.80889129638672,83.85781860351562,86.27558135986328,77.29800415039062,97.56273651123047,81.07157135009766,82.08816528320312,80.82103729248047,79.28478240966797,91.7120132446289,77.82498168945312,88.44801330566406,90.432373046875,83.81295013427734,77.50431060791016,81.89598846435547,77.34498596191406,91.43216705322266,77.45862579345703,97.57408142089844,91.2237548828125,76.85596466064453,87.67511749267578,78.59080505371094,91.48992919921875,81.76242065429688,82.86212921142578,86.05204010009766,83.26795959472656,90.23186492919922,80.80401611328125,75.72293853759766,80.61192321777344,86.4105224609375,86.1318359375,80.17708587646484,86.04574584960938,88.09680938720703,76.88337707519531,81.85594177246094,85.70681762695312,86.03709411621094,79.49346923828125,58.12350845336914,65.01409912109375,71.74786376953125,70.00051879882812,71.94734191894531,80.85726165771484,91.74518585205078,95.18018341064453,76.65702819824219,80.08489227294922,84.52851104736328,85.74628448486328,87.51834106445312,83.01164245605469,90.29553985595703,75.76937866210938,78.93863677978516,80.07080841064453,82.23068237304688,87.15140533447266,64.00507354736328,87.85106658935547,90.49723052978516,82.0017318725586,72.31945037841797,79.98876953125,88.28804779052734,75.90556335449219,54.941429138183594,82.94026184082031,75.03218841552734,88.08523559570312,74.78673553466797,88.19348907470703,82.60216522216797,79.19776916503906,79.10747528076172,76.32528686523438,74.77622985839844,71.5553970336914,94.24919891357422,59.44655990600586,88.95649719238281,82.72480010986328,74.08419799804688,78.01533508300781,72.05318450927734,87.91597747802734,73.47129821777344,76.74901580810547,87.71311950683594,79.30743408203125,83.5571060180664,75.51724243164062,86.43263244628906,87.21272277832031,87.45372772216797,74.58688354492188,73.94821166992188,82.59138488769531 -2903,83.75497436523438,88.11737060546875,91.00203704833984,74.96443939208984,92.45817565917969,85.52816772460938,75.80342102050781,85.68698120117188,77.28258514404297,72.909423828125,79.91141510009766,82.72465515136719,89.87157440185547,90.9332504272461,84.31096649169922,79.78926849365234,88.15605163574219,73.33350372314453,68.47592163085938,78.44444274902344,92.69535827636719,72.9312973022461,84.79872131347656,81.6592025756836,68.28093719482422,87.67198944091797,88.60198211669922,79.1675796508789,76.90973663330078,77.75408172607422,72.27095031738281,73.97174835205078,77.39469909667969,88.55005645751953,83.06505584716797,80.58753967285156,64.07508087158203,85.14776611328125,85.71786499023438,79.29275512695312,74.23078155517578,67.87294006347656,77.56381225585938,77.85481262207031,86.03910827636719,81.13777160644531,96.39325714111328,74.47042083740234,76.93357849121094,98.09815979003906,83.4146499633789,93.48809814453125,81.18878173828125,87.8866958618164,73.87442016601562,78.36001586914062,85.33477783203125,78.03050231933594,88.54327392578125,83.04199981689453,61.79716873168945,84.71887969970703,78.23458862304688,86.09835052490234,83.22443389892578,82.28254699707031,72.74465942382812,83.49091339111328,71.3142318725586,85.42698669433594,76.64289093017578,101.09083557128906,77.50432586669922,65.04712677001953,69.09777069091797,92.18498992919922,88.69578552246094,86.85302734375,93.12168884277344,80.45933532714844,75.61795806884766,76.00725555419922,87.28528594970703,77.30209350585938,80.93207550048828,80.71218872070312,90.11846160888672,79.80068969726562,86.91935729980469,80.55982971191406,72.85721588134766,82.32701110839844,77.79493713378906,82.82661437988281,73.77728271484375,78.43243408203125,76.9802017211914,59.684974670410156,80.66651916503906,89.6812973022461,68.40718841552734,78.6072769165039,85.47966003417969,69.13138580322266,75.02066802978516,77.27647399902344,81.23612976074219,76.06127166748047,71.09432983398438,76.6568832397461,83.59400177001953,75.97736358642578,82.74642181396484,81.90926361083984,82.24384307861328,72.95793914794922,92.18452453613281,73.83605194091797,72.32032012939453,79.49280548095703,86.34890747070312,74.5674057006836,91.35997009277344,63.23148727416992,82.76849365234375,61.76332473754883,86.40090942382812,78.89997863769531,85.25948333740234,81.98698425292969,84.57537841796875,79.114013671875,78.11895751953125,76.69810485839844,82.57015228271484,86.6953125,71.31617736816406,71.22421264648438,75.85041046142578,83.43118286132812,86.66104888916016,71.99551391601562,73.42971801757812,80.80538940429688,76.76995849609375,86.80889129638672,77.32840728759766,86.27558135986328,77.30591583251953,97.56273651123047,81.07157135009766,82.08816528320312,80.82103729248047,79.28478240966797,88.65325164794922,77.82498168945312,88.44801330566406,88.26923370361328,83.81295013427734,77.50431060791016,81.89598846435547,77.34498596191406,91.43216705322266,77.45862579345703,97.57408142089844,91.2237548828125,76.85596466064453,87.67511749267578,78.59080505371094,90.59915161132812,81.76242065429688,82.85369110107422,86.05204010009766,83.26795959472656,90.04914855957031,80.80401611328125,75.89022827148438,80.61192321777344,86.1922378540039,86.1318359375,80.41463470458984,84.20572662353516,88.09680938720703,76.88337707519531,81.85594177246094,85.70681762695312,86.03709411621094,79.23310852050781,58.74637222290039,65.05160522460938,71.74786376953125,70.00051879882812,71.82006072998047,80.85726165771484,91.74518585205078,95.18018341064453,75.9196548461914,80.08489227294922,86.05363464355469,85.74628448486328,87.51834106445312,83.38530731201172,90.29553985595703,75.76937866210938,79.06884765625,80.7466812133789,82.23068237304688,87.40704345703125,64.00507354736328,87.85106658935547,91.30525970458984,82.0017318725586,72.31945037841797,79.98876953125,88.28804779052734,75.90556335449219,54.941429138183594,82.94026184082031,75.40092468261719,88.08523559570312,74.3485336303711,88.19348907470703,82.60216522216797,79.19776916503906,79.10747528076172,76.32528686523438,74.77622985839844,71.5553970336914,96.4023666381836,59.44655990600586,88.95649719238281,82.72480010986328,73.96088409423828,78.01533508300781,72.05318450927734,87.91597747802734,73.47129821777344,76.74901580810547,87.38906860351562,79.4296875,83.5571060180664,74.8790512084961,86.43263244628906,87.21272277832031,87.45372772216797,74.58688354492188,73.94821166992188,83.26668548583984 -2904,83.75497436523438,88.11737060546875,89.73619079589844,74.96443939208984,92.45817565917969,85.460205078125,75.80342102050781,85.68698120117188,77.28258514404297,72.90959930419922,80.6961898803711,82.72465515136719,89.87157440185547,90.3581771850586,84.31096649169922,79.78926849365234,88.15605163574219,73.33350372314453,68.47592163085938,78.04896545410156,92.7585678100586,72.9312973022461,84.79872131347656,81.6592025756836,68.35771179199219,87.67198944091797,87.8987045288086,79.1675796508789,76.1850357055664,77.75408172607422,72.27095031738281,73.97174835205078,80.03807830810547,88.55005645751953,83.06505584716797,80.58753967285156,64.07508087158203,85.32903289794922,85.71786499023438,79.17855834960938,74.23078155517578,67.93286895751953,77.4018783569336,77.85481262207031,86.591552734375,81.13777160644531,96.39325714111328,74.47042083740234,76.93357849121094,98.09815979003906,83.4146499633789,91.7096176147461,81.18878173828125,87.8866958618164,73.97087097167969,78.36001586914062,85.49787902832031,78.2217788696289,88.91791534423828,83.04199981689453,61.79716873168945,84.71887969970703,78.23458862304688,86.09835052490234,83.22443389892578,82.86239624023438,72.74465942382812,83.49091339111328,71.30107116699219,85.42698669433594,76.64289093017578,97.96952056884766,77.50432586669922,65.04712677001953,69.09777069091797,92.18498992919922,88.857421875,86.85302734375,93.12168884277344,78.45442962646484,75.61795806884766,75.69282531738281,86.86164093017578,77.30209350585938,80.91814422607422,80.79175567626953,85.49518585205078,79.80068969726562,86.7007827758789,80.55982971191406,72.85721588134766,82.32701110839844,77.79493713378906,82.82661437988281,73.44245910644531,78.43243408203125,76.9802017211914,59.684974670410156,80.66651916503906,91.39389038085938,67.77068328857422,76.02647399902344,85.55232238769531,69.13138580322266,75.02066802978516,77.27647399902344,81.23612976074219,76.06127166748047,71.09432983398438,76.6568832397461,81.77101135253906,75.97736358642578,82.74642181396484,82.82728576660156,82.24384307861328,72.95793914794922,90.98316955566406,73.83605194091797,72.32032012939453,77.11674499511719,86.34890747070312,77.07799530029297,91.35997009277344,63.0458984375,82.76849365234375,61.76332473754883,86.40090942382812,78.89997863769531,85.25948333740234,81.98698425292969,84.66577911376953,79.114013671875,78.11895751953125,76.69810485839844,82.57015228271484,86.6953125,71.31617736816406,73.28286743164062,75.85041046142578,83.43118286132812,86.44454956054688,72.92742156982422,73.42971801757812,82.48818969726562,76.76995849609375,89.10050964355469,77.32840728759766,85.46502685546875,77.30591583251953,97.56273651123047,81.07157135009766,82.08816528320312,80.82103729248047,79.28478240966797,88.65325164794922,77.82498168945312,86.1483383178711,89.0383071899414,83.81295013427734,77.50431060791016,81.74610137939453,77.34498596191406,91.43216705322266,77.45862579345703,99.44752502441406,91.2237548828125,75.66210174560547,87.67511749267578,78.59080505371094,90.59915161132812,81.10037231445312,82.69648742675781,86.05204010009766,83.26795959472656,91.23878479003906,80.80401611328125,75.89022827148438,85.06155395507812,86.1922378540039,86.1318359375,80.41463470458984,84.20572662353516,88.09680938720703,76.88337707519531,81.85594177246094,85.70681762695312,86.03709411621094,79.23310852050781,58.74637222290039,63.36074447631836,71.74786376953125,70.00051879882812,71.82006072998047,80.85726165771484,91.7964096069336,95.18018341064453,75.52804565429688,80.08489227294922,85.27056121826172,85.74628448486328,87.51834106445312,83.07025909423828,90.29553985595703,75.65869140625,78.76100158691406,79.81340026855469,82.23068237304688,85.36163330078125,64.00507354736328,87.1099853515625,91.30525970458984,82.0017318725586,72.31945037841797,79.98876953125,88.28804779052734,75.90556335449219,54.941429138183594,82.1746597290039,75.40092468261719,88.08523559570312,74.3485336303711,88.19348907470703,83.45635223388672,79.19776916503906,79.41565704345703,76.94681549072266,74.77622985839844,71.5553970336914,96.4023666381836,59.745296478271484,88.95649719238281,82.72480010986328,73.96088409423828,78.01533508300781,72.05318450927734,87.91597747802734,74.0531234741211,76.2352066040039,87.83914947509766,79.3271713256836,83.5571060180664,74.8790512084961,82.96800994873047,87.46163940429688,87.45372772216797,75.18525695800781,73.94821166992188,83.26668548583984 -2905,83.77662658691406,88.11737060546875,91.98289489746094,74.96443939208984,92.45817565917969,85.75933074951172,75.7549057006836,85.68698120117188,77.28258514404297,72.90959930419922,80.6961898803711,82.72465515136719,89.87157440185547,90.3581771850586,84.31096649169922,80.3251724243164,88.15605163574219,73.2669448852539,68.9493637084961,78.21769714355469,92.7585678100586,72.51640319824219,84.79872131347656,81.6592025756836,68.35771179199219,87.04814910888672,87.7643814086914,79.1675796508789,76.1850357055664,77.75408172607422,72.27095031738281,73.90452575683594,80.03807830810547,87.97511291503906,83.06505584716797,80.58753967285156,64.32608032226562,85.32903289794922,85.71786499023438,79.17855834960938,74.1446762084961,67.93286895751953,77.4018783569336,77.85481262207031,86.591552734375,80.64198303222656,96.39325714111328,74.48617553710938,76.93357849121094,98.09815979003906,83.4146499633789,91.7096176147461,81.18878173828125,87.91093444824219,73.97087097167969,78.36001586914062,84.2459487915039,78.2217788696289,88.91791534423828,82.83418273925781,61.94367599487305,84.71887969970703,78.23458862304688,85.6706314086914,83.22443389892578,82.86239624023438,72.74465942382812,83.49091339111328,71.33580780029297,85.42698669433594,76.64289093017578,99.13665771484375,77.50432586669922,65.04712677001953,68.98268127441406,92.18498992919922,90.27760314941406,86.85302734375,93.12168884277344,78.45442962646484,75.66201782226562,75.69282531738281,86.13497924804688,77.30209350585938,80.82713317871094,80.79175567626953,85.49518585205078,79.80068969726562,86.7007827758789,80.55982971191406,73.10702514648438,82.32701110839844,77.79493713378906,82.82661437988281,73.44245910644531,78.90814971923828,76.40458679199219,59.684974670410156,79.80783081054688,91.70879364013672,67.77068328857422,81.15233612060547,85.443603515625,69.3237533569336,75.02066802978516,77.27647399902344,81.23612976074219,76.06127166748047,71.09432983398438,76.6568832397461,81.77101135253906,75.81609344482422,82.74642181396484,82.82728576660156,82.24384307861328,72.95793914794922,90.98316955566406,73.83605194091797,72.32032012939453,77.11674499511719,86.34890747070312,77.28695678710938,94.04711151123047,62.432186126708984,86.20696258544922,61.76332473754883,86.45442199707031,78.73146057128906,85.25948333740234,81.98698425292969,84.66577911376953,79.114013671875,75.64514923095703,76.18449401855469,82.81242370605469,83.72272491455078,71.31617736816406,73.28286743164062,79.25924682617188,84.18400573730469,86.44454956054688,72.26285552978516,73.70523071289062,82.2965087890625,78.08195495605469,88.67662811279297,77.21961975097656,85.46502685546875,77.30591583251953,95.05191802978516,81.07157135009766,83.94905090332031,80.82103729248047,76.31555938720703,88.65325164794922,77.63595581054688,86.1483383178711,88.77005767822266,83.81295013427734,77.50431060791016,81.74610137939453,76.31782531738281,91.43216705322266,77.57799530029297,99.44752502441406,91.2237548828125,75.66210174560547,87.07366943359375,78.59080505371094,90.52092742919922,81.10037231445312,82.69648742675781,86.05204010009766,86.12641143798828,91.23878479003906,80.80401611328125,75.89022827148438,85.06155395507812,86.1922378540039,85.09584045410156,80.41463470458984,84.20477294921875,88.09680938720703,76.88337707519531,81.85594177246094,85.70681762695312,85.71817779541016,79.70536041259766,58.74637222290039,63.36074447631836,71.74786376953125,70.00051879882812,71.82006072998047,80.85726165771484,89.27579498291016,95.18018341064453,76.37898254394531,80.08489227294922,85.27056121826172,85.74628448486328,87.51834106445312,82.69406127929688,90.29553985595703,72.39045715332031,78.76100158691406,76.42109680175781,82.23068237304688,85.36163330078125,64.00507354736328,87.1099853515625,91.45404815673828,81.43016815185547,72.15635681152344,79.98876953125,88.28804779052734,75.90556335449219,54.714393615722656,82.1746597290039,75.40092468261719,88.08523559570312,74.3485336303711,88.19348907470703,82.51632690429688,79.35214233398438,80.17438507080078,76.94681549072266,74.77622985839844,71.5553970336914,96.30672454833984,59.745296478271484,90.64449310302734,82.72480010986328,73.96088409423828,78.01533508300781,72.6101303100586,87.91597747802734,74.0531234741211,76.2352066040039,87.83914947509766,79.3271713256836,83.5571060180664,74.8790512084961,82.84346771240234,87.77485656738281,87.66012573242188,75.18525695800781,73.94821166992188,83.59343719482422 -2906,83.77662658691406,87.93115234375,89.74807739257812,75.3062744140625,92.45817565917969,85.75933074951172,75.7549057006836,85.68698120117188,77.28258514404297,72.90959930419922,80.6961898803711,82.72465515136719,89.87157440185547,91.01836395263672,84.31096649169922,80.3251724243164,88.15605163574219,73.46823120117188,68.73014831542969,78.21769714355469,92.7585678100586,72.51640319824219,84.79872131347656,81.6592025756836,68.39971160888672,85.05171203613281,87.7643814086914,79.1675796508789,76.1850357055664,77.71748352050781,72.27095031738281,73.90452575683594,80.03807830810547,88.70658111572266,83.03841400146484,80.58753967285156,64.32608032226562,85.27627563476562,85.71786499023438,79.17855834960938,74.06024169921875,67.806396484375,77.28057098388672,77.85481262207031,85.98763275146484,83.06964874267578,96.39325714111328,74.45269012451172,76.93357849121094,97.3929443359375,83.4146499633789,91.45050811767578,81.27102661132812,87.91093444824219,73.97087097167969,78.49573516845703,84.2459487915039,78.2217788696289,88.91791534423828,82.73868560791016,62.903480529785156,84.71887969970703,78.23458862304688,85.6706314086914,83.20292663574219,82.86239624023438,72.74465942382812,83.49091339111328,71.33580780029297,84.61167907714844,76.5237808227539,98.87577819824219,77.50432586669922,64.86515045166016,68.98268127441406,92.18498992919922,89.4438705444336,86.85302734375,93.12168884277344,78.45442962646484,75.66201782226562,76.31733703613281,86.69904327392578,77.30209350585938,80.79566955566406,80.79175567626953,88.1430892944336,79.80068969726562,86.7007827758789,80.55982971191406,73.10702514648438,82.32701110839844,77.79493713378906,82.82661437988281,65.97610473632812,78.90814971923828,76.52659606933594,59.684974670410156,79.80783081054688,91.70879364013672,67.77068328857422,81.15233612060547,85.443603515625,69.3237533569336,75.02066802978516,80.55337524414062,81.23612976074219,76.06127166748047,71.09432983398438,76.6568832397461,81.77101135253906,75.81609344482422,82.74642181396484,82.82728576660156,82.24384307861328,72.95793914794922,90.98316955566406,77.6183853149414,73.08506774902344,77.11674499511719,84.17829132080078,77.28695678710938,94.04711151123047,61.61433029174805,86.20696258544922,61.86778259277344,86.45442199707031,78.79305267333984,85.25948333740234,81.98698425292969,84.66577911376953,79.11353302001953,80.78996276855469,76.18449401855469,78.78337097167969,83.72272491455078,71.31617736816406,73.28286743164062,79.25924682617188,84.18400573730469,85.18046569824219,72.93937683105469,73.70523071289062,82.3192138671875,78.08195495605469,88.67662811279297,81.42810821533203,85.46502685546875,77.30591583251953,98.39260864257812,81.07157135009766,81.65672302246094,80.82103729248047,76.31555938720703,88.65325164794922,77.63595581054688,86.1483383178711,88.77005767822266,83.62653350830078,77.50431060791016,81.74610137939453,76.31782531738281,91.43216705322266,77.57799530029297,99.44752502441406,91.08331298828125,75.66210174560547,87.07366943359375,78.59080505371094,91.24073791503906,81.10037231445312,82.69648742675781,86.05204010009766,86.12641143798828,91.23878479003906,80.80401611328125,75.64200592041016,85.06155395507812,86.1922378540039,85.09584045410156,80.41463470458984,84.49037170410156,88.09680938720703,76.88337707519531,81.85594177246094,86.48695373535156,85.71817779541016,79.70536041259766,58.74637222290039,63.36074447631836,72.72053527832031,70.00051879882812,71.82006072998047,80.85726165771484,88.79464721679688,95.18018341064453,76.33077239990234,80.08489227294922,84.50808715820312,85.74628448486328,87.51834106445312,82.7494888305664,90.29553985595703,72.39045715332031,78.76100158691406,77.13018035888672,82.23068237304688,85.36163330078125,64.00507354736328,87.9124755859375,91.04888153076172,81.43016815185547,72.15635681152344,79.98876953125,88.28804779052734,75.90556335449219,54.620750427246094,82.1746597290039,75.40074920654297,88.23566436767578,75.6261215209961,88.19348907470703,82.51632690429688,79.8754653930664,80.17438507080078,76.94681549072266,74.76567840576172,71.5553970336914,96.30672454833984,59.745296478271484,90.64449310302734,82.72480010986328,76.24152374267578,78.01533508300781,72.6101303100586,87.91597747802734,74.0531234741211,76.2352066040039,87.7426986694336,79.3271713256836,83.5571060180664,74.8790512084961,84.70558166503906,87.77485656738281,87.66012573242188,75.18525695800781,73.94821166992188,82.81980895996094 -2907,83.77662658691406,87.93115234375,89.74807739257812,75.16543579101562,92.365234375,85.75933074951172,75.7549057006836,85.68698120117188,77.28258514404297,72.90959930419922,80.6961898803711,82.72465515136719,89.87157440185547,91.01836395263672,84.96504211425781,80.07693481445312,86.9857177734375,73.50440216064453,68.73014831542969,78.21769714355469,92.7585678100586,72.18558502197266,85.35482025146484,81.78732299804688,68.39971160888672,85.05171203613281,87.61109924316406,79.1675796508789,76.50396728515625,77.76821899414062,72.2002182006836,73.90452575683594,80.03807830810547,88.70658111572266,83.03841400146484,80.58753967285156,64.32608032226562,85.27627563476562,85.71786499023438,79.17855834960938,74.06024169921875,67.806396484375,77.28057098388672,77.73662567138672,85.98763275146484,83.06964874267578,96.4400405883789,74.45269012451172,76.47991943359375,97.61488342285156,83.4146499633789,91.45050811767578,81.27102661132812,87.91093444824219,73.97087097167969,78.49573516845703,85.4150390625,78.2217788696289,88.91791534423828,82.73868560791016,63.165374755859375,85.28639221191406,77.1727066040039,85.6706314086914,83.20292663574219,82.86239624023438,72.91548919677734,83.49091339111328,71.33580780029297,84.61167907714844,76.5237808227539,99.0006332397461,77.50432586669922,64.86515045166016,68.99305725097656,91.80075073242188,89.4438705444336,88.22408294677734,91.7405014038086,78.45442962646484,75.66201782226562,76.0068588256836,86.69904327392578,77.30209350585938,80.79566955566406,80.79175567626953,88.1430892944336,79.4676742553711,88.50560760498047,80.55982971191406,73.10702514648438,82.32701110839844,77.79493713378906,82.36780548095703,68.29964447021484,78.90814971923828,76.52659606933594,59.395999908447266,79.80783081054688,91.70879364013672,67.77068328857422,81.15233612060547,85.443603515625,69.3237533569336,72.4595718383789,80.55337524414062,81.23612976074219,76.06127166748047,71.09432983398438,76.6568832397461,81.77101135253906,75.81609344482422,82.74642181396484,82.82728576660156,80.8874740600586,72.95793914794922,90.98316955566406,77.56732940673828,73.08506774902344,77.11674499511719,84.17829132080078,77.28695678710938,94.04711151123047,61.567447662353516,86.20696258544922,62.42768096923828,84.1518325805664,78.79305267333984,85.25948333740234,81.98698425292969,84.66577911376953,79.11353302001953,80.78996276855469,76.18449401855469,78.78337097167969,83.3080062866211,71.31617736816406,73.28286743164062,79.25924682617188,84.18400573730469,85.18046569824219,72.93937683105469,73.70523071289062,82.3192138671875,78.64523315429688,86.27606201171875,81.42810821533203,85.46502685546875,77.30591583251953,98.39260864257812,81.07157135009766,81.65672302246094,80.82103729248047,76.31555938720703,90.72352600097656,77.63595581054688,89.18292999267578,90.0444564819336,83.84437561035156,77.04727935791016,81.74610137939453,76.31782531738281,91.43216705322266,77.57799530029297,99.44752502441406,91.08331298828125,75.66210174560547,87.94679260253906,77.57747650146484,91.24073791503906,77.9022216796875,82.61588287353516,86.05204010009766,86.12641143798828,91.23878479003906,80.80401611328125,75.82151794433594,82.94974517822266,86.1922378540039,85.09584045410156,80.41463470458984,84.49037170410156,88.09680938720703,76.4743423461914,81.85594177246094,83.81845092773438,85.28929138183594,79.70536041259766,58.74637222290039,63.36074447631836,73.11766052246094,70.00051879882812,71.82006072998047,80.85726165771484,86.7853012084961,95.18018341064453,76.33077239990234,80.08489227294922,84.50808715820312,85.74628448486328,87.51834106445312,82.7494888305664,90.29553985595703,72.39045715332031,78.76100158691406,76.25503540039062,82.23068237304688,85.36163330078125,64.00507354736328,87.9124755859375,91.04888153076172,78.86572265625,72.20532989501953,79.7528076171875,88.28804779052734,75.90556335449219,54.620750427246094,81.26922607421875,75.40074920654297,88.23566436767578,78.04633331298828,88.19348907470703,82.51632690429688,79.8754653930664,80.17438507080078,77.4220962524414,74.7677993774414,71.5553970336914,98.87104797363281,59.745296478271484,90.64449310302734,82.72480010986328,74.83788299560547,78.01533508300781,72.6101303100586,87.91597747802734,74.0531234741211,76.2352066040039,86.74948120117188,79.3271713256836,83.5571060180664,74.8790512084961,84.70558166503906,87.77485656738281,87.66012573242188,75.18525695800781,73.94821166992188,80.15152740478516 -2908,83.70968627929688,87.93115234375,89.74807739257812,74.50647735595703,92.365234375,85.75933074951172,75.7549057006836,85.68698120117188,77.28258514404297,72.8318099975586,81.5007095336914,82.72465515136719,89.87157440185547,91.06918334960938,84.96504211425781,80.07693481445312,85.66790771484375,73.50440216064453,68.97181701660156,78.16663360595703,92.7585678100586,72.18558502197266,85.35482025146484,81.78732299804688,68.44160461425781,85.05171203613281,87.61109924316406,79.73660278320312,76.50396728515625,77.76821899414062,72.2002182006836,73.90452575683594,80.03807830810547,89.22534942626953,83.03841400146484,80.58753967285156,64.13941192626953,85.27627563476562,85.71786499023438,79.17855834960938,74.05528259277344,67.806396484375,77.28057098388672,77.73662567138672,86.22759246826172,83.6553955078125,97.07803344726562,74.45269012451172,76.47991943359375,97.61488342285156,84.0401611328125,94.32416534423828,81.27102661132812,87.68741607666016,73.97087097167969,79.15106964111328,85.4150390625,78.2217788696289,88.91791534423828,82.73868560791016,63.165374755859375,85.28639221191406,77.1727066040039,85.6706314086914,83.20292663574219,82.86239624023438,72.88328552246094,84.49266815185547,71.33580780029297,84.61167907714844,76.5237808227539,99.0006332397461,77.50432586669922,64.86515045166016,68.99305725097656,91.80075073242188,90.14210510253906,88.22408294677734,91.7405014038086,78.45442962646484,75.66201782226562,76.0068588256836,86.69904327392578,77.0425796508789,80.79566955566406,80.96509552001953,88.1430892944336,80.0013198852539,85.1219482421875,80.87744903564453,73.10702514648438,81.8695297241211,77.79493713378906,82.36780548095703,68.29964447021484,78.90814971923828,76.52659606933594,59.20071029663086,79.80783081054688,91.70879364013672,67.77068328857422,81.15233612060547,85.443603515625,69.3237533569336,72.4595718383789,80.61813354492188,82.3154296875,76.06127166748047,71.09432983398438,76.6568832397461,81.77101135253906,75.81609344482422,82.74642181396484,82.82728576660156,80.8874740600586,71.3932876586914,95.09503173828125,72.55154418945312,73.80509185791016,77.11674499511719,84.17829132080078,77.28695678710938,94.04711151123047,61.567447662353516,87.35826110839844,62.42768096923828,83.50460052490234,78.79305267333984,85.25948333740234,82.01728057861328,84.66577911376953,79.11353302001953,83.95591735839844,76.13391876220703,81.54125213623047,83.3080062866211,71.31617736816406,73.28286743164062,79.25924682617188,84.18400573730469,85.36283874511719,72.93937683105469,72.61772155761719,86.24651336669922,81.9811782836914,86.81887817382812,81.8791732788086,85.46502685546875,77.30591583251953,98.39260864257812,81.07157135009766,81.65672302246094,80.82103729248047,76.6746597290039,90.72352600097656,76.83253479003906,89.18292999267578,89.45457458496094,83.9452133178711,77.04727935791016,81.74610137939453,79.33677673339844,91.43216705322266,74.88169860839844,99.44752502441406,91.08331298828125,72.5871353149414,87.94679260253906,77.57747650146484,91.24073791503906,77.9022216796875,82.61588287353516,86.05204010009766,86.12641143798828,92.43840789794922,80.80401611328125,75.82151794433594,82.94974517822266,86.1922378540039,85.09584045410156,80.41463470458984,84.49037170410156,88.09680938720703,76.41783905029297,81.85594177246094,86.93887329101562,85.28929138183594,79.70536041259766,58.74637222290039,64.22091674804688,73.11766052246094,70.70181274414062,71.82006072998047,80.85726165771484,86.7853012084961,95.18018341064453,76.33077239990234,80.08489227294922,84.50808715820312,85.74628448486328,87.51834106445312,82.7494888305664,89.49024963378906,72.39045715332031,78.93352508544922,76.25503540039062,82.23068237304688,87.55879974365234,63.32966613769531,87.9124755859375,90.42823791503906,81.44537353515625,72.20532989501953,79.7528076171875,88.28804779052734,75.90556335449219,55.203216552734375,82.72449493408203,75.58403015136719,88.23566436767578,78.04633331298828,88.19348907470703,82.51632690429688,79.8754653930664,80.17438507080078,77.4220962524414,74.7677993774414,71.5553970336914,99.45723724365234,59.745296478271484,90.64449310302734,82.72480010986328,74.83788299560547,78.01533508300781,72.6101303100586,87.91597747802734,74.0531234741211,76.2352066040039,86.74948120117188,79.35755157470703,83.5571060180664,74.50540161132812,77.77001953125,87.77485656738281,87.78050231933594,74.99786376953125,73.94821166992188,84.22441101074219 -2909,83.70968627929688,87.93115234375,89.74807739257812,74.50647735595703,92.365234375,85.75933074951172,75.7549057006836,85.66622924804688,77.28258514404297,72.8318099975586,83.03137969970703,83.41889190673828,89.87157440185547,91.06918334960938,84.96504211425781,80.07693481445312,85.66790771484375,73.43916320800781,68.97181701660156,78.16663360595703,92.7585678100586,72.5228500366211,83.85699462890625,81.78732299804688,68.44160461425781,85.05171203613281,87.61109924316406,79.73660278320312,76.50396728515625,77.76821899414062,72.2002182006836,74.18612670898438,83.67932891845703,88.92402648925781,83.27643585205078,80.58753967285156,64.13941192626953,85.27627563476562,85.71786499023438,79.17855834960938,73.9977798461914,67.82386016845703,77.28057098388672,77.73662567138672,86.22759246826172,83.6553955078125,97.07803344726562,74.45269012451172,76.47991943359375,97.61488342285156,84.0401611328125,94.32416534423828,81.27102661132812,87.68741607666016,73.71814727783203,78.67408752441406,85.4150390625,78.2217788696289,88.91791534423828,82.73868560791016,63.165374755859375,85.3690185546875,77.1727066040039,84.15696716308594,83.20292663574219,82.86239624023438,72.88328552246094,85.04070281982422,71.33580780029297,84.61167907714844,76.5237808227539,99.0006332397461,77.50432586669922,64.89192962646484,68.99305725097656,92.02339935302734,90.08468627929688,88.22408294677734,91.7405014038086,77.85871887207031,75.49806213378906,76.81845092773438,85.65601348876953,77.0425796508789,80.79566955566406,80.80592346191406,88.1430892944336,80.0013198852539,85.1219482421875,80.87744903564453,73.29668426513672,82.9040756225586,78.7350845336914,82.36780548095703,66.79846954345703,78.90814971923828,76.52659606933594,59.20071029663086,80.4090805053711,91.70879364013672,67.77068328857422,81.15233612060547,85.37567138671875,69.3237533569336,72.4595718383789,80.40768432617188,82.3154296875,76.06127166748047,71.09432983398438,78.39051818847656,82.00621795654297,72.91261291503906,82.74642181396484,82.82728576660156,79.87785339355469,71.3932876586914,95.09503173828125,72.96620178222656,73.80509185791016,77.11674499511719,83.86969757080078,76.90564727783203,93.70756530761719,61.358848571777344,85.56291198730469,62.42768096923828,83.50460052490234,78.79305267333984,85.25948333740234,82.01728057861328,84.66577911376953,79.11353302001953,83.26565551757812,76.13391876220703,80.61560821533203,83.3080062866211,71.31617736816406,73.28286743164062,90.3313980102539,84.18400573730469,85.36283874511719,71.5383529663086,72.61772155761719,85.4554672241211,81.9811782836914,86.81887817382812,81.05167388916016,85.46502685546875,77.30591583251953,89.61538696289062,81.07157135009766,82.55122375488281,80.82103729248047,80.75885009765625,88.37865447998047,76.83253479003906,89.77073669433594,89.45457458496094,83.9452133178711,77.16136169433594,81.74610137939453,76.35313415527344,91.43216705322266,74.88169860839844,99.44752502441406,92.54306030273438,72.5871353149414,91.29883575439453,77.90274047851562,91.41979217529297,77.9022216796875,82.61588287353516,86.05204010009766,86.12641143798828,92.43840789794922,80.63399505615234,75.38661193847656,80.8270034790039,86.1922378540039,85.09584045410156,78.4549331665039,85.52275848388672,88.09680938720703,76.41783905029297,81.85594177246094,82.59589385986328,85.28929138183594,79.70536041259766,58.74637222290039,64.22091674804688,73.32380676269531,70.70181274414062,71.82006072998047,80.85726165771484,87.8132553100586,95.18018341064453,76.33077239990234,80.23987579345703,84.50808715820312,85.74628448486328,88.49869537353516,81.86604309082031,89.49024963378906,72.39045715332031,78.93352508544922,78.14671325683594,82.23068237304688,87.55879974365234,63.32966613769531,87.9124755859375,90.42823791503906,80.01590728759766,72.20532989501953,79.45638275146484,88.28804779052734,75.90556335449219,54.5005989074707,84.90550231933594,75.58403015136719,88.23566436767578,78.04633331298828,88.03768157958984,82.51632690429688,79.8754653930664,80.17438507080078,76.46134185791016,74.7677993774414,71.5553970336914,99.45723724365234,59.745296478271484,88.04476165771484,82.72480010986328,74.83788299560547,78.16695404052734,72.23980712890625,87.91597747802734,74.0531234741211,76.2352066040039,86.74948120117188,79.35755157470703,82.5370101928711,74.50540161132812,77.77001953125,87.77485656738281,87.78050231933594,74.99786376953125,73.94821166992188,78.19561004638672 -2910,83.70968627929688,87.93115234375,92.13504028320312,74.50647735595703,92.365234375,85.93711853027344,75.7549057006836,87.36480712890625,77.28258514404297,72.8318099975586,82.86595153808594,83.41889190673828,90.12000274658203,91.101318359375,85.03341674804688,80.07693481445312,85.66790771484375,73.43916320800781,68.77381134033203,78.0940170288086,92.7585678100586,72.5228500366211,82.9707260131836,81.78732299804688,68.39126586914062,83.65571594238281,87.61109924316406,79.73660278320312,76.6655044555664,77.76821899414062,72.41728973388672,74.18612670898438,83.2657470703125,89.02272033691406,83.27643585205078,81.19413757324219,64.13941192626953,85.27627563476562,85.71786499023438,79.11802673339844,73.9977798461914,67.8683853149414,77.28057098388672,77.73662567138672,86.22759246826172,82.8047866821289,94.71054077148438,74.45269012451172,76.47991943359375,97.61488342285156,84.0401611328125,92.2247085571289,81.27102661132812,87.68741607666016,73.71814727783203,78.66337585449219,85.4150390625,78.2217788696289,88.91791534423828,82.73868560791016,62.785362243652344,85.20661163330078,77.11944580078125,84.38690948486328,84.55613708496094,82.86239624023438,72.88328552246094,85.04070281982422,71.33580780029297,84.61167907714844,76.5237808227539,94.62583923339844,77.50432586669922,64.89192962646484,68.99305725097656,92.02339935302734,90.08468627929688,88.22408294677734,93.9130630493164,77.85871887207031,75.49806213378906,76.81845092773438,85.65601348876953,77.10739135742188,80.82377624511719,80.88832092285156,83.308349609375,80.0013198852539,85.1219482421875,80.87744903564453,73.29668426513672,82.9040756225586,78.7350845336914,81.15216064453125,67.35712432861328,79.35528564453125,76.52659606933594,59.69370651245117,80.4090805053711,90.92749786376953,67.77068328857422,75.7341079711914,85.37567138671875,69.3237533569336,72.4595718383789,80.40768432617188,82.3154296875,76.06127166748047,71.44349670410156,77.33086395263672,82.00621795654297,72.91261291503906,82.74642181396484,82.82728576660156,79.87785339355469,71.3932876586914,87.24368286132812,73.44605255126953,73.80509185791016,77.11674499511719,83.86969757080078,78.3851547241211,97.70643615722656,61.68267822265625,84.54527282714844,62.42768096923828,83.50460052490234,78.79305267333984,85.25948333740234,81.7598648071289,84.66577911376953,79.11353302001953,80.68540954589844,76.13391876220703,77.19709777832031,83.3080062866211,70.3890380859375,73.28286743164062,90.3313980102539,85.76486206054688,85.36283874511719,71.5383529663086,72.47030639648438,85.38027954101562,83.54537963867188,86.81887817382812,81.05167388916016,85.46502685546875,77.30591583251953,89.61538696289062,81.07157135009766,82.55122375488281,80.82103729248047,84.80233764648438,88.37865447998047,76.83253479003906,93.02883911132812,89.45457458496094,83.9452133178711,76.77034759521484,81.74610137939453,76.35313415527344,91.43216705322266,77.15428161621094,99.44752502441406,92.8537826538086,72.5871353149414,91.29883575439453,77.90274047851562,92.69222259521484,77.71965789794922,82.61588287353516,86.05204010009766,86.12641143798828,92.43840789794922,80.63399505615234,75.38661193847656,80.8270034790039,86.1922378540039,85.09584045410156,79.56409454345703,85.52275848388672,88.09680938720703,76.41783905029297,81.85594177246094,82.59589385986328,85.28929138183594,79.70536041259766,58.74637222290039,64.22091674804688,73.32380676269531,70.70181274414062,71.82006072998047,80.85726165771484,89.47994232177734,95.18018341064453,76.33077239990234,80.23987579345703,84.50808715820312,85.74628448486328,88.49869537353516,82.48692321777344,89.49024963378906,72.39045715332031,79.06007385253906,72.53010559082031,82.23068237304688,87.55879974365234,63.32966613769531,87.9124755859375,90.42823791503906,80.01590728759766,72.20532989501953,80.47551727294922,88.28804779052734,75.96305847167969,54.5005989074707,86.35611724853516,75.58403015136719,88.23566436767578,77.90375518798828,88.03768157958984,82.51632690429688,79.8754653930664,80.17438507080078,76.46134185791016,74.7677993774414,70.86611938476562,96.09696197509766,59.70323944091797,89.37061309814453,82.72480010986328,74.83788299560547,77.7917709350586,72.23980712890625,87.91597747802734,74.98831939697266,76.2352066040039,86.74948120117188,79.35755157470703,83.04634857177734,74.50540161132812,77.77001953125,87.77485656738281,87.74871063232422,74.99786376953125,75.06561279296875,78.19561004638672 -2911,83.70968627929688,87.93115234375,86.93302154541016,74.31087493896484,92.38443756103516,85.93711853027344,75.7549057006836,87.36480712890625,77.28258514404297,72.8318099975586,82.86595153808594,83.41889190673828,90.12000274658203,91.101318359375,85.03341674804688,80.07693481445312,85.66790771484375,73.43916320800781,68.95995330810547,78.37936401367188,92.7585678100586,72.52398681640625,80.27960968017578,81.8390121459961,68.39126586914062,84.38758850097656,87.61109924316406,79.30884552001953,76.54521179199219,77.76821899414062,72.41728973388672,74.07405090332031,78.98481750488281,88.38858032226562,83.27643585205078,81.19413757324219,64.13941192626953,85.27627563476562,85.71786499023438,79.11802673339844,73.9977798461914,67.8683853149414,77.28057098388672,77.78366088867188,86.22759246826172,82.8047866821289,96.84519958496094,74.55142211914062,76.47991943359375,97.61488342285156,84.0401611328125,94.06105041503906,81.25838470458984,87.68741607666016,73.71814727783203,78.89964294433594,85.4150390625,78.33466339111328,88.91791534423828,83.50846099853516,64.10589599609375,85.20661163330078,77.11944580078125,84.38690948486328,84.55613708496094,82.98130798339844,72.88328552246094,85.04070281982422,71.33580780029297,84.61167907714844,76.5237808227539,94.62583923339844,77.50432586669922,64.89192962646484,68.73320007324219,91.49678802490234,89.35623168945312,88.22408294677734,93.9130630493164,77.96704864501953,75.49806213378906,75.5227279663086,85.65601348876953,77.10739135742188,80.82377624511719,80.88832092285156,83.308349609375,80.0013198852539,85.1219482421875,80.87744903564453,73.29668426513672,82.9040756225586,78.3741226196289,81.15216064453125,69.54203796386719,79.35528564453125,76.73271942138672,59.75151824951172,80.4090805053711,90.92749786376953,67.77068328857422,84.8717269897461,85.77584838867188,69.3237533569336,72.4595718383789,80.21830749511719,82.3154296875,76.06127166748047,71.44349670410156,76.09925079345703,82.00621795654297,72.8009262084961,82.74642181396484,82.82728576660156,79.87785339355469,71.3932876586914,89.26522827148438,73.44605255126953,73.80509185791016,77.11674499511719,83.86969757080078,77.80593872070312,97.70643615722656,61.185115814208984,89.22318267822266,62.42768096923828,83.50460052490234,78.79305267333984,85.25948333740234,81.7598648071289,84.66577911376953,79.11353302001953,84.08155822753906,76.14613342285156,79.73005676269531,83.3080062866211,70.3890380859375,73.28286743164062,88.55561828613281,85.76486206054688,85.36283874511719,72.45886993408203,72.47030639648438,85.38027954101562,83.54537963867188,86.81887817382812,81.05167388916016,85.46502685546875,77.30591583251953,89.61538696289062,81.09911346435547,82.35978698730469,80.83421325683594,82.72089385986328,88.37865447998047,76.83253479003906,88.51142120361328,89.45457458496094,83.9452133178711,76.77034759521484,81.74610137939453,76.35313415527344,91.43216705322266,77.15428161621094,98.08921813964844,92.8537826538086,72.5871353149414,90.86011505126953,77.90274047851562,93.32737731933594,77.71965789794922,82.20071411132812,86.132568359375,86.12641143798828,92.43840789794922,80.63399505615234,75.38661193847656,80.8270034790039,86.07083892822266,84.1052474975586,79.56409454345703,85.52275848388672,88.09680938720703,76.41783905029297,81.85594177246094,82.6928482055664,85.28929138183594,79.70536041259766,58.53999328613281,63.284996032714844,72.3547592163086,70.92414855957031,71.82006072998047,80.85726165771484,91.88861846923828,95.18018341064453,76.33077239990234,80.23809051513672,84.50808715820312,85.74628448486328,88.49869537353516,82.49327087402344,89.08633422851562,72.39045715332031,79.06007385253906,77.20059204101562,82.23068237304688,87.55879974365234,63.32966613769531,87.9124755859375,90.42823791503906,80.01590728759766,72.20532989501953,80.47551727294922,88.28804779052734,75.96305847167969,54.5005989074707,85.43366241455078,75.58403015136719,88.23566436767578,77.90375518798828,88.03768157958984,82.51632690429688,79.8754653930664,80.17438507080078,76.46134185791016,74.7677993774414,70.86611938476562,98.0206069946289,59.70323944091797,87.93388366699219,80.86491394042969,74.83788299560547,77.7917709350586,72.23980712890625,87.91597747802734,74.98831939697266,76.2352066040039,87.099853515625,79.35755157470703,83.04634857177734,74.82678985595703,76.83819580078125,87.77485656738281,86.9189682006836,75.18004608154297,75.06561279296875,78.19561004638672 -2912,83.70968627929688,87.93115234375,88.12477111816406,74.31087493896484,93.04313659667969,85.93711853027344,75.7549057006836,87.36480712890625,77.28258514404297,72.8318099975586,82.86595153808594,83.41889190673828,90.12000274658203,91.101318359375,85.03341674804688,80.07693481445312,85.66790771484375,73.41546630859375,68.95995330810547,78.37936401367188,92.7585678100586,72.52398681640625,82.59114837646484,82.31607055664062,68.39126586914062,83.28614807128906,87.61109924316406,79.30884552001953,76.85686492919922,77.76821899414062,72.41728973388672,74.07405090332031,77.9998550415039,88.38858032226562,83.2894058227539,81.19413757324219,64.13941192626953,85.27627563476562,85.71786499023438,79.11802673339844,73.9977798461914,67.8683853149414,77.28057098388672,77.78366088867188,86.9365005493164,82.8047866821289,94.70791625976562,74.51425170898438,76.47991943359375,98.21710968017578,84.0401611328125,94.02594757080078,81.25838470458984,87.68741607666016,73.71814727783203,78.89964294433594,85.4150390625,78.33466339111328,88.97925567626953,83.50846099853516,63.439701080322266,85.20661163330078,77.11944580078125,85.29680633544922,84.55613708496094,82.98130798339844,72.78138732910156,84.39442443847656,71.33580780029297,84.61167907714844,76.65641021728516,94.72039794921875,77.50432586669922,64.89192962646484,68.73320007324219,91.49678802490234,89.43587493896484,88.22408294677734,91.28724670410156,77.886474609375,75.49806213378906,75.5227279663086,85.65601348876953,77.10739135742188,80.82377624511719,80.88832092285156,87.3024673461914,80.0013198852539,84.43579864501953,80.87744903564453,73.29668426513672,82.9040756225586,78.3741226196289,81.15216064453125,71.7484359741211,79.0726089477539,76.73271942138672,59.74496841430664,80.4090805053711,90.92749786376953,67.77068328857422,83.0129623413086,85.77584838867188,69.3237533569336,72.4595718383789,80.21830749511719,84.74021911621094,76.06127166748047,71.44349670410156,76.09925079345703,82.00621795654297,72.8009262084961,82.74642181396484,82.82728576660156,79.87785339355469,71.68255615234375,85.12164306640625,72.78176879882812,73.80509185791016,77.11674499511719,83.86969757080078,77.80593872070312,97.93840789794922,61.185115814208984,87.874755859375,62.49121856689453,83.50460052490234,78.79305267333984,81.21196746826172,81.7598648071289,84.66577911376953,79.11353302001953,79.96918487548828,76.14613342285156,79.0706558227539,83.3080062866211,70.2405776977539,73.61351013183594,80.40719604492188,85.76486206054688,87.4550552368164,72.45886993408203,72.6491928100586,85.38027954101562,76.08100891113281,86.81887817382812,80.55670166015625,85.46502685546875,77.30591583251953,95.27490234375,81.09911346435547,83.69245147705078,80.83421325683594,82.72089385986328,89.0713119506836,76.83253479003906,87.97794342041016,87.72742462158203,83.9452133178711,76.77034759521484,81.88451385498047,76.35313415527344,91.43216705322266,72.70889282226562,98.08921813964844,92.8537826538086,72.5871353149414,90.86011505126953,77.90274047851562,93.32737731933594,77.71965789794922,82.20071411132812,84.0318374633789,82.733154296875,92.58818817138672,80.63399505615234,75.38661193847656,80.8270034790039,86.07083892822266,84.1052474975586,79.56409454345703,85.52275848388672,88.09680938720703,76.41783905029297,81.85594177246094,82.6928482055664,85.28929138183594,79.70536041259766,58.53999328613281,63.284996032714844,74.05333709716797,70.92414855957031,71.82006072998047,80.6759262084961,89.28404998779297,95.18018341064453,76.33077239990234,80.23809051513672,84.50808715820312,85.74628448486328,88.49869537353516,82.49327087402344,89.08633422851562,73.03416442871094,79.06007385253906,78.08839416503906,82.23068237304688,87.55879974365234,63.32966613769531,87.9124755859375,90.42823791503906,79.21366882324219,72.20532989501953,80.49044036865234,88.28804779052734,75.96305847167969,54.5005989074707,85.43366241455078,75.58403015136719,88.23566436767578,77.90375518798828,88.03768157958984,82.12958526611328,80.10557556152344,80.17438507080078,76.81236267089844,74.73041534423828,70.86611938476562,98.0206069946289,59.70323944091797,87.93388366699219,80.86491394042969,74.83788299560547,77.7917709350586,72.23980712890625,87.91597747802734,74.20272064208984,76.2352066040039,87.099853515625,79.2938461303711,83.04634857177734,74.82678985595703,76.83819580078125,87.77485656738281,86.9189682006836,75.28762817382812,75.06561279296875,78.19561004638672 -2913,83.70968627929688,87.93115234375,88.12477111816406,74.31087493896484,94.35082244873047,85.93711853027344,75.90290832519531,87.36480712890625,75.61587524414062,72.9825668334961,81.90669250488281,83.41889190673828,90.12000274658203,90.88746643066406,85.03341674804688,80.13614654541016,85.66790771484375,73.59937286376953,68.95995330810547,78.33602142333984,92.7585678100586,72.6083755493164,82.59114837646484,82.31607055664062,68.39126586914062,81.67765808105469,87.33959197998047,79.42404174804688,76.85686492919922,77.76821899414062,72.03694915771484,74.81848907470703,77.9998550415039,88.38858032226562,83.2894058227539,81.19413757324219,64.6105728149414,85.27627563476562,85.71786499023438,79.08283996582031,73.9977798461914,67.8683853149414,77.28057098388672,77.78366088867188,86.9365005493164,82.8047866821289,94.54051208496094,74.51425170898438,78.02130889892578,98.21710968017578,84.0401611328125,95.49856567382812,81.25838470458984,87.72148132324219,73.71814727783203,78.89964294433594,85.4150390625,78.33466339111328,89.35021209716797,83.50846099853516,63.439701080322266,85.20661163330078,77.11944580078125,85.29680633544922,84.55613708496094,82.98130798339844,72.74043273925781,84.8187026977539,71.46195220947266,84.61167907714844,76.65641021728516,95.26153564453125,77.50432586669922,64.89192962646484,68.73320007324219,91.90570831298828,89.43587493896484,88.22408294677734,91.28724670410156,77.886474609375,75.49806213378906,75.5227279663086,86.5641860961914,77.06341552734375,80.82377624511719,80.88832092285156,87.3024673461914,80.0013198852539,84.2668228149414,83.18679809570312,73.29668426513672,82.9040756225586,78.3741226196289,80.83349609375,73.55255889892578,79.0726089477539,76.73271942138672,59.74496841430664,81.11803436279297,90.92749786376953,67.77068328857422,83.0129623413086,85.62152862548828,69.3966064453125,72.4595718383789,80.21830749511719,84.74021911621094,76.06127166748047,71.36398315429688,76.09925079345703,82.00621795654297,72.8009262084961,82.74642181396484,82.82728576660156,80.2540283203125,71.68255615234375,85.12164306640625,72.25553894042969,73.80509185791016,77.11674499511719,83.86969757080078,77.80593872070312,97.93840789794922,61.991878509521484,87.874755859375,62.49121856689453,83.50460052490234,78.79305267333984,85.78634643554688,80.79444885253906,84.66577911376953,79.11353302001953,76.11958312988281,76.14613342285156,79.0706558227539,81.87555694580078,70.2405776977539,73.47590637207031,80.40719604492188,85.76486206054688,87.4550552368164,71.77545166015625,72.6491928100586,83.27484893798828,76.08100891113281,86.81887817382812,81.52637481689453,86.17278289794922,77.30591583251953,91.81400299072266,81.08464813232422,82.49844360351562,80.88741302490234,82.72089385986328,90.39384460449219,76.83253479003906,87.97794342041016,87.72742462158203,83.9452133178711,79.36787414550781,81.88451385498047,79.9853286743164,91.43216705322266,72.70889282226562,98.08921813964844,91.08435821533203,72.5871353149414,90.98689270019531,77.90274047851562,93.32737731933594,77.71965789794922,82.20071411132812,84.0318374633789,82.733154296875,92.73957061767578,80.63399505615234,75.38661193847656,80.8270034790039,86.07083892822266,83.6912841796875,79.56409454345703,85.52275848388672,88.09680938720703,75.98350524902344,81.85594177246094,82.6928482055664,85.02174377441406,79.7142333984375,58.53999328613281,63.284996032714844,74.05333709716797,70.92414855957031,71.82006072998047,80.6759262084961,89.28404998779297,94.57695770263672,75.81059265136719,80.23809051513672,84.57307434082031,85.74628448486328,88.49869537353516,82.67215728759766,89.08633422851562,73.03416442871094,79.06007385253906,78.08839416503906,82.23068237304688,87.55879974365234,63.32966613769531,87.9124755859375,90.1253890991211,79.21366882324219,71.91130828857422,80.49044036865234,87.6576919555664,75.96305847167969,54.5005989074707,83.91053009033203,75.5509033203125,88.23566436767578,78.88591003417969,88.03768157958984,81.67249298095703,79.34171295166016,78.63264465332031,76.81236267089844,74.73041534423828,70.86611938476562,97.5515365600586,59.70323944091797,87.93388366699219,81.51617431640625,74.83788299560547,77.85948181152344,72.2366714477539,87.91597747802734,74.20272064208984,76.20421600341797,87.099853515625,79.3416976928711,83.04634857177734,74.23223876953125,76.83819580078125,87.77485656738281,86.9189682006836,75.28762817382812,75.06561279296875,78.19561004638672 -2914,83.70968627929688,87.93115234375,88.88516235351562,74.31087493896484,94.30784606933594,86.39107513427734,75.90290832519531,87.36480712890625,77.81331634521484,72.9825668334961,81.90669250488281,83.41889190673828,90.12000274658203,90.88746643066406,85.03341674804688,80.13614654541016,85.66790771484375,73.56835174560547,68.95995330810547,78.33602142333984,92.7585678100586,72.53180694580078,82.59114837646484,82.31607055664062,68.39126586914062,81.67765808105469,86.78462982177734,79.72653198242188,76.85686492919922,77.76821899414062,72.03694915771484,74.13514709472656,77.9998550415039,88.38858032226562,83.2894058227539,81.19413757324219,64.6105728149414,85.27627563476562,85.71786499023438,79.08283996582031,73.9977798461914,67.8683853149414,77.2954330444336,76.99191284179688,86.9365005493164,81.50309753417969,93.59784698486328,74.51425170898438,77.26467895507812,98.21710968017578,83.29483032226562,95.49856567382812,81.25838470458984,87.72148132324219,73.71814727783203,79.09989166259766,85.4150390625,78.33466339111328,89.35021209716797,82.5588607788086,63.439701080322266,84.1249008178711,77.11944580078125,84.27460479736328,84.6748275756836,82.98130798339844,72.91525268554688,83.26453399658203,71.46195220947266,84.14680480957031,76.65641021728516,95.26153564453125,77.50432586669922,64.89192962646484,68.73320007324219,91.90570831298828,89.43587493896484,88.22408294677734,91.28724670410156,77.30026245117188,75.49806213378906,75.5227279663086,86.5641860961914,77.06341552734375,80.82377624511719,80.88832092285156,87.3024673461914,80.0013198852539,84.2668228149414,83.18679809570312,73.29668426513672,85.0199966430664,78.3741226196289,80.83349609375,73.39319610595703,79.0726089477539,76.2059326171875,59.74496841430664,81.11803436279297,90.92749786376953,67.77068328857422,83.0129623413086,85.36741638183594,69.3966064453125,75.79436492919922,81.32101440429688,82.92738342285156,76.06127166748047,71.36398315429688,76.09925079345703,82.00621795654297,73.74372100830078,82.74642181396484,83.61851501464844,80.2540283203125,71.68255615234375,85.12164306640625,71.33875274658203,73.80509185791016,77.11674499511719,83.86969757080078,77.80593872070312,97.2236099243164,62.492347717285156,87.40801239013672,62.323814392089844,83.50460052490234,78.79305267333984,81.64339447021484,80.79444885253906,84.66577911376953,79.11353302001953,77.63253784179688,76.14613342285156,81.05389404296875,81.87555694580078,70.2405776977539,73.47590637207031,73.35832214355469,85.76486206054688,87.4550552368164,71.77545166015625,72.6491928100586,82.47543334960938,76.08100891113281,86.81887817382812,81.52637481689453,86.17278289794922,77.30591583251953,91.81400299072266,81.08464813232422,82.49844360351562,80.88741302490234,82.72089385986328,89.4937973022461,77.70240020751953,87.97794342041016,89.05964660644531,83.9452133178711,78.88166809082031,81.88451385498047,79.9853286743164,90.86956024169922,71.8876953125,99.50350952148438,91.08435821533203,72.5871353149414,89.86708068847656,77.90274047851562,93.32737731933594,77.71965789794922,81.43108367919922,84.24012756347656,82.733154296875,92.73957061767578,80.63399505615234,74.93645477294922,80.8270034790039,86.07083892822266,83.6912841796875,79.56409454345703,85.52275848388672,88.09680938720703,75.98350524902344,81.85594177246094,82.6928482055664,85.02174377441406,79.7142333984375,58.63907241821289,63.284996032714844,74.05333709716797,70.92414855957031,70.5042495727539,80.6759262084961,89.28404998779297,93.88456726074219,75.93025970458984,80.23809051513672,84.03244018554688,85.74628448486328,88.49869537353516,82.76578521728516,90.00935363769531,73.03416442871094,79.06007385253906,78.08839416503906,82.06549072265625,87.43653106689453,63.32966613769531,87.9124755859375,90.1253890991211,79.21366882324219,72.49281311035156,80.37492370605469,87.6576919555664,75.09261322021484,54.24364471435547,83.91053009033203,75.5509033203125,88.23566436767578,78.88591003417969,88.03768157958984,81.67249298095703,79.34171295166016,78.63264465332031,75.4972152709961,74.73041534423828,70.86611938476562,96.25001525878906,59.638309478759766,87.93388366699219,81.51617431640625,74.47844696044922,77.85948181152344,72.15998077392578,87.91597747802734,74.20272064208984,75.80706787109375,87.099853515625,79.3416976928711,80.44132232666016,74.23223876953125,76.83819580078125,87.48458099365234,87.1432876586914,75.28762817382812,73.06066131591797,78.19561004638672 -2915,83.59770202636719,88.38784790039062,88.88516235351562,74.31087493896484,95.35984802246094,86.20844268798828,75.90290832519531,87.36480712890625,77.81331634521484,72.9825668334961,81.90669250488281,83.41889190673828,89.61729431152344,90.84249114990234,85.03341674804688,80.13614654541016,85.66790771484375,73.56835174560547,68.95995330810547,78.1595458984375,92.65882110595703,72.53180694580078,84.69601440429688,82.31607055664062,68.3550796508789,81.67765808105469,86.63500213623047,79.72653198242188,76.85686492919922,77.83869934082031,72.03694915771484,74.1290512084961,77.9998550415039,88.38858032226562,83.2894058227539,81.19856262207031,64.6105728149414,85.27627563476562,85.71786499023438,79.08283996582031,73.9977798461914,67.85810089111328,77.2954330444336,79.75047302246094,87.19763946533203,81.50309753417969,94.73450469970703,74.51425170898438,77.26467895507812,98.21710968017578,83.29483032226562,95.49856567382812,81.25838470458984,87.50021362304688,73.79898834228516,79.09989166259766,85.4150390625,78.27452850341797,89.35021209716797,82.5588607788086,63.439701080322266,84.1249008178711,77.11944580078125,84.27460479736328,84.6748275756836,82.98130798339844,72.91525268554688,83.01156616210938,71.46195220947266,83.99217987060547,76.468017578125,95.26153564453125,77.4817886352539,64.89192962646484,68.73320007324219,92.01290893554688,89.76200103759766,87.85231018066406,91.28724670410156,77.30026245117188,75.49806213378906,75.5227279663086,87.65007781982422,77.06341552734375,80.82377624511719,80.88832092285156,87.3024673461914,80.0013198852539,85.32207489013672,83.18679809570312,73.28076934814453,81.31621551513672,78.3741226196289,80.58612823486328,73.81291198730469,79.0726089477539,76.83937072753906,59.74496841430664,80.5066909790039,90.92749786376953,67.77068328857422,77.36302185058594,85.67449951171875,69.3966064453125,74.32130432128906,81.32101440429688,80.6788330078125,76.06127166748047,71.36398315429688,71.07542419433594,82.00621795654297,73.74372100830078,82.74642181396484,83.61851501464844,82.14901733398438,71.68255615234375,85.12164306640625,71.33875274658203,73.80509185791016,77.11674499511719,86.68492126464844,78.96200561523438,97.2236099243164,62.492347717285156,87.40801239013672,62.323814392089844,83.50460052490234,78.79305267333984,82.17766571044922,80.79444885253906,84.66577911376953,79.11353302001953,77.63253784179688,76.1764144897461,81.05389404296875,81.87555694580078,70.2405776977539,74.08241271972656,73.35832214355469,85.76486206054688,87.4550552368164,71.77545166015625,72.6491928100586,84.66338348388672,76.08100891113281,86.81887817382812,85.37267303466797,86.17278289794922,77.30591583251953,91.81400299072266,81.21917724609375,79.28910827636719,80.52323150634766,80.15853118896484,90.76049041748047,76.49613952636719,87.97794342041016,89.05964660644531,83.9452133178711,78.88166809082031,81.88451385498047,79.9853286743164,93.74579620361328,72.7820053100586,99.50350952148438,91.08435821533203,72.5871353149414,89.86708068847656,77.75363159179688,93.32737731933594,80.81035614013672,81.43108367919922,84.24012756347656,80.87614440917969,90.04156494140625,80.63399505615234,74.93645477294922,80.19032287597656,86.07083892822266,85.20581817626953,79.48563385009766,85.133056640625,88.09680938720703,76.81822967529297,81.85594177246094,82.6928482055664,85.02174377441406,79.7142333984375,58.63907241821289,65.39990234375,74.05333709716797,70.13267517089844,70.49410247802734,80.6759262084961,90.61133575439453,93.81564331054688,76.05883026123047,80.23809051513672,86.35507202148438,85.74628448486328,87.43669891357422,83.18700408935547,90.00935363769531,73.03416442871094,79.10586547851562,78.08839416503906,81.91595458984375,87.43653106689453,63.32966613769531,87.9124755859375,90.4468994140625,79.21366882324219,71.89019012451172,80.67369079589844,87.6576919555664,75.09261322021484,54.24364471435547,81.79895782470703,75.5509033203125,88.23566436767578,79.26422882080078,87.42333984375,82.06524658203125,79.34171295166016,78.63264465332031,75.4972152709961,74.70148468017578,70.86611938476562,96.25001525878906,59.638309478759766,87.93388366699219,81.51617431640625,74.47844696044922,78.24893188476562,72.1683120727539,87.91597747802734,74.20272064208984,75.80706787109375,87.099853515625,79.3416976928711,80.44132232666016,74.23223876953125,76.59333801269531,87.48458099365234,87.1432876586914,75.28762817382812,69.32665252685547,78.19561004638672 -2916,83.59770202636719,88.50817108154297,88.88516235351562,74.31087493896484,94.99420928955078,86.13101196289062,75.90290832519531,87.36480712890625,77.81331634521484,72.9825668334961,81.90669250488281,83.41889190673828,89.61729431152344,90.84249114990234,85.03341674804688,79.85083770751953,85.66790771484375,73.56835174560547,68.95995330810547,78.1595458984375,92.75224304199219,72.53180694580078,84.69601440429688,81.56145477294922,68.67675018310547,81.67765808105469,86.63500213623047,79.72653198242188,76.6070556640625,77.83660125732422,72.03694915771484,74.1290512084961,77.9998550415039,88.73839569091797,82.96570587158203,81.19856262207031,64.4491195678711,85.27627563476562,85.44149017333984,79.08283996582031,73.9977798461914,67.85810089111328,77.04337310791016,76.14617156982422,87.1977767944336,82.66065216064453,94.73450469970703,74.51425170898438,77.59803771972656,98.21710968017578,83.29483032226562,95.49856567382812,81.25838470458984,87.50021362304688,73.79898834228516,78.91326141357422,85.55803680419922,78.27452850341797,89.35021209716797,82.5588607788086,62.79499816894531,84.1249008178711,78.43692779541016,83.28263854980469,83.60595703125,82.98130798339844,72.91525268554688,83.01156616210938,71.46195220947266,83.99217987060547,76.44679260253906,95.26153564453125,77.4817886352539,64.89192962646484,68.73320007324219,92.01290893554688,89.76200103759766,87.85231018066406,91.28724670410156,77.30026245117188,75.49806213378906,75.5227279663086,87.65007781982422,77.06341552734375,80.82377624511719,80.88832092285156,82.92977142333984,80.0013198852539,85.32207489013672,83.18679809570312,73.28076934814453,81.31621551513672,78.68550872802734,80.58612823486328,73.81291198730469,79.0726089477539,76.83937072753906,59.74880599975586,80.5066909790039,89.69259643554688,67.77068328857422,77.36302185058594,85.67449951171875,69.3966064453125,74.32130432128906,81.32101440429688,80.6788330078125,76.06127166748047,71.36398315429688,68.13736724853516,82.1107406616211,73.66889953613281,81.55233001708984,83.61851501464844,82.14901733398438,71.68255615234375,90.34761047363281,73.60845184326172,74.2369155883789,77.11674499511719,86.68492126464844,78.96200561523438,92.54252624511719,62.15230941772461,79.80778503417969,62.323814392089844,84.79265594482422,78.67947387695312,82.17766571044922,80.79444885253906,84.66577911376953,79.11353302001953,77.63253784179688,76.00770568847656,81.05389404296875,81.87555694580078,70.2405776977539,73.30413818359375,73.35832214355469,84.37122344970703,87.4550552368164,73.10762786865234,72.6491928100586,84.66338348388672,76.16436004638672,86.81887817382812,85.37267303466797,86.17278289794922,77.30591583251953,91.81400299072266,81.21917724609375,84.51803588867188,80.43563842773438,80.15853118896484,90.76049041748047,76.49613952636719,87.97794342041016,89.05964660644531,83.9452133178711,78.88166809082031,82.16336822509766,80.25146484375,92.13444519042969,74.09201049804688,99.50350952148438,91.08435821533203,72.5871353149414,89.86708068847656,78.12828826904297,93.32737731933594,80.81035614013672,81.43108367919922,84.7849349975586,85.5481185913086,90.04156494140625,80.63399505615234,74.93645477294922,80.19032287597656,86.07083892822266,84.10491180419922,79.48563385009766,85.133056640625,88.09680938720703,76.81822967529297,81.85594177246094,82.6928482055664,85.02174377441406,80.0252914428711,57.72764205932617,65.39990234375,74.05333709716797,70.13267517089844,70.49410247802734,80.6759262084961,90.61133575439453,93.81564331054688,76.05883026123047,80.23809051513672,85.70783233642578,85.74628448486328,87.43669891357422,83.18700408935547,90.00935363769531,73.03416442871094,79.10586547851562,81.46563720703125,81.91595458984375,88.4465560913086,64.59867095947266,87.9124755859375,91.41728973388672,79.21366882324219,71.89019012451172,80.67369079589844,86.89026641845703,75.09261322021484,54.4327507019043,81.79895782470703,75.5509033203125,88.23566436767578,81.10358428955078,87.42333984375,82.4108657836914,79.34171295166016,78.63264465332031,75.4972152709961,74.8380126953125,71.79338836669922,99.22259521484375,59.746856689453125,87.93388366699219,81.51617431640625,74.50584411621094,77.95079803466797,72.1683120727539,88.0948257446289,74.20272064208984,75.80706787109375,87.3429946899414,79.3416976928711,80.44132232666016,74.23223876953125,76.59333801269531,87.48458099365234,87.3333969116211,75.28762817382812,69.32665252685547,78.19561004638672 -2917,83.59770202636719,88.50817108154297,88.88516235351562,74.14236450195312,96.12449645996094,86.14649200439453,75.90290832519531,87.36480712890625,77.81331634521484,72.94883728027344,82.09669494628906,83.41889190673828,90.03958129882812,90.84249114990234,85.03341674804688,79.85083770751953,85.66790771484375,73.5394515991211,68.95995330810547,78.1595458984375,92.66360473632812,72.53180694580078,79.52123260498047,81.56145477294922,68.45362854003906,81.67765808105469,86.63500213623047,80.6042709350586,76.6070556640625,77.83660125732422,72.03694915771484,74.1290512084961,77.9998550415039,88.73839569091797,82.96570587158203,81.19856262207031,64.4491195678711,85.27627563476562,85.44149017333984,79.08283996582031,73.9705810546875,67.73590850830078,77.3860092163086,76.14617156982422,86.50812530517578,81.40776824951172,94.73450469970703,74.51425170898438,77.59803771972656,97.9169921875,83.29483032226562,92.61077880859375,81.25838470458984,87.66895294189453,73.36096954345703,79.45072174072266,85.55803680419922,78.27452850341797,89.24063873291016,82.5588607788086,62.79499816894531,84.1249008178711,78.43692779541016,83.28263854980469,83.60595703125,82.98130798339844,72.83964538574219,83.01156616210938,71.61499786376953,83.99217987060547,76.44679260253906,91.96624755859375,77.4817886352539,64.89192962646484,68.59468841552734,92.01290893554688,89.76200103759766,87.85231018066406,91.28724670410156,77.30026245117188,75.49806213378906,77.32730102539062,87.65007781982422,77.06341552734375,80.82377624511719,80.88832092285156,85.13201141357422,80.0013198852539,85.32207489013672,83.18679809570312,73.28076934814453,81.31621551513672,78.68550872802734,80.58612823486328,73.81291198730469,79.0726089477539,76.83937072753906,59.74880599975586,80.5066909790039,90.25122833251953,67.77068328857422,75.27294158935547,85.67449951171875,69.3966064453125,74.32130432128906,81.32101440429688,80.6788330078125,76.06127166748047,72.36893463134766,73.42496490478516,82.1107406616211,73.66889953613281,81.55233001708984,83.61851501464844,82.14901733398438,71.68255615234375,93.07244873046875,71.2774658203125,74.2369155883789,77.11674499511719,86.68492126464844,81.035400390625,92.54252624511719,62.15230941772461,83.87115478515625,62.14944839477539,84.79265594482422,78.67947387695312,82.17766571044922,80.4441146850586,86.48307037353516,79.33671569824219,77.63253784179688,76.00770568847656,81.05389404296875,82.83557891845703,70.2405776977539,73.30413818359375,69.74561309814453,84.37122344970703,87.4550552368164,73.10762786865234,72.6491928100586,84.21815490722656,76.16436004638672,86.81887817382812,85.37267303466797,86.17278289794922,77.30591583251953,92.94000244140625,81.21917724609375,84.51803588867188,80.43563842773438,82.22248840332031,90.76049041748047,76.65118408203125,87.97794342041016,89.05964660644531,83.9452133178711,78.88166809082031,82.07666778564453,81.59907531738281,91.38993835449219,73.54345703125,99.50350952148438,93.39420318603516,72.5871353149414,89.86708068847656,78.12828826904297,92.70811462402344,80.81035614013672,81.43108367919922,84.7849349975586,85.5481185913086,90.11708068847656,80.63399505615234,75.21343994140625,80.19032287597656,86.21782684326172,83.00296783447266,79.31364440917969,85.133056640625,88.09680938720703,76.26702880859375,81.85594177246094,82.6928482055664,84.5091781616211,80.0252914428711,57.72764205932617,64.7117919921875,73.67418670654297,70.13267517089844,70.49410247802734,80.6759262084961,90.4056396484375,93.81564331054688,76.05883026123047,80.23809051513672,83.81629180908203,85.74628448486328,87.43669891357422,82.7340087890625,90.00935363769531,76.78760528564453,79.10586547851562,80.34261322021484,82.15943908691406,88.4465560913086,64.59867095947266,87.9124755859375,91.41728973388672,79.21366882324219,71.89019012451172,80.67369079589844,86.89026641845703,75.09261322021484,54.77663803100586,81.79895782470703,75.5509033203125,87.96672821044922,79.41327667236328,87.42333984375,82.4108657836914,79.34171295166016,78.63264465332031,75.4972152709961,74.36585235595703,71.79338836669922,99.22259521484375,59.50767517089844,87.93388366699219,81.51617431640625,74.50584411621094,77.95079803466797,72.1683120727539,88.0948257446289,74.20272064208984,75.22602081298828,87.3429946899414,79.3416976928711,80.44132232666016,74.23223876953125,76.59333801269531,87.22273254394531,87.3333969116211,75.90070343017578,69.32665252685547,78.19561004638672 -2918,83.59770202636719,88.50817108154297,88.88516235351562,74.14236450195312,96.12449645996094,86.17935943603516,75.6799087524414,87.78638458251953,77.81331634521484,72.94883728027344,81.20618438720703,83.41889190673828,89.98209381103516,90.84249114990234,85.03341674804688,79.85083770751953,85.66790771484375,73.5394515991211,68.95995330810547,78.03013610839844,92.66360473632812,72.53180694580078,79.04533386230469,81.56145477294922,68.24320220947266,79.97386932373047,86.63500213623047,80.6042709350586,76.6070556640625,77.83660125732422,72.03694915771484,74.1290512084961,76.3453140258789,88.73839569091797,82.96570587158203,81.19073486328125,64.4491195678711,85.33341217041016,86.74327087402344,79.08283996582031,73.9705810546875,67.73050689697266,77.3860092163086,76.37581634521484,86.76329803466797,81.40776824951172,94.73450469970703,74.42593383789062,77.59803771972656,97.9169921875,83.29483032226562,91.85501098632812,81.25838470458984,87.60588073730469,73.29328155517578,78.97327423095703,85.55803680419922,78.27452850341797,89.24063873291016,82.5588607788086,62.79499816894531,84.1249008178711,78.43692779541016,83.28263854980469,83.60595703125,82.98130798339844,72.83964538574219,83.01156616210938,71.36981964111328,83.99217987060547,76.44679260253906,91.96624755859375,77.4817886352539,64.89192962646484,68.59468841552734,92.01290893554688,89.76200103759766,87.85231018066406,91.28724670410156,77.30026245117188,75.49806213378906,76.7251968383789,87.65007781982422,77.06341552734375,80.82377624511719,80.88832092285156,87.16209411621094,80.0013198852539,84.79532623291016,82.57781982421875,73.00871276855469,81.31621551513672,75.20933532714844,80.58612823486328,73.81291198730469,79.0726089477539,76.83937072753906,59.74880599975586,80.5066909790039,90.25122833251953,67.77068328857422,75.27294158935547,85.67449951171875,69.3966064453125,74.32130432128906,81.32101440429688,80.6788330078125,75.09398651123047,72.52227783203125,74.87903594970703,80.7674560546875,73.66889953613281,78.70429992675781,85.4040298461914,82.14901733398438,71.68255615234375,93.07244873046875,71.2774658203125,74.2369155883789,77.81524658203125,84.1252212524414,81.035400390625,92.54252624511719,61.69342041015625,83.71144104003906,62.14944839477539,84.79265594482422,78.67947387695312,82.17766571044922,80.4441146850586,86.48307037353516,79.17705535888672,77.68059539794922,74.61431884765625,81.05389404296875,84.8398208618164,70.2405776977539,73.30413818359375,71.52859497070312,84.00868225097656,87.4550552368164,73.10762786865234,72.6491928100586,82.4930648803711,76.16436004638672,86.81887817382812,85.37267303466797,86.17278289794922,77.30591583251953,92.94000244140625,81.19841003417969,84.51803588867188,80.43229675292969,81.86798095703125,90.76049041748047,76.65118408203125,87.97794342041016,89.05964660644531,83.9452133178711,78.88166809082031,82.07666778564453,80.61407470703125,91.38993835449219,73.54345703125,99.50350952148438,92.69383239746094,72.5871353149414,85.5220718383789,78.12828826904297,93.3650894165039,80.81035614013672,81.43108367919922,84.7849349975586,85.5481185913086,90.11708068847656,80.63399505615234,75.21343994140625,81.64984893798828,86.21782684326172,85.08424377441406,79.31364440917969,85.133056640625,88.09680938720703,76.15602111816406,81.85594177246094,82.60472869873047,84.5091781616211,80.0252914428711,57.72764205932617,64.7117919921875,73.67418670654297,70.13267517089844,70.49410247802734,80.6759262084961,87.70415496826172,93.81564331054688,76.05883026123047,80.23809051513672,83.81629180908203,85.74628448486328,87.43669891357422,83.0582275390625,90.00935363769531,72.1980972290039,79.10586547851562,81.15348052978516,82.15943908691406,88.4465560913086,64.59867095947266,87.69042205810547,91.89510345458984,81.51082611083984,71.89019012451172,79.98490905761719,86.89026641845703,74.69759368896484,54.77663803100586,81.79895782470703,75.5509033203125,87.96672821044922,77.71238708496094,88.09889221191406,82.4108657836914,79.34171295166016,78.63264465332031,75.4972152709961,74.36585235595703,71.56962585449219,100.21267700195312,59.50767517089844,87.93388366699219,82.89984130859375,74.50584411621094,78.10575103759766,72.1683120727539,88.0948257446289,74.02456665039062,75.22602081298828,87.0710678100586,79.28167724609375,80.42463684082031,74.23223876953125,76.75172424316406,87.22273254394531,87.3333969116211,75.90070343017578,69.32665252685547,78.80521392822266 -2919,83.59770202636719,88.50817108154297,88.88516235351562,74.40605926513672,94.19256591796875,86.17935943603516,76.23648834228516,87.78638458251953,77.81331634521484,72.93914031982422,82.59024810791016,82.71585083007812,89.98209381103516,90.84249114990234,85.03341674804688,79.85083770751953,83.75660705566406,73.5394515991211,68.95995330810547,78.352294921875,92.66360473632812,72.53180694580078,79.04533386230469,81.14873504638672,68.24320220947266,79.97386932373047,86.63500213623047,80.6042709350586,76.18672180175781,77.83660125732422,72.04194641113281,74.1290512084961,76.3453140258789,88.73839569091797,82.96570587158203,81.19073486328125,64.4491195678711,85.33341217041016,86.74327087402344,79.08283996582031,73.9705810546875,67.73050689697266,77.3860092163086,76.37581634521484,86.76329803466797,81.40776824951172,94.73450469970703,74.42593383789062,77.59803771972656,99.81096649169922,83.29483032226562,91.85501098632812,81.19658660888672,87.60588073730469,73.29328155517578,78.97327423095703,85.55803680419922,78.27452850341797,89.24063873291016,82.5588607788086,62.701881408691406,84.1249008178711,78.43692779541016,83.39456176757812,83.60595703125,82.98130798339844,72.83964538574219,83.01156616210938,71.36981964111328,83.99217987060547,76.61695098876953,91.96624755859375,77.487548828125,64.80833435058594,68.31043243408203,92.01290893554688,89.76200103759766,88.17517852783203,91.28724670410156,77.30026245117188,75.49806213378906,76.7251968383789,87.65007781982422,77.06341552734375,80.82377624511719,80.88832092285156,96.62569427490234,79.69343566894531,84.79532623291016,82.57781982421875,73.4577865600586,80.58154296875,75.20933532714844,84.39904022216797,73.81291198730469,79.697265625,77.1266860961914,59.74880599975586,80.5066909790039,90.25122833251953,66.13019561767578,73.17453002929688,86.45613861083984,69.2324447631836,74.32130432128906,81.32101440429688,80.6788330078125,78.12940216064453,72.52227783203125,74.87903594970703,86.40972137451172,73.66889953613281,78.70429992675781,85.4040298461914,82.14901733398438,71.68255615234375,93.61388397216797,70.77922821044922,74.2369155883789,77.81524658203125,84.99198913574219,77.15754699707031,92.54252624511719,61.69342041015625,83.71144104003906,62.14944839477539,84.79265594482422,78.67947387695312,82.17766571044922,80.39716339111328,86.48307037353516,79.2079849243164,77.68059539794922,74.61431884765625,84.18035125732422,83.41204833984375,72.89154052734375,70.6538314819336,71.52859497070312,84.00868225097656,87.4550552368164,73.10762786865234,72.6491928100586,84.0076904296875,74.48912048339844,86.81887817382812,78.4739990234375,85.43609619140625,77.30591583251953,89.53931427001953,81.19841003417969,84.51803588867188,80.43229675292969,81.86798095703125,90.76049041748047,76.65118408203125,87.97794342041016,88.18685913085938,83.65216827392578,78.88166809082031,82.3011245727539,82.20195007324219,91.38993835449219,73.54345703125,99.50350952148438,92.69383239746094,72.5871353149414,85.5220718383789,78.12828826904297,93.3650894165039,80.81035614013672,81.61679077148438,84.7849349975586,84.40501403808594,90.11708068847656,80.63399505615234,74.88363647460938,81.64984893798828,86.4346923828125,85.08424377441406,79.31364440917969,85.133056640625,88.09680938720703,76.15602111816406,81.85594177246094,82.60472869873047,84.5091781616211,80.0252914428711,58.76521301269531,65.62232208251953,73.67418670654297,70.13267517089844,71.12020874023438,80.6759262084961,88.67767333984375,94.48594665527344,76.05883026123047,80.23809051513672,86.15860748291016,85.74628448486328,87.67929077148438,83.0064468383789,90.00935363769531,73.99031066894531,79.10586547851562,81.15348052978516,82.15943908691406,88.4465560913086,64.47301483154297,87.69042205810547,91.89510345458984,81.51082611083984,71.89019012451172,79.50181579589844,87.08992767333984,74.69759368896484,54.77663803100586,81.79895782470703,75.5509033203125,82.17512512207031,78.6312255859375,88.09889221191406,81.08065032958984,79.34171295166016,78.63264465332031,75.4972152709961,74.4107894897461,71.56962585449219,100.21267700195312,59.50767517089844,89.06159210205078,82.89984130859375,74.50584411621094,78.10575103759766,72.1683120727539,88.0948257446289,73.82207489013672,75.22602081298828,87.0710678100586,79.30411529541016,80.42463684082031,74.63091278076172,76.75172424316406,87.22273254394531,86.84405517578125,75.90070343017578,69.32665252685547,78.80521392822266 -2920,83.59770202636719,87.86629486083984,88.88516235351562,74.46234893798828,93.62577819824219,86.17935943603516,76.27574920654297,86.62942504882812,77.01959991455078,72.93914031982422,82.59024810791016,82.71585083007812,89.98209381103516,90.84249114990234,85.03341674804688,79.85083770751953,83.75660705566406,73.590087890625,68.95995330810547,78.35730743408203,92.3004379272461,72.53180694580078,78.21990203857422,81.14873504638672,68.24320220947266,80.43790435791016,87.8755111694336,80.6042709350586,76.36605834960938,77.95465850830078,72.04194641113281,74.1290512084961,76.60348510742188,88.73839569091797,82.96570587158203,80.51680755615234,64.4491195678711,85.33341217041016,82.61460876464844,79.08283996582031,73.9705810546875,67.66472625732422,77.17121124267578,76.73265075683594,86.76329803466797,81.40776824951172,93.79764556884766,74.42593383789062,77.59803771972656,99.81096649169922,83.29483032226562,91.64366912841797,81.19658660888672,87.60782623291016,73.29328155517578,79.23992919921875,85.90257263183594,78.07662963867188,89.03963470458984,83.85009765625,62.701881408691406,84.1249008178711,78.43692779541016,83.39456176757812,82.36812591552734,82.98130798339844,72.83964538574219,83.01156616210938,71.36981964111328,83.72252655029297,76.61695098876953,91.96624755859375,77.37398529052734,64.80833435058594,68.57096862792969,92.29461669921875,88.8226547241211,88.17517852783203,90.41036987304688,77.30026245117188,75.49806213378906,76.7251968383789,87.65007781982422,77.04934692382812,80.66041564941406,80.88832092285156,96.62569427490234,79.69343566894531,84.79532623291016,82.57781982421875,73.05231475830078,80.5657730102539,75.20933532714844,84.39904022216797,73.81291198730469,79.697265625,77.1266860961914,59.74880599975586,80.5066909790039,90.25122833251953,66.13019561767578,73.17453002929688,85.44879150390625,69.2324447631836,74.32130432128906,81.32101440429688,83.1596450805664,78.12940216064453,72.52227783203125,76.91046905517578,86.40972137451172,73.66889953613281,77.96929931640625,85.4040298461914,80.72079467773438,69.23170471191406,93.61388397216797,70.77922821044922,74.2369155883789,78.45997619628906,84.99198913574219,77.15754699707031,84.29212188720703,62.937931060791016,83.71144104003906,62.14944839477539,84.79265594482422,78.76240539550781,82.17766571044922,80.39716339111328,86.48307037353516,79.2079849243164,77.43357849121094,75.54666900634766,84.18035125732422,83.41204833984375,72.89154052734375,70.31565856933594,71.52859497070312,87.83234405517578,87.4550552368164,72.68467712402344,71.88095092773438,84.0076904296875,74.48912048339844,86.81887817382812,83.89263916015625,85.43609619140625,77.30591583251953,89.53931427001953,81.19841003417969,83.70074462890625,80.43229675292969,81.86798095703125,90.76049041748047,76.65118408203125,88.1004867553711,88.18685913085938,83.65216827392578,78.88166809082031,82.31377410888672,82.20195007324219,91.38993835449219,73.32886505126953,100.96269226074219,92.69383239746094,75.54464721679688,85.5220718383789,78.86164855957031,92.70425415039062,80.81035614013672,81.61679077148438,84.7849349975586,84.86015319824219,88.80548858642578,79.59613800048828,74.88363647460938,81.64984893798828,86.0765151977539,85.08424377441406,79.31364440917969,85.3212890625,88.09680938720703,76.15602111816406,82.81783294677734,82.60472869873047,84.5091781616211,80.0252914428711,58.75351333618164,65.62232208251953,73.67418670654297,70.13267517089844,71.12020874023438,80.7525863647461,89.14317321777344,94.48594665527344,76.05883026123047,80.23809051513672,86.15860748291016,85.74628448486328,87.67929077148438,83.0064468383789,90.00935363769531,73.99031066894531,79.10586547851562,81.15348052978516,82.1156997680664,84.22608947753906,64.47301483154297,87.69042205810547,91.89510345458984,81.51082611083984,71.89019012451172,79.48018646240234,87.08992767333984,73.92919158935547,54.03564453125,83.47294616699219,75.56622314453125,82.17512512207031,78.6312255859375,88.09889221191406,81.65818786621094,79.34171295166016,78.63264465332031,75.4972152709961,74.74972534179688,70.63642120361328,96.36199188232422,59.50767517089844,88.8512954711914,82.89984130859375,75.26543426513672,78.10575103759766,72.1683120727539,88.0948257446289,73.82207489013672,76.04258728027344,87.44739532470703,79.32230377197266,80.42463684082031,74.63091278076172,76.75172424316406,87.22273254394531,86.84405517578125,75.3145980834961,69.32665252685547,78.80521392822266 -2921,83.59770202636719,87.86629486083984,88.88516235351562,74.46234893798828,93.62577819824219,86.17935943603516,76.0096435546875,86.62942504882812,77.01959991455078,72.93914031982422,82.59024810791016,82.71585083007812,89.98209381103516,90.81360626220703,85.03341674804688,79.85083770751953,83.75660705566406,73.590087890625,69.20065307617188,78.37362670898438,92.3004379272461,72.53180694580078,80.1046142578125,81.14873504638672,68.24320220947266,80.43790435791016,87.8755111694336,80.6042709350586,76.36605834960938,77.96533966064453,72.04194641113281,74.10824584960938,76.90929412841797,88.73839569091797,82.96570587158203,80.51680755615234,64.4491195678711,85.33341217041016,82.61460876464844,79.08283996582031,73.9705810546875,67.66472625732422,77.17121124267578,76.73438262939453,86.76329803466797,82.3572006225586,93.79764556884766,74.59601593017578,77.59803771972656,99.81096649169922,83.29483032226562,94.98882293701172,81.19658660888672,87.60782623291016,73.29328155517578,79.23992919921875,85.90257263183594,77.8386459350586,89.03963470458984,85.5620346069336,62.22356033325195,84.1249008178711,78.43692779541016,83.83800506591797,82.36812591552734,82.70271301269531,72.83964538574219,83.01156616210938,71.36981964111328,83.94952392578125,76.61695098876953,91.96624755859375,77.37398529052734,64.80833435058594,68.57096862792969,92.29461669921875,89.17500305175781,88.17517852783203,90.41036987304688,77.30026245117188,75.49806213378906,76.7251968383789,87.65007781982422,77.04934692382812,80.66041564941406,80.88832092285156,96.62569427490234,79.727294921875,84.79532623291016,82.57781982421875,73.27432250976562,80.5657730102539,75.20933532714844,77.5266342163086,73.81291198730469,78.55491638183594,77.12124633789062,59.74880599975586,80.5066909790039,90.25122833251953,66.13019561767578,73.17453002929688,85.44879150390625,69.2324447631836,74.32130432128906,81.32101440429688,83.1596450805664,78.12940216064453,72.52227783203125,76.91046905517578,90.05669403076172,73.66889953613281,77.96929931640625,85.4040298461914,80.72079467773438,69.23170471191406,93.84228515625,69.66844940185547,74.2369155883789,78.45997619628906,84.99198913574219,77.15754699707031,81.62268829345703,62.937931060791016,83.71144104003906,62.14944839477539,84.79265594482422,78.0975112915039,82.17766571044922,80.39716339111328,86.48307037353516,79.26068878173828,81.61421203613281,74.93280029296875,84.18035125732422,82.6448974609375,70.23711395263672,69.5618896484375,71.52859497070312,87.83234405517578,87.4550552368164,71.5997314453125,71.88095092773438,84.0076904296875,74.26724243164062,86.81887817382812,87.1678237915039,85.43609619140625,77.30591583251953,89.53931427001953,81.32550048828125,83.70074462890625,80.43229675292969,81.86798095703125,90.76049041748047,75.80675506591797,88.1004867553711,88.18685913085938,83.65216827392578,78.88166809082031,82.28462982177734,82.20195007324219,91.75422668457031,73.32886505126953,100.96269226074219,91.71971130371094,75.33175659179688,85.5220718383789,79.08834838867188,93.33379364013672,80.81035614013672,81.61679077148438,84.7849349975586,87.39630126953125,88.80548858642578,79.59613800048828,75.14958953857422,81.64984893798828,86.0765151977539,84.79704284667969,79.31364440917969,84.73985290527344,88.09680938720703,76.64945220947266,82.81783294677734,84.8614730834961,84.5091781616211,80.0252914428711,58.75351333618164,65.62232208251953,73.67418670654297,70.4852523803711,70.8750991821289,80.7525863647461,87.26558685302734,94.48594665527344,75.08848571777344,79.72384643554688,86.15860748291016,85.74628448486328,87.67929077148438,83.07379913330078,90.00935363769531,73.99031066894531,79.10586547851562,80.7027587890625,82.1156997680664,84.22608947753906,64.47301483154297,88.3664779663086,91.89510345458984,81.51082611083984,71.89019012451172,80.09962463378906,87.08992767333984,79.23017120361328,54.03564453125,83.47294616699219,75.56622314453125,83.3940200805664,78.6312255859375,89.13655853271484,81.65818786621094,79.34171295166016,79.91676330566406,76.73248291015625,74.44075775146484,70.94775390625,96.2854232788086,59.50767517089844,84.125732421875,82.89984130859375,75.26543426513672,78.10575103759766,72.259765625,88.0948257446289,73.82207489013672,74.93034362792969,87.44739532470703,79.32230377197266,80.42463684082031,73.24039459228516,76.75172424316406,87.22273254394531,86.84405517578125,75.3145980834961,69.32665252685547,78.80521392822266 -2922,83.59770202636719,87.86629486083984,88.88516235351562,74.46234893798828,93.62577819824219,86.17935943603516,76.0096435546875,86.62942504882812,77.01959991455078,73.3056640625,82.59024810791016,82.71585083007812,89.98209381103516,90.81360626220703,85.26329040527344,79.85083770751953,84.09854888916016,73.590087890625,69.19749450683594,78.37362670898438,92.3004379272461,72.53180694580078,84.19828796386719,81.14873504638672,68.51608276367188,80.23383331298828,87.8755111694336,80.6042709350586,76.36605834960938,77.96533966064453,72.04194641113281,74.10824584960938,76.90929412841797,88.73839569091797,83.45846557617188,79.69773864746094,64.4491195678711,85.01947784423828,85.5474624633789,79.08283996582031,73.9705810546875,67.66472625732422,77.12464141845703,78.50304412841797,87.05270385742188,82.3572006225586,94.163818359375,74.59601593017578,77.59803771972656,97.49070739746094,83.29483032226562,93.70943450927734,81.19658660888672,87.73568725585938,73.29328155517578,79.23992919921875,86.01727294921875,77.8386459350586,89.65726470947266,85.5620346069336,62.22356033325195,84.1249008178711,77.88365173339844,83.83800506591797,82.36812591552734,82.70271301269531,72.86094665527344,83.01156616210938,71.36981964111328,83.94952392578125,76.61695098876953,91.96624755859375,77.61309814453125,64.80833435058594,68.57096862792969,92.29461669921875,89.88441467285156,88.17517852783203,90.41036987304688,77.30026245117188,75.49806213378906,74.23424530029297,87.65007781982422,77.04934692382812,80.66041564941406,80.9672622680664,96.62569427490234,79.601318359375,84.89276885986328,82.57781982421875,73.27432250976562,80.5657730102539,75.25994873046875,77.5266342163086,73.81291198730469,78.55491638183594,77.12124633789062,59.975685119628906,80.5066909790039,90.25122833251953,66.47241973876953,73.17453002929688,85.44879150390625,69.2324447631836,73.29824829101562,81.32101440429688,84.57731628417969,78.12940216064453,72.0714340209961,76.91046905517578,90.05669403076172,73.82173919677734,77.96929931640625,85.4040298461914,80.72079467773438,69.23170471191406,93.84228515625,69.66844940185547,74.2369155883789,78.45997619628906,87.54299926757812,77.15754699707031,88.15321350097656,62.937931060791016,83.88772583007812,62.14944839477539,84.79265594482422,78.0975112915039,82.17766571044922,80.39716339111328,86.48307037353516,79.26068878173828,77.6461181640625,75.90298461914062,84.18035125732422,83.27593231201172,70.28617095947266,72.48458862304688,74.28402709960938,87.83234405517578,87.4550552368164,71.5997314453125,73.26300811767578,81.30815887451172,74.26724243164062,86.81887817382812,87.20801544189453,87.81654357910156,77.01273345947266,89.53931427001953,81.32550048828125,84.028564453125,80.43229675292969,81.86798095703125,90.76049041748047,76.97151947021484,88.0616455078125,88.18685913085938,83.65216827392578,78.88166809082031,82.5981674194336,82.20195007324219,91.75422668457031,67.61505889892578,100.96269226074219,91.60155487060547,77.24931335449219,84.72490692138672,79.08834838867188,93.33379364013672,80.81035614013672,81.61679077148438,84.7849349975586,82.6092758178711,90.79961395263672,79.41935729980469,75.14958953857422,80.98596954345703,86.0765151977539,84.79704284667969,79.31364440917969,86.38237762451172,87.4315414428711,76.64945220947266,82.81783294677734,84.8614730834961,84.5091781616211,80.0252914428711,58.75351333618164,65.62232208251953,73.67418670654297,70.4852523803711,70.8750991821289,80.7525863647461,87.26558685302734,96.2927474975586,75.08848571777344,79.72384643554688,86.15860748291016,85.74628448486328,88.26519012451172,83.07379913330078,89.61341857910156,73.1620864868164,79.10586547851562,83.00921630859375,82.07439422607422,84.22608947753906,64.9296875,88.3664779663086,91.89510345458984,81.51082611083984,71.89019012451172,80.09962463378906,87.08992767333984,79.23017120361328,53.9951057434082,83.47294616699219,75.56622314453125,83.3940200805664,78.86473846435547,89.13655853271484,81.65818786621094,79.34171295166016,80.32295227050781,76.73248291015625,74.44075775146484,70.94775390625,94.9777603149414,59.50767517089844,84.125732421875,82.89984130859375,75.26543426513672,78.10575103759766,72.259765625,87.61646270751953,73.82207489013672,76.42919158935547,87.44739532470703,79.32230377197266,82.35689544677734,73.24039459228516,76.75172424316406,87.22273254394531,86.84405517578125,76.21739959716797,69.32665252685547,78.80521392822266 -2923,83.59770202636719,87.86629486083984,88.88516235351562,74.46234893798828,93.62577819824219,86.17935943603516,76.0096435546875,86.62942504882812,77.01959991455078,73.3056640625,82.59024810791016,82.71585083007812,88.95589447021484,90.81360626220703,85.26329040527344,79.85083770751953,84.09854888916016,73.590087890625,69.19749450683594,78.37362670898438,92.3004379272461,72.53180694580078,80.6284408569336,81.51160430908203,68.39279174804688,80.23383331298828,87.8755111694336,85.2392807006836,76.7914047241211,77.96533966064453,72.04194641113281,74.12403869628906,76.90929412841797,88.33897399902344,83.45846557617188,79.69773864746094,64.4491195678711,85.01947784423828,82.84176635742188,79.08283996582031,73.96215057373047,67.7577133178711,77.34551239013672,77.9417724609375,87.05270385742188,82.3572006225586,94.163818359375,74.34239196777344,79.05265045166016,97.49070739746094,83.29483032226562,93.70943450927734,81.19658660888672,87.73568725585938,73.44605255126953,79.23992919921875,86.01727294921875,77.8386459350586,88.81937408447266,84.74331665039062,62.22356033325195,84.1249008178711,77.88365173339844,83.83800506591797,81.75650787353516,82.70271301269531,72.93509674072266,83.01156616210938,71.278564453125,83.94952392578125,76.29399871826172,91.96624755859375,77.68968963623047,64.80833435058594,68.57096862792969,92.41204833984375,89.88441467285156,88.17517852783203,90.41036987304688,77.30026245117188,75.49806213378906,74.06810760498047,87.65007781982422,77.04934692382812,80.66041564941406,80.73100280761719,89.58647155761719,79.601318359375,85.42393493652344,83.57709503173828,73.3619384765625,80.5657730102539,78.69255828857422,77.5266342163086,73.81291198730469,78.43912506103516,77.12124633789062,59.975685119628906,80.5066909790039,90.25122833251953,65.08770751953125,73.17453002929688,85.44879150390625,69.2324447631836,73.50170135498047,81.32101440429688,84.57731628417969,78.12940216064453,72.0714340209961,76.91046905517578,90.05669403076172,73.82173919677734,77.96929931640625,83.23483276367188,80.72079467773438,70.60430908203125,93.84228515625,69.66844940185547,74.2369155883789,78.45997619628906,87.54299926757812,75.52481079101562,88.15321350097656,62.937931060791016,83.88772583007812,62.14944839477539,84.79265594482422,78.31169128417969,81.84667205810547,80.7699203491211,86.48307037353516,79.00159454345703,80.48316192626953,75.84555053710938,84.18035125732422,83.27593231201172,68.08454895019531,72.0531997680664,74.28402709960938,87.83234405517578,86.6044921875,73.46015930175781,71.65872192382812,81.30815887451172,74.26724243164062,86.81887817382812,87.20801544189453,87.81654357910156,77.01273345947266,89.53931427001953,81.30376434326172,83.62641906738281,80.43229675292969,81.45465850830078,89.9509048461914,76.97151947021484,86.93077087402344,87.75384521484375,83.65216827392578,78.88166809082031,82.5981674194336,82.20195007324219,91.75422668457031,67.61505889892578,104.58599853515625,91.60155487060547,73.72332000732422,87.06566619873047,79.08834838867188,93.33379364013672,79.08657836914062,81.61679077148438,85.5816650390625,82.6092758178711,97.79049682617188,79.41935729980469,75.54366302490234,81.421875,86.0765151977539,84.1836166381836,79.31364440917969,86.38237762451172,87.4315414428711,76.64945220947266,82.4171371459961,84.8614730834961,84.5091781616211,80.0252914428711,58.75351333618164,65.62232208251953,73.67418670654297,70.4852523803711,70.8750991821289,80.7525863647461,90.058349609375,96.2927474975586,75.08848571777344,79.72384643554688,86.15860748291016,85.74628448486328,88.192138671875,83.07379913330078,89.61341857910156,73.1620864868164,79.10586547851562,83.5078125,82.68474578857422,84.22608947753906,64.9296875,88.3664779663086,91.89510345458984,82.7928466796875,71.89019012451172,80.09962463378906,87.08992767333984,79.23017120361328,55.302730560302734,81.8359603881836,75.56622314453125,83.3940200805664,77.66343688964844,89.00581359863281,81.65818786621094,79.34171295166016,80.32295227050781,76.73248291015625,74.93075561523438,70.07904052734375,94.9777603149414,59.62724304199219,84.40347290039062,82.89984130859375,75.26543426513672,78.10575103759766,72.05799102783203,87.61646270751953,73.82207489013672,75.30767822265625,86.80797576904297,79.32230377197266,81.37326049804688,76.36083221435547,75.95455932617188,85.56793975830078,85.78723907470703,76.21739959716797,69.32665252685547,78.80521392822266 -2924,83.59770202636719,87.86629486083984,89.6429443359375,75.24021911621094,93.62577819824219,86.17935943603516,76.0096435546875,87.74665832519531,77.01959991455078,73.3056640625,82.59024810791016,82.71585083007812,89.8204116821289,90.81360626220703,85.36822509765625,79.85083770751953,83.80110931396484,73.590087890625,69.44037628173828,78.37362670898438,92.3004379272461,72.53180694580078,80.6284408569336,81.72431945800781,68.39279174804688,80.23383331298828,87.8755111694336,85.2392807006836,76.7914047241211,77.86434173583984,72.04194641113281,74.12403869628906,76.90929412841797,88.20561981201172,83.45846557617188,79.69773864746094,64.4491195678711,85.01947784423828,82.84176635742188,79.08283996582031,73.96215057373047,67.47095489501953,77.34551239013672,77.9417724609375,87.05270385742188,82.3572006225586,94.163818359375,74.34239196777344,80.48574829101562,97.49070739746094,83.29483032226562,93.70943450927734,81.15943145751953,87.74429321289062,73.44605255126953,79.23992919921875,86.01727294921875,78.38346862792969,88.81937408447266,84.74331665039062,62.22356033325195,84.1249008178711,77.88365173339844,83.83800506591797,84.00154113769531,82.70271301269531,72.93509674072266,83.01156616210938,71.278564453125,83.8788833618164,76.29399871826172,91.96624755859375,77.02911376953125,64.80833435058594,68.57096862792969,92.41204833984375,89.8424072265625,88.17517852783203,95.30747985839844,77.30026245117188,75.49806213378906,74.06810760498047,87.65007781982422,77.04934692382812,81.033203125,80.89723205566406,88.97306823730469,79.601318359375,85.42393493652344,83.39385223388672,73.3619384765625,84.6343002319336,80.7025375366211,77.5266342163086,74.01604461669922,78.5131607055664,77.12124633789062,59.602901458740234,80.08238220214844,90.61888885498047,66.9318618774414,73.01107788085938,85.44879150390625,69.2324447631836,73.50170135498047,81.42718505859375,84.57731628417969,78.12940216064453,72.0714340209961,76.91046905517578,89.49732208251953,73.82173919677734,81.04913330078125,83.61825561523438,81.90583801269531,67.36162567138672,93.84228515625,69.66844940185547,74.2369155883789,78.45997619628906,87.54299926757812,76.62718963623047,88.15321350097656,62.937931060791016,80.55143737792969,62.14944839477539,84.79265594482422,78.31169128417969,81.84667205810547,80.7699203491211,86.48307037353516,79.36294555664062,80.48316192626953,75.84555053710938,84.18035125732422,83.27593231201172,68.08454895019531,69.7560806274414,74.28402709960938,87.83234405517578,87.7502212524414,73.46015930175781,71.33627319335938,79.69599914550781,74.26724243164062,86.81887817382812,87.20801544189453,87.81654357910156,77.01273345947266,89.53931427001953,81.30376434326172,83.62641906738281,80.43229675292969,81.45465850830078,89.9509048461914,77.28507232666016,86.39546966552734,87.9796371459961,83.65216827392578,78.88166809082031,82.5981674194336,82.20195007324219,91.75422668457031,67.61505889892578,104.58599853515625,92.68647003173828,73.72332000732422,87.06566619873047,79.08834838867188,92.3692855834961,82.96975708007812,81.61679077148438,85.5816650390625,82.6092758178711,93.5586166381836,79.41935729980469,75.54366302490234,81.421875,86.0765151977539,84.1836166381836,79.31364440917969,86.38237762451172,87.4315414428711,76.556640625,82.4171371459961,84.8614730834961,84.5091781616211,79.82499694824219,58.75351333618164,65.62232208251953,73.67418670654297,70.4852523803711,69.75331115722656,80.7525863647461,88.3470687866211,96.2927474975586,75.08848571777344,79.6534423828125,86.15860748291016,85.08550262451172,88.21003723144531,83.07379913330078,89.61341857910156,73.1620864868164,79.26570129394531,89.02936553955078,82.68474578857422,84.34610748291016,64.9296875,87.91558074951172,91.89510345458984,82.7928466796875,71.89019012451172,79.6903305053711,87.08992767333984,79.23017120361328,55.302730560302734,81.28927612304688,75.40805053710938,83.3940200805664,78.26566314697266,88.55425262451172,81.65422821044922,79.34171295166016,80.32295227050781,76.73248291015625,74.5721435546875,68.51180267333984,94.9777603149414,59.650115966796875,83.97338104248047,82.89984130859375,75.26543426513672,78.10575103759766,72.05799102783203,87.61646270751953,73.82207489013672,75.33898162841797,86.80797576904297,79.1758804321289,81.37326049804688,75.17725372314453,75.95455932617188,85.56793975830078,85.78723907470703,76.21739959716797,69.32665252685547,78.80521392822266 -2925,83.59770202636719,87.86629486083984,89.6429443359375,75.24021911621094,93.81563568115234,86.28339385986328,76.0096435546875,87.74665832519531,77.01959991455078,73.3056640625,82.59024810791016,82.71585083007812,89.8204116821289,90.81360626220703,85.36822509765625,79.85083770751953,83.80110931396484,73.590087890625,69.44037628173828,78.56499481201172,92.3004379272461,72.53180694580078,80.6284408569336,81.7784194946289,68.82571411132812,80.23383331298828,87.63683319091797,85.37493133544922,76.7914047241211,77.86434173583984,72.04194641113281,74.12403869628906,77.6451416015625,88.20561981201172,83.56278228759766,80.84661102294922,64.4491195678711,85.01947784423828,83.50533294677734,79.08283996582031,73.96215057373047,67.47095489501953,77.34551239013672,77.9417724609375,87.04578399658203,82.3572006225586,94.163818359375,74.34239196777344,80.48574829101562,96.3104476928711,83.29483032226562,93.70943450927734,81.15943145751953,87.74429321289062,73.44605255126953,79.19235229492188,85.5777816772461,78.38346862792969,88.81937408447266,82.79771423339844,61.95527648925781,84.1249008178711,77.88365173339844,83.72554779052734,84.00154113769531,82.70271301269531,72.93509674072266,82.16545104980469,71.72119140625,83.8788833618164,76.32540130615234,91.96624755859375,77.02911376953125,64.97049713134766,68.76839447021484,92.54630279541016,89.78168487548828,88.17517852783203,95.30747985839844,77.16031646728516,75.49806213378906,75.01036071777344,87.65007781982422,77.0159912109375,81.033203125,80.89723205566406,86.0455093383789,79.601318359375,85.42393493652344,83.39385223388672,73.3619384765625,84.6343002319336,80.7025375366211,77.20243072509766,74.01604461669922,78.5131607055664,77.12124633789062,59.602901458740234,79.90666961669922,90.89112854003906,66.9318618774414,73.01107788085938,85.87303924560547,69.2324447631836,68.85851287841797,81.42718505859375,82.38359069824219,78.12940216064453,72.0714340209961,76.91046905517578,89.49732208251953,73.82173919677734,81.04913330078125,83.61825561523438,81.90583801269531,69.28682708740234,91.89409637451172,70.22498321533203,74.2369155883789,78.45997619628906,87.54299926757812,78.35163116455078,90.21585845947266,62.89384841918945,80.87220764160156,62.14944839477539,84.79265594482422,78.71797180175781,85.2620849609375,80.6080322265625,86.48307037353516,79.36294555664062,81.00171661376953,75.84555053710938,85.62564849853516,86.66728973388672,68.08454895019531,69.7560806274414,65.62024688720703,87.83234405517578,87.7502212524414,72.10489654541016,69.58040618896484,82.40576934814453,74.26724243164062,86.81887817382812,87.96546936035156,87.81654357910156,77.01273345947266,90.31503295898438,81.27275085449219,83.62641906738281,80.79390716552734,80.64033508300781,89.9509048461914,77.28507232666016,86.39546966552734,88.04691314697266,83.54776000976562,78.88166809082031,82.5981674194336,82.20195007324219,91.75422668457031,69.1961898803711,102.24414825439453,92.68647003173828,73.72332000732422,87.06566619873047,79.08834838867188,92.3692855834961,82.956298828125,81.61679077148438,85.5816650390625,82.6092758178711,97.98590850830078,79.41935729980469,75.54366302490234,81.421875,86.06764221191406,84.1836166381836,78.56546020507812,86.32421875,87.55162048339844,76.556640625,84.87755584716797,84.8614730834961,84.5091781616211,79.82499694824219,58.75351333618164,65.62232208251953,73.67418670654297,70.4852523803711,69.75331115722656,80.7525863647461,84.11013793945312,96.2927474975586,75.60816192626953,79.6534423828125,86.15860748291016,85.40657806396484,88.21003723144531,83.07379913330078,89.61341857910156,73.1620864868164,79.26570129394531,89.02936553955078,82.68474578857422,84.34610748291016,64.9296875,87.91558074951172,91.89510345458984,82.7928466796875,71.89019012451172,79.6903305053711,87.08992767333984,79.23017120361328,55.302730560302734,83.23314666748047,75.40805053710938,83.3940200805664,78.26566314697266,88.55425262451172,81.65422821044922,79.34171295166016,80.32295227050781,76.73248291015625,74.5721435546875,65.53807067871094,93.31816864013672,59.72774124145508,86.41077423095703,82.89984130859375,75.26543426513672,78.10575103759766,72.05799102783203,87.61646270751953,73.82207489013672,75.33898162841797,86.80797576904297,79.1758804321289,81.46366882324219,76.3418960571289,75.95455932617188,85.56793975830078,86.59022521972656,76.21739959716797,69.32665252685547,78.80521392822266 -2926,83.34906005859375,87.45492553710938,89.6429443359375,75.16988372802734,94.26567840576172,85.94609069824219,76.0096435546875,88.17440032958984,77.01959991455078,73.3056640625,82.49613189697266,82.71585083007812,89.8204116821289,90.21305084228516,85.36822509765625,79.85083770751953,83.80110931396484,73.590087890625,69.44037628173828,78.56499481201172,92.3004379272461,73.16767120361328,80.6284408569336,81.7784194946289,68.82571411132812,80.23383331298828,87.63683319091797,85.37493133544922,76.7914047241211,77.86434173583984,72.423095703125,74.12403869628906,77.6451416015625,88.20561981201172,84.00226593017578,80.84661102294922,64.85694122314453,85.01947784423828,83.50533294677734,79.08283996582031,74.04722595214844,67.59244537353516,77.34551239013672,79.30239868164062,86.75401306152344,81.7641372680664,94.163818359375,74.39491271972656,80.48574829101562,96.3104476928711,83.29483032226562,92.33206176757812,81.15943145751953,87.83118438720703,73.44605255126953,79.19235229492188,85.5777816772461,78.38346862792969,88.78866577148438,82.79771423339844,61.95527648925781,84.1249008178711,76.77069091796875,84.272705078125,84.00154113769531,82.70271301269531,72.93509674072266,84.08992767333984,71.6186752319336,84.37823486328125,76.32540130615234,91.96624755859375,77.02911376953125,64.97049713134766,68.95267486572266,92.54630279541016,89.61598205566406,88.17517852783203,94.8284912109375,77.16031646728516,75.49806213378906,75.01036071777344,87.5241470336914,76.85152435302734,81.033203125,80.89723205566406,86.0455093383789,79.9810791015625,85.42393493652344,83.39385223388672,73.3619384765625,84.6343002319336,80.30740356445312,77.20243072509766,73.06026458740234,78.5131607055664,77.12124633789062,59.602901458740234,79.22820281982422,90.89112854003906,65.37640380859375,76.04822540283203,85.82762145996094,69.2324447631836,68.85851287841797,81.42718505859375,82.38359069824219,80.01358795166016,72.0714340209961,76.91046905517578,89.49732208251953,73.82173919677734,81.04913330078125,83.61825561523438,81.90583801269531,70.2425537109375,89.84808349609375,70.22498321533203,74.2369155883789,78.45997619628906,87.54299926757812,75.83462524414062,82.20462036132812,62.89384841918945,80.87220764160156,62.14944839477539,84.79265594482422,78.91191101074219,84.85692596435547,80.93163299560547,85.55733489990234,79.36294555664062,81.00171661376953,75.64198303222656,86.44503784179688,88.23054504394531,68.08454895019531,69.7560806274414,65.62024688720703,93.11100006103516,84.6665267944336,71.92166137695312,69.58040618896484,82.40576934814453,75.21847534179688,86.81887817382812,88.32733917236328,87.81654357910156,77.11286163330078,90.31503295898438,81.27275085449219,83.62641906738281,80.79390716552734,80.64033508300781,89.9509048461914,78.07499694824219,89.10096740722656,88.04691314697266,83.54776000976562,78.88166809082031,82.59976959228516,83.12609100341797,91.75422668457031,69.1307601928711,102.79598999023438,90.72447967529297,76.5799560546875,85.25920104980469,79.08834838867188,92.3692855834961,85.15725708007812,81.61679077148438,85.5816650390625,82.6092758178711,97.98590850830078,79.61492919921875,75.54366302490234,81.421875,86.06764221191406,85.85194396972656,78.56546020507812,86.32421875,87.55162048339844,76.48269653320312,84.55086517333984,84.8614730834961,84.5091781616211,79.82499694824219,58.399749755859375,65.76895904541016,73.67418670654297,71.31912231445312,69.75331115722656,80.7525863647461,84.11013793945312,96.2927474975586,75.2985610961914,79.6534423828125,86.15860748291016,85.40657806396484,88.21003723144531,83.07379913330078,89.61341857910156,75.18710327148438,79.26570129394531,89.02936553955078,82.68474578857422,84.34610748291016,66.61337280273438,87.91558074951172,91.89510345458984,83.13805389404297,71.89019012451172,79.6903305053711,88.11864471435547,79.53954315185547,55.302730560302734,83.23314666748047,75.40805053710938,83.39888763427734,78.26566314697266,88.79570007324219,81.65422821044922,79.34171295166016,80.84149932861328,76.73248291015625,74.5721435546875,66.44389343261719,93.31816864013672,59.57014846801758,86.41077423095703,84.02308654785156,75.26543426513672,78.08338928222656,72.01154327392578,87.61646270751953,73.82207489013672,75.40998840332031,86.80797576904297,79.3231430053711,81.46366882324219,76.3418960571289,75.95455932617188,85.56793975830078,86.42093658447266,75.3083724975586,69.32665252685547,78.80521392822266 -2927,83.34906005859375,87.45492553710938,89.6429443359375,75.16988372802734,94.24846649169922,85.93099975585938,76.0096435546875,88.17440032958984,77.01959991455078,73.3056640625,82.49613189697266,82.71585083007812,89.8204116821289,90.21305084228516,85.42391967773438,79.85083770751953,83.80110931396484,73.590087890625,69.44037628173828,78.56499481201172,92.3004379272461,73.16767120361328,80.6284408569336,81.7784194946289,68.82571411132812,80.23383331298828,88.17308044433594,85.37493133544922,77.1539306640625,77.86434173583984,72.423095703125,74.12403869628906,77.6451416015625,88.20561981201172,84.00226593017578,80.84661102294922,65.52348327636719,84.86344146728516,83.50533294677734,79.08283996582031,74.04722595214844,67.59244537353516,77.34551239013672,80.14952850341797,86.75401306152344,82.2059326171875,94.163818359375,74.39491271972656,79.10570526123047,96.3104476928711,83.29483032226562,92.33206176757812,81.15943145751953,87.83118438720703,73.57598114013672,79.19235229492188,85.5777816772461,78.13143920898438,88.78866577148438,82.79771423339844,61.95527648925781,84.44080352783203,76.77069091796875,84.272705078125,84.00154113769531,82.70271301269531,72.93509674072266,84.2761001586914,71.6186752319336,84.37823486328125,76.32540130615234,91.96624755859375,76.72267150878906,64.97049713134766,68.95267486572266,92.54630279541016,89.61598205566406,87.70420837402344,94.8284912109375,77.50314331054688,76.69100952148438,75.01036071777344,87.5241470336914,76.85152435302734,81.033203125,80.89723205566406,86.0455093383789,79.9810791015625,83.62029266357422,83.39385223388672,73.3619384765625,84.6343002319336,80.30740356445312,77.20243072509766,73.06026458740234,78.5131607055664,77.12124633789062,59.82836151123047,79.22820281982422,91.59701538085938,65.37640380859375,76.04822540283203,85.82762145996094,69.46833038330078,70.83157348632812,81.42718505859375,82.16304016113281,80.01358795166016,72.0714340209961,76.91046905517578,89.49732208251953,73.82173919677734,81.04913330078125,83.61825561523438,81.90583801269531,70.2425537109375,89.790771484375,70.22498321533203,74.2369155883789,78.45997619628906,86.14449310302734,76.37749481201172,82.20462036132812,62.89384841918945,80.87220764160156,62.04433059692383,83.67105102539062,78.91191101074219,84.85692596435547,80.93163299560547,84.78683471679688,79.36294555664062,78.47116088867188,75.64198303222656,86.44503784179688,83.42276000976562,68.08454895019531,70.25626373291016,65.62024688720703,93.11100006103516,84.6665267944336,72.38994598388672,69.58040618896484,80.36978912353516,75.21847534179688,86.81887817382812,88.32733917236328,87.81654357910156,78.10797119140625,90.31503295898438,81.27275085449219,83.62641906738281,80.53861999511719,80.64033508300781,89.9509048461914,78.07499694824219,89.10096740722656,88.04691314697266,83.54776000976562,79.02351379394531,82.59976959228516,83.12609100341797,91.75422668457031,69.1307601928711,101.986572265625,90.72447967529297,76.5799560546875,85.13250732421875,79.08834838867188,92.3692855834961,85.15725708007812,81.61679077148438,85.5816650390625,82.6092758178711,94.25041961669922,80.99449157714844,75.54366302490234,81.31210327148438,86.06764221191406,84.53873443603516,78.56546020507812,87.67417907714844,87.55162048339844,76.48269653320312,84.55086517333984,84.8614730834961,84.66397094726562,79.82499694824219,58.399749755859375,65.76895904541016,73.67418670654297,70.91830444335938,70.40406036376953,80.7525863647461,84.11013793945312,96.2927474975586,73.96097564697266,79.6534423828125,85.99506378173828,85.40657806396484,88.47975158691406,83.07379913330078,89.61341857910156,75.18710327148438,79.26570129394531,89.02936553955078,82.68474578857422,84.34610748291016,62.20807647705078,87.91558074951172,91.89510345458984,83.13805389404297,71.89019012451172,79.6903305053711,88.11864471435547,80.10791778564453,55.302730560302734,81.84290313720703,75.24541473388672,83.39888763427734,77.82076263427734,88.79570007324219,81.65422821044922,79.34171295166016,80.84149932861328,76.73248291015625,74.7120361328125,66.58782958984375,93.31816864013672,59.57014846801758,86.41077423095703,85.18465423583984,75.26543426513672,78.08338928222656,72.01154327392578,87.61646270751953,73.48001861572266,75.40998840332031,88.21410369873047,79.3231430053711,81.46366882324219,76.3418960571289,75.95455932617188,85.56793975830078,86.42093658447266,75.3083724975586,69.32665252685547,78.80521392822266 -2928,83.47428894042969,87.45492553710938,89.6429443359375,74.66804504394531,94.24846649169922,85.93099975585938,76.0096435546875,88.17440032958984,77.750732421875,73.3056640625,80.40448760986328,82.71585083007812,89.8204116821289,90.21305084228516,85.58773803710938,79.76567077636719,83.80110931396484,73.590087890625,69.44037628173828,78.58187103271484,92.3004379272461,73.16767120361328,78.45714569091797,81.7784194946289,68.82571411132812,80.23383331298828,87.78677368164062,85.37493133544922,77.1539306640625,77.86434173583984,72.423095703125,74.26063537597656,77.6451416015625,88.20561981201172,84.00226593017578,80.84661102294922,65.38407135009766,84.86344146728516,83.50533294677734,79.05709075927734,74.04722595214844,67.64679718017578,77.451904296875,80.14952850341797,86.75401306152344,82.2059326171875,92.5450439453125,74.39491271972656,79.10570526123047,94.98876190185547,82.79532623291016,92.33206176757812,81.15943145751953,87.83118438720703,73.57598114013672,79.19235229492188,85.5777816772461,78.13143920898438,88.78866577148438,82.79771423339844,61.95527648925781,84.44080352783203,76.77069091796875,84.55884552001953,84.00154113769531,82.70271301269531,72.93509674072266,84.2761001586914,71.27899169921875,84.37823486328125,76.32540130615234,91.96624755859375,77.3847885131836,64.97049713134766,68.95267486572266,92.54630279541016,89.61598205566406,87.72021484375,91.70362091064453,77.50314331054688,76.69100952148438,75.85910034179688,87.5241470336914,76.60562896728516,81.033203125,80.89723205566406,86.0455093383789,80.06649780273438,83.62029266357422,83.39385223388672,73.3619384765625,84.6343002319336,80.30740356445312,77.20243072509766,72.8302230834961,78.5131607055664,77.12124633789062,59.16933059692383,79.22820281982422,88.37615203857422,65.37640380859375,76.04822540283203,85.82762145996094,69.46833038330078,70.83157348632812,81.42718505859375,82.16304016113281,80.01358795166016,71.9394302368164,76.91046905517578,87.98944854736328,73.82173919677734,82.45100402832031,83.61825561523438,81.8916244506836,70.2425537109375,89.790771484375,70.2310791015625,74.2369155883789,78.45997619628906,86.14449310302734,76.37749481201172,80.87503814697266,62.176361083984375,80.87220764160156,62.04433059692383,83.67105102539062,78.82201385498047,84.85692596435547,80.93163299560547,84.78683471679688,79.09496307373047,78.47116088867188,75.53024291992188,86.44503784179688,83.42276000976562,68.08454895019531,70.03471374511719,65.62024688720703,93.11100006103516,84.6665267944336,72.6991195678711,69.58040618896484,83.50874328613281,75.21847534179688,86.81887817382812,88.32733917236328,87.81654357910156,77.38050079345703,88.4172134399414,81.27275085449219,83.62641906738281,80.53861999511719,80.64033508300781,89.9509048461914,78.07499694824219,89.10096740722656,88.00507354736328,83.54776000976562,79.52086639404297,82.59976959228516,83.27474975585938,91.75422668457031,69.1307601928711,103.79452514648438,90.72447967529297,76.5799560546875,85.13250732421875,79.08834838867188,92.25814819335938,80.18697357177734,81.61679077148438,86.00318908691406,82.6092758178711,94.25041961669922,80.99449157714844,75.54366302490234,81.31210327148438,86.06764221191406,84.53873443603516,78.56546020507812,87.42079162597656,87.55162048339844,76.48269653320312,84.55086517333984,84.8992691040039,84.66397094726562,79.82499694824219,58.399749755859375,65.76895904541016,73.67418670654297,70.91830444335938,70.40406036376953,81.82361602783203,85.68753051757812,97.41081237792969,73.96097564697266,79.6534423828125,85.99506378173828,85.40657806396484,87.72216796875,83.07379913330078,89.68731689453125,74.29925537109375,79.26570129394531,84.49745178222656,82.68474578857422,84.34610748291016,62.5612907409668,87.91558074951172,91.89510345458984,83.23683166503906,71.89019012451172,79.6903305053711,88.39911651611328,80.10791778564453,55.302730560302734,81.84290313720703,75.24541473388672,83.39888763427734,77.82076263427734,89.57687377929688,81.7984619140625,79.34171295166016,79.83831024169922,76.73248291015625,74.7120361328125,68.76312255859375,96.45268249511719,59.57014846801758,86.41077423095703,85.18465423583984,75.26543426513672,77.9962158203125,72.2785873413086,86.81964874267578,73.48001861572266,75.40998840332031,88.21410369873047,79.14181518554688,81.46366882324219,76.3418960571289,75.95455932617188,85.56793975830078,86.42093658447266,75.3083724975586,69.32665252685547,78.80521392822266 -2929,83.35883331298828,89.1389389038086,89.6429443359375,74.93865203857422,94.24846649169922,85.93099975585938,76.0096435546875,88.17440032958984,77.750732421875,73.3056640625,78.43468475341797,82.71585083007812,89.8204116821289,90.21305084228516,85.08525085449219,79.76567077636719,83.80110931396484,73.590087890625,69.44037628173828,78.58187103271484,92.3004379272461,71.87130737304688,78.45714569091797,81.7784194946289,68.82571411132812,80.23383331298828,87.78677368164062,85.37493133544922,77.1539306640625,77.84943389892578,72.423095703125,74.26063537597656,77.6451416015625,88.11756896972656,84.00226593017578,80.84661102294922,65.38407135009766,84.86344146728516,83.50533294677734,79.05709075927734,74.04722595214844,67.77230834960938,77.7796859741211,80.14952850341797,86.39437103271484,81.71389770507812,91.95423126220703,74.40478515625,79.10570526123047,94.98876190185547,82.79532623291016,94.20571899414062,81.15943145751953,87.83118438720703,73.57598114013672,79.19235229492188,85.5777816772461,78.3210220336914,88.78866577148438,82.79771423339844,61.95527648925781,85.20704650878906,77.72171783447266,85.3563003540039,84.00154113769531,82.70271301269531,72.93509674072266,84.2761001586914,71.27899169921875,84.37823486328125,76.32540130615234,91.96624755859375,77.3847885131836,64.97049713134766,68.67877960205078,92.54630279541016,89.75460815429688,87.72021484375,92.82147216796875,77.36155700683594,76.69100952148438,76.80624389648438,86.06105041503906,76.60562896728516,80.9949722290039,80.86019897460938,86.0455093383789,80.06649780273438,83.71635437011719,83.39385223388672,73.3619384765625,84.6343002319336,80.30740356445312,77.20243072509766,72.8302230834961,78.5131607055664,77.12124633789062,58.39323043823242,79.22820281982422,91.59823608398438,65.37640380859375,76.04822540283203,85.82762145996094,69.7215576171875,70.83157348632812,81.42718505859375,82.16304016113281,80.01358795166016,71.9394302368164,77.70869445800781,87.98944854736328,73.82173919677734,82.45100402832031,83.61825561523438,81.8916244506836,70.2425537109375,89.790771484375,71.29299926757812,74.2369155883789,78.45997619628906,86.20268249511719,78.5746078491211,82.71308135986328,62.176361083984375,80.87220764160156,62.04433059692383,83.67105102539062,78.82201385498047,84.85692596435547,81.51106262207031,86.85960388183594,78.90359497070312,78.47116088867188,75.53024291992188,86.44503784179688,83.42276000976562,68.08454895019531,70.03471374511719,66.09441375732422,93.11100006103516,84.6665267944336,70.18599700927734,71.22631072998047,83.50874328613281,75.21847534179688,86.81887817382812,85.94009399414062,86.85552215576172,77.38050079345703,88.4172134399414,81.27275085449219,83.62641906738281,80.53861999511719,80.64033508300781,90.27812957763672,77.17874145507812,89.10096740722656,88.00507354736328,83.54776000976562,79.52086639404297,82.59976959228516,83.27474975585938,91.75422668457031,68.99171447753906,104.61843872070312,90.72447967529297,76.5799560546875,87.80816650390625,79.08834838867188,93.45681762695312,80.18697357177734,80.4970932006836,85.58726501464844,82.6092758178711,92.52320861816406,81.90160369873047,75.54366302490234,81.31210327148438,86.09967041015625,84.53873443603516,78.56546020507812,91.0678939819336,87.55162048339844,76.48269653320312,84.55086517333984,84.8992691040039,84.66397094726562,79.35225677490234,58.399749755859375,65.76895904541016,73.67418670654297,70.91830444335938,71.96725463867188,81.82361602783203,84.23381805419922,97.41081237792969,76.24381256103516,79.0957260131836,85.99506378173828,85.40657806396484,87.72216796875,83.07379913330078,90.68035125732422,75.22686004638672,79.26570129394531,82.32075500488281,82.68474578857422,84.34610748291016,62.5612907409668,87.91558074951172,91.89510345458984,83.23683166503906,71.89019012451172,79.6903305053711,88.39911651611328,80.10791778564453,54.599552154541016,81.84290313720703,75.24541473388672,83.39888763427734,77.82076263427734,89.57687377929688,81.72210693359375,79.34171295166016,79.83831024169922,76.73248291015625,74.59516143798828,68.46117401123047,96.45268249511719,59.57014846801758,86.41077423095703,85.18465423583984,75.26543426513672,77.9962158203125,72.2785873413086,86.81964874267578,73.48001861572266,75.40998840332031,88.09619140625,79.0471420288086,81.46366882324219,76.3418960571289,75.95455932617188,85.56793975830078,86.70219421386719,75.3083724975586,69.32665252685547,78.80521392822266 -2930,83.35883331298828,87.6728515625,89.6429443359375,74.93865203857422,94.24846649169922,85.93099975585938,76.0096435546875,88.17440032958984,79.62260437011719,73.3056640625,80.13782501220703,85.10848236083984,89.8204116821289,90.21305084228516,85.08525085449219,79.76567077636719,83.80110931396484,73.590087890625,69.44037628173828,78.58187103271484,92.3004379272461,72.609130859375,78.72697448730469,81.7784194946289,68.57242584228516,80.23383331298828,87.78677368164062,85.4119873046875,77.60480499267578,77.84943389892578,72.423095703125,74.26063537597656,76.28260803222656,88.11756896972656,84.00226593017578,80.30358123779297,65.38407135009766,84.46958923339844,83.50533294677734,79.05709075927734,74.04722595214844,67.77230834960938,77.7796859741211,79.47833251953125,86.39437103271484,81.71389770507812,91.67955017089844,74.40478515625,76.48332977294922,93.85919952392578,82.79532623291016,94.20571899414062,81.15943145751953,87.83118438720703,73.70297241210938,79.19235229492188,85.20220947265625,78.3210220336914,88.78866577148438,82.79771423339844,61.96992874145508,85.7879409790039,80.87785339355469,84.76795196533203,84.00154113769531,82.35291290283203,72.93509674072266,84.2761001586914,71.27899169921875,84.37823486328125,76.32540130615234,91.96624755859375,77.3847885131836,64.97049713134766,68.93767547607422,92.54630279541016,89.75460815429688,87.72021484375,90.04440307617188,77.36155700683594,76.69100952148438,76.80624389648438,86.06105041503906,76.52274322509766,80.9949722290039,80.82870483398438,86.0455093383789,79.76798248291016,83.71635437011719,83.39385223388672,73.1323471069336,84.6343002319336,80.30740356445312,77.78636169433594,72.8302230834961,78.5131607055664,77.12124633789062,58.39323043823242,79.22820281982422,91.59823608398438,70.33021545410156,76.04822540283203,85.51612091064453,69.7215576171875,70.83157348632812,81.42718505859375,82.16304016113281,75.60018157958984,72.56886291503906,77.70869445800781,87.98944854736328,73.82173919677734,82.45100402832031,83.63896179199219,81.95218658447266,70.2425537109375,89.790771484375,71.29299926757812,74.2369155883789,78.45997619628906,86.20268249511719,78.5746078491211,82.71308135986328,62.176361083984375,80.87220764160156,62.04433059692383,83.67105102539062,78.82201385498047,84.85692596435547,81.51106262207031,86.85960388183594,78.90359497070312,78.47116088867188,75.91722869873047,83.67239379882812,85.0960693359375,68.08454895019531,70.03471374511719,66.09441375732422,93.11100006103516,84.6665267944336,72.07521057128906,71.22631072998047,86.81198120117188,75.21847534179688,86.81887817382812,85.97698211669922,86.85552215576172,77.38050079345703,88.4172134399414,81.2098617553711,83.62641906738281,80.53861999511719,80.64033508300781,90.27812957763672,77.17874145507812,89.10096740722656,88.00507354736328,83.54776000976562,79.52086639404297,82.59976959228516,80.46652221679688,91.75422668457031,68.99171447753906,104.61843872070312,90.72447967529297,76.5799560546875,87.80816650390625,79.76563262939453,92.62486267089844,78.2481918334961,80.4970932006836,86.55862426757812,82.6092758178711,93.82184600830078,81.90160369873047,75.54366302490234,81.31210327148438,86.09967041015625,86.7177505493164,78.56546020507812,91.0678939819336,87.55162048339844,76.48269653320312,85.22730255126953,84.8992691040039,84.6014175415039,79.35225677490234,58.399749755859375,65.76895904541016,72.39421844482422,70.91830444335938,70.15892791748047,81.82361602783203,84.23381805419922,97.41081237792969,75.76144409179688,79.0957260131836,86.58750915527344,85.40657806396484,87.72216796875,83.07379913330078,90.68035125732422,75.22686004638672,79.26570129394531,86.09931182861328,82.68474578857422,84.34610748291016,62.5612907409668,86.94843292236328,92.30706024169922,83.23683166503906,71.80423736572266,79.6903305053711,88.39911651611328,80.10791778564453,54.599552154541016,81.84290313720703,75.37326049804688,83.11775207519531,77.82076263427734,88.4669418334961,81.7325439453125,79.34171295166016,79.83831024169922,76.73248291015625,74.58477020263672,68.46117401123047,96.45268249511719,59.57014846801758,86.41077423095703,85.18465423583984,75.26543426513672,77.9962158203125,72.29778289794922,86.73566436767578,73.48001861572266,74.53227996826172,86.6384048461914,79.0471420288086,81.46366882324219,76.3418960571289,75.60710144042969,85.986572265625,87.05358123779297,74.29155731201172,69.32665252685547,78.80521392822266 -2931,83.35883331298828,87.71212005615234,89.6429443359375,74.93865203857422,94.24846649169922,85.91271209716797,76.0096435546875,88.17440032958984,77.681640625,73.3056640625,80.13782501220703,85.10848236083984,89.8204116821289,90.21305084228516,85.08525085449219,79.76567077636719,83.80110931396484,73.35787963867188,68.69518280029297,78.4014663696289,92.3004379272461,72.609130859375,78.72697448730469,81.7784194946289,68.73826599121094,79.9306640625,87.78677368164062,85.4119873046875,77.304443359375,77.84943389892578,72.4253158569336,74.50128173828125,76.28260803222656,88.11756896972656,84.00226593017578,80.30358123779297,65.38407135009766,84.46958923339844,83.50533294677734,79.05709075927734,73.80249786376953,67.77230834960938,77.7796859741211,79.47833251953125,86.39437103271484,81.71389770507812,91.10538482666016,74.40478515625,77.0861587524414,93.85919952392578,83.22756958007812,94.20571899414062,81.15943145751953,87.83118438720703,73.70297241210938,79.19235229492188,85.20220947265625,78.49510192871094,88.78866577148438,82.79771423339844,61.96992874145508,85.7879409790039,79.53553771972656,84.76795196533203,84.00154113769531,82.35291290283203,72.93509674072266,84.2761001586914,71.27899169921875,84.37823486328125,76.32540130615234,89.45594024658203,77.3847885131836,65.27843475341797,68.93767547607422,92.54630279541016,89.2606201171875,87.72021484375,87.41522979736328,77.36682891845703,76.69100952148438,76.64124298095703,86.19320678710938,76.52274322509766,80.9949722290039,80.82870483398438,86.0455093383789,80.00106811523438,83.71635437011719,85.70218658447266,73.1323471069336,84.6343002319336,80.30740356445312,77.78636169433594,75.85122680664062,78.92703247070312,77.12124633789062,58.39323043823242,79.22820281982422,91.39727020263672,62.338077545166016,76.04822540283203,85.89348602294922,69.7215576171875,70.83157348632812,81.42718505859375,81.176025390625,75.60018157958984,71.55342864990234,77.70869445800781,87.98944854736328,73.82173919677734,82.45100402832031,83.07658386230469,81.95218658447266,70.2425537109375,89.790771484375,70.31552124023438,74.2369155883789,78.45997619628906,87.08229064941406,75.76667022705078,82.71308135986328,62.176361083984375,80.87220764160156,62.04433059692383,83.67105102539062,78.82201385498047,84.85692596435547,81.51106262207031,86.85960388183594,78.86859130859375,78.47116088867188,75.91722869873047,83.67239379882812,85.0960693359375,66.91051483154297,70.98513793945312,66.09441375732422,93.11100006103516,87.27975463867188,72.07521057128906,70.59233093261719,86.81198120117188,75.21847534179688,86.81887817382812,83.90342712402344,86.85552215576172,77.38050079345703,88.4172134399414,81.2098617553711,83.62641906738281,80.53861999511719,84.09998321533203,90.27812957763672,77.17874145507812,88.91075897216797,88.00507354736328,83.82049560546875,80.82295227050781,82.5624008178711,80.46652221679688,94.02265167236328,68.99171447753906,104.61843872070312,90.72447967529297,79.063720703125,87.80816650390625,79.76563262939453,92.62486267089844,78.2481918334961,80.4970932006836,86.55862426757812,82.6092758178711,93.86563110351562,81.90160369873047,75.54366302490234,81.31210327148438,86.09967041015625,86.7177505493164,78.56546020507812,93.62872314453125,87.55162048339844,76.48269653320312,85.22730255126953,84.8992691040039,84.73833465576172,79.35225677490234,58.399749755859375,65.76895904541016,72.39421844482422,72.39808654785156,70.70658874511719,81.82361602783203,83.28551483154297,97.80184173583984,75.76144409179688,79.0957260131836,86.58750915527344,85.40657806396484,87.43292999267578,83.5184555053711,90.68035125732422,75.22686004638672,79.26570129394531,86.09931182861328,82.37442016601562,84.34610748291016,62.5612907409668,86.94843292236328,92.30706024169922,83.23683166503906,71.80423736572266,79.6903305053711,88.39911651611328,80.10791778564453,54.599552154541016,81.84290313720703,75.37326049804688,83.11775207519531,77.82076263427734,88.4669418334961,81.7325439453125,78.34735870361328,79.83831024169922,75.76903533935547,74.7443618774414,70.59990692138672,96.45268249511719,59.524227142333984,86.41077423095703,85.18465423583984,74.2156982421875,77.86890411376953,72.06192016601562,86.73566436767578,73.39502716064453,74.53227996826172,86.6384048461914,79.0321044921875,82.52897644042969,76.3418960571289,75.60710144042969,85.986572265625,87.05358123779297,74.29155731201172,70.05062866210938,78.80521392822266 -2932,83.16105651855469,88.10987854003906,89.15616607666016,75.46147918701172,94.24846649169922,85.91271209716797,75.96723175048828,88.17440032958984,77.681640625,73.32548522949219,80.13782501220703,81.72669982910156,89.8204116821289,90.21305084228516,85.08525085449219,79.76567077636719,83.80110931396484,73.35787963867188,68.69518280029297,78.4014663696289,92.3004379272461,72.609130859375,78.72697448730469,82.61289978027344,68.73826599121094,79.9306640625,87.78677368164062,85.4119873046875,77.304443359375,77.84943389892578,72.4253158569336,74.4267807006836,77.75762176513672,88.11756896972656,83.77764129638672,80.30358123779297,65.38407135009766,84.46958923339844,83.50533294677734,79.21116638183594,73.77865600585938,67.77230834960938,77.7796859741211,80.20803833007812,86.47900390625,81.71389770507812,91.10538482666016,74.40478515625,78.3094253540039,93.61949920654297,83.22756958007812,92.69608306884766,81.15943145751953,87.83118438720703,73.70297241210938,79.19235229492188,85.95819091796875,78.49510192871094,88.78866577148438,82.79771423339844,61.96992874145508,85.7879409790039,79.53553771972656,84.76795196533203,84.00154113769531,82.35291290283203,72.93509674072266,84.2761001586914,71.31615447998047,84.37823486328125,76.26499938964844,89.45594024658203,77.3847885131836,65.27843475341797,68.7964096069336,91.66893768310547,89.2606201171875,87.02942657470703,85.29707336425781,77.36682891845703,77.29469299316406,76.20714569091797,86.19320678710938,76.52274322509766,80.94709777832031,81.11519622802734,80.47267150878906,79.81324005126953,83.71635437011719,85.70218658447266,73.1323471069336,84.6343002319336,81.50355529785156,77.87689971923828,72.91307067871094,81.52796173095703,77.12124633789062,58.39323043823242,79.22820281982422,91.39727020263672,66.96697235107422,75.95478820800781,85.79821014404297,69.7215576171875,70.83157348632812,81.42718505859375,82.31731414794922,75.60018157958984,71.55342864990234,77.70869445800781,87.98944854736328,73.82173919677734,82.45100402832031,83.07658386230469,80.51123046875,70.2425537109375,89.790771484375,71.15006256103516,74.2369155883789,78.45997619628906,87.08229064941406,75.76667022705078,82.71308135986328,63.06077194213867,80.87220764160156,62.04433059692383,81.93016052246094,78.82201385498047,84.85692596435547,81.51106262207031,86.85960388183594,78.86859130859375,80.55712127685547,75.46525573730469,84.02931213378906,83.62796020507812,66.91051483154297,72.3303451538086,66.09441375732422,93.11100006103516,87.27975463867188,70.1190414428711,70.59233093261719,86.81198120117188,75.21847534179688,83.93585205078125,81.04974365234375,86.85552215576172,77.38050079345703,88.4172134399414,81.2098617553711,83.62641906738281,80.39881896972656,84.09998321533203,90.27812957763672,77.17874145507812,88.91075897216797,88.00507354736328,83.82049560546875,81.85997772216797,82.5624008178711,83.49373626708984,92.232177734375,68.99171447753906,99.94085693359375,90.72447967529297,79.063720703125,87.80816650390625,79.76563262939453,92.62486267089844,79.43578338623047,80.4970932006836,86.55862426757812,82.6092758178711,95.16999053955078,79.9217529296875,74.88766479492188,81.31210327148438,86.09967041015625,86.7177505493164,78.56546020507812,93.62872314453125,87.55162048339844,76.48269653320312,83.72831726074219,83.91924285888672,84.73833465576172,79.35225677490234,58.399749755859375,64.88495635986328,72.39421844482422,72.39808654785156,70.70658874511719,80.28211975097656,83.28551483154297,97.80184173583984,75.76144409179688,79.0957260131836,86.58750915527344,85.40657806396484,85.47174072265625,83.5184555053711,88.78667449951172,75.22686004638672,79.26570129394531,86.09931182861328,82.29139709472656,84.01168060302734,62.633235931396484,86.94843292236328,92.30706024169922,83.00546264648438,71.80423736572266,79.6903305053711,88.39911651611328,78.37494659423828,54.599552154541016,82.82698822021484,75.37326049804688,83.11775207519531,77.42973327636719,88.4669418334961,81.04821014404297,78.34735870361328,79.83831024169922,77.47738647460938,74.23174285888672,70.93175506591797,96.45268249511719,59.628509521484375,87.07537841796875,85.18465423583984,74.2156982421875,78.08026885986328,72.07254028320312,86.73566436767578,73.39502716064453,75.74028778076172,86.6384048461914,79.0321044921875,82.52897644042969,75.59242248535156,75.60710144042969,85.986572265625,86.66990661621094,74.29155731201172,70.05062866210938,78.80521392822266 -2933,83.16105651855469,88.10987854003906,89.15616607666016,75.46147918701172,93.68330383300781,85.91271209716797,75.96723175048828,88.17440032958984,81.33644104003906,73.32548522949219,81.39021301269531,82.59111785888672,89.8204116821289,90.21305084228516,85.08525085449219,79.61924743652344,83.80110931396484,73.4325942993164,68.69518280029297,78.4014663696289,92.3603744506836,72.609130859375,78.72697448730469,82.14751434326172,68.73826599121094,79.9306640625,87.38007354736328,85.4119873046875,77.304443359375,77.80465698242188,72.4253158569336,74.4267807006836,77.75762176513672,88.11756896972656,83.77764129638672,80.30358123779297,65.49610137939453,84.46958923339844,81.18518829345703,79.21116638183594,73.77865600585938,67.77230834960938,77.7796859741211,80.20803833007812,86.47900390625,81.71389770507812,91.10538482666016,74.40478515625,78.3094253540039,93.61949920654297,83.22756958007812,92.69608306884766,81.08887481689453,87.89175415039062,74.01448822021484,79.19235229492188,85.95819091796875,78.49510192871094,88.78866577148438,83.43013763427734,61.96992874145508,85.7879409790039,79.53553771972656,84.44502258300781,84.00154113769531,82.88196563720703,72.93509674072266,84.2761001586914,71.31615447998047,83.9101333618164,76.39894104003906,89.45594024658203,77.3847885131836,64.88562774658203,68.7964096069336,91.71747589111328,89.2606201171875,87.02942657470703,85.29707336425781,77.36682891845703,77.29469299316406,74.85157775878906,86.58246612548828,76.52274322509766,80.94709777832031,80.70194244384766,82.96300506591797,79.81324005126953,83.71635437011719,85.70218658447266,73.24848937988281,84.6343002319336,81.50355529785156,79.97681427001953,74.12220764160156,81.52796173095703,77.12124633789062,58.39323043823242,79.22820281982422,91.39727020263672,65.75707244873047,75.95478820800781,85.79821014404297,69.7215576171875,69.29390716552734,81.42718505859375,82.31731414794922,76.76727294921875,71.88957977294922,77.70869445800781,87.98944854736328,73.82173919677734,82.45100402832031,83.07658386230469,80.9043197631836,72.95411682128906,91.20098114013672,69.206787109375,74.2369155883789,78.45997619628906,88.0134506225586,75.76667022705078,82.71308135986328,63.06077194213867,80.87220764160156,62.04433059692383,85.49424743652344,78.82201385498047,84.85692596435547,81.42735290527344,86.85960388183594,78.96509552001953,81.03025817871094,75.46525573730469,80.34445190429688,83.62796020507812,66.91051483154297,72.3303451538086,64.43269348144531,85.40220642089844,87.27975463867188,70.14070129394531,70.59233093261719,86.81198120117188,75.21847534179688,85.13609313964844,81.04974365234375,86.85552215576172,77.38050079345703,90.88536071777344,81.20756530761719,83.62641906738281,80.39881896972656,84.09998321533203,90.27812957763672,77.17874145507812,88.91075897216797,90.03899383544922,83.82049560546875,74.15019226074219,82.4945297241211,78.84197235107422,92.232177734375,66.11479949951172,100.73906707763672,91.23040008544922,79.078125,85.95669555664062,81.58822631835938,92.62486267089844,79.43578338623047,80.4970932006836,86.55862426757812,82.6092758178711,95.16999053955078,81.60896301269531,74.88766479492188,81.31210327148438,86.18891906738281,86.7177505493164,78.56546020507812,88.86380767822266,87.55162048339844,76.86389923095703,83.72831726074219,83.91924285888672,84.73833465576172,79.35225677490234,58.399749755859375,64.88495635986328,74.60956573486328,72.39808654785156,70.70658874511719,80.28211975097656,83.28551483154297,97.80184173583984,75.76144409179688,79.28510284423828,86.58750915527344,85.40657806396484,85.47174072265625,83.5184555053711,88.78667449951172,75.22686004638672,79.26570129394531,86.09931182861328,82.29139709472656,84.01168060302734,62.633235931396484,87.67375183105469,92.30706024169922,83.00546264648438,71.80423736572266,79.6903305053711,87.93566131591797,78.37494659423828,54.599552154541016,82.82698822021484,75.37326049804688,85.46349334716797,77.42973327636719,89.06189727783203,80.46038055419922,78.34735870361328,79.99127197265625,77.47738647460938,74.23174285888672,70.93175506591797,96.45268249511719,59.628509521484375,88.6866226196289,81.49248504638672,74.2156982421875,78.08026885986328,72.07254028320312,86.27100372314453,73.39502716064453,75.74028778076172,86.6384048461914,79.0321044921875,82.52897644042969,76.93282318115234,75.60710144042969,87.58743286132812,86.66990661621094,74.29155731201172,70.05062866210938,78.1118392944336 -2934,83.16105651855469,87.99932861328125,89.15616607666016,75.46147918701172,93.68330383300781,85.91271209716797,75.96723175048828,88.66197204589844,80.5433349609375,73.32548522949219,81.39021301269531,82.59111785888672,89.8204116821289,90.21305084228516,85.08525085449219,79.8896713256836,83.80110931396484,73.4325942993164,68.69518280029297,78.64583587646484,92.3603744506836,72.609130859375,78.72697448730469,82.14751434326172,68.73826599121094,81.33174133300781,87.38007354736328,85.4119873046875,77.304443359375,77.84595489501953,72.4253158569336,74.4267807006836,76.23522186279297,88.11756896972656,84.88758850097656,80.30358123779297,66.07908630371094,84.46958923339844,81.5478744506836,78.98668670654297,74.02477264404297,67.77230834960938,77.4783935546875,80.20803833007812,86.47900390625,81.71389770507812,91.10538482666016,74.40478515625,78.3094253540039,93.61949920654297,83.22756958007812,92.69608306884766,81.08887481689453,87.89175415039062,73.97026062011719,79.03030395507812,87.50800323486328,78.49510192871094,88.78866577148438,83.43013763427734,60.8633918762207,85.7879409790039,79.53553771972656,84.44502258300781,84.00154113769531,82.88196563720703,72.93509674072266,83.28842163085938,71.31615447998047,83.9101333618164,76.39894104003906,89.45594024658203,77.19090270996094,65.02501678466797,68.93353271484375,91.71747589111328,89.2606201171875,87.02942657470703,85.29707336425781,77.36682891845703,77.29469299316406,75.04264831542969,86.58246612548828,76.52274322509766,80.94709777832031,80.70194244384766,82.96300506591797,79.81324005126953,83.8104248046875,85.70218658447266,73.24848937988281,84.6343002319336,81.24869537353516,79.97681427001953,74.12220764160156,80.9894790649414,77.12124633789062,58.39323043823242,80.36355590820312,91.39727020263672,65.17296600341797,73.00391387939453,85.84183502197266,69.7215576171875,69.29390716552734,81.42718505859375,82.31731414794922,76.76727294921875,71.88957977294922,76.89427947998047,86.936767578125,73.82173919677734,82.45100402832031,83.07658386230469,80.9043197631836,72.95411682128906,91.20098114013672,69.7689208984375,74.2369155883789,78.45997619628906,86.3305892944336,75.76667022705078,82.71308135986328,63.06077194213867,80.87220764160156,62.04433059692383,85.49424743652344,78.93917846679688,84.85692596435547,81.84415435791016,86.85960388183594,78.96509552001953,82.31937408447266,75.1630859375,76.18336486816406,83.62796020507812,66.91051483154297,72.3303451538086,64.43269348144531,89.99188995361328,87.12431335449219,73.91524505615234,72.53905487060547,83.11334991455078,75.21847534179688,85.13609313964844,81.04974365234375,86.85552215576172,77.24419403076172,89.48480987548828,81.20756530761719,83.62641906738281,80.39881896972656,83.1452865600586,90.27812957763672,77.17874145507812,88.91075897216797,90.03899383544922,83.82049560546875,76.2043228149414,82.4945297241211,78.28451538085938,92.232177734375,66.11479949951172,100.73906707763672,91.23040008544922,75.72689819335938,88.29261016845703,81.58822631835938,92.62486267089844,79.43578338623047,80.4970932006836,84.9479751586914,82.6092758178711,95.16999053955078,78.82133483886719,74.88766479492188,81.31210327148438,86.18891906738281,86.7177505493164,78.56546020507812,88.86380767822266,87.55162048339844,76.49671936035156,85.0318374633789,83.91924285888672,84.73833465576172,79.35225677490234,58.399749755859375,64.88495635986328,74.66751861572266,72.39808654785156,69.75172424316406,80.28211975097656,81.00859832763672,95.88036346435547,75.76144409179688,79.79422760009766,86.58750915527344,85.40657806396484,86.0667495727539,83.45059967041016,88.78667449951172,75.22686004638672,79.26570129394531,86.09931182861328,82.20088958740234,84.01168060302734,62.633235931396484,87.67375183105469,92.30706024169922,83.00546264648438,71.926513671875,79.6903305053711,87.93566131591797,78.37494659423828,54.599552154541016,82.82698822021484,75.37326049804688,85.46349334716797,77.42973327636719,89.8042984008789,80.46038055419922,79.18402862548828,79.99127197265625,74.2973861694336,74.12701416015625,70.93175506591797,96.45268249511719,59.51852798461914,88.6866226196289,81.49248504638672,73.97941589355469,78.01343536376953,72.36817169189453,86.27100372314453,73.39502716064453,75.74028778076172,86.9554443359375,79.1553726196289,82.52897644042969,74.01213836669922,75.60710144042969,87.58743286132812,86.95420837402344,74.29155731201172,70.05062866210938,78.1118392944336 -2935,83.16105651855469,88.37936401367188,89.15616607666016,75.46147918701172,93.68330383300781,85.91271209716797,75.96723175048828,88.66197204589844,80.5433349609375,73.32548522949219,80.41429138183594,82.88225555419922,89.8204116821289,90.21305084228516,85.08525085449219,79.8896713256836,83.80110931396484,73.37091827392578,68.69518280029297,78.64583587646484,92.14585876464844,72.609130859375,78.46253204345703,82.14751434326172,68.73826599121094,79.89986419677734,87.38007354736328,85.4119873046875,77.304443359375,77.84595489501953,72.4253158569336,74.4267807006836,76.23522186279297,88.24433898925781,84.88758850097656,81.06055450439453,66.07908630371094,84.5157241821289,81.5478744506836,78.98668670654297,74.14242553710938,67.77230834960938,77.4783935546875,81.93733978271484,86.47900390625,81.71389770507812,91.10538482666016,74.40478515625,78.3094253540039,93.61949920654297,82.55195617675781,92.69608306884766,81.08887481689453,87.89175415039062,73.97026062011719,78.86990356445312,87.50800323486328,78.4087142944336,88.78866577148438,84.42220306396484,60.8633918762207,85.7879409790039,79.53553771972656,84.44502258300781,84.00154113769531,82.88196563720703,72.90526580810547,83.19237518310547,71.71991729736328,83.9101333618164,76.79620361328125,89.45594024658203,77.19090270996094,65.02501678466797,68.93353271484375,90.86318969726562,89.2606201171875,87.37872314453125,85.29707336425781,77.36682891845703,77.29469299316406,75.04264831542969,86.58246612548828,76.84356689453125,80.94709777832031,80.7279052734375,82.96300506591797,79.81324005126953,83.8104248046875,85.70218658447266,73.24848937988281,84.6343002319336,81.24869537353516,77.00689697265625,74.12220764160156,82.16387176513672,77.12124633789062,58.39323043823242,80.36355590820312,91.39727020263672,64.15739440917969,76.2333984375,85.84183502197266,69.7215576171875,69.29390716552734,81.42718505859375,80.6514663696289,76.76727294921875,71.88957977294922,76.89427947998047,87.24197387695312,73.82173919677734,82.45100402832031,83.07658386230469,80.9043197631836,72.95411682128906,91.20098114013672,69.7689208984375,74.2369155883789,77.82234954833984,86.3305892944336,75.76667022705078,82.71308135986328,62.84342956542969,80.87220764160156,62.0775032043457,85.49424743652344,78.90100860595703,84.85692596435547,81.98704528808594,86.85960388183594,79.04108428955078,82.31937408447266,75.1630859375,83.11856079101562,83.62796020507812,66.91051483154297,72.3303451538086,64.43269348144531,89.99188995361328,87.12431335449219,71.12162017822266,72.37054443359375,80.8741683959961,75.21847534179688,85.13609313964844,81.04974365234375,86.82605743408203,77.18669891357422,89.48480987548828,81.1890640258789,81.67472839355469,80.39881896972656,83.1452865600586,90.27812957763672,77.17874145507812,87.22283172607422,90.03899383544922,83.82049560546875,76.2043228149414,82.4945297241211,81.94390106201172,92.232177734375,66.11479949951172,100.61900329589844,91.23040008544922,75.72689819335938,86.61573791503906,81.58822631835938,92.06005859375,79.43578338623047,80.4970932006836,84.9479751586914,82.6092758178711,95.16999053955078,77.81385040283203,74.88766479492188,82.80789184570312,86.2573471069336,86.7177505493164,78.56546020507812,93.54381561279297,87.55162048339844,76.49671936035156,85.0318374633789,83.81330871582031,84.73833465576172,79.35225677490234,58.399749755859375,64.88495635986328,74.66751861572266,71.85100555419922,70.1282730102539,83.28443145751953,83.95378112792969,95.88036346435547,76.61705017089844,79.79422760009766,86.58750915527344,85.40657806396484,86.0667495727539,83.57291412353516,88.78667449951172,75.22686004638672,79.23975372314453,83.05064392089844,81.95565032958984,84.1547622680664,62.621849060058594,87.67375183105469,92.07035827636719,83.00546264648438,72.49371337890625,79.6903305053711,87.93566131591797,75.43486785888672,54.599552154541016,82.82698822021484,75.37326049804688,83.70858764648438,77.30476379394531,91.25128936767578,81.87657928466797,79.18402862548828,79.99127197265625,74.2973861694336,74.12701416015625,70.93175506591797,96.45268249511719,59.51852798461914,88.12877655029297,80.95380401611328,74.5650863647461,78.29989624023438,72.36817169189453,86.27100372314453,73.39502716064453,76.02033996582031,87.75474548339844,79.1553726196289,82.52897644042969,74.01213836669922,75.60710144042969,87.58743286132812,86.95420837402344,72.25065612792969,70.05062866210938,78.1118392944336 -2936,83.23465728759766,88.37936401367188,88.49059295654297,75.46147918701172,92.8482437133789,85.82311248779297,75.96723175048828,88.66197204589844,82.0580062866211,73.13214874267578,82.32366180419922,82.88225555419922,89.79634857177734,90.27883911132812,85.08525085449219,79.8896713256836,83.80110931396484,73.37091827392578,68.69518280029297,78.64583587646484,91.19281768798828,72.609130859375,78.46253204345703,82.14751434326172,68.91139221191406,79.89986419677734,87.38007354736328,85.4119873046875,77.63488006591797,77.84595489501953,72.4253158569336,74.4267807006836,76.23522186279297,88.24433898925781,85.7973403930664,81.06055450439453,66.07908630371094,84.65892028808594,81.5478744506836,78.98668670654297,74.14242553710938,67.70844268798828,77.4783935546875,78.3097915649414,86.47900390625,81.71389770507812,90.3369369506836,74.40478515625,78.3094253540039,93.61949920654297,82.98946380615234,92.69608306884766,81.08887481689453,87.89175415039062,73.81073760986328,78.86990356445312,87.46249389648438,78.47931671142578,88.78866577148438,84.42220306396484,58.954833984375,85.7879409790039,79.53553771972656,84.44502258300781,82.38156127929688,82.88196563720703,72.90526580810547,83.19397735595703,71.88208770751953,83.9101333618164,76.79620361328125,89.66284942626953,77.19090270996094,64.96223449707031,68.93353271484375,90.9208755493164,89.2606201171875,87.37872314453125,85.29707336425781,77.36682891845703,77.29469299316406,75.14351654052734,87.2911376953125,76.8403549194336,80.94709777832031,80.7279052734375,86.9267349243164,79.81324005126953,84.0909194946289,85.70218658447266,73.24848937988281,84.1773681640625,81.24869537353516,79.29090881347656,73.815185546875,82.16387176513672,76.86650085449219,58.81371307373047,80.36355590820312,91.39727020263672,66.8644027709961,78.84010314941406,85.84183502197266,69.7215576171875,69.29390716552734,81.42718505859375,80.6514663696289,76.76727294921875,71.88957977294922,76.89427947998047,87.35749816894531,73.82173919677734,82.45100402832031,83.07658386230469,80.9043197631836,72.95411682128906,91.20098114013672,69.7689208984375,74.2369155883789,77.82234954833984,86.3305892944336,77.0781021118164,82.71308135986328,62.31632614135742,80.87220764160156,62.0775032043457,85.49424743652344,78.90100860595703,85.98945617675781,81.98704528808594,86.85960388183594,79.04108428955078,82.31937408447266,75.84028625488281,79.33187866210938,84.53914642333984,66.91051483154297,72.3303451538086,64.43269348144531,88.85262298583984,87.12431335449219,71.12162017822266,72.12379455566406,80.8741683959961,75.21847534179688,85.13609313964844,82.8802490234375,86.82605743408203,76.727294921875,89.48480987548828,81.1890640258789,82.19513702392578,80.39881896972656,86.48871612548828,90.27812957763672,78.7184066772461,87.22283172607422,90.03899383544922,83.82049560546875,79.36819458007812,82.4945297241211,79.92311096191406,92.232177734375,66.11479949951172,100.61900329589844,90.76136016845703,75.72689819335938,86.61573791503906,81.58822631835938,92.06005859375,79.43578338623047,80.4970932006836,84.9479751586914,82.6092758178711,95.16999053955078,77.81385040283203,74.88766479492188,82.80789184570312,86.03253173828125,86.7177505493164,78.56546020507812,93.54381561279297,87.5606689453125,76.49671936035156,85.0318374633789,83.81330871582031,84.73833465576172,79.35225677490234,58.399749755859375,64.88495635986328,74.02395629882812,71.85100555419922,70.1282730102539,83.28443145751953,83.09355926513672,95.88036346435547,76.61705017089844,79.79422760009766,86.58750915527344,85.40657806396484,88.307373046875,83.57291412353516,88.78667449951172,75.22686004638672,79.23975372314453,83.1617431640625,82.21094512939453,84.1547622680664,62.621849060058594,88.75070190429688,92.07035827636719,83.00546264648438,72.49371337890625,79.68242645263672,88.84806823730469,77.85625457763672,54.599552154541016,82.82698822021484,75.49483489990234,83.59789276123047,77.30476379394531,94.1552734375,81.87657928466797,78.37110137939453,79.99127197265625,74.2973861694336,74.2287826538086,70.93175506591797,96.45268249511719,59.51852798461914,88.15789794921875,80.95380401611328,77.33089447021484,78.29989624023438,72.36817169189453,86.27100372314453,74.02597045898438,76.02033996582031,87.75474548339844,79.1553726196289,82.52897644042969,74.01213836669922,75.60710144042969,87.58743286132812,86.95420837402344,71.4049301147461,70.05062866210938,78.1118392944336 -2937,83.23465728759766,88.37936401367188,88.49059295654297,75.46147918701172,92.837646484375,85.82311248779297,75.96723175048828,93.11495208740234,82.15121459960938,73.13214874267578,82.32366180419922,82.4024658203125,89.79634857177734,90.27883911132812,85.08525085449219,79.8896713256836,83.80110931396484,73.25557708740234,68.69518280029297,78.64583587646484,91.68842315673828,72.3929672241211,78.46253204345703,82.14751434326172,69.02364349365234,79.89986419677734,87.38007354736328,85.4119873046875,76.98778533935547,77.84595489501953,72.4253158569336,74.4267807006836,76.23522186279297,88.24433898925781,85.7973403930664,81.06055450439453,64.97116088867188,84.65892028808594,81.5478744506836,78.88423919677734,74.14242553710938,67.51271057128906,77.4783935546875,80.0160140991211,86.47900390625,81.71389770507812,90.3369369506836,74.55815124511719,78.3094253540039,93.61949920654297,82.98946380615234,92.3156509399414,81.08887481689453,87.89175415039062,73.81073760986328,78.86990356445312,87.46249389648438,78.47931671142578,88.78866577148438,84.6556167602539,58.954833984375,85.21727752685547,79.53553771972656,84.9468994140625,82.38156127929688,82.89427185058594,72.90526580810547,83.19397735595703,71.88208770751953,83.57194519042969,76.7907485961914,89.66284942626953,77.19090270996094,64.96223449707031,69.03225708007812,91.3263931274414,89.2606201171875,87.37872314453125,81.63115692138672,77.36682891845703,77.29469299316406,75.14351654052734,87.2911376953125,76.8403549194336,80.94709777832031,80.62582397460938,86.9267349243164,79.6866226196289,83.09420013427734,85.70218658447266,73.24848937988281,84.1773681640625,75.64362335205078,79.29090881347656,73.9021987915039,82.16387176513672,76.83695983886719,58.185585021972656,80.64537048339844,91.39727020263672,68.53633880615234,78.84010314941406,86.25308990478516,69.7215576171875,69.29390716552734,81.42718505859375,80.6514663696289,76.76727294921875,71.88957977294922,76.89427947998047,84.8031005859375,73.82173919677734,82.45100402832031,83.07658386230469,80.9043197631836,72.95411682128906,91.42288208007812,70.11840057373047,74.2369155883789,77.82234954833984,86.3305892944336,74.32239532470703,87.40679931640625,62.31632614135742,80.87220764160156,61.946529388427734,85.49424743652344,78.885009765625,85.98945617675781,81.98704528808594,87.10076904296875,79.04108428955078,81.77764892578125,75.44731140136719,79.16082763671875,84.23638916015625,70.47927856445312,71.53334045410156,64.43269348144531,88.33588409423828,86.19060516357422,71.12162017822266,72.12379455566406,80.8741683959961,75.21847534179688,88.30753326416016,82.8802490234375,86.82605743408203,76.727294921875,89.48480987548828,81.1890640258789,82.19513702392578,80.39881896972656,83.44789123535156,90.27812957763672,77.33504486083984,87.22283172607422,90.03899383544922,83.82049560546875,79.36819458007812,82.39554595947266,82.37437438964844,92.0299301147461,66.11479949951172,100.61900329589844,90.76136016845703,75.7643051147461,86.61573791503906,81.58822631835938,92.06005859375,78.09940338134766,80.4970932006836,84.9479751586914,85.8808364868164,94.2689437866211,77.81385040283203,74.88766479492188,82.80789184570312,86.03253173828125,86.7177505493164,78.56546020507812,95.62283325195312,87.5606689453125,76.49671936035156,89.50080108642578,83.81330871582031,84.73833465576172,79.9399642944336,57.8776969909668,64.88495635986328,72.91681671142578,71.85100555419922,70.1282730102539,83.28443145751953,85.7354736328125,95.88036346435547,75.85829162597656,79.79422760009766,86.58750915527344,85.40657806396484,86.97249603271484,83.3821029663086,91.52605438232422,75.22686004638672,79.31260681152344,80.70956420898438,82.21094512939453,84.1547622680664,62.09994888305664,88.75070190429688,92.88050079345703,83.00546264648438,72.45935821533203,79.68242645263672,87.9140396118164,77.85625457763672,54.53801345825195,82.9986343383789,75.49483489990234,83.03184509277344,78.26905822753906,94.1552734375,81.87657928466797,78.37110137939453,79.99127197265625,74.2973861694336,74.19153594970703,70.93175506591797,94.2583236694336,59.51852798461914,86.47953033447266,82.29082489013672,77.49720764160156,77.79136657714844,72.36817169189453,86.27100372314453,74.02597045898438,76.02033996582031,87.75474548339844,78.92137908935547,82.52897644042969,74.01213836669922,75.60710144042969,87.58743286132812,86.95420837402344,74.44271087646484,70.05062866210938,78.1118392944336 -2938,83.23465728759766,88.37936401367188,88.49982452392578,75.46147918701172,92.837646484375,85.82311248779297,75.96723175048828,93.11495208740234,81.28294372558594,73.13214874267578,82.32366180419922,82.4024658203125,89.79634857177734,89.97793579101562,85.08525085449219,80.30006408691406,83.80110931396484,73.25557708740234,68.69518280029297,78.64583587646484,91.68842315673828,72.47050476074219,78.46253204345703,82.14751434326172,69.0708236694336,79.89986419677734,87.38007354736328,85.4119873046875,76.98778533935547,77.84595489501953,72.4253158569336,74.4267807006836,76.23522186279297,88.18801879882812,85.7973403930664,81.06055450439453,64.97116088867188,84.65892028808594,81.73238372802734,78.88423919677734,73.8733139038086,67.51271057128906,77.4783935546875,80.0160140991211,86.91259765625,81.71389770507812,90.3369369506836,74.51779174804688,78.3094253540039,92.21090698242188,82.98946380615234,92.3156509399414,80.9766616821289,87.89175415039062,73.81073760986328,78.86990356445312,86.59490203857422,77.97332763671875,88.84750366210938,81.478515625,58.954833984375,85.85030364990234,79.53553771972656,84.9468994140625,82.38156127929688,82.89427185058594,72.90526580810547,83.19397735595703,71.88208770751953,83.57194519042969,76.7907485961914,89.66284942626953,77.19046020507812,64.96223449707031,68.76216888427734,91.3263931274414,89.2606201171875,87.37872314453125,81.63115692138672,77.5871810913086,77.29469299316406,75.14351654052734,87.854736328125,76.8403549194336,80.94709777832031,80.89644622802734,86.9267349243164,80.02104187011719,83.6852798461914,84.28243255615234,73.24848937988281,84.1773681640625,75.64362335205078,79.29090881347656,73.9021987915039,80.40142059326172,76.83695983886719,58.185585021972656,80.64537048339844,91.39727020263672,68.53633880615234,78.84010314941406,86.25308990478516,69.7215576171875,66.515625,79.83361053466797,80.6514663696289,76.76727294921875,71.88957977294922,76.89427947998047,86.88031005859375,73.82173919677734,84.64939880371094,82.9881820678711,80.9043197631836,72.95411682128906,91.42288208007812,69.91546630859375,74.2369155883789,77.82234954833984,86.3305892944336,74.32239532470703,87.40679931640625,62.31632614135742,82.0564193725586,61.946529388427734,85.49424743652344,78.885009765625,85.98945617675781,81.98704528808594,87.10076904296875,79.04108428955078,80.98390197753906,75.0291976928711,79.16082763671875,84.23638916015625,70.47927856445312,76.73120880126953,64.5201644897461,88.33588409423828,86.19060516357422,71.12162017822266,72.12379455566406,80.8741683959961,75.21847534179688,85.56693267822266,84.16190338134766,86.82605743408203,76.727294921875,89.48480987548828,81.1890640258789,82.33518981933594,80.39881896972656,83.44789123535156,90.2287368774414,77.33504486083984,87.22283172607422,90.03899383544922,83.82049560546875,79.36819458007812,82.39554595947266,82.37437438964844,92.0299301147461,66.11479949951172,99.85867309570312,90.76136016845703,75.7643051147461,86.61573791503906,81.58822631835938,92.06005859375,80.0618896484375,80.4970932006836,84.9479751586914,85.8808364868164,94.2689437866211,77.81385040283203,75.12570190429688,82.80789184570312,86.13060760498047,86.7177505493164,76.91646575927734,90.16236114501953,87.5606689453125,76.49671936035156,87.94210052490234,83.81330871582031,84.73833465576172,79.9399642944336,57.92446517944336,63.41740798950195,72.91681671142578,71.85100555419922,70.1282730102539,83.09515380859375,89.05584716796875,95.88036346435547,75.85829162597656,79.79422760009766,86.58750915527344,85.40657806396484,86.97249603271484,83.3821029663086,88.8299331665039,76.25798797607422,79.42498779296875,80.70956420898438,82.21094512939453,84.1547622680664,62.183406829833984,88.75070190429688,92.88050079345703,81.69503784179688,72.69277954101562,79.84124755859375,85.8662338256836,74.26661682128906,54.53801345825195,82.9986343383789,75.49483489990234,82.13636779785156,78.3166275024414,94.1552734375,81.87657928466797,78.37110137939453,79.99127197265625,74.2973861694336,74.19153594970703,71.84661102294922,94.2583236694336,59.51852798461914,86.47953033447266,82.29082489013672,78.30471801757812,77.79136657714844,72.36817169189453,85.90081787109375,74.02597045898438,76.02033996582031,87.75474548339844,78.87067413330078,82.52897644042969,74.01213836669922,75.60710144042969,87.58743286132812,86.95420837402344,74.98758697509766,70.3221206665039,78.1118392944336 -2939,83.31234741210938,88.52079772949219,87.37439727783203,75.46147918701172,92.837646484375,85.82311248779297,75.96723175048828,93.11495208740234,78.1688003540039,73.13214874267578,84.08137512207031,82.4024658203125,90.54600524902344,92.47944641113281,84.97193908691406,80.12611389160156,83.80110931396484,73.25557708740234,68.69518280029297,78.64583587646484,91.68842315673828,72.47050476074219,79.49971008300781,82.14751434326172,69.0708236694336,79.89986419677734,87.38007354736328,85.24346923828125,77.2265853881836,77.84595489501953,72.4253158569336,74.4267807006836,76.23522186279297,88.18801879882812,85.01163482666016,81.50576782226562,64.97116088867188,84.65892028808594,81.73238372802734,78.88423919677734,74.0141372680664,67.51773071289062,77.4783935546875,78.58545684814453,86.91259765625,80.44351959228516,94.17660522460938,74.51779174804688,78.3094253540039,90.44490814208984,82.98946380615234,92.3156509399414,80.67692565917969,87.89175415039062,73.81073760986328,79.87281799316406,86.59490203857422,78.6180648803711,88.84750366210938,81.93110656738281,58.394126892089844,85.71350860595703,79.53553771972656,84.9468994140625,82.38156127929688,82.91151428222656,72.90526580810547,83.19397735595703,71.88208770751953,83.57194519042969,76.4697494506836,89.66284942626953,77.02729797363281,64.96223449707031,68.62720489501953,91.3263931274414,89.2606201171875,86.92987060546875,81.63115692138672,77.5871810913086,77.29469299316406,74.9395751953125,87.854736328125,76.86335754394531,80.67340087890625,80.89644622802734,84.21575164794922,80.02104187011719,83.6852798461914,84.28243255615234,73.24848937988281,84.1773681640625,75.64362335205078,79.23453521728516,76.62065124511719,80.40142059326172,76.83695983886719,58.185585021972656,80.64537048339844,92.0244369506836,71.01567077636719,80.39663696289062,86.41089630126953,69.7038803100586,66.515625,79.83361053466797,80.6514663696289,76.76727294921875,71.88427734375,76.21559143066406,86.88031005859375,73.82173919677734,84.64939880371094,82.46380615234375,80.9043197631836,72.95411682128906,93.71337890625,69.91546630859375,74.2369155883789,77.82234954833984,86.3305892944336,74.32239532470703,87.40679931640625,62.31632614135742,81.70695495605469,62.52236557006836,85.49424743652344,78.885009765625,85.98945617675781,81.98704528808594,87.10076904296875,79.04108428955078,80.98390197753906,75.44610595703125,83.11487579345703,84.23638916015625,69.1966781616211,69.73097229003906,64.5201644897461,88.33588409423828,86.19060516357422,71.12162017822266,72.12379455566406,79.09589385986328,75.21847534179688,85.95784759521484,82.75484466552734,86.82605743408203,76.727294921875,88.99739074707031,81.1890640258789,81.8791732788086,80.39881896972656,83.44789123535156,90.2287368774414,77.33504486083984,87.22283172607422,92.01483917236328,83.82049560546875,81.41200256347656,82.20167541503906,82.37437438964844,92.0299301147461,66.11479949951172,99.85867309570312,90.76136016845703,77.0383071899414,85.89871215820312,81.58822631835938,93.1838607788086,80.0618896484375,80.66533660888672,87.84749603271484,85.8808364868164,96.37224578857422,77.81385040283203,75.76496887207031,81.4495849609375,86.13060760498047,86.7177505493164,76.97905731201172,86.55745697021484,87.5606689453125,76.49671936035156,87.94210052490234,83.81330871582031,86.04927825927734,79.9399642944336,57.92446517944336,63.41740798950195,72.73424530029297,71.85100555419922,68.97511291503906,83.09515380859375,88.85352325439453,95.57923126220703,75.85829162597656,79.79422760009766,86.58750915527344,86.37895965576172,86.97249603271484,83.3821029663086,88.8299331665039,76.25798797607422,79.42498779296875,80.70956420898438,82.21094512939453,84.1547622680664,62.183406829833984,88.75070190429688,92.88050079345703,81.69503784179688,72.34793090820312,79.59739685058594,85.8662338256836,74.93744659423828,54.53801345825195,82.1138687133789,75.49483489990234,85.26506805419922,78.3166275024414,95.86460876464844,81.14820861816406,78.37110137939453,79.99127197265625,73.87860870361328,74.19153594970703,71.84661102294922,94.2583236694336,59.51852798461914,86.47953033447266,82.29082489013672,78.30471801757812,77.79136657714844,72.36817169189453,85.90081787109375,74.25360870361328,76.02033996582031,87.89608764648438,78.87067413330078,82.52897644042969,74.01213836669922,75.60710144042969,87.58743286132812,86.95420837402344,74.89901733398438,71.44335174560547,78.1118392944336 -2940,83.31234741210938,88.52079772949219,89.40975189208984,75.46147918701172,92.837646484375,85.83063507080078,75.96723175048828,92.48432159423828,77.88787841796875,73.13214874267578,84.07427215576172,82.4024658203125,91.38697052001953,92.47944641113281,84.97193908691406,80.12611389160156,83.80110931396484,73.01387023925781,68.69518280029297,78.64583587646484,91.68842315673828,72.47050476074219,79.49971008300781,82.14751434326172,69.0708236694336,81.50553894042969,87.38007354736328,85.24346923828125,77.64102935791016,77.84595489501953,72.4253158569336,74.4267807006836,76.23522186279297,88.18801879882812,85.01163482666016,81.50576782226562,64.97116088867188,84.6620101928711,80.6744155883789,78.88423919677734,74.0141372680664,67.51773071289062,77.54802703857422,77.92718505859375,86.91259765625,81.70426177978516,96.5606460571289,74.51779174804688,78.43069458007812,90.71710968017578,82.98946380615234,92.3156509399414,80.72042083740234,87.89175415039062,73.81073760986328,79.87281799316406,86.59490203857422,78.6180648803711,88.84750366210938,81.93110656738281,58.394126892089844,85.71350860595703,77.57038116455078,84.5634536743164,83.1846694946289,82.91151428222656,72.90526580810547,83.19397735595703,71.88208770751953,85.22111511230469,76.4697494506836,89.66284942626953,77.02729797363281,64.8213882446289,68.62720489501953,91.83659362792969,89.2606201171875,86.92987060546875,84.13797760009766,76.71723175048828,77.72017669677734,74.9395751953125,87.854736328125,76.86335754394531,80.67340087890625,80.89644622802734,86.34521484375,80.02104187011719,83.6852798461914,84.28243255615234,73.24848937988281,84.1773681640625,75.64362335205078,79.23453521728516,76.40355682373047,80.40142059326172,76.13854217529297,56.987945556640625,80.64537048339844,88.51426696777344,71.01567077636719,80.39663696289062,86.41089630126953,69.7038803100586,66.515625,79.83361053466797,80.6514663696289,76.76727294921875,71.88427734375,76.21559143066406,86.21871185302734,73.82173919677734,79.23360443115234,82.46380615234375,80.9043197631836,75.71517944335938,91.24490356445312,70.07328796386719,74.2369155883789,77.82234954833984,86.21198272705078,74.32239532470703,87.40679931640625,62.31632614135742,81.70695495605469,62.52236557006836,86.65611267089844,78.885009765625,85.98945617675781,81.98704528808594,87.10076904296875,79.0793228149414,80.60340881347656,75.44610595703125,81.41217041015625,85.43762969970703,69.1966781616211,69.73097229003906,64.5201644897461,88.33588409423828,86.19060516357422,69.1379165649414,72.12379455566406,79.09589385986328,74.40306854248047,87.55022430419922,82.75484466552734,86.82605743408203,76.727294921875,88.02387237548828,81.1890640258789,81.3064956665039,80.37968444824219,83.44789123535156,90.2287368774414,76.61575317382812,87.22283172607422,92.05586242675781,83.82049560546875,80.78108978271484,82.44451904296875,82.37437438964844,92.0299301147461,66.11479949951172,99.5720443725586,90.76136016845703,78.20235443115234,85.89871215820312,81.3774185180664,93.1838607788086,80.0618896484375,80.66533660888672,87.84749603271484,85.8808364868164,96.37224578857422,77.81385040283203,75.76496887207031,81.0743179321289,86.52442169189453,86.7177505493164,76.55143737792969,86.55745697021484,87.5606689453125,76.49671936035156,87.94210052490234,79.91883087158203,86.04927825927734,79.9399642944336,57.92446517944336,63.41740798950195,72.73424530029297,68.93280029296875,68.79342651367188,80.51329040527344,85.57618713378906,95.57923126220703,75.85829162597656,79.79422760009766,86.74768829345703,86.37895965576172,86.97249603271484,81.76023864746094,87.19966888427734,76.25798797607422,79.42498779296875,80.70956420898438,82.21094512939453,84.1547622680664,62.183406829833984,88.75070190429688,92.88050079345703,81.69503784179688,72.98095703125,79.59739685058594,85.8662338256836,74.93744659423828,54.53801345825195,82.1138687133789,75.52591705322266,85.84790802001953,78.3166275024414,95.86460876464844,81.78461456298828,78.37110137939453,79.99127197265625,76.57693481445312,74.19153594970703,71.70731353759766,94.2583236694336,59.51852798461914,82.25865173339844,82.29082489013672,78.30471801757812,77.79136657714844,72.2679214477539,88.18855285644531,74.25360870361328,76.02033996582031,87.89608764648438,79.15617370605469,82.52897644042969,75.76459503173828,75.60710144042969,88.41753387451172,86.95420837402344,74.89901733398438,71.44335174560547,78.1118392944336 -2941,83.31234741210938,88.82992553710938,86.9656982421875,75.46147918701172,92.837646484375,85.83063507080078,75.96723175048828,92.0553207397461,77.88787841796875,73.13214874267578,84.07427215576172,82.4024658203125,91.38697052001953,89.4415512084961,84.97193908691406,80.12611389160156,83.80110931396484,73.1015625,68.69518280029297,78.64595794677734,91.68842315673828,72.47050476074219,79.49971008300781,82.14751434326172,68.9893798828125,82.5830307006836,87.38007354736328,85.24346923828125,77.64102935791016,77.84595489501953,72.4253158569336,74.4267807006836,76.23522186279297,88.18801879882812,84.46361541748047,79.53050994873047,64.97116088867188,84.6620101928711,80.6744155883789,78.88423919677734,74.0141372680664,67.58531188964844,77.57254791259766,77.92718505859375,86.91259765625,81.70426177978516,94.67961120605469,74.51779174804688,78.43069458007812,90.71710968017578,82.98946380615234,92.3156509399414,80.7402572631836,87.89175415039062,73.81073760986328,79.87281799316406,86.59490203857422,78.6180648803711,88.91618347167969,81.93110656738281,58.394126892089844,85.71350860595703,77.57038116455078,84.5634536743164,81.83036041259766,82.91151428222656,72.9837417602539,83.19397735595703,71.88208770751953,85.22111511230469,76.4697494506836,89.66284942626953,76.83372497558594,64.8475341796875,68.69522094726562,91.4854507446289,89.2606201171875,86.92987060546875,84.13797760009766,76.76078033447266,77.72017669677734,74.9395751953125,87.22119140625,77.01226806640625,80.68195343017578,80.89644622802734,86.34521484375,80.02104187011719,83.6852798461914,84.28243255615234,73.24848937988281,84.31050109863281,75.64362335205078,79.23453521728516,76.40228271484375,80.40142059326172,76.41702270507812,56.987945556640625,80.64537048339844,91.59062194824219,68.33090209960938,80.39663696289062,86.41089630126953,69.7038803100586,66.515625,80.86516571044922,80.6514663696289,76.76727294921875,72.39861297607422,76.21559143066406,86.21871185302734,73.82173919677734,75.79261779785156,82.46380615234375,80.9043197631836,75.71517944335938,94.22478485107422,70.07328796386719,76.42416381835938,77.82234954833984,86.21198272705078,76.14048767089844,87.40679931640625,62.31632614135742,79.90974426269531,62.52236557006836,86.65611267089844,78.885009765625,85.16228485107422,82.14273071289062,87.10076904296875,79.0793228149414,80.60340881347656,75.44610595703125,72.82520294189453,85.21458435058594,69.1966781616211,69.73097229003906,64.5201644897461,88.33588409423828,89.48926544189453,69.1379165649414,72.12379455566406,79.09589385986328,74.40306854248047,87.55022430419922,80.7232666015625,86.82605743408203,76.727294921875,94.24275207519531,81.29253387451172,81.3064956665039,80.46395111083984,83.44789123535156,90.2287368774414,76.61575317382812,87.22283172607422,92.05586242675781,83.82049560546875,80.78108978271484,82.2939682006836,79.13886260986328,92.0299301147461,66.11479949951172,99.5720443725586,90.76136016845703,78.20235443115234,85.89871215820312,81.3774185180664,92.08748626708984,80.0618896484375,80.66533660888672,87.84749603271484,83.7840347290039,96.37224578857422,77.81385040283203,75.76496887207031,81.0743179321289,86.52442169189453,86.92315673828125,76.55143737792969,89.7347412109375,87.5606689453125,76.49671936035156,87.94210052490234,79.91883087158203,86.04927825927734,79.9399642944336,58.37966537475586,63.41740798950195,73.65711212158203,68.69915771484375,68.79342651367188,82.15853118896484,85.57618713378906,95.57923126220703,75.96250915527344,79.79422760009766,84.68690490722656,86.37895965576172,86.97249603271484,82.09795379638672,86.64993286132812,76.25798797607422,79.42498779296875,80.70956420898438,82.21094512939453,84.1547622680664,62.183406829833984,88.75070190429688,91.06781005859375,81.69503784179688,72.98095703125,79.36929321289062,87.0897445678711,74.93744659423828,54.49174118041992,82.1138687133789,75.52591705322266,85.84790802001953,78.3166275024414,95.86460876464844,81.78461456298828,78.37110137939453,79.99127197265625,71.41675567626953,74.19153594970703,71.92453002929688,94.2583236694336,59.51852798461914,86.03288269042969,82.29082489013672,79.99713897705078,77.65829467773438,72.2679214477539,88.18855285644531,74.25360870361328,76.02033996582031,87.89608764648438,79.1701431274414,82.52897644042969,75.71754455566406,75.60710144042969,88.41753387451172,86.81214141845703,74.89901733398438,71.44335174560547,77.57627868652344 -2942,83.497802734375,88.82992553710938,86.9656982421875,75.46147918701172,92.83595275878906,85.83063507080078,75.96723175048828,88.83112335205078,77.88787841796875,73.18730163574219,84.07427215576172,82.4024658203125,90.7428207397461,91.5526351928711,84.97193908691406,79.99055480957031,84.8260269165039,73.1015625,68.69518280029297,78.64595794677734,92.40489196777344,72.32544708251953,79.49971008300781,82.14751434326172,68.9893798828125,81.08470153808594,87.38007354736328,85.24346923828125,77.11146545410156,77.84595489501953,72.4253158569336,74.4267807006836,77.35865783691406,88.18801879882812,86.18389129638672,79.53050994873047,64.97116088867188,84.6620101928711,80.6744155883789,78.81448364257812,74.13623046875,67.4746322631836,77.57254791259766,77.3656234741211,86.91259765625,81.70426177978516,94.67961120605469,74.89341735839844,78.43069458007812,90.71710968017578,82.98946380615234,92.3156509399414,80.7402572631836,87.89175415039062,73.81073760986328,79.87281799316406,86.59490203857422,78.6180648803711,88.91618347167969,81.93110656738281,58.394126892089844,85.94470977783203,77.57038116455078,84.5634536743164,81.83036041259766,82.91151428222656,72.9837417602539,83.19397735595703,71.88208770751953,84.88471984863281,76.4697494506836,93.20108795166016,76.83372497558594,64.8475341796875,68.69522094726562,91.36149597167969,89.2606201171875,86.92987060546875,84.13797760009766,77.4117431640625,77.72017669677734,74.9395751953125,87.99885559082031,77.01226806640625,80.67654418945312,80.89644622802734,88.25679016113281,80.02104187011719,83.6852798461914,84.28243255615234,73.24848937988281,84.31050109863281,75.64362335205078,79.23453521728516,75.5316162109375,80.40142059326172,75.76966857910156,56.987945556640625,80.64537048339844,90.32891082763672,68.33090209960938,78.48509216308594,86.15286254882812,69.36529541015625,66.515625,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,76.21559143066406,86.21871185302734,73.82173919677734,78.7474594116211,82.46380615234375,81.03311157226562,75.71517944335938,91.47872924804688,70.07328796386719,73.98739624023438,77.82234954833984,86.21198272705078,79.75526428222656,84.43500518798828,62.70331573486328,87.27193450927734,62.52236557006836,85.7968521118164,78.885009765625,85.16228485107422,81.32363891601562,87.10076904296875,79.0793228149414,80.60340881347656,75.44610595703125,73.15816497802734,84.08781433105469,69.1966781616211,70.79994201660156,64.5201644897461,92.6910400390625,90.53616333007812,70.2635269165039,72.12379455566406,79.09589385986328,74.40306854248047,87.55022430419922,80.7232666015625,86.74270629882812,76.727294921875,87.00799560546875,81.29253387451172,81.3064956665039,80.46395111083984,83.20281982421875,89.59495544433594,76.61575317382812,87.93559265136719,92.05586242675781,83.82049560546875,80.78108978271484,82.55696868896484,81.77957153320312,91.574462890625,66.11479949951172,99.5720443725586,90.59513854980469,78.20235443115234,85.89871215820312,81.3774185180664,92.08748626708984,79.96623992919922,77.81607055664062,87.64134216308594,83.7840347290039,96.37224578857422,79.12129974365234,75.76496887207031,81.0743179321289,86.1689453125,86.86215209960938,76.55143737792969,89.7347412109375,87.5606689453125,76.49671936035156,83.64720153808594,79.91883087158203,86.04927825927734,79.9399642944336,58.37966537475586,65.54225158691406,73.65711212158203,68.69915771484375,69.90779113769531,82.05675506591797,85.57618713378906,95.57923126220703,75.96250915527344,79.79422760009766,84.68690490722656,86.37895965576172,86.97249603271484,82.09795379638672,88.42762756347656,76.25798797607422,79.42498779296875,81.06372833251953,82.21094512939453,84.1547622680664,62.183406829833984,88.75070190429688,91.06781005859375,81.69503784179688,72.2292251586914,79.23458862304688,86.4109878540039,74.93744659423828,54.49174118041992,82.1138687133789,75.52591705322266,85.84790802001953,78.3166275024414,96.81456756591797,81.78461456298828,78.37110137939453,79.99127197265625,74.78919982910156,74.28343200683594,72.78227996826172,94.2583236694336,59.364959716796875,86.1270751953125,82.29082489013672,79.70774841308594,77.48814392089844,72.2679214477539,88.18855285644531,74.25360870361328,76.02033996582031,87.89608764648438,78.96571350097656,82.52897644042969,75.71754455566406,75.60710144042969,88.41753387451172,86.81214141845703,74.81610107421875,71.44335174560547,77.57627868652344 -2943,83.497802734375,88.82992553710938,86.9656982421875,75.46147918701172,93.01416015625,85.65692138671875,75.96723175048828,88.83112335205078,77.88787841796875,73.18730163574219,80.6905288696289,82.4024658203125,89.71239471435547,91.5526351928711,84.97193908691406,79.34854125976562,84.8260269165039,73.10601806640625,68.69518280029297,78.56074523925781,92.40489196777344,72.23410034179688,79.49971008300781,82.14751434326172,68.4856948852539,81.08470153808594,87.38007354736328,85.24346923828125,77.11146545410156,77.9312515258789,72.4253158569336,74.96669006347656,77.35865783691406,88.18801879882812,85.83767700195312,79.53050994873047,64.97116088867188,84.48308563232422,80.6744155883789,78.81448364257812,74.13623046875,67.4746322631836,77.57254791259766,77.3656234741211,86.91259765625,81.70059967041016,94.67961120605469,74.89341735839844,78.65457916259766,90.71710968017578,82.98946380615234,92.3156509399414,80.8351821899414,87.89175415039062,74.18836975097656,79.61233520507812,88.41190338134766,78.2982177734375,88.91618347167969,81.93110656738281,58.394126892089844,85.94470977783203,77.57038116455078,84.5634536743164,81.83036041259766,82.91151428222656,72.9837417602539,83.19397735595703,71.88208770751953,84.88471984863281,76.79608917236328,93.20108795166016,76.83372497558594,64.8475341796875,68.69522094726562,91.36149597167969,89.2606201171875,86.8531265258789,84.13797760009766,77.4117431640625,77.72017669677734,74.9395751953125,87.65560150146484,77.01226806640625,80.67654418945312,80.89644622802734,88.25679016113281,80.02104187011719,83.6852798461914,84.28243255615234,73.39884185791016,84.86714935302734,75.64362335205078,79.23453521728516,75.5316162109375,80.40142059326172,75.76966857910156,57.77104568481445,80.64537048339844,90.32891082763672,68.33090209960938,84.01746368408203,86.15286254882812,69.25211334228516,66.515625,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,76.21559143066406,86.21871185302734,73.82173919677734,80.10964965820312,82.46380615234375,81.03311157226562,75.71517944335938,91.47872924804688,70.07328796386719,73.98739624023438,77.82234954833984,86.21198272705078,78.37446594238281,84.43500518798828,62.91692352294922,85.84823608398438,62.52236557006836,85.92174530029297,78.885009765625,85.16228485107422,80.62281799316406,88.68423461914062,79.0793228149414,80.60340881347656,75.44610595703125,77.67184448242188,84.08781433105469,67.25184631347656,72.7940444946289,64.5201644897461,94.20576477050781,90.53616333007812,70.2635269165039,71.39517211914062,78.88143157958984,74.40306854248047,85.75900268554688,80.7232666015625,86.74270629882812,77.12428283691406,87.00799560546875,81.29253387451172,81.3064956665039,80.44598388671875,83.20281982421875,89.59495544433594,77.5023422241211,88.88921356201172,92.05586242675781,83.82049560546875,80.78108978271484,82.55696868896484,81.77957153320312,91.86296081542969,66.11479949951172,99.5720443725586,90.59513854980469,80.6829605102539,85.89871215820312,81.3774185180664,92.08748626708984,79.96623992919922,77.81607055664062,87.64134216308594,83.7840347290039,96.37224578857422,79.12129974365234,75.76496887207031,81.0743179321289,86.240478515625,86.86215209960938,78.3210678100586,84.93217468261719,87.5606689453125,76.49671936035156,83.95543670654297,79.91883087158203,87.1814193725586,79.9399642944336,58.37966537475586,64.47455596923828,73.65711212158203,68.69915771484375,70.19944763183594,82.05675506591797,85.57618713378906,96.39725494384766,75.96250915527344,79.79422760009766,85.75038146972656,86.37895965576172,86.97249603271484,81.80062866210938,88.42762756347656,76.25798797607422,79.42498779296875,81.06372833251953,82.21094512939453,83.42652130126953,62.183406829833984,88.99656677246094,91.06781005859375,82.47352600097656,72.2292251586914,78.94691467285156,86.4109878540039,78.57061004638672,54.49174118041992,82.1138687133789,75.52591705322266,85.84790802001953,75.26293182373047,96.16063690185547,81.89689636230469,78.37110137939453,79.99127197265625,75.1519546508789,74.56727600097656,72.78227996826172,94.59281921386719,59.364959716796875,86.1270751953125,82.29082489013672,79.06929779052734,77.48814392089844,72.2679214477539,93.08358001708984,73.73065185546875,76.02033996582031,87.89608764648438,78.96571350097656,82.52897644042969,75.71754455566406,75.60710144042969,85.80839538574219,86.81214141845703,74.81610107421875,78.08473205566406,77.57627868652344 -2944,83.55914306640625,88.82992553710938,86.9656982421875,75.12188720703125,93.01416015625,85.65692138671875,75.96723175048828,88.83112335205078,77.88787841796875,73.304443359375,80.6905288696289,82.4024658203125,89.71239471435547,91.4329833984375,84.35138702392578,79.34854125976562,83.4433822631836,73.10601806640625,68.69518280029297,78.56074523925781,92.40489196777344,72.23410034179688,79.49971008300781,82.14751434326172,68.4856948852539,81.08470153808594,87.38007354736328,85.24346923828125,77.11146545410156,77.9312515258789,72.28787994384766,74.96669006347656,77.35865783691406,88.18801879882812,86.1595687866211,80.73542785644531,65.3990478515625,84.48308563232422,80.6744155883789,78.81448364257812,74.13623046875,67.47773742675781,77.56118774414062,77.3656234741211,86.91259765625,81.80174255371094,94.67961120605469,74.89341735839844,79.64183807373047,92.2302474975586,83.41718292236328,93.68730163574219,80.8351821899414,87.89175415039062,74.31681823730469,79.61233520507812,88.41190338134766,78.2982177734375,89.01654815673828,81.93110656738281,58.06162643432617,86.4231185913086,78.43390655517578,84.5634536743164,81.40762329101562,83.12609100341797,73.09408569335938,83.19397735595703,72.05587768554688,84.88471984863281,76.79608917236328,91.71683502197266,76.83372497558594,64.8475341796875,68.69522094726562,91.66051483154297,89.2606201171875,86.8531265258789,84.13797760009766,77.4117431640625,77.72017669677734,75.39518737792969,87.65560150146484,77.07708740234375,80.72996520996094,80.89644622802734,88.25679016113281,80.07315826416016,83.6852798461914,83.84416961669922,73.36183166503906,84.86714935302734,75.64362335205078,79.23453521728516,75.5316162109375,80.40142059326172,76.30159759521484,57.77104568481445,80.64537048339844,88.9984359741211,69.68550872802734,84.01746368408203,86.15286254882812,69.25211334228516,66.59394836425781,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,76.21559143066406,82.41537475585938,73.90865325927734,76.0054702758789,82.46380615234375,81.03311157226562,75.71517944335938,90.18345642089844,70.3200454711914,73.98739624023438,77.82234954833984,86.21198272705078,81.86439514160156,84.43500518798828,63.264862060546875,85.84823608398438,62.45469665527344,85.20967864990234,78.885009765625,85.16228485107422,80.62281799316406,88.68423461914062,79.0793228149414,80.60340881347656,74.67557525634766,77.67184448242188,84.08781433105469,67.25184631347656,72.7940444946289,64.5201644897461,94.20576477050781,96.44483947753906,70.2635269165039,73.69335174560547,78.88143157958984,74.40306854248047,85.75900268554688,80.7232666015625,86.74270629882812,77.12428283691406,92.79598999023438,81.29253387451172,81.3064956665039,80.44598388671875,83.20281982421875,89.71232604980469,77.5023422241211,88.88921356201172,91.40995025634766,84.1651611328125,80.78108978271484,82.55696868896484,78.48274993896484,91.86296081542969,66.11479949951172,99.5720443725586,90.82206726074219,78.2518081665039,85.89871215820312,81.3774185180664,92.08748626708984,79.96623992919922,77.81607055664062,87.58464050292969,83.7840347290039,97.13264465332031,79.12129974365234,75.76496887207031,81.0743179321289,86.45006561279297,86.86215209960938,78.12664794921875,84.93217468261719,87.43341064453125,76.49671936035156,83.95543670654297,79.91883087158203,87.22900390625,79.9399642944336,58.37966537475586,64.47455596923828,73.65711212158203,68.62841033935547,70.19944763183594,82.74883270263672,85.04132843017578,94.87928009033203,75.59907531738281,79.10176086425781,85.75038146972656,86.37895965576172,86.97249603271484,81.80062866210938,88.42762756347656,75.9659423828125,79.42498779296875,81.34465789794922,82.21094512939453,83.42652130126953,62.183406829833984,88.99656677246094,91.06781005859375,82.47352600097656,72.12191772460938,78.94691467285156,86.4109878540039,78.57061004638672,54.49174118041992,82.1138687133789,75.5634536743164,85.84790802001953,75.26293182373047,96.16063690185547,82.67633819580078,78.50782012939453,79.65957641601562,75.1519546508789,74.56243896484375,73.4288558959961,94.59281921386719,59.364959716796875,86.1270751953125,83.24060821533203,79.25802612304688,77.48814392089844,72.2679214477539,90.49540710449219,73.73065185546875,76.02033996582031,87.89608764648438,78.87451171875,82.52897644042969,75.71754455566406,75.60710144042969,87.13667297363281,86.81214141845703,74.81610107421875,78.08473205566406,77.57627868652344 -2945,83.41997528076172,88.82992553710938,87.5394058227539,75.12188720703125,93.34207153320312,85.65692138671875,75.96723175048828,88.16006469726562,77.88787841796875,73.304443359375,80.6905288696289,82.4024658203125,89.71239471435547,90.70708465576172,84.35138702392578,79.34854125976562,83.4433822631836,73.07670593261719,68.69518280029297,78.56074523925781,92.40489196777344,71.9072265625,79.49971008300781,81.83870697021484,68.4856948852539,81.08470153808594,87.38007354736328,85.24346923828125,77.11146545410156,77.9312515258789,72.28787994384766,74.50483703613281,77.35865783691406,88.18801879882812,85.62680053710938,80.76703643798828,64.95800018310547,84.48308563232422,80.6744155883789,78.79405212402344,74.13623046875,67.47773742675781,77.57755279541016,77.62030792236328,86.91259765625,84.77860260009766,94.67961120605469,74.77317810058594,79.64183807373047,91.06686401367188,83.41718292236328,94.63566589355469,80.8351821899414,87.89555358886719,74.13430786132812,79.57562255859375,88.41190338134766,78.231689453125,88.72174835205078,82.67411041259766,59.01357650756836,86.4231185913086,78.32817840576172,84.8326187133789,81.40762329101562,83.12609100341797,73.09408569335938,84.653564453125,71.5479507446289,84.88471984863281,76.49138641357422,91.71683502197266,76.50037384033203,64.8475341796875,69.10128021240234,91.66051483154297,89.2606201171875,86.8531265258789,84.13797760009766,77.4117431640625,77.72017669677734,75.30364227294922,87.6898422241211,77.07708740234375,80.72996520996094,80.89644622802734,88.27934265136719,79.5943603515625,83.6852798461914,84.45856475830078,73.36183166503906,84.07312774658203,75.64362335205078,79.23453521728516,75.5316162109375,80.40142059326172,76.30159759521484,57.77104568481445,80.64537048339844,91.59967803955078,69.68550872802734,84.01746368408203,86.15286254882812,69.25211334228516,65.67205810546875,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,76.21559143066406,82.41537475585938,73.90865325927734,78.1502914428711,82.46380615234375,81.03311157226562,75.71517944335938,89.13690185546875,70.3200454711914,73.98739624023438,78.03976440429688,86.21198272705078,81.86439514160156,84.43500518798828,63.264862060546875,85.84823608398438,62.45469665527344,85.11389923095703,78.885009765625,85.16228485107422,80.13019561767578,88.68423461914062,79.0793228149414,80.53803253173828,74.67557525634766,77.46746826171875,84.08781433105469,67.25184631347656,72.7940444946289,64.40564727783203,94.20576477050781,97.27484130859375,71.28504180908203,72.49491119384766,78.88143157958984,74.42816162109375,88.20470428466797,80.7232666015625,86.74270629882812,77.12428283691406,94.65789031982422,81.29253387451172,81.3064956665039,80.44598388671875,83.20281982421875,89.71232604980469,77.21332550048828,88.88921356201172,91.40995025634766,84.1651611328125,80.78108978271484,82.55696868896484,78.48274993896484,91.86296081542969,66.98336029052734,99.5720443725586,90.86178588867188,78.49073028564453,85.89871215820312,81.3774185180664,92.08748626708984,79.96623992919922,77.81607055664062,87.58464050292969,83.7840347290039,97.13264465332031,79.11170196533203,75.76496887207031,81.0743179321289,86.32902526855469,85.46558380126953,78.12664794921875,84.93217468261719,87.43341064453125,76.49671936035156,85.74524688720703,79.91883087158203,87.22900390625,79.9399642944336,58.37966537475586,68.99616241455078,73.65711212158203,69.7531967163086,70.1044921875,79.10322570800781,85.04132843017578,94.87928009033203,75.59907531738281,78.98460388183594,85.98204803466797,86.83291625976562,86.97249603271484,81.80062866210938,85.40599822998047,80.57781982421875,79.42498779296875,81.34465789794922,82.21094512939453,83.42652130126953,62.183406829833984,88.99656677246094,91.06781005859375,82.47352600097656,72.02857971191406,78.96149444580078,86.4109878540039,78.57061004638672,54.49174118041992,82.1138687133789,75.540771484375,85.84790802001953,73.95211791992188,95.6382827758789,82.67633819580078,78.50782012939453,79.41998291015625,74.67776489257812,74.56243896484375,73.4288558959961,93.93872833251953,59.364959716796875,86.1270751953125,83.24060821533203,82.50041198730469,77.48814392089844,72.2679214477539,85.92285919189453,73.73065185546875,76.02033996582031,87.89608764648438,78.87451171875,82.52897644042969,75.71754455566406,75.40174865722656,87.13667297363281,87.54469299316406,74.81610107421875,78.08473205566406,77.57627868652344 -2946,83.30644226074219,88.82992553710938,87.5394058227539,75.12188720703125,93.34207153320312,85.65692138671875,75.96723175048828,88.16006469726562,77.88787841796875,73.253173828125,82.97337341308594,82.4024658203125,89.71239471435547,90.70708465576172,84.35138702392578,79.38014221191406,83.59982299804688,73.13896179199219,68.69518280029297,78.56074523925781,92.38687133789062,71.9952163696289,80.20486450195312,81.83870697021484,68.4856948852539,81.08470153808594,87.38007354736328,83.56624603271484,77.11146545410156,77.9312515258789,72.28787994384766,73.93204498291016,77.35865783691406,87.52275085449219,85.62680053710938,80.76703643798828,65.39124298095703,84.48308563232422,80.6744155883789,78.79794311523438,74.26929473876953,67.47773742675781,77.57755279541016,77.62030792236328,86.91259765625,84.77860260009766,93.30132293701172,74.77317810058594,79.64183807373047,91.06686401367188,83.41718292236328,94.63566589355469,80.8351821899414,87.89555358886719,73.47966766357422,79.57562255859375,84.21060943603516,78.231689453125,88.72174835205078,82.67411041259766,59.01357650756836,86.4231185913086,78.32817840576172,84.8326187133789,81.40762329101562,83.12609100341797,73.09408569335938,84.653564453125,71.5479507446289,84.88471984863281,76.49138641357422,91.71683502197266,76.50037384033203,64.8475341796875,69.10128021240234,91.66051483154297,89.2606201171875,86.8531265258789,84.13797760009766,78.74089050292969,77.72017669677734,75.30364227294922,87.6898422241211,77.07708740234375,80.72996520996094,80.89644622802734,88.27934265136719,79.5943603515625,83.6852798461914,84.45856475830078,73.36183166503906,84.07312774658203,75.64362335205078,79.23453521728516,75.5316162109375,80.04730987548828,74.79340362548828,58.95014953613281,80.44603729248047,92.07099151611328,69.68550872802734,84.01746368408203,86.15286254882812,69.25211334228516,65.67205810546875,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,77.2332763671875,89.24688720703125,73.90865325927734,81.5072250366211,82.46380615234375,81.03311157226562,75.78797149658203,86.69562530517578,70.3200454711914,73.98739624023438,78.03976440429688,86.21198272705078,81.86439514160156,87.4146499633789,63.264862060546875,83.04767608642578,62.45469665527344,85.11389923095703,78.885009765625,85.16228485107422,80.13019561767578,88.68423461914062,79.0793228149414,80.53803253173828,74.67557525634766,75.95037841796875,84.08781433105469,67.25184631347656,72.7940444946289,64.40564727783203,94.20576477050781,97.24546813964844,71.28504180908203,73.323486328125,78.88143157958984,77.8314208984375,87.86839294433594,80.7232666015625,86.84200286865234,77.46621704101562,91.33832550048828,81.29253387451172,81.3064956665039,80.38382720947266,83.20281982421875,89.71232604980469,76.54570007324219,89.78910827636719,91.40995025634766,84.19025421142578,80.78108978271484,82.55696868896484,77.05792999267578,91.86296081542969,66.98336029052734,101.09565734863281,90.86178588867188,75.6903076171875,85.89871215820312,81.3774185180664,92.50762176513672,79.96623992919922,77.81607055664062,86.67147064208984,83.7840347290039,97.13264465332031,79.11170196533203,75.13591003417969,81.0743179321289,86.32902526855469,85.46558380126953,77.27806854248047,87.18069458007812,87.43341064453125,76.49671936035156,85.74524688720703,79.91883087158203,87.22900390625,79.9399642944336,58.706539154052734,68.99616241455078,73.65711212158203,69.7531967163086,70.1044921875,82.17760467529297,85.04132843017578,94.87928009033203,75.59907531738281,78.94309997558594,85.98204803466797,86.83291625976562,86.97249603271484,82.64927673339844,88.35948944091797,82.44042205810547,79.19202423095703,81.34465789794922,82.41021728515625,83.42652130126953,62.183406829833984,88.6460189819336,91.06781005859375,82.47352600097656,72.02857971191406,79.00308227539062,86.4109878540039,78.57061004638672,54.49174118041992,80.99335479736328,75.399169921875,85.84790802001953,73.95211791992188,95.45014953613281,82.67633819580078,78.50782012939453,79.41998291015625,74.8861312866211,74.56243896484375,73.82545471191406,93.93872833251953,59.364959716796875,86.1270751953125,83.24060821533203,82.13726043701172,77.71408081054688,72.2679214477539,85.92285919189453,73.73065185546875,76.33065795898438,86.54827880859375,78.87451171875,82.52897644042969,75.71754455566406,75.40174865722656,87.13667297363281,87.54469299316406,74.81610107421875,79.14335632324219,77.57627868652344 -2947,83.20551300048828,87.77079010009766,87.5394058227539,75.12188720703125,93.34207153320312,85.65692138671875,75.8631362915039,87.1595687866211,77.88787841796875,73.04215240478516,83.10767364501953,82.4024658203125,89.71239471435547,92.20040130615234,84.35138702392578,79.38014221191406,83.59982299804688,73.13896179199219,68.69518280029297,78.56074523925781,92.38687133789062,71.9952163696289,80.20486450195312,81.83870697021484,68.4856948852539,81.08470153808594,88.89678192138672,83.56624603271484,77.11146545410156,77.9312515258789,72.28787994384766,73.93204498291016,77.35865783691406,87.52275085449219,85.62680053710938,80.76703643798828,65.39124298095703,84.48308563232422,80.6744155883789,78.79794311523438,74.02639770507812,67.47773742675781,77.57755279541016,77.62030792236328,86.91259765625,84.77860260009766,95.6620864868164,74.77317810058594,79.64183807373047,91.06686401367188,84.105712890625,94.63566589355469,80.8351821899414,87.89555358886719,73.47966766357422,79.57562255859375,84.21060943603516,78.231689453125,88.72174835205078,82.67411041259766,59.01357650756836,86.06597137451172,78.32817840576172,84.39973449707031,81.40762329101562,83.12609100341797,73.03558349609375,83.92695617675781,71.5479507446289,84.88471984863281,76.49138641357422,91.71683502197266,76.50037384033203,64.8475341796875,69.10128021240234,91.66051483154297,89.25273132324219,86.8531265258789,84.13797760009766,78.59457397460938,77.72017669677734,75.30364227294922,87.6898422241211,77.07708740234375,80.72996520996094,80.89644622802734,88.27934265136719,79.5943603515625,83.86709594726562,84.45856475830078,73.36183166503906,84.3178939819336,75.64362335205078,81.07154846191406,75.5316162109375,80.04730987548828,74.79340362548828,58.95014953613281,80.44603729248047,92.07099151611328,69.66797637939453,84.01746368408203,85.9974136352539,69.25211334228516,65.67205810546875,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,77.2332763671875,89.24688720703125,73.90865325927734,78.9232406616211,82.46380615234375,81.03311157226562,75.78797149658203,86.69562530517578,70.3200454711914,71.30338287353516,78.03976440429688,86.21198272705078,82.86467742919922,87.4146499633789,63.264862060546875,83.04767608642578,62.45469665527344,85.11389923095703,78.885009765625,82.42676544189453,80.13019561767578,88.68423461914062,79.0793228149414,80.53803253173828,74.9561996459961,77.4840316772461,84.08781433105469,67.25184631347656,72.7940444946289,64.40564727783203,94.20576477050781,97.24546813964844,71.28504180908203,73.323486328125,78.88143157958984,74.21167755126953,93.06427764892578,79.00807189941406,86.63944244384766,76.97278594970703,91.33832550048828,81.29253387451172,81.3064956665039,80.38382720947266,83.20281982421875,89.71232604980469,76.54570007324219,89.78910827636719,91.44480895996094,84.19025421142578,80.6911849975586,82.55696868896484,77.05792999267578,91.86296081542969,66.98336029052734,100.61546325683594,90.86178588867188,75.6903076171875,85.89871215820312,83.9814224243164,91.75910186767578,79.96623992919922,77.81607055664062,86.21163177490234,83.7840347290039,95.90576171875,79.11170196533203,75.13591003417969,81.0743179321289,86.32902526855469,85.46558380126953,77.27806854248047,87.18069458007812,85.96202087402344,76.49671936035156,87.97949981689453,80.86122131347656,87.22900390625,79.9399642944336,57.38138961791992,74.62786865234375,73.65711212158203,70.37187957763672,70.66338348388672,81.30575561523438,85.04132843017578,94.87928009033203,75.9751968383789,78.94309997558594,85.98204803466797,86.21699523925781,86.99518585205078,82.32120513916016,88.35948944091797,84.79698181152344,79.19602966308594,81.34465789794922,82.41021728515625,83.0670394897461,62.183406829833984,88.6460189819336,91.00235748291016,82.47352600097656,72.05335235595703,79.00308227539062,86.4109878540039,78.57061004638672,54.49174118041992,81.82787322998047,75.41316986083984,85.84790802001953,73.95211791992188,94.1087646484375,82.67633819580078,77.30594635009766,79.41998291015625,74.8861312866211,74.56243896484375,73.82545471191406,93.93872833251953,59.364959716796875,86.1270751953125,83.24060821533203,80.11933135986328,77.71408081054688,72.60218048095703,85.92285919189453,73.73065185546875,77.13500213623047,86.54827880859375,78.87451171875,82.52897644042969,75.71754455566406,75.40174865722656,87.13667297363281,87.54469299316406,74.81610107421875,79.87740325927734,77.57627868652344 -2948,83.20551300048828,87.77079010009766,87.5394058227539,75.12188720703125,93.34207153320312,85.65692138671875,75.9055404663086,87.1595687866211,77.88787841796875,73.04215240478516,83.5765609741211,82.4024658203125,89.71239471435547,92.42931365966797,83.15375518798828,79.46228790283203,83.59982299804688,73.13896179199219,68.69518280029297,78.56074523925781,92.38687133789062,72.21854400634766,80.99933624267578,81.83870697021484,68.4856948852539,81.08470153808594,88.46231079101562,83.56624603271484,77.11146545410156,77.87549591064453,72.28787994384766,73.54703521728516,77.35865783691406,87.52275085449219,85.48551177978516,80.76703643798828,64.97888946533203,84.48308563232422,80.6744155883789,78.52255249023438,74.1752700805664,67.47773742675781,77.2040786743164,77.62030792236328,86.91259765625,84.77860260009766,95.6620864868164,74.74259948730469,79.64183807373047,91.06686401367188,84.22116088867188,94.63566589355469,80.8351821899414,87.89555358886719,73.47966766357422,79.57562255859375,84.21060943603516,78.231689453125,88.72174835205078,82.67411041259766,59.364044189453125,85.90068054199219,78.32817840576172,84.39973449707031,81.40762329101562,83.12609100341797,73.0274887084961,83.92695617675781,71.5479507446289,86.77461242675781,76.38361358642578,91.71683502197266,76.50037384033203,64.8475341796875,69.10128021240234,91.94621276855469,89.25273132324219,86.8531265258789,84.13797760009766,78.59457397460938,77.72017669677734,75.30364227294922,87.6898422241211,77.07708740234375,80.72996520996094,80.85712432861328,88.27934265136719,79.5943603515625,83.86709594726562,84.45856475830078,73.36183166503906,84.3178939819336,75.64362335205078,81.07154846191406,75.5316162109375,80.04730987548828,76.94131469726562,58.95014953613281,80.44603729248047,92.07099151611328,69.66797637939453,84.01746368408203,85.9974136352539,69.25211334228516,64.00060272216797,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,77.2332763671875,88.97509765625,73.90865325927734,77.54002380371094,84.37187194824219,82.10421752929688,75.78797149658203,86.69562530517578,70.3200454711914,70.30963897705078,78.3768539428711,86.21198272705078,82.86467742919922,87.4146499633789,63.722381591796875,82.81268310546875,62.45469665527344,85.11389923095703,78.885009765625,82.42676544189453,80.51912689208984,88.04147338867188,79.1379623413086,79.68521881103516,74.9561996459961,76.62568664550781,84.08781433105469,67.25184631347656,72.7940444946289,64.40564727783203,94.20576477050781,97.24546813964844,71.28504180908203,73.323486328125,83.185546875,70.62532806396484,93.06427764892578,78.8874282836914,86.5888442993164,76.97278594970703,91.33832550048828,81.29253387451172,81.3064956665039,80.2193832397461,83.20281982421875,89.71232604980469,76.29793548583984,89.78910827636719,91.44480895996094,84.19025421142578,80.6911849975586,82.55696868896484,77.05792999267578,91.86296081542969,71.97071838378906,101.08558654785156,90.86178588867188,75.6903076171875,86.82891845703125,83.9814224243164,92.09159088134766,79.96623992919922,77.81607055664062,88.00468444824219,83.7840347290039,95.90576171875,80.1972885131836,75.11526489257812,81.0743179321289,86.32902526855469,85.46558380126953,77.27806854248047,89.42884063720703,85.93318176269531,76.60542297363281,87.97949981689453,80.86122131347656,87.22900390625,79.9399642944336,57.38138961791992,74.1853256225586,73.24190521240234,70.37187957763672,70.66338348388672,81.30575561523438,85.04132843017578,94.04788970947266,75.9751968383789,78.98445892333984,85.1716079711914,85.09120178222656,86.99518585205078,82.48674774169922,88.35948944091797,84.79698181152344,79.19602966308594,80.66251373291016,82.41021728515625,83.0670394897461,62.183406829833984,88.23199462890625,91.62084197998047,82.47352600097656,72.05335235595703,79.38888549804688,86.4109878540039,78.57061004638672,54.49174118041992,81.82787322998047,75.41316986083984,85.84790802001953,73.95211791992188,94.3331527709961,82.67633819580078,77.30594635009766,79.41998291015625,74.8861312866211,74.56243896484375,73.82545471191406,93.93872833251953,59.7657470703125,86.5014877319336,83.24060821533203,79.83928680419922,77.71408081054688,72.60218048095703,87.63288879394531,73.73065185546875,73.48592376708984,88.34209442138672,78.87451171875,82.52897644042969,75.71754455566406,75.40174865722656,87.13667297363281,87.54469299316406,74.81610107421875,79.87740325927734,77.57627868652344 -2949,83.10706329345703,87.77079010009766,87.5394058227539,75.12188720703125,92.27230072021484,85.65692138671875,75.9055404663086,87.1595687866211,77.88787841796875,73.04215240478516,83.5765609741211,81.60318756103516,89.71239471435547,93.16038513183594,84.97068786621094,79.09136199951172,83.59982299804688,73.1104736328125,68.62342071533203,78.62283325195312,92.38687133789062,72.21854400634766,79.6817398071289,81.83870697021484,68.4856948852539,81.08470153808594,88.46231079101562,83.74008178710938,77.11146545410156,77.87549591064453,72.34918212890625,73.83075714111328,77.28817749023438,87.52275085449219,85.0921630859375,80.76703643798828,64.97888946533203,84.48308563232422,80.6744155883789,78.52255249023438,74.1752700805664,67.47773742675781,77.2040786743164,77.62030792236328,86.91259765625,84.77860260009766,95.54556274414062,74.74259948730469,79.64183807373047,91.06686401367188,83.17007446289062,94.63566589355469,80.86955261230469,87.95144653320312,73.86309051513672,79.45367431640625,84.21060943603516,78.4026107788086,89.1380844116211,82.67411041259766,59.364044189453125,86.09544372558594,77.06338500976562,84.39973449707031,81.22954559326172,83.12609100341797,72.78385925292969,83.92695617675781,71.5479507446289,86.77461242675781,76.48077392578125,93.04517364501953,76.50037384033203,65.0687255859375,68.94002532958984,91.94621276855469,89.25273132324219,87.36058807373047,81.8956069946289,78.59457397460938,77.72017669677734,75.30364227294922,87.6898422241211,77.07708740234375,80.72996520996094,81.2245101928711,88.27934265136719,79.5943603515625,83.86709594726562,83.69245910644531,73.36183166503906,84.3178939819336,74.55978393554688,81.07154846191406,75.68506622314453,79.18142700195312,75.85664367675781,60.0162467956543,80.44603729248047,95.00305938720703,69.66797637939453,82.03250122070312,85.9974136352539,69.25211334228516,65.91371154785156,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,75.93463897705078,89.82987213134766,73.90865325927734,77.54002380371094,82.43042755126953,82.10421752929688,74.98851013183594,86.69562530517578,70.00463104248047,70.89237976074219,78.3768539428711,86.21198272705078,82.86467742919922,87.4146499633789,64.34021759033203,82.81268310546875,62.45469665527344,85.11389923095703,78.885009765625,85.29003143310547,81.17179870605469,88.04147338867188,79.1379623413086,79.68521881103516,76.23578643798828,76.62568664550781,84.08781433105469,67.25184631347656,71.65701293945312,64.40564727783203,93.57698822021484,97.24546813964844,70.01850891113281,71.72879028320312,79.3585205078125,69.6053695678711,93.06427764892578,78.8874282836914,86.36421203613281,76.97278594970703,93.01744079589844,81.28754425048828,81.3064956665039,80.2193832397461,83.20281982421875,89.71232604980469,76.29793548583984,89.78910827636719,91.44480895996094,84.19025421142578,80.6911849975586,82.55696868896484,77.05792999267578,91.86296081542969,72.60682678222656,101.08558654785156,90.86178588867188,71.52526092529297,86.82891845703125,83.9814224243164,92.09159088134766,79.96623992919922,77.81607055664062,88.00468444824219,83.7840347290039,95.90576171875,80.1972885131836,75.11526489257812,83.6451187133789,86.32902526855469,85.46558380126953,77.27806854248047,89.42884063720703,85.93318176269531,76.60542297363281,87.97949981689453,80.86122131347656,86.79047393798828,79.9399642944336,58.17863082885742,74.1853256225586,73.24190521240234,70.37187957763672,70.66338348388672,81.30575561523438,84.94377136230469,94.32575225830078,75.99662017822266,78.98445892333984,82.02599334716797,85.09120178222656,86.99518585205078,83.04730987548828,88.47067260742188,84.79698181152344,79.19602966308594,80.66251373291016,82.41021728515625,83.0670394897461,62.183406829833984,88.23199462890625,91.62084197998047,82.47352600097656,72.05335235595703,78.83255004882812,86.4109878540039,78.57061004638672,54.49174118041992,81.82787322998047,75.3917465209961,86.4158706665039,73.95211791992188,94.56291961669922,82.98272705078125,77.30594635009766,79.41998291015625,74.8861312866211,74.56243896484375,73.82545471191406,93.93872833251953,59.7657470703125,86.5014877319336,83.24060821533203,82.7156753540039,77.71408081054688,72.60218048095703,88.9432601928711,73.73065185546875,73.48592376708984,88.34209442138672,78.87451171875,82.52897644042969,75.71754455566406,75.40174865722656,87.13667297363281,87.51161193847656,75.57854461669922,79.87740325927734,77.57627868652344 -2950,83.22814178466797,87.77079010009766,87.2544937133789,74.99942779541016,92.27230072021484,85.65692138671875,75.9055404663086,87.1595687866211,77.78750610351562,73.04215240478516,83.5765609741211,81.60318756103516,89.71239471435547,93.16038513183594,84.97068786621094,79.40992736816406,83.59982299804688,73.01893615722656,68.62342071533203,78.62283325195312,92.17992401123047,72.21854400634766,79.6817398071289,81.83870697021484,68.4856948852539,81.08470153808594,87.54971313476562,83.74008178710938,77.11146545410156,77.87549591064453,72.38457489013672,73.83075714111328,77.28817749023438,87.52275085449219,85.0921630859375,80.76703643798828,65.67389678955078,84.48308563232422,80.37333679199219,78.52255249023438,74.1752700805664,67.40670013427734,77.2040786743164,77.62030792236328,86.91259765625,84.77860260009766,95.54556274414062,74.65119934082031,79.64183807373047,91.06686401367188,83.17007446289062,94.07534790039062,80.8240966796875,87.95144653320312,73.10125732421875,79.45367431640625,84.21060943603516,78.29478454589844,89.1380844116211,82.67411041259766,59.364044189453125,86.09544372558594,77.06338500976562,84.39973449707031,81.22954559326172,83.42742156982422,72.78385925292969,83.92695617675781,71.5479507446289,86.77461242675781,76.48116302490234,93.04517364501953,76.50037384033203,65.0687255859375,68.94002532958984,91.94621276855469,89.25273132324219,87.3016128540039,81.8956069946289,77.53543090820312,77.72017669677734,75.30364227294922,87.6898422241211,76.76114654541016,80.71604919433594,80.90949249267578,88.27934265136719,79.5943603515625,83.86709594726562,83.69245910644531,73.36183166503906,85.06448364257812,78.35607147216797,79.07649993896484,75.68506622314453,79.18142700195312,75.85664367675781,60.0162467956543,80.30018615722656,94.88517761230469,69.66797637939453,84.71882629394531,85.9974136352539,69.25211334228516,65.91371154785156,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,75.93463897705078,84.52117919921875,73.97265625,77.54002380371094,81.70050811767578,82.10421752929688,74.98851013183594,88.06061553955078,70.00463104248047,72.1846694946289,78.3768539428711,86.21198272705078,81.27470397949219,87.4146499633789,64.34021759033203,82.87075805664062,62.45469665527344,85.11389923095703,78.885009765625,85.29003143310547,80.67539978027344,88.04147338867188,79.1379623413086,80.3722152709961,75.68638610839844,76.85651397705078,84.08781433105469,67.25184631347656,71.65701293945312,66.241455078125,84.6919937133789,88.21356201171875,70.01850891113281,71.72879028320312,79.69618225097656,69.6053695678711,89.42273712158203,76.26204681396484,86.36421203613281,76.97278594970703,93.01744079589844,81.27357482910156,84.10938262939453,80.4873275756836,83.20281982421875,89.71232604980469,76.29793548583984,89.78910827636719,91.44480895996094,84.19025421142578,80.6911849975586,82.55696868896484,77.05792999267578,91.86296081542969,72.60682678222656,101.08558654785156,90.86178588867188,71.52526092529297,86.82891845703125,83.9814224243164,92.05126953125,79.96623992919922,78.70781707763672,88.00468444824219,81.78630065917969,94.22994995117188,80.1972885131836,75.11526489257812,83.6451187133789,86.32902526855469,85.46558380126953,77.27806854248047,89.42884063720703,85.93318176269531,76.65614318847656,87.97949981689453,80.86122131347656,86.79047393798828,79.9399642944336,58.15927505493164,74.1853256225586,73.24190521240234,70.37187957763672,70.66338348388672,81.30575561523438,85.06278228759766,94.32575225830078,75.99662017822266,78.28956604003906,80.9692611694336,85.09120178222656,85.4874038696289,83.04730987548828,90.13871765136719,84.79698181152344,79.19602966308594,80.66251373291016,82.41021728515625,83.0670394897461,62.183406829833984,88.23199462890625,91.62084197998047,82.47352600097656,72.05335235595703,78.83255004882812,86.4109878540039,77.52067565917969,54.49174118041992,79.92393493652344,75.3917465209961,86.4158706665039,74.10431671142578,94.38849639892578,82.98272705078125,77.30594635009766,79.41998291015625,74.8861312866211,74.56243896484375,73.82545471191406,93.93872833251953,59.72722625732422,86.5014877319336,83.95317077636719,82.95751190185547,77.71408081054688,72.61013793945312,88.9432601928711,73.73065185546875,74.75505828857422,87.54946899414062,78.87451171875,85.72811889648438,75.20671081542969,75.40174865722656,87.13667297363281,87.51161193847656,75.76840209960938,79.87740325927734,77.57627868652344 -2951,83.22814178466797,88.30372619628906,87.2544937133789,74.99942779541016,92.27230072021484,85.65692138671875,75.9055404663086,87.1595687866211,77.78750610351562,72.69507598876953,82.08802795410156,81.60318756103516,89.71239471435547,93.16038513183594,84.75981903076172,79.40992736816406,83.59982299804688,73.06986999511719,68.62342071533203,78.62283325195312,92.17992401123047,71.95331573486328,79.6817398071289,81.83870697021484,68.90480041503906,80.16390991210938,88.9082260131836,83.48687744140625,77.26290893554688,77.87549591064453,72.38457489013672,74.3155517578125,77.28817749023438,87.52275085449219,85.0921630859375,80.76703643798828,65.67389678955078,84.48308563232422,80.47947692871094,78.52255249023438,74.1752700805664,67.46290588378906,77.43408966064453,77.62030792236328,86.91259765625,84.77860260009766,96.45819091796875,74.65119934082031,79.64183807373047,91.06686401367188,83.17007446289062,93.40360260009766,80.8240966796875,87.49718475341797,73.90731048583984,79.45367431640625,84.21060943603516,78.17166137695312,89.1380844116211,82.67411041259766,59.364044189453125,86.37052917480469,77.0008773803711,83.7784423828125,81.22954559326172,83.10590362548828,72.93891906738281,83.92695617675781,71.5479507446289,86.77461242675781,76.48116302490234,93.04517364501953,76.50037384033203,64.68284606933594,68.94002532958984,92.75962829589844,89.22399139404297,86.20622253417969,82.25469207763672,77.53543090820312,77.72017669677734,75.30364227294922,87.35260009765625,77.00447845458984,80.71604919433594,80.90949249267578,89.75530242919922,79.65728759765625,83.86709594726562,83.69245910644531,73.36183166503906,85.06448364257812,78.35607147216797,79.07649993896484,75.68506622314453,79.18142700195312,76.23059844970703,60.0162467956543,80.50881958007812,91.18705749511719,68.39418029785156,89.01834869384766,86.3782958984375,69.25211334228516,65.91371154785156,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,75.93463897705078,84.52117919921875,73.97265625,75.31194305419922,81.70050811767578,82.10421752929688,74.98851013183594,88.36683654785156,70.00463104248047,72.1846694946289,78.3768539428711,86.21198272705078,77.80379486083984,87.4146499633789,64.34021759033203,82.87075805664062,62.45740509033203,85.11389923095703,78.885009765625,85.29003143310547,80.64202880859375,88.04147338867188,78.8879165649414,78.59160614013672,75.68638610839844,76.85651397705078,84.08781433105469,67.25184631347656,71.65701293945312,66.241455078125,84.6919937133789,88.21356201171875,70.01850891113281,72.5677261352539,82.45159912109375,69.6053695678711,89.40807342529297,76.26204681396484,86.36421203613281,76.97278594970703,93.01744079589844,81.27357482910156,83.63514709472656,80.4873275756836,83.23853302001953,88.86639404296875,76.29793548583984,89.78910827636719,91.44480895996094,84.19025421142578,80.6911849975586,82.55696868896484,77.05792999267578,91.86296081542969,75.29955291748047,102.67971801757812,93.31615447998047,71.52526092529297,86.82891845703125,83.9814224243164,92.05126953125,79.96623992919922,78.70781707763672,88.00468444824219,84.32691192626953,92.99815368652344,79.42957305908203,74.96051788330078,83.6451187133789,86.32902526855469,86.01932525634766,77.27806854248047,89.42884063720703,86.13518524169922,76.65614318847656,83.7542724609375,80.86122131347656,86.79047393798828,79.9399642944336,58.15927505493164,74.14803314208984,74.2068099975586,70.37187957763672,70.66338348388672,81.30575561523438,85.06278228759766,94.32575225830078,75.99662017822266,78.34994506835938,80.2669906616211,85.67420959472656,85.4874038696289,83.05056762695312,90.13871765136719,84.33081817626953,79.19602966308594,80.66251373291016,82.41021728515625,83.0670394897461,62.183406829833984,88.23199462890625,91.62084197998047,82.47352600097656,72.05335235595703,78.83255004882812,87.2894058227539,77.52067565917969,54.49174118041992,83.10804748535156,75.3917465209961,84.1362533569336,74.10431671142578,94.38849639892578,82.98272705078125,78.62814331054688,79.41998291015625,74.8861312866211,74.57902526855469,73.82545471191406,93.93872833251953,59.72722625732422,86.5014877319336,83.95317077636719,82.95751190185547,77.68980407714844,72.61013793945312,88.9432601928711,73.73065185546875,75.35883331298828,87.54946899414062,78.87451171875,82.42545318603516,75.20671081542969,75.40174865722656,87.13667297363281,87.30927276611328,75.76840209960938,79.87740325927734,77.57627868652344 -2952,83.00579833984375,88.30372619628906,87.2544937133789,74.99942779541016,92.27230072021484,85.65692138671875,75.9055404663086,92.0521469116211,77.78750610351562,72.69507598876953,82.49317169189453,81.5354232788086,89.71239471435547,93.16038513183594,85.25287628173828,79.40992736816406,81.82929992675781,73.06986999511719,68.73275756835938,78.49297332763672,92.17992401123047,71.95331573486328,79.6817398071289,81.83870697021484,68.90480041503906,80.16390991210938,87.68832397460938,83.48687744140625,77.26290893554688,77.87549591064453,72.38457489013672,74.3797836303711,77.28817749023438,87.52275085449219,82.59261322021484,80.76703643798828,65.67389678955078,84.269775390625,80.47947692871094,78.52255249023438,74.1752700805664,67.46290588378906,77.43408966064453,77.62030792236328,86.92623901367188,87.00838470458984,96.45819091796875,74.65119934082031,79.64183807373047,91.06686401367188,83.17007446289062,91.05368041992188,80.8240966796875,87.49718475341797,73.90731048583984,79.45367431640625,84.21060943603516,78.17166137695312,89.1380844116211,82.67411041259766,60.657527923583984,86.37052917480469,79.8110580444336,83.7784423828125,81.22954559326172,83.10590362548828,72.69728088378906,83.92695617675781,71.5479507446289,86.77461242675781,76.41829681396484,93.04517364501953,77.03453063964844,65.0040054321289,68.94002532958984,92.75962829589844,89.22399139404297,86.20622253417969,82.25469207763672,77.53543090820312,77.54117584228516,75.30364227294922,87.08503723144531,77.00447845458984,80.95576477050781,80.90949249267578,86.57135009765625,79.6815185546875,84.52908325195312,83.69245910644531,73.36183166503906,85.06448364257812,78.35607147216797,79.07649993896484,75.68506622314453,79.18142700195312,76.23059844970703,60.833866119384766,80.50881958007812,91.18705749511719,68.39418029785156,89.01834869384766,86.13359069824219,69.52420043945312,65.91371154785156,80.86516571044922,80.6514663696289,75.65035247802734,72.1312026977539,75.93463897705078,83.97239685058594,73.19829559326172,75.31194305419922,81.70050811767578,82.10421752929688,74.98851013183594,88.36683654785156,70.00463104248047,72.83500671386719,78.3768539428711,86.21198272705078,77.80379486083984,87.4146499633789,64.34021759033203,82.87075805664062,62.53036880493164,85.11389923095703,78.885009765625,85.29003143310547,82.39433288574219,88.04147338867188,78.8879165649414,78.59160614013672,75.24921417236328,75.1836166381836,84.08781433105469,67.25184631347656,71.65701293945312,66.241455078125,80.93548583984375,88.21356201171875,70.70243835449219,72.5677261352539,82.45159912109375,69.6053695678711,89.40807342529297,76.26204681396484,86.36421203613281,77.33883666992188,94.6175765991211,81.27357482910156,83.63514709472656,80.4873275756836,83.23853302001953,88.86639404296875,77.2100601196289,89.78910827636719,91.44480895996094,84.19025421142578,80.6911849975586,82.55696868896484,77.05792999267578,91.86296081542969,73.31256103515625,102.58850860595703,93.31615447998047,71.52526092529297,86.82891845703125,82.9181137084961,93.5394515991211,79.96623992919922,78.70781707763672,88.1071548461914,84.32691192626953,92.99815368652344,79.42957305908203,75.42365264892578,83.6451187133789,86.32902526855469,85.36723327636719,77.27806854248047,89.42884063720703,85.63480377197266,76.65614318847656,83.7542724609375,80.86122131347656,86.79047393798828,79.9399642944336,58.47738265991211,75.9212417602539,73.8816146850586,70.37187957763672,70.66338348388672,81.30575561523438,85.06278228759766,94.32575225830078,75.5266342163086,78.34994506835938,82.39476776123047,85.67420959472656,85.4874038696289,82.22187042236328,90.13871765136719,84.64396667480469,79.19602966308594,80.66251373291016,82.41021728515625,83.0670394897461,62.40595626831055,88.23199462890625,91.62084197998047,82.47352600097656,72.05335235595703,78.83255004882812,87.2894058227539,77.52067565917969,54.49174118041992,83.10804748535156,75.3917465209961,85.89031219482422,74.10431671142578,94.38849639892578,82.98272705078125,78.62814331054688,81.08749389648438,74.8861312866211,74.57902526855469,73.82545471191406,93.93872833251953,59.42533493041992,86.5014877319336,83.95317077636719,85.04348754882812,78.17000579833984,72.61013793945312,88.57306671142578,73.73065185546875,74.18775177001953,87.54946899414062,78.87451171875,82.42545318603516,75.20671081542969,75.40174865722656,87.13667297363281,87.30927276611328,75.76840209960938,78.70783996582031,79.15547943115234 -2953,83.00579833984375,88.4847640991211,87.1180191040039,74.55009460449219,91.61917877197266,85.65692138671875,75.74854278564453,92.0521469116211,77.78750610351562,72.69507598876953,82.49317169189453,81.5354232788086,87.98377990722656,93.16038513183594,85.25287628173828,79.40992736816406,84.0927734375,73.06986999511719,68.73275756835938,78.49297332763672,92.29499053955078,71.95331573486328,78.72154235839844,81.83870697021484,68.90480041503906,80.16390991210938,87.68832397460938,83.48687744140625,77.17445373535156,77.87549591064453,72.13276672363281,74.3797836303711,77.28817749023438,87.52275085449219,85.05586242675781,80.76703643798828,65.67389678955078,84.269775390625,80.47947692871094,78.52255249023438,74.1752700805664,67.46290588378906,77.45809173583984,77.17278289794922,87.22163391113281,87.26554870605469,96.45819091796875,74.65119934082031,79.64183807373047,91.06686401367188,82.96867370605469,91.05368041992188,80.8240966796875,87.49718475341797,73.90731048583984,79.23902893066406,85.40888977050781,78.1806640625,89.1380844116211,82.67411041259766,61.130340576171875,86.37052917480469,79.15444946289062,83.7784423828125,82.7322998046875,83.12777709960938,72.69728088378906,82.7278060913086,71.5479507446289,86.65191650390625,76.41829681396484,93.04517364501953,77.03453063964844,65.0040054321289,68.94002532958984,92.75962829589844,89.22399139404297,86.20622253417969,82.25469207763672,77.53543090820312,77.54117584228516,75.30364227294922,87.08503723144531,77.00447845458984,80.69365692138672,80.90949249267578,86.57135009765625,79.75410461425781,84.52908325195312,83.69245910644531,73.36183166503906,85.06448364257812,78.35607147216797,79.07649993896484,75.68506622314453,79.18142700195312,76.23059844970703,60.833866119384766,80.50881958007812,87.85611724853516,69.13823699951172,87.11026000976562,86.13359069824219,69.52420043945312,69.88487243652344,80.86516571044922,80.6514663696289,76.26493072509766,72.1312026977539,75.93463897705078,85.36361694335938,72.25310516357422,75.31194305419922,80.68282318115234,82.10421752929688,73.7275619506836,89.42500305175781,70.00463104248047,70.71720886230469,78.3768539428711,86.21198272705078,77.80379486083984,87.4146499633789,64.34021759033203,81.82730102539062,62.53036880493164,86.98880767822266,78.885009765625,85.29003143310547,82.14777374267578,87.28563690185547,78.8879165649414,83.57968139648438,75.24921417236328,72.94728088378906,84.08781433105469,67.25184631347656,71.65701293945312,66.241455078125,80.93548583984375,88.21356201171875,68.60551452636719,72.5677261352539,77.2878189086914,70.4010238647461,89.40807342529297,76.26204681396484,86.36421203613281,77.33883666992188,94.3292465209961,81.27357482910156,83.63514709472656,80.28466033935547,83.23853302001953,88.86639404296875,77.2100601196289,89.78910827636719,91.44480895996094,84.19025421142578,80.6288070678711,82.55696868896484,77.05792999267578,91.86296081542969,73.31256103515625,98.5069580078125,92.93692779541016,73.39315795898438,86.82891845703125,84.1455307006836,93.41593170166016,79.96623992919922,78.70781707763672,86.96852111816406,84.32691192626953,95.54886627197266,79.59386444091797,75.42365264892578,83.6451187133789,86.32902526855469,85.36723327636719,77.27806854248047,91.69834899902344,85.63480377197266,76.65614318847656,83.46187591552734,78.9043960571289,86.79047393798828,79.9399642944336,57.21133804321289,77.36279296875,72.91593933105469,70.37187957763672,70.66338348388672,81.30575561523438,85.06278228759766,94.32575225830078,75.5266342163086,78.34994506835938,83.41890716552734,85.67420959472656,84.15386962890625,82.22187042236328,90.13871765136719,82.67503356933594,79.19602966308594,80.66251373291016,82.41021728515625,83.0670394897461,62.40595626831055,88.23199462890625,91.62084197998047,82.47352600097656,72.1069564819336,78.83255004882812,87.2894058227539,77.52067565917969,54.49174118041992,82.4281005859375,75.3917465209961,85.89031219482422,75.95052337646484,92.49659729003906,82.98272705078125,78.62814331054688,80.72029113769531,74.8861312866211,74.54499816894531,71.11570739746094,96.37774658203125,59.61569595336914,86.5014877319336,84.23936462402344,83.8801498413086,78.17000579833984,72.61013793945312,88.57306671142578,73.73065185546875,74.18775177001953,87.54946899414062,78.87451171875,82.42545318603516,75.20671081542969,75.40174865722656,86.93667602539062,87.30927276611328,75.76840209960938,78.70783996582031,76.61605072021484 -2954,83.00579833984375,88.69905090332031,87.0792007446289,74.55009460449219,91.61917877197266,85.34545135498047,76.03562927246094,92.0521469116211,77.78750610351562,72.69507598876953,82.49317169189453,81.5354232788086,87.98377990722656,92.46495056152344,85.25287628173828,79.5645523071289,84.0927734375,73.06986999511719,69.04364776611328,78.49297332763672,92.559326171875,71.76935577392578,78.72154235839844,81.46675872802734,68.90480041503906,81.29163360595703,87.3078384399414,84.06156158447266,77.17445373535156,77.87549591064453,72.1598129272461,74.3797836303711,77.28817749023438,87.52275085449219,84.47150421142578,80.76703643798828,64.9052734375,84.1333999633789,80.47947692871094,78.52255249023438,74.1752700805664,67.35459899902344,77.51313018798828,77.17278289794922,87.22163391113281,87.26554870605469,94.16570281982422,74.65119934082031,79.64183807373047,91.06686401367188,82.72199249267578,93.66638946533203,80.77054595947266,87.49718475341797,73.90731048583984,79.23902893066406,83.43537902832031,78.1806640625,89.17172241210938,82.67411041259766,61.130340576171875,86.37052917480469,79.63213348388672,83.7784423828125,82.7322998046875,83.12777709960938,72.69728088378906,82.7278060913086,71.5479507446289,86.67589569091797,76.64460754394531,93.04517364501953,77.03453063964844,65.0040054321289,68.94002532958984,92.75962829589844,89.22399139404297,86.55474090576172,86.3543701171875,77.48973846435547,77.54117584228516,75.30364227294922,87.25952911376953,77.00447845458984,80.69365692138672,80.90949249267578,86.57135009765625,79.75410461425781,84.26296997070312,84.56895446777344,73.43511962890625,85.06448364257812,78.35607147216797,79.07649993896484,75.68506622314453,79.18142700195312,76.23059844970703,60.833866119384766,80.50881958007812,87.85611724853516,69.13823699951172,87.11026000976562,86.13359069824219,69.52420043945312,69.88487243652344,80.86516571044922,80.6514663696289,73.62623596191406,72.1312026977539,77.8456802368164,85.36361694335938,72.25310516357422,77.4010238647461,81.13707733154297,82.10421752929688,73.7275619506836,89.42500305175781,70.00463104248047,70.71720886230469,78.3768539428711,86.21198272705078,80.65666961669922,87.4146499633789,64.34021759033203,81.82730102539062,62.23924255371094,86.98880767822266,78.74404907226562,82.85166931152344,81.6968002319336,87.28563690185547,79.13429260253906,80.00677490234375,74.90018463134766,72.94728088378906,84.08781433105469,67.25184631347656,71.65701293945312,66.241455078125,82.79957580566406,88.21356201171875,72.65507507324219,72.5677261352539,77.2878189086914,70.4010238647461,87.43462371826172,76.26204681396484,86.36421203613281,77.33883666992188,94.3292465209961,81.27357482910156,83.63514709472656,80.28466033935547,83.23853302001953,91.37858581542969,77.2100601196289,88.11732482910156,91.44480895996094,84.19025421142578,80.6288070678711,82.55696868896484,77.05792999267578,91.86296081542969,72.61895751953125,106.9088363647461,92.93692779541016,72.16471099853516,86.82891845703125,84.1455307006836,91.02484130859375,79.96623992919922,78.70781707763672,86.96852111816406,84.32691192626953,94.88851928710938,81.71842956542969,75.42365264892578,83.6451187133789,86.32902526855469,85.07269287109375,76.4298095703125,91.69834899902344,87.81072998046875,76.65614318847656,83.46187591552734,78.9043960571289,86.79047393798828,78.99800109863281,57.21133804321289,76.08708190917969,72.86211395263672,70.37187957763672,70.66338348388672,81.30575561523438,85.06278228759766,94.32575225830078,75.5266342163086,78.34994506835938,85.51885223388672,85.67420959472656,84.15386962890625,82.22187042236328,90.13871765136719,83.15084838867188,79.19602966308594,78.34569549560547,82.41021728515625,83.0670394897461,62.40595626831055,87.66972351074219,92.00911712646484,81.9093017578125,72.1069564819336,79.28398895263672,87.8809585571289,79.08199310302734,53.344085693359375,82.4281005859375,75.3917465209961,87.17015838623047,73.82672119140625,91.00811767578125,82.98272705078125,78.62814331054688,80.72029113769531,74.8861312866211,74.54499816894531,71.11570739746094,96.37774658203125,59.41991424560547,86.42036437988281,81.29985809326172,81.47110748291016,78.17000579833984,72.75337982177734,88.37671661376953,73.73065185546875,74.5412826538086,86.34481811523438,78.7465591430664,82.42545318603516,74.1660385131836,75.40174865722656,86.93667602539062,87.24253845214844,75.76840209960938,78.70783996582031,76.61605072021484 -2955,83.00579833984375,88.88418579101562,87.0792007446289,73.5935287475586,91.61917877197266,85.34545135498047,76.03562927246094,92.0521469116211,77.17449188232422,72.69507598876953,84.14198303222656,81.5354232788086,87.98377990722656,92.95978546142578,83.71421813964844,79.5645523071289,84.0927734375,73.06986999511719,69.04364776611328,78.49297332763672,92.559326171875,71.76935577392578,79.911376953125,81.46675872802734,68.90480041503906,81.29163360595703,87.3078384399414,83.34988403320312,77.17445373535156,77.8980941772461,72.1598129272461,74.11190795898438,77.75946044921875,87.32579803466797,84.47150421142578,80.76703643798828,64.9052734375,84.1333999633789,80.47947692871094,78.24240112304688,74.1752700805664,67.28710174560547,77.62889099121094,77.17278289794922,87.22163391113281,87.26554870605469,94.16570281982422,74.5494384765625,77.82825469970703,90.43495178222656,82.72199249267578,93.66638946533203,80.77054595947266,87.49718475341797,73.90731048583984,79.23902893066406,83.43537902832031,78.1806640625,88.9721450805664,82.67411041259766,61.130340576171875,86.37052917480469,79.63213348388672,83.7784423828125,84.83465576171875,83.59713745117188,72.69728088378906,83.97765350341797,71.78349304199219,86.67589569091797,76.64460754394531,93.04517364501953,77.03453063964844,64.9656982421875,68.74923706054688,92.42012786865234,89.22399139404297,86.55474090576172,86.3543701171875,77.48973846435547,77.54117584228516,75.30364227294922,86.17852783203125,76.62538146972656,80.69365692138672,80.90949249267578,86.57135009765625,79.75410461425781,83.96246337890625,84.3685302734375,73.2576675415039,85.06448364257812,78.35607147216797,79.07649993896484,74.72827911376953,79.18142700195312,76.23059844970703,60.69657516479492,80.50881958007812,88.09777069091797,69.13823699951172,87.11026000976562,86.13359069824219,69.52420043945312,69.88487243652344,80.86516571044922,80.6514663696289,73.62623596191406,71.5347671508789,77.8456802368164,85.36361694335938,72.25310516357422,79.47044372558594,80.9947738647461,82.10421752929688,73.7275619506836,87.14727783203125,70.00463104248047,70.71720886230469,74.80584716796875,86.21198272705078,82.91531372070312,87.4146499633789,64.34021759033203,81.82730102539062,62.23924255371094,85.44312286376953,78.74404907226562,82.85166931152344,81.04969787597656,87.28563690185547,79.13429260253906,80.00677490234375,74.90018463134766,72.94728088378906,85.70117950439453,67.25184631347656,71.65701293945312,66.241455078125,82.79957580566406,88.21356201171875,72.36176300048828,72.5677261352539,78.35328674316406,70.4010238647461,87.8396224975586,76.09418487548828,86.36421203613281,77.33883666992188,94.3292465209961,81.27357482910156,83.63514709472656,80.28466033935547,83.16059875488281,91.37858581542969,76.91444396972656,86.6208267211914,88.67739868164062,84.19025421142578,80.6288070678711,82.55696868896484,77.05792999267578,91.86296081542969,72.61895751953125,96.69677734375,92.93692779541016,70.66252136230469,86.82891845703125,84.1455307006836,93.10952758789062,79.96623992919922,78.70781707763672,86.96852111816406,84.32691192626953,94.88851928710938,82.91605377197266,75.42365264892578,81.21097564697266,86.30036163330078,85.07269287109375,76.79204559326172,92.10713195800781,87.81072998046875,76.65614318847656,83.46187591552734,78.9043960571289,86.79047393798828,78.99800109863281,57.21133804321289,67.37235260009766,73.09080505371094,70.37187957763672,70.66338348388672,80.3048095703125,85.06278228759766,95.14173889160156,75.5266342163086,78.34994506835938,79.92401885986328,86.01891326904297,84.15386962890625,82.22187042236328,92.72695922851562,86.76863861083984,79.19602966308594,80.71484375,82.41021728515625,83.0670394897461,62.40595626831055,87.66972351074219,92.00911712646484,81.9093017578125,72.24254608154297,79.28398895263672,87.8809585571289,79.08199310302734,53.344085693359375,80.47538757324219,75.3917465209961,87.17015838623047,73.82672119140625,91.00811767578125,82.89310455322266,78.62814331054688,80.72029113769531,74.8861312866211,74.33106994628906,71.63218688964844,96.37774658203125,59.41991424560547,86.42036437988281,81.29985809326172,82.08540344238281,77.5381851196289,72.75337982177734,88.37671661376953,73.73065185546875,74.5412826538086,86.34481811523438,78.76762390136719,82.42545318603516,74.51721954345703,76.3896255493164,86.93667602539062,87.24253845214844,75.76840209960938,78.70783996582031,76.61605072021484 -2956,83.00579833984375,88.88418579101562,87.0792007446289,73.5935287475586,92.70730590820312,85.34545135498047,75.68275451660156,91.2707748413086,76.8736801147461,72.78893280029297,84.14198303222656,81.5354232788086,87.98377990722656,92.95978546142578,83.71421813964844,79.5645523071289,82.88358306884766,73.06986999511719,69.22811889648438,78.49297332763672,92.39550018310547,71.76935577392578,79.911376953125,82.18441772460938,68.36104583740234,81.75010681152344,87.3078384399414,83.34988403320312,77.17445373535156,77.8980941772461,72.06404876708984,74.5027847290039,77.6312026977539,87.32579803466797,84.47150421142578,80.76703643798828,64.9052734375,84.1333999633789,80.47947692871094,78.24240112304688,74.2923812866211,67.28710174560547,77.10952758789062,77.17278289794922,87.22163391113281,87.26554870605469,94.16570281982422,74.5494384765625,77.82825469970703,90.43495178222656,83.0708999633789,94.21473693847656,80.77054595947266,87.49718475341797,73.90731048583984,79.67587280273438,83.43537902832031,78.1806640625,88.9721450805664,82.67411041259766,61.130340576171875,86.9240493774414,79.63213348388672,82.8567123413086,84.83465576171875,83.59713745117188,72.69728088378906,83.97765350341797,71.36083221435547,86.67589569091797,76.64460754394531,93.04517364501953,77.03453063964844,64.9656982421875,68.74923706054688,92.34794616699219,89.5240249633789,87.23833465576172,86.3543701171875,77.26042938232422,77.54117584228516,75.30364227294922,86.17852783203125,76.62538146972656,80.69365692138672,80.90949249267578,86.57135009765625,79.75410461425781,83.96246337890625,86.014892578125,73.2576675415039,85.06448364257812,78.35607147216797,79.42364501953125,74.72827911376953,79.18142700195312,76.23059844970703,60.69657516479492,80.50881958007812,87.1383285522461,69.13823699951172,87.11026000976562,85.58521270751953,69.67982482910156,69.88487243652344,80.86516571044922,80.6514663696289,78.0192642211914,71.3274917602539,76.66215515136719,85.36361694335938,72.25310516357422,79.47044372558594,80.9947738647461,82.10421752929688,73.7275619506836,87.14727783203125,70.00463104248047,70.71720886230469,79.86791229248047,86.21198272705078,86.29524230957031,87.4146499633789,64.34021759033203,81.82730102539062,62.23924255371094,80.5794906616211,78.74404907226562,82.85166931152344,81.04969787597656,87.28563690185547,79.13429260253906,80.00677490234375,74.90018463134766,72.94728088378906,85.70117950439453,67.25184631347656,71.65701293945312,66.241455078125,82.97611999511719,87.79107666015625,71.7933349609375,72.5677261352539,77.9612045288086,70.4010238647461,87.8396224975586,76.09418487548828,86.81454467773438,77.33883666992188,94.3292465209961,81.27357482910156,83.63514709472656,80.28466033935547,83.16059875488281,91.37858581542969,76.91444396972656,86.6208267211914,89.32673645019531,84.19025421142578,80.6288070678711,82.55696868896484,77.05792999267578,91.53216552734375,72.36260223388672,96.69677734375,91.9312744140625,70.66252136230469,86.82891845703125,84.1455307006836,93.10952758789062,79.96623992919922,78.70781707763672,86.96852111816406,84.32691192626953,91.35636901855469,82.91605377197266,75.42365264892578,81.21097564697266,86.1067123413086,85.07269287109375,76.43746948242188,92.10713195800781,87.81072998046875,76.65614318847656,80.67285919189453,78.9043960571289,86.79047393798828,78.99800109863281,56.86606979370117,67.37235260009766,73.26688385009766,70.37187957763672,70.66338348388672,83.90103912353516,85.06278228759766,95.14173889160156,75.5266342163086,78.02690124511719,79.92401885986328,86.01891326904297,84.15386962890625,82.22187042236328,92.72695922851562,84.98851013183594,79.19602966308594,73.64250946044922,82.41021728515625,83.0670394897461,62.40595626831055,87.44043731689453,92.00911712646484,81.9093017578125,72.24254608154297,79.28398895263672,86.57933044433594,79.08199310302734,53.344085693359375,80.47538757324219,75.3917465209961,86.12085723876953,73.82672119140625,91.00811767578125,83.04691314697266,78.62814331054688,80.72029113769531,74.34761047363281,74.33106994628906,71.63218688964844,96.37774658203125,59.41991424560547,86.42036437988281,81.29985809326172,81.82418060302734,77.5381851196289,72.44042205810547,88.86878204345703,73.73065185546875,71.49560546875,86.34481811523438,78.67961883544922,82.42545318603516,74.51721954345703,76.44066619873047,86.93667602539062,86.9308853149414,75.76840209960938,78.70783996582031,76.61605072021484 -2957,83.00579833984375,88.88418579101562,87.0792007446289,73.5935287475586,92.2952880859375,85.34545135498047,75.68275451660156,91.2707748413086,76.8736801147461,72.78893280029297,84.14198303222656,81.5354232788086,88.24308013916016,89.14063262939453,83.71421813964844,79.5645523071289,82.88358306884766,73.11058044433594,68.8384017944336,78.49297332763672,92.39550018310547,71.76935577392578,79.911376953125,82.0879135131836,68.36104583740234,81.75010681152344,87.3078384399414,82.68927764892578,77.17445373535156,77.8980941772461,72.06404876708984,74.5027847290039,77.6312026977539,88.10523986816406,83.67007446289062,80.76703643798828,64.9052734375,84.1333999633789,80.47947692871094,78.24240112304688,74.2923812866211,67.28710174560547,77.10952758789062,76.92994689941406,87.18192291259766,87.26554870605469,94.17211151123047,74.5494384765625,78.01850128173828,90.43495178222656,83.0708999633789,93.36988830566406,80.77054595947266,87.49718475341797,73.90731048583984,79.62898254394531,83.43537902832031,78.1806640625,88.9721450805664,82.67411041259766,59.918174743652344,86.32499694824219,77.36306762695312,82.8567123413086,84.83465576171875,83.50361633300781,72.71300506591797,83.97765350341797,71.36083221435547,85.14100646972656,76.64460754394531,93.04517364501953,76.60389709472656,64.9656982421875,68.74923706054688,92.34794616699219,89.54778289794922,87.30535125732422,86.3543701171875,77.26042938232422,77.54117584228516,75.30364227294922,86.17852783203125,76.62538146972656,80.69365692138672,80.90949249267578,86.57135009765625,79.92255401611328,83.96246337890625,86.014892578125,73.2893295288086,85.06448364257812,78.35607147216797,79.42364501953125,72.49762725830078,79.18142700195312,76.23059844970703,60.69657516479492,80.50881958007812,87.1383285522461,69.13823699951172,77.43928527832031,85.8118667602539,69.67982482910156,69.88487243652344,80.86516571044922,79.92740631103516,78.0192642211914,71.66451263427734,78.71074676513672,85.36361694335938,72.25310516357422,81.32292938232422,82.28803253173828,82.17276763916016,73.7275619506836,87.14727783203125,69.40310668945312,70.42344665527344,78.67425537109375,86.21198272705078,81.31005096435547,81.55877685546875,64.34021759033203,81.82730102539062,62.23924255371094,80.5794906616211,78.74404907226562,82.85166931152344,81.43370819091797,86.53733825683594,79.37493896484375,80.00677490234375,74.90018463134766,72.94728088378906,83.2105941772461,67.25184631347656,71.65701293945312,66.241455078125,82.97611999511719,87.79107666015625,71.7933349609375,72.5677261352539,77.9612045288086,70.4010238647461,87.8396224975586,75.97061920166016,88.44666290283203,77.33883666992188,90.16114807128906,81.27357482910156,83.63514709472656,80.28466033935547,83.16059875488281,91.04558563232422,76.91444396972656,85.6400146484375,89.32673645019531,84.19025421142578,80.6288070678711,82.82796478271484,76.72624206542969,91.22733306884766,72.36260223388672,96.69677734375,91.9312744140625,74.0726318359375,86.82891845703125,84.1455307006836,93.10952758789062,79.96623992919922,78.70781707763672,86.96852111816406,84.32691192626953,91.35636901855469,82.91605377197266,75.42365264892578,81.21097564697266,86.1067123413086,85.9858627319336,75.62413787841797,92.10713195800781,86.58760070800781,76.65614318847656,80.67285919189453,78.9043960571289,86.79047393798828,78.99800109863281,56.86606979370117,67.37235260009766,73.26688385009766,70.37187957763672,70.66338348388672,83.1711196899414,85.06278228759766,95.14173889160156,75.5266342163086,77.52371978759766,78.8377914428711,86.01891326904297,84.15386962890625,82.09288024902344,92.72695922851562,84.16547393798828,79.19602966308594,71.9565200805664,82.41021728515625,83.0670394897461,64.91075134277344,87.44043731689453,92.00911712646484,81.9093017578125,72.24254608154297,79.28398895263672,86.57933044433594,79.08199310302734,53.92789840698242,80.47538757324219,75.3917465209961,86.12085723876953,73.82672119140625,91.00811767578125,83.04691314697266,79.48380279541016,80.72029113769531,74.34761047363281,74.2174301147461,71.63218688964844,96.37774658203125,59.41991424560547,85.38268280029297,80.84416961669922,82.42857360839844,77.5381851196289,72.4847640991211,88.86878204345703,73.73065185546875,71.49560546875,86.34481811523438,78.67961883544922,82.42545318603516,74.51721954345703,76.4363021850586,86.93667602539062,86.9308853149414,75.76840209960938,78.70783996582031,80.88778686523438 -2958,83.00579833984375,88.88418579101562,87.0792007446289,73.5935287475586,92.6468505859375,85.34545135498047,75.90101623535156,88.09846496582031,76.8736801147461,72.78893280029297,84.14198303222656,81.5354232788086,88.24308013916016,89.14063262939453,83.71421813964844,79.24581146240234,82.88358306884766,73.0263671875,68.8384017944336,78.49297332763672,92.39550018310547,71.76935577392578,79.911376953125,82.0879135131836,69.06930541992188,81.47367095947266,88.13152313232422,82.68927764892578,76.98880767822266,77.92776489257812,72.06404876708984,74.40309143066406,78.99882507324219,88.10523986816406,83.67007446289062,80.76703643798828,64.9052734375,84.52790069580078,80.47947692871094,78.24240112304688,73.90577697753906,67.28710174560547,77.10952758789062,76.92994689941406,87.18192291259766,87.26554870605469,94.17211151123047,74.5494384765625,78.01850128173828,90.43495178222656,83.0708999633789,93.36988830566406,80.79107666015625,87.49718475341797,73.90731048583984,79.16495513916016,83.43537902832031,78.1806640625,88.9721450805664,82.67411041259766,59.918174743652344,86.32499694824219,77.36306762695312,83.48500061035156,82.8810806274414,83.50361633300781,72.91029357910156,83.3652572631836,71.36083221435547,85.14100646972656,76.64460754394531,93.04517364501953,76.4924087524414,64.9656982421875,68.74923706054688,92.34794616699219,89.54778289794922,86.566162109375,86.3543701171875,77.72171020507812,77.54117584228516,75.66168212890625,87.10231018066406,76.62538146972656,80.69365692138672,80.90949249267578,86.57135009765625,79.92255401611328,83.83135986328125,86.014892578125,73.2893295288086,85.00901794433594,78.35607147216797,79.42364501953125,72.49762725830078,79.18142700195312,76.23059844970703,60.69657516479492,80.10578918457031,86.3241958618164,69.86732482910156,77.43928527832031,85.8118667602539,69.67982482910156,72.9136962890625,80.86516571044922,80.05768585205078,76.56619262695312,71.66451263427734,78.53730010986328,85.36361694335938,72.25310516357422,81.32292938232422,82.82190704345703,81.32498168945312,73.7275619506836,87.14727783203125,69.15645599365234,70.42344665527344,76.5471420288086,86.21198272705078,81.31005096435547,81.55877685546875,64.34021759033203,81.82730102539062,62.23924255371094,82.37557983398438,78.74404907226562,83.53532409667969,81.43370819091797,86.53733825683594,79.47305297851562,80.00677490234375,74.90018463134766,72.94728088378906,85.11767578125,69.36121368408203,71.65701293945312,66.241455078125,80.06999969482422,87.79107666015625,71.7933349609375,72.5677261352539,77.49263763427734,72.0517807006836,87.8396224975586,75.97061920166016,88.44666290283203,77.28602600097656,90.16114807128906,81.21013641357422,83.63514709472656,80.09557342529297,83.16059875488281,91.04558563232422,76.28041076660156,85.6400146484375,89.32673645019531,84.19025421142578,80.6288070678711,82.55013275146484,76.72624206542969,91.22733306884766,70.00684356689453,96.69677734375,90.79885864257812,74.02091979980469,86.82891845703125,84.1455307006836,93.10952758789062,79.96623992919922,79.34737396240234,87.89686584472656,84.32691192626953,91.35636901855469,84.16104888916016,75.42365264892578,81.21097564697266,86.1067123413086,85.9858627319336,75.62413787841797,92.10713195800781,86.58760070800781,76.65614318847656,84.2093505859375,78.9043960571289,84.1678466796875,78.99800109863281,57.529659271240234,67.37235260009766,73.6371841430664,70.37187957763672,70.66338348388672,83.1711196899414,85.06278228759766,95.14173889160156,75.5266342163086,77.52371978759766,78.59016418457031,86.01891326904297,85.17037200927734,82.09288024902344,92.72695922851562,85.35272979736328,79.19602966308594,72.61343383789062,82.41021728515625,83.0670394897461,64.91075134277344,87.44043731689453,92.00911712646484,81.9093017578125,72.9997787475586,79.28398895263672,86.57933044433594,79.08199310302734,53.92789840698242,81.47665405273438,75.3917465209961,86.12085723876953,76.03695678710938,91.00811767578125,82.74787902832031,79.57975006103516,80.00059509277344,74.34761047363281,74.2174301147461,71.63218688964844,96.98062133789062,59.41991424560547,85.35688781738281,80.84416961669922,82.42857360839844,77.56089782714844,72.4847640991211,89.65316772460938,73.73065185546875,71.49560546875,86.34481811523438,78.67961883544922,82.42545318603516,74.51721954345703,76.4363021850586,86.93667602539062,86.9308853149414,75.12097930908203,78.70783996582031,80.88778686523438 -2959,83.00579833984375,88.61122131347656,87.26297760009766,73.5935287475586,92.6468505859375,85.34545135498047,75.90101623535156,88.09846496582031,77.7601318359375,73.30056762695312,84.71454620361328,81.5354232788086,88.24308013916016,90.11726379394531,83.71421813964844,79.24581146240234,82.88358306884766,73.1561279296875,69.16873168945312,78.49297332763672,92.39550018310547,72.00774383544922,80.16974639892578,82.0811996459961,69.06930541992188,81.47367095947266,87.99961853027344,82.3689193725586,76.98880767822266,77.89960479736328,71.95110321044922,76.03946685791016,76.49887084960938,88.10523986816406,83.67007446289062,81.09820556640625,64.9052734375,83.89216613769531,80.47947692871094,78.24240112304688,73.90577697753906,67.28710174560547,76.81135559082031,76.92994689941406,87.18192291259766,87.26554870605469,93.5345230102539,74.46949768066406,78.01850128173828,90.43495178222656,83.0708999633789,93.59044647216797,80.79107666015625,87.58099365234375,73.60388946533203,79.16495513916016,83.29873657226562,78.1806640625,88.76348114013672,82.67411041259766,59.918174743652344,86.32499694824219,77.36306762695312,83.48500061035156,82.8810806274414,83.12777709960938,72.91029357910156,82.94402313232422,71.36083221435547,85.14100646972656,76.64460754394531,93.04517364501953,76.4924087524414,64.9656982421875,68.74923706054688,92.34794616699219,89.54778289794922,86.06136322021484,86.3543701171875,77.72171020507812,77.54117584228516,75.93203735351562,87.10231018066406,76.62538146972656,80.57360076904297,80.64241027832031,86.57135009765625,79.92255401611328,83.83135986328125,81.42697143554688,73.2893295288086,85.00901794433594,78.35607147216797,79.42364501953125,72.49762725830078,78.2027587890625,76.40542602539062,60.69657516479492,80.10578918457031,86.3241958618164,69.86732482910156,77.43928527832031,85.25956726074219,69.67982482910156,72.9136962890625,80.86516571044922,80.05768585205078,76.56619262695312,72.44005584716797,78.53730010986328,85.36361694335938,72.25310516357422,83.10053253173828,82.82190704345703,82.04654693603516,72.21791076660156,87.14727783203125,69.15645599365234,70.42344665527344,76.5471420288086,86.21198272705078,81.31005096435547,81.55877685546875,64.34021759033203,93.97769927978516,62.23924255371094,82.37557983398438,78.74404907226562,82.32630157470703,81.43370819091797,88.08454132080078,79.47305297851562,80.00677490234375,74.90738677978516,72.94728088378906,85.11767578125,69.36121368408203,71.65701293945312,66.241455078125,80.06999969482422,87.79107666015625,71.7933349609375,72.5677261352539,78.57035827636719,72.0517807006836,87.8396224975586,77.11592864990234,88.44666290283203,77.28602600097656,90.16114807128906,81.21013641357422,83.63514709472656,80.09557342529297,83.16059875488281,91.04558563232422,76.28041076660156,84.87837219238281,89.32673645019531,84.19025421142578,80.6288070678711,82.4241714477539,76.72624206542969,91.22733306884766,70.00684356689453,96.69677734375,90.79885864257812,74.02091979980469,86.82891845703125,83.53523254394531,91.4224624633789,80.62489318847656,79.34737396240234,87.89686584472656,84.32691192626953,91.35636901855469,84.16104888916016,75.42365264892578,81.21097564697266,86.1067123413086,86.2525405883789,75.62413787841797,91.88124084472656,86.86746978759766,76.65614318847656,84.2093505859375,78.9043960571289,84.1678466796875,78.78691101074219,57.529659271240234,67.37235260009766,73.6371841430664,70.37187957763672,70.66338348388672,83.1711196899414,85.06278228759766,95.14173889160156,75.79415893554688,77.52371978759766,77.82520294189453,86.01891326904297,85.12612915039062,82.51557159423828,89.15083312988281,84.22455596923828,79.19602966308594,72.61343383789062,82.41021728515625,83.0670394897461,66.27156829833984,87.44043731689453,90.78308868408203,81.9093017578125,72.9997787475586,79.19116973876953,86.35399627685547,79.08199310302734,53.92789840698242,80.60183715820312,75.3917465209961,86.41674041748047,75.26924133300781,89.79267883300781,82.74787902832031,79.57975006103516,80.00059509277344,74.34761047363281,74.33988189697266,71.63218688964844,96.98062133789062,59.51961898803711,85.35688781738281,80.84416961669922,82.20278930664062,77.3370132446289,72.4847640991211,89.65316772460938,73.73065185546875,71.49560546875,85.79981231689453,78.55926513671875,82.42545318603516,74.51721954345703,76.4363021850586,87.16413879394531,86.9308853149414,75.12097930908203,71.33771514892578,80.88778686523438 -2960,83.00579833984375,88.68972778320312,87.26297760009766,73.5935287475586,92.6468505859375,85.68070220947266,75.90101623535156,86.77894592285156,77.7601318359375,73.45526885986328,84.71454620361328,81.5354232788086,88.24308013916016,90.11726379394531,83.71421813964844,79.24581146240234,82.05506134033203,73.20297241210938,69.16873168945312,78.49297332763672,92.39550018310547,72.00774383544922,80.16974639892578,82.0811996459961,69.06930541992188,81.47367095947266,88.18033599853516,82.3689193725586,76.98880767822266,77.89960479736328,71.95110321044922,72.55502319335938,76.49887084960938,88.10523986816406,83.67007446289062,81.09820556640625,64.9052734375,83.89216613769531,80.47947692871094,78.57878875732422,74.42135620117188,67.28710174560547,76.81135559082031,76.92994689941406,87.18192291259766,88.13699340820312,93.50460052490234,74.46949768066406,77.75557708740234,90.43495178222656,83.0708999633789,93.59044647216797,80.85533905029297,87.58099365234375,73.60388946533203,79.16495513916016,83.29873657226562,78.03330993652344,88.76348114013672,82.67411041259766,60.03992462158203,86.32499694824219,77.36306762695312,83.48500061035156,82.8810806274414,83.12777709960938,72.85591888427734,83.38761138916016,71.36083221435547,84.40282440185547,76.64460754394531,93.04517364501953,76.4924087524414,64.9656982421875,68.81901550292969,92.34794616699219,89.54778289794922,86.06136322021484,86.3543701171875,77.72171020507812,76.91029357910156,75.93203735351562,87.10231018066406,76.62538146972656,80.601318359375,80.68157958984375,86.57135009765625,79.71965789794922,83.83135986328125,81.42697143554688,73.2893295288086,85.00901794433594,78.35607147216797,79.42364501953125,72.76801300048828,78.2027587890625,76.40542602539062,60.69657516479492,80.10578918457031,88.39970397949219,69.86732482910156,77.43928527832031,85.96202850341797,69.70044708251953,72.9136962890625,78.52986145019531,80.05768585205078,76.56619262695312,71.81221771240234,78.53730010986328,85.36361694335938,72.25310516357422,83.10053253173828,82.82190704345703,81.39891052246094,73.30543518066406,87.14727783203125,69.15645599365234,73.25945281982422,76.5471420288086,86.21198272705078,80.91924285888672,81.55877685546875,63.792049407958984,93.97769927978516,62.23924255371094,82.37557983398438,78.74404907226562,83.2896728515625,81.43370819091797,88.08454132080078,79.47305297851562,80.00677490234375,74.90738677978516,72.94728088378906,85.11767578125,69.36121368408203,71.65701293945312,66.241455078125,80.06999969482422,87.79107666015625,71.7933349609375,72.59510803222656,78.57035827636719,72.0517807006836,87.8396224975586,79.40807342529297,86.32174682617188,77.28602600097656,90.16114807128906,81.21013641357422,83.72274780273438,80.4280014038086,83.16059875488281,91.04558563232422,77.2948226928711,85.20327758789062,89.32673645019531,84.19025421142578,80.46284484863281,82.9503173828125,76.72624206542969,91.22733306884766,70.00684356689453,96.69677734375,91.94217681884766,74.02091979980469,86.82891845703125,84.68585968017578,91.4224624633789,80.62489318847656,79.34737396240234,85.51568603515625,84.32691192626953,92.99674224853516,83.61491394042969,75.42365264892578,81.21097564697266,86.42737579345703,86.2525405883789,76.7796630859375,91.88124084472656,86.86746978759766,76.65614318847656,86.53362274169922,79.53199005126953,85.85244750976562,78.78691101074219,57.529659271240234,64.67003631591797,73.6371841430664,70.69950103759766,70.66338348388672,83.1711196899414,85.06278228759766,95.14173889160156,75.85826110839844,77.62799072265625,80.9051742553711,86.01891326904297,85.12612915039062,82.51557159423828,89.15083312988281,84.22455596923828,79.24645233154297,72.61343383789062,82.41021728515625,82.20435333251953,66.27156829833984,87.3598861694336,90.78308868408203,81.9093017578125,72.9997787475586,79.19116973876953,86.61273193359375,79.08199310302734,53.92789840698242,80.60183715820312,75.12735748291016,86.41674041748047,75.26924133300781,89.79267883300781,82.74787902832031,79.57975006103516,80.2979965209961,74.34761047363281,74.3202896118164,71.63218688964844,96.98062133789062,59.518089294433594,85.35688781738281,80.84416961669922,80.28453063964844,77.3370132446289,72.4847640991211,89.65316772460938,73.73065185546875,71.89891052246094,85.79981231689453,78.55926513671875,82.42545318603516,74.51721954345703,76.4363021850586,87.16413879394531,86.9308853149414,75.12097930908203,76.40155029296875,82.85706329345703 -2961,83.00579833984375,88.38819122314453,87.26297760009766,73.5935287475586,92.6468505859375,85.68070220947266,75.82732391357422,88.26897430419922,77.7601318359375,73.45526885986328,83.28325653076172,81.5354232788086,88.24308013916016,90.11726379394531,83.71421813964844,79.24581146240234,82.05506134033203,73.1919174194336,69.06037902832031,78.49297332763672,92.39550018310547,72.00774383544922,80.43071746826172,82.39647674560547,69.06930541992188,81.47367095947266,88.18033599853516,82.3689193725586,76.98880767822266,77.83297729492188,72.31185913085938,72.55502319335938,76.49887084960938,88.10523986816406,83.67007446289062,81.09820556640625,64.9052734375,83.89216613769531,80.47947692871094,78.57878875732422,74.26730346679688,67.57791900634766,76.81135559082031,76.92994689941406,87.18192291259766,85.82312774658203,93.50460052490234,74.93785095214844,77.82339477539062,90.43495178222656,83.0708999633789,93.59044647216797,80.65689849853516,87.58099365234375,73.60388946533203,79.16495513916016,83.29873657226562,78.46866607666016,88.67330932617188,82.67411041259766,60.03992462158203,86.79142761230469,76.71095275878906,83.48500061035156,82.8810806274414,83.11113739013672,72.85591888427734,83.38761138916016,71.36083221435547,84.40282440185547,76.64460754394531,91.93257904052734,76.45275115966797,64.9656982421875,69.46324157714844,92.14097595214844,89.54778289794922,86.06136322021484,86.3543701171875,77.72171020507812,76.91029357910156,75.93203735351562,87.10231018066406,76.62538146972656,80.601318359375,80.68157958984375,86.57135009765625,79.71965789794922,85.85761260986328,87.21170806884766,73.2893295288086,85.00901794433594,78.35607147216797,80.69373321533203,72.3518295288086,78.2027587890625,76.40542602539062,60.69657516479492,80.10578918457031,88.713623046875,69.86732482910156,77.43928527832031,85.96202850341797,69.70044708251953,72.9136962890625,78.52986145019531,80.05768585205078,76.56619262695312,71.81221771240234,78.53730010986328,85.36361694335938,72.25310516357422,83.10053253173828,82.82190704345703,81.39891052246094,73.30543518066406,87.18183898925781,69.15645599365234,73.25945281982422,76.5471420288086,89.75564575195312,80.91924285888672,81.55877685546875,63.792049407958984,94.9851303100586,62.23924255371094,85.52771759033203,78.74404907226562,83.3551025390625,82.0721206665039,88.08454132080078,79.618408203125,80.57234954833984,74.90738677978516,72.94728088378906,85.11767578125,69.36121368408203,71.65701293945312,66.241455078125,80.58358001708984,86.54837799072266,71.7933349609375,72.9998779296875,78.57035827636719,72.0517807006836,87.8396224975586,79.40807342529297,86.32174682617188,77.28602600097656,91.5179443359375,81.21013641357422,82.3804931640625,80.4280014038086,83.16059875488281,91.04558563232422,77.2948226928711,89.64159393310547,89.32673645019531,84.19025421142578,80.46284484863281,82.9503173828125,76.72624206542969,91.22733306884766,75.25563049316406,100.36164093017578,91.8391342163086,74.02091979980469,84.5042724609375,84.68585968017578,91.4224624633789,80.62489318847656,79.34737396240234,85.51568603515625,84.32691192626953,92.99674224853516,81.38404846191406,75.42365264892578,81.21097564697266,86.07657623291016,86.2525405883789,76.41631317138672,91.88124084472656,86.86746978759766,76.65614318847656,86.19684600830078,79.53199005126953,85.85244750976562,79.7747573852539,57.529659271240234,67.24089050292969,73.0058822631836,70.69950103759766,70.66338348388672,83.1711196899414,85.06278228759766,95.14173889160156,75.85826110839844,76.55665588378906,80.9051742553711,86.01891326904297,84.09564971923828,82.51557159423828,89.15083312988281,84.22455596923828,79.49898529052734,71.41698455810547,82.30380249023438,82.20435333251953,66.45150756835938,87.3598861694336,90.78308868408203,81.9093017578125,72.9997787475586,79.19116973876953,86.61273193359375,79.08199310302734,53.92789840698242,80.60183715820312,75.12735748291016,86.41674041748047,75.26924133300781,89.79267883300781,82.52902221679688,79.57975006103516,80.2979965209961,74.34761047363281,74.3202896118164,71.63218688964844,96.98062133789062,59.518089294433594,85.35688781738281,82.5803451538086,80.6806869506836,77.3370132446289,72.4847640991211,89.65316772460938,73.73065185546875,74.23808288574219,86.52816772460938,78.55926513671875,82.12308502197266,74.51721954345703,76.4363021850586,87.16413879394531,86.9308853149414,75.36866760253906,80.72716522216797,82.85706329345703 -2962,83.00579833984375,88.38819122314453,87.7435073852539,74.45597076416016,92.40442657470703,85.5320816040039,75.82732391357422,88.26897430419922,77.7601318359375,73.45526885986328,84.58685302734375,81.5354232788086,88.24308013916016,89.77450561523438,83.71421813964844,79.24581146240234,82.05506134033203,73.1919174194336,69.06037902832031,78.49297332763672,92.39550018310547,72.00774383544922,81.47969818115234,82.39647674560547,68.74308776855469,81.47367095947266,87.38771057128906,81.90279388427734,76.98880767822266,77.83297729492188,72.31185913085938,70.41017150878906,77.47575378417969,87.34663391113281,83.72423553466797,81.09820556640625,63.99287414550781,83.89216613769531,80.47947692871094,78.57878875732422,74.26730346679688,67.57791900634766,76.81135559082031,76.92994689941406,87.18192291259766,81.4736328125,93.50460052490234,75.00542449951172,77.82339477539062,90.43495178222656,83.0708999633789,93.59044647216797,80.73653411865234,87.58099365234375,73.60388946533203,79.19322204589844,83.29873657226562,78.46866607666016,88.67330932617188,82.67411041259766,60.03992462158203,86.79142761230469,76.71095275878906,83.00123596191406,82.8810806274414,83.64287567138672,72.85591888427734,83.38761138916016,71.36083221435547,84.85652160644531,76.64460754394531,93.23009490966797,76.45275115966797,64.9656982421875,69.46324157714844,92.39683532714844,90.28939056396484,86.06136322021484,86.3543701171875,77.72171020507812,76.91708374023438,75.93203735351562,87.10231018066406,76.62538146972656,80.601318359375,80.34416198730469,86.57135009765625,79.71965789794922,85.95779418945312,87.21170806884766,73.29002380371094,89.60979461669922,78.35607147216797,80.69373321533203,72.3518295288086,78.2027587890625,76.40542602539062,60.526092529296875,80.10578918457031,88.713623046875,71.42672729492188,77.43928527832031,85.96202850341797,69.75009155273438,72.76295471191406,78.52986145019531,80.05768585205078,76.56619262695312,71.59449768066406,78.53730010986328,85.3588638305664,72.27239227294922,83.10053253173828,82.82190704345703,81.70441436767578,73.30543518066406,90.7501220703125,69.15645599365234,71.07937622070312,78.39947509765625,89.75564575195312,80.91924285888672,81.55877685546875,63.792049407958984,97.27655792236328,62.23924255371094,82.72164916992188,78.6134262084961,83.3551025390625,80.59242248535156,88.08454132080078,79.618408203125,78.4652099609375,75.15193939208984,72.94728088378906,85.11767578125,69.36121368408203,71.65701293945312,66.241455078125,80.58358001708984,86.54837799072266,71.7933349609375,72.9998779296875,78.57035827636719,76.75933837890625,87.34613037109375,79.4215316772461,87.23588562011719,77.28602600097656,91.5179443359375,81.21013641357422,82.3804931640625,80.70146179199219,83.16059875488281,91.04558563232422,77.2948226928711,89.64159393310547,89.32673645019531,84.2077865600586,80.46284484863281,82.9503173828125,76.72624206542969,91.22733306884766,75.53388977050781,100.36164093017578,91.8391342163086,74.02091979980469,84.5042724609375,84.68585968017578,91.4224624633789,80.62489318847656,79.34737396240234,86.17169189453125,82.80213165283203,92.71835327148438,80.89525604248047,75.42365264892578,81.766845703125,86.07657623291016,86.577880859375,76.41631317138672,93.75009155273438,86.86746978759766,76.63811492919922,87.09750366210938,79.53199005126953,85.85244750976562,79.7747573852539,57.529659271240234,67.24089050292969,73.0058822631836,70.69950103759766,70.66338348388672,83.1711196899414,85.06278228759766,95.14173889160156,75.85826110839844,76.55665588378906,81.21390533447266,85.63449096679688,83.78601837158203,82.51557159423828,89.15083312988281,84.22455596923828,79.49898529052734,69.76546478271484,82.30380249023438,82.20435333251953,66.45150756835938,86.67936706542969,91.76988220214844,81.9093017578125,72.9997787475586,79.19116973876953,86.61273193359375,79.08199310302734,53.92789840698242,81.62445831298828,75.14917755126953,86.41674041748047,75.26924133300781,88.92035675048828,82.52902221679688,79.57975006103516,80.69993591308594,74.34761047363281,74.3202896118164,71.63218688964844,97.42280578613281,59.518089294433594,85.35688781738281,84.47715759277344,75.75271606445312,77.3370132446289,72.4847640991211,89.65316772460938,73.73065185546875,72.9532241821289,86.52816772460938,78.55926513671875,82.12308502197266,74.51721954345703,76.4363021850586,87.3251953125,86.9308853149414,75.36866760253906,80.72716522216797,85.15946197509766 -2963,83.00579833984375,88.38819122314453,86.9454345703125,74.50524139404297,92.40442657470703,85.5320816040039,76.01683044433594,88.26897430419922,77.7601318359375,73.46355438232422,82.6794662475586,81.5354232788086,89.81340789794922,89.77450561523438,83.71421813964844,79.24581146240234,82.50702667236328,73.1919174194336,69.06037902832031,78.49297332763672,92.39550018310547,72.00774383544922,81.47969818115234,82.39647674560547,68.74308776855469,81.47367095947266,87.38771057128906,81.90279388427734,76.98880767822266,77.83297729492188,72.31185913085938,70.41017150878906,79.56465148925781,87.34663391113281,83.72423553466797,81.09820556640625,63.99287414550781,84.60189819335938,80.47947692871094,78.57878875732422,74.26730346679688,67.57791900634766,76.81135559082031,76.92994689941406,87.21209716796875,79.45411682128906,94.36407470703125,74.69930267333984,78.95294952392578,91.12149047851562,82.58695983886719,93.59044647216797,80.80005645751953,87.58099365234375,73.60388946533203,79.163818359375,83.29873657226562,78.46866607666016,89.26679229736328,82.67411041259766,59.36430740356445,86.79142761230469,76.71095275878906,83.33538818359375,82.8810806274414,83.4251480102539,72.85591888427734,84.46845245361328,71.68183898925781,84.85652160644531,76.64460754394531,93.23009490966797,76.5439224243164,64.9656982421875,69.46324157714844,92.39683532714844,90.28939056396484,86.06136322021484,86.3543701171875,77.72171020507812,76.91708374023438,75.93203735351562,88.21382904052734,76.62538146972656,80.601318359375,80.34416198730469,86.57135009765625,79.71965789794922,84.91345977783203,88.13404083251953,73.07369232177734,89.60979461669922,78.35607147216797,80.69373321533203,73.09796905517578,78.2027587890625,76.40542602539062,60.526092529296875,80.10578918457031,88.713623046875,71.42672729492188,77.43928527832031,86.32011413574219,69.75009155273438,72.76295471191406,78.52986145019531,80.05768585205078,76.56619262695312,71.24595642089844,78.53730010986328,84.38691711425781,72.27239227294922,83.34146881103516,82.82190704345703,81.70441436767578,73.30543518066406,90.7501220703125,68.4156723022461,71.8005599975586,76.59220123291016,89.75564575195312,79.40110778808594,81.55877685546875,63.792049407958984,97.27655792236328,62.23924255371094,83.70271301269531,78.6134262084961,83.3551025390625,80.57258605957031,88.08454132080078,79.618408203125,76.86659240722656,75.15193939208984,72.94728088378906,85.11767578125,69.36121368408203,71.65701293945312,66.241455078125,80.58358001708984,86.54837799072266,71.7933349609375,72.9998779296875,79.81884002685547,76.75933837890625,87.34613037109375,79.4215316772461,87.23588562011719,77.28602600097656,91.5179443359375,81.21013641357422,82.3804931640625,80.70146179199219,83.16059875488281,91.04558563232422,77.2948226928711,88.32756805419922,89.32673645019531,84.2077865600586,80.46284484863281,82.9503173828125,76.72624206542969,92.23396301269531,71.11187744140625,99.85002899169922,91.8391342163086,74.02091979980469,84.5042724609375,84.68585968017578,91.4224624633789,80.62489318847656,79.34737396240234,86.17169189453125,82.80213165283203,92.71835327148438,80.89525604248047,75.50028228759766,81.96653747558594,86.21202087402344,85.66061401367188,76.41631317138672,90.97618103027344,86.86746978759766,76.63811492919922,85.99851989746094,79.71763610839844,85.85244750976562,79.7747573852539,57.529659271240234,67.24089050292969,73.0058822631836,70.36492919921875,70.66338348388672,83.1711196899414,85.06278228759766,94.80824279785156,75.85826110839844,76.4875717163086,77.20071411132812,86.79145050048828,83.78601837158203,82.65718078613281,89.15083312988281,84.97212982177734,79.49898529052734,70.90904998779297,82.30380249023438,81.56901550292969,66.45150756835938,86.67936706542969,91.79186248779297,81.9093017578125,72.79896545410156,78.89940643310547,86.61273193359375,79.08199310302734,53.92789840698242,81.62445831298828,75.36128234863281,85.27440643310547,75.26924133300781,89.53289794921875,82.90889739990234,79.57975006103516,78.7906723022461,74.34761047363281,74.3202896118164,71.63218688964844,95.11968231201172,59.518089294433594,86.08650207519531,84.47715759277344,77.65705871582031,77.3370132446289,72.4847640991211,89.65316772460938,73.73065185546875,72.67118835449219,86.52816772460938,78.55926513671875,82.12308502197266,74.51721954345703,76.4363021850586,87.3251953125,86.9308853149414,75.36866760253906,79.82244110107422,85.15946197509766 -2964,83.00579833984375,87.83058166503906,86.9454345703125,74.50524139404297,91.8279800415039,85.78084564208984,76.01683044433594,88.26897430419922,77.56681823730469,73.46355438232422,82.53496551513672,81.48741912841797,89.81340789794922,94.11264038085938,83.86697387695312,79.24581146240234,82.50702667236328,73.1919174194336,68.60041046142578,78.49297332763672,92.82752990722656,72.00774383544922,81.47969818115234,82.34652709960938,68.74308776855469,81.47367095947266,87.38771057128906,81.90279388427734,76.98880767822266,77.83297729492188,72.41446685791016,70.41017150878906,79.45154571533203,87.34663391113281,83.26997375488281,81.14582824707031,63.99287414550781,84.60189819335938,80.47947692871094,78.57878875732422,74.26730346679688,67.57791900634766,76.81135559082031,76.92994689941406,87.21209716796875,79.45411682128906,94.53834533691406,74.8207778930664,78.95294952392578,91.12149047851562,82.58695983886719,93.59044647216797,80.80005645751953,87.58099365234375,73.64830780029297,78.68183898925781,83.49597930908203,78.46866607666016,89.01321411132812,82.67411041259766,59.36430740356445,86.79142761230469,76.71095275878906,83.07996368408203,82.89534759521484,83.4251480102539,72.85591888427734,84.46845245361328,71.68183898925781,84.85652160644531,76.64460754394531,93.23009490966797,76.5439224243164,64.9656982421875,69.46324157714844,92.39683532714844,90.28939056396484,86.06136322021484,87.21947479248047,77.72171020507812,76.10603332519531,75.93203735351562,88.21382904052734,76.62538146972656,80.601318359375,80.200927734375,86.57135009765625,79.71965789794922,84.91345977783203,84.64817810058594,73.07369232177734,87.12190246582031,78.35607147216797,80.69373321533203,73.09796905517578,78.2027587890625,76.40542602539062,60.526092529296875,80.10578918457031,88.713623046875,71.42672729492188,73.89865112304688,86.22120666503906,69.75009155273438,70.71321868896484,78.20157623291016,80.05768585205078,76.56619262695312,71.10787200927734,78.53730010986328,84.38691711425781,72.27239227294922,83.34146881103516,83.64151763916016,81.70441436767578,73.30543518066406,86.33744049072266,68.4156723022461,70.7762680053711,76.59220123291016,89.75564575195312,79.40110778808594,81.55877685546875,63.792049407958984,97.27655792236328,62.23924255371094,83.70271301269531,78.6134262084961,83.3551025390625,81.9030532836914,88.08454132080078,79.57494354248047,75.48697662353516,75.15193939208984,73.14122009277344,84.16236877441406,69.36121368408203,71.65701293945312,66.241455078125,80.58358001708984,86.54837799072266,71.7933349609375,72.9998779296875,79.81884002685547,76.75933837890625,88.9845199584961,79.4215316772461,89.0470199584961,77.28602600097656,91.5179443359375,81.21013641357422,82.3804931640625,80.70146179199219,83.16059875488281,91.04558563232422,77.2948226928711,88.32756805419922,89.32673645019531,84.2077865600586,79.76770782470703,83.21762084960938,79.79044342041016,92.23396301269531,71.14183044433594,101.7064208984375,91.8391342163086,74.02091979980469,84.5042724609375,84.68585968017578,91.2201156616211,80.62489318847656,79.34737396240234,86.17169189453125,82.80213165283203,94.58731842041016,80.89525604248047,75.50028228759766,84.13937377929688,86.04334259033203,85.66061401367188,76.41631317138672,90.75882720947266,86.86746978759766,76.63811492919922,85.99851989746094,79.71763610839844,84.10029602050781,79.7747573852539,56.877384185791016,67.24089050292969,73.0058822631836,70.3089828491211,70.66338348388672,81.83131408691406,85.06278228759766,94.80824279785156,75.85826110839844,76.24011993408203,78.88139343261719,86.79145050048828,83.5322036743164,82.65718078613281,89.15083312988281,80.48345184326172,79.49898529052734,70.90904998779297,82.30380249023438,81.56901550292969,66.45150756835938,86.67936706542969,91.79186248779297,81.9093017578125,72.79896545410156,78.89940643310547,86.61273193359375,75.61892700195312,53.92789840698242,81.62445831298828,75.36128234863281,84.78709411621094,75.26924133300781,89.53289794921875,83.02012634277344,79.57975006103516,78.7906723022461,74.34761047363281,74.0871353149414,71.63218688964844,95.11968231201172,59.518089294433594,85.41227722167969,81.55779266357422,77.65705871582031,77.3370132446289,72.4847640991211,88.78843688964844,73.73065185546875,72.45470428466797,86.52816772460938,78.55926513671875,85.5652847290039,74.86106872558594,76.38089752197266,88.11019134521484,86.9308853149414,75.10733032226562,79.82244110107422,85.15946197509766 -2965,82.98111724853516,87.83058166503906,86.9454345703125,74.53785705566406,91.8279800415039,85.78084564208984,76.01683044433594,88.26897430419922,77.56681823730469,73.46355438232422,83.29671478271484,81.21442413330078,89.81340789794922,93.82638549804688,83.86697387695312,79.24581146240234,82.53610229492188,73.1919174194336,68.60041046142578,78.39591217041016,91.9834213256836,72.09921264648438,81.47969818115234,82.34652709960938,68.74308776855469,80.13272857666016,87.38771057128906,81.90279388427734,76.98880767822266,77.83297729492188,72.41446685791016,70.41017150878906,79.45154571533203,86.50061798095703,83.26997375488281,81.14582824707031,64.8822250366211,84.43185424804688,80.47947692871094,78.57878875732422,74.26730346679688,67.55058288574219,76.81135559082031,76.92994689941406,87.21209716796875,84.62628936767578,94.77568817138672,74.8207778930664,78.95294952392578,91.12149047851562,82.58695983886719,93.03327941894531,80.80005645751953,87.52581024169922,73.4977035522461,78.48695373535156,83.49597930908203,78.46866607666016,89.01321411132812,82.67411041259766,59.36430740356445,86.7587890625,76.71095275878906,83.07996368408203,82.89534759521484,83.4251480102539,72.70508575439453,84.46845245361328,71.68183898925781,84.85652160644531,76.84999084472656,89.31199645996094,76.5439224243164,64.9656982421875,70.12108612060547,92.39683532714844,90.28939056396484,86.38861846923828,87.21947479248047,77.72171020507812,76.10603332519531,75.93203735351562,88.51806640625,76.62538146972656,80.601318359375,80.20536804199219,86.57135009765625,79.84486389160156,85.25224304199219,87.18180847167969,73.07369232177734,87.12190246582031,77.67765808105469,80.69373321533203,73.09796905517578,78.82091522216797,76.40542602539062,60.526092529296875,80.10578918457031,88.713623046875,71.42672729492188,73.89865112304688,86.22120666503906,69.75009155273438,70.71321868896484,77.58253479003906,80.05768585205078,76.56619262695312,71.10787200927734,78.53730010986328,82.14396667480469,73.718505859375,83.34146881103516,84.39793395996094,81.70441436767578,73.30543518066406,86.33744049072266,68.07117462158203,69.25554656982422,76.59220123291016,89.75564575195312,81.70655822753906,81.55877685546875,63.792049407958984,97.27655792236328,62.23924255371094,83.70271301269531,78.6134262084961,83.80015563964844,81.9030532836914,88.08454132080078,79.65762329101562,75.48697662353516,75.15193939208984,73.14122009277344,84.16236877441406,69.36121368408203,71.65701293945312,66.241455078125,80.58358001708984,87.90779113769531,72.59687042236328,71.8065414428711,80.45353698730469,76.75933837890625,88.9845199584961,79.4215316772461,88.22203826904297,77.28602600097656,90.04639434814453,81.21013641357422,82.3804931640625,80.32856750488281,83.16059875488281,91.04558563232422,77.2948226928711,88.32756805419922,89.32673645019531,84.2077865600586,78.59569549560547,82.91322326660156,79.79044342041016,92.23396301269531,71.14183044433594,99.26065826416016,91.8391342163086,74.02091979980469,84.5042724609375,84.68585968017578,91.2201156616211,80.62489318847656,79.34737396240234,87.58702850341797,82.80213165283203,94.58731842041016,80.05657958984375,75.50028228759766,82.1444091796875,86.04334259033203,85.66061401367188,75.47942352294922,90.28887939453125,86.86746978759766,76.6316909790039,86.39944458007812,79.71763610839844,84.10029602050781,79.7747573852539,57.9698600769043,67.38934326171875,73.0058822631836,70.3089828491211,70.66338348388672,81.83131408691406,85.06278228759766,94.80824279785156,75.85826110839844,76.24011993408203,78.88139343261719,86.79145050048828,83.5322036743164,82.54800415039062,89.15083312988281,82.28742218017578,79.49898529052734,70.90904998779297,82.49288940429688,81.56901550292969,72.34751892089844,86.49942016601562,91.79186248779297,81.9093017578125,72.79896545410156,78.89940643310547,86.4611587524414,75.61892700195312,53.92789840698242,81.62445831298828,75.36128234863281,84.78709411621094,75.26924133300781,89.53289794921875,83.02012634277344,79.57975006103516,80.92134094238281,74.34761047363281,74.0871353149414,71.63218688964844,95.11968231201172,59.518089294433594,85.99686431884766,81.55779266357422,77.69840240478516,77.54534149169922,72.4847640991211,88.78843688964844,74.40379333496094,69.54194641113281,86.52816772460938,78.91383361816406,85.02247619628906,74.86106872558594,76.80593872070312,88.11019134521484,86.9308853149414,75.10733032226562,73.37567138671875,85.15946197509766 -2966,82.98111724853516,87.83058166503906,86.9454345703125,74.53785705566406,91.8279800415039,85.52326202392578,76.01683044433594,88.26897430419922,77.56681823730469,73.18330383300781,81.3538589477539,81.21442413330078,87.90128326416016,93.82638549804688,83.86697387695312,79.24581146240234,82.53610229492188,73.12568664550781,68.70413208007812,78.51172637939453,92.11639404296875,72.09921264648438,81.47969818115234,82.27417755126953,68.74308776855469,80.13272857666016,87.38771057128906,81.90279388427734,77.2569351196289,77.83297729492188,72.4163589477539,71.1731948852539,79.45154571533203,86.50061798095703,83.26997375488281,81.14582824707031,64.8822250366211,84.43185424804688,80.47947692871094,78.57878875732422,74.26730346679688,67.55058288574219,76.81135559082031,77.21468353271484,87.21209716796875,84.62628936767578,94.77568817138672,74.54855346679688,78.95294952392578,91.12149047851562,82.49514770507812,93.03327941894531,80.80005645751953,87.54530334472656,73.4977035522461,78.24798583984375,82.05933380126953,78.46866607666016,89.01321411132812,82.67411041259766,59.36430740356445,85.89349365234375,76.71095275878906,83.07996368408203,82.89534759521484,84.1504898071289,72.70508575439453,84.46845245361328,71.68183898925781,84.85652160644531,76.84999084472656,89.31199645996094,76.5439224243164,64.99286651611328,70.12108612060547,92.5762939453125,90.27682495117188,86.38861846923828,83.40604400634766,77.72171020507812,76.10603332519531,75.93203735351562,87.77999114990234,76.62538146972656,80.601318359375,80.43059539794922,86.57135009765625,79.74221801757812,85.25224304199219,87.18180847167969,73.07369232177734,83.67018127441406,77.67765808105469,80.69373321533203,75.93672180175781,78.82091522216797,76.40542602539062,60.526092529296875,80.10578918457031,91.0589370727539,71.42672729492188,81.14715576171875,86.22120666503906,69.75009155273438,68.94498443603516,77.58253479003906,80.05768585205078,76.56619262695312,71.10787200927734,78.53730010986328,80.69789123535156,73.718505859375,83.47518920898438,84.39793395996094,81.70441436767578,72.72505187988281,86.33744049072266,68.07117462158203,68.72373962402344,76.59220123291016,88.364013671875,81.70655822753906,81.55877685546875,63.792049407958984,97.0000991821289,62.23924255371094,83.70271301269531,78.6134262084961,83.80015563964844,81.9030532836914,88.08454132080078,79.65762329101562,75.48697662353516,75.15193939208984,73.14122009277344,84.16236877441406,69.36121368408203,71.78351593017578,64.61332702636719,80.58358001708984,87.90779113769531,72.85762786865234,71.8065414428711,80.45353698730469,76.75933837890625,91.28992462158203,79.4215316772461,88.22203826904297,77.28602600097656,90.04639434814453,81.21013641357422,82.3804931640625,80.2454833984375,83.16059875488281,91.04558563232422,77.2948226928711,88.8442153930664,89.32673645019531,84.2077865600586,78.59569549560547,82.91322326660156,79.79044342041016,92.23396301269531,75.25492095947266,99.26065826416016,91.8391342163086,74.02091979980469,84.5042724609375,83.5640869140625,91.2201156616211,80.62489318847656,79.34737396240234,87.58702850341797,82.80213165283203,83.20704650878906,79.8126220703125,75.50028228759766,82.1444091796875,86.04334259033203,85.66061401367188,77.50315856933594,92.0359878540039,86.86746978759766,76.80174255371094,86.39944458007812,79.71763610839844,85.02059173583984,79.06775665283203,57.9698600769043,67.38934326171875,73.0058822631836,70.81912231445312,70.59192657470703,81.83131408691406,85.06278228759766,94.85244750976562,75.46223449707031,77.05370330810547,79.81108856201172,86.79145050048828,83.5322036743164,82.54800415039062,89.15083312988281,82.91063690185547,79.49898529052734,70.90904998779297,82.49288940429688,81.56901550292969,72.34751892089844,88.58890533447266,90.69198608398438,81.9093017578125,72.79896545410156,78.89940643310547,86.4611587524414,75.06074523925781,53.92789840698242,78.6125259399414,75.36128234863281,84.78709411621094,75.26924133300781,89.53289794921875,82.35347747802734,79.57975006103516,80.92134094238281,74.0179214477539,74.0871353149414,71.63218688964844,95.85113525390625,59.518089294433594,85.99686431884766,81.55779266357422,76.16921997070312,77.54534149169922,72.24049377441406,88.78843688964844,74.40379333496094,69.54194641113281,86.52816772460938,78.91383361816406,85.02247619628906,74.86106872558594,76.80593872070312,88.11019134521484,86.9308853149414,75.10733032226562,73.37567138671875,88.66088104248047 -2967,82.78483581542969,88.92117309570312,86.9454345703125,74.53785705566406,91.8279800415039,85.62503814697266,76.01683044433594,88.26897430419922,77.56681823730469,73.27310180664062,81.12130737304688,81.21442413330078,89.99247741699219,91.84793090820312,85.100830078125,79.24581146240234,82.53610229492188,73.12568664550781,68.70413208007812,78.50140380859375,92.11639404296875,72.09921264648438,81.47969818115234,82.27417755126953,68.74308776855469,80.13272857666016,87.38771057128906,80.09093475341797,77.35305786132812,77.63648223876953,72.4163589477539,73.1378173828125,79.27496337890625,86.50061798095703,83.26997375488281,81.14582824707031,64.8822250366211,84.40606689453125,80.47947692871094,78.57878875732422,74.26730346679688,67.55058288574219,76.89854431152344,77.21468353271484,87.21209716796875,84.62628936767578,94.77568817138672,74.54855346679688,78.95294952392578,91.12149047851562,82.49514770507812,93.03327941894531,80.80005645751953,87.54530334472656,73.4977035522461,78.24798583984375,81.1103744506836,78.46866607666016,89.01321411132812,84.40495300292969,61.09469223022461,85.51658630371094,77.33972930908203,83.07996368408203,82.89534759521484,83.6491928100586,72.71165466308594,84.46845245361328,71.79798889160156,84.4515151977539,76.8223876953125,89.31199645996094,76.5439224243164,64.99286651611328,70.03292846679688,92.5762939453125,90.27682495117188,86.38861846923828,83.40604400634766,77.72171020507812,76.34595489501953,75.93203735351562,87.77999114990234,76.8867416381836,80.601318359375,80.43059539794922,86.57135009765625,79.74221801757812,85.25224304199219,87.18180847167969,73.07369232177734,83.67018127441406,78.62512969970703,80.69373321533203,75.93672180175781,78.82091522216797,76.40542602539062,60.526092529296875,78.69880676269531,91.0589370727539,67.03571319580078,77.64496612548828,86.22120666503906,69.59381103515625,68.94498443603516,77.58253479003906,80.05768585205078,76.56619262695312,71.10787200927734,78.53730010986328,80.59243774414062,73.718505859375,82.96356964111328,84.39793395996094,81.88555145263672,72.72505187988281,88.27324676513672,68.07117462158203,68.72373962402344,76.59220123291016,88.364013671875,83.12626647949219,81.55877685546875,63.792049407958984,90.76766204833984,62.445953369140625,83.70271301269531,78.6134262084961,83.80015563964844,81.9030532836914,88.08454132080078,79.65762329101562,75.48697662353516,75.15193939208984,73.14122009277344,84.16236877441406,70.3524169921875,71.78351593017578,64.61332702636719,80.58358001708984,89.59825134277344,73.86668395996094,69.1098403930664,80.45353698730469,76.75933837890625,91.28992462158203,80.95616912841797,86.16883850097656,77.28602600097656,89.1965103149414,81.21013641357422,82.6205825805664,80.2454833984375,79.5025863647461,91.04558563232422,77.2948226928711,88.8442153930664,89.32673645019531,84.2077865600586,78.59569549560547,82.91322326660156,79.79044342041016,92.23396301269531,75.25492095947266,99.26065826416016,91.8391342163086,74.02091979980469,82.89402770996094,83.5640869140625,91.2201156616211,80.62489318847656,79.34737396240234,91.50012969970703,82.80213165283203,83.20704650878906,79.8126220703125,75.50028228759766,82.1444091796875,86.14618682861328,86.39966583251953,77.50315856933594,92.0359878540039,87.36027526855469,76.80174255371094,86.39944458007812,80.21611022949219,85.02059173583984,79.06775665283203,57.9698600769043,67.38934326171875,73.0058822631836,70.81912231445312,70.59192657470703,81.56010437011719,85.06278228759766,94.85244750976562,75.9052734375,77.16136932373047,79.14002990722656,86.26934814453125,83.41090393066406,82.54800415039062,90.2525634765625,82.39315795898438,79.49898529052734,70.90904998779297,82.8177490234375,81.56901550292969,68.15028381347656,87.79727172851562,90.69198608398438,81.9093017578125,72.79896545410156,78.97980499267578,85.54109954833984,73.86947631835938,53.16310501098633,78.6125259399414,75.36128234863281,84.78709411621094,75.26924133300781,88.33329772949219,82.35347747802734,79.57975006103516,80.92134094238281,74.0179214477539,74.36101531982422,72.2247085571289,95.85113525390625,59.518089294433594,85.99686431884766,81.55779266357422,74.29288482666016,77.54534149169922,72.24049377441406,88.78843688964844,74.40379333496094,70.74736022949219,86.52816772460938,78.91383361816406,85.02247619628906,74.86106872558594,78.75252532958984,88.11019134521484,86.76284790039062,75.10733032226562,73.37567138671875,88.66088104248047 -2968,82.78483581542969,87.53421020507812,86.9454345703125,74.53785705566406,91.8279800415039,85.67041778564453,76.01683044433594,88.26897430419922,77.98026275634766,73.27310180664062,82.02204895019531,81.21442413330078,89.99247741699219,94.40299987792969,85.100830078125,79.24581146240234,82.98165130615234,73.12568664550781,68.70413208007812,78.50140380859375,92.11639404296875,72.09921264648438,81.47969818115234,82.27417755126953,68.74308776855469,80.13272857666016,87.38771057128906,80.09093475341797,77.35305786132812,77.63648223876953,72.4163589477539,73.1378173828125,79.27496337890625,87.3160629272461,83.26997375488281,81.14582824707031,64.9507064819336,84.40606689453125,80.47947692871094,78.57878875732422,74.26730346679688,67.55058288574219,76.82361602783203,77.21468353271484,87.36170196533203,83.02775573730469,94.77568817138672,74.54855346679688,78.95294952392578,91.12149047851562,82.49514770507812,93.03327941894531,80.96810150146484,87.31454467773438,73.4977035522461,78.24798583984375,81.1103744506836,78.46866607666016,89.01321411132812,84.40495300292969,59.81278610229492,85.74943542480469,77.33972930908203,83.07996368408203,83.86408233642578,83.35897064208984,72.76710510253906,84.46845245361328,71.79798889160156,84.4515151977539,76.8223876953125,90.61648559570312,76.5439224243164,64.99286651611328,70.03292846679688,92.72209930419922,90.27682495117188,86.38861846923828,88.75092315673828,77.72171020507812,76.34595489501953,75.93203735351562,87.77999114990234,76.8867416381836,80.601318359375,80.43059539794922,84.13134002685547,80.21034240722656,85.25224304199219,87.18180847167969,73.07369232177734,83.67018127441406,78.62512969970703,80.69373321533203,76.21865844726562,78.82091522216797,76.1416015625,60.526092529296875,78.41575622558594,91.0589370727539,67.03571319580078,77.546875,86.22120666503906,69.59381103515625,68.94498443603516,79.6265869140625,80.05768585205078,76.56619262695312,71.42547607421875,78.53730010986328,80.59243774414062,74.34209442138672,82.96356964111328,85.49738311767578,81.88555145263672,72.72505187988281,86.42488861083984,68.07117462158203,69.09292602539062,79.86158752441406,88.364013671875,79.7977294921875,81.55877685546875,63.0455322265625,90.76766204833984,62.445953369140625,82.92864227294922,78.75602722167969,83.53377532958984,80.80772399902344,88.08454132080078,79.65762329101562,73.62449645996094,75.15193939208984,73.14122009277344,84.16236877441406,70.3524169921875,71.78351593017578,64.61332702636719,80.58358001708984,89.14335632324219,73.86668395996094,69.1098403930664,80.45353698730469,75.1997299194336,91.28992462158203,81.35751342773438,85.83403778076172,77.28602600097656,89.1965103149414,81.29017639160156,82.6205825805664,79.84030151367188,79.5025863647461,91.04558563232422,77.2948226928711,88.8442153930664,89.32673645019531,84.53660583496094,75.94232940673828,82.91322326660156,79.79044342041016,92.23396301269531,75.31876373291016,97.29006958007812,91.8391342163086,74.02091979980469,83.00859069824219,83.58783721923828,91.2201156616211,80.2239990234375,79.34737396240234,89.60289001464844,85.90169525146484,83.20704650878906,80.03779602050781,75.50028228759766,82.1444091796875,86.14618682861328,86.37596130371094,77.50315856933594,92.0359878540039,87.36027526855469,76.24907684326172,86.39944458007812,80.21611022949219,83.97540283203125,79.06775665283203,57.9698600769043,67.38934326171875,73.0058822631836,70.81912231445312,70.02040100097656,79.45384979248047,85.06278228759766,94.85244750976562,76.50636291503906,76.55793762207031,75.43960571289062,86.26934814453125,82.92404174804688,82.74723052978516,90.2525634765625,79.60132598876953,79.46931457519531,70.20356750488281,82.8177490234375,81.6783676147461,65.25017547607422,87.79727172851562,90.45362854003906,81.9093017578125,72.72736358642578,78.97980499267578,85.54109954833984,78.46393585205078,53.16310501098633,81.9174575805664,75.36128234863281,85.17828369140625,75.26924133300781,88.33329772949219,82.35347747802734,79.55473327636719,79.34408569335938,75.21600341796875,74.36101531982422,72.2247085571289,94.83587646484375,59.566009521484375,85.99686431884766,81.55779266357422,76.6622085571289,77.32522583007812,72.24049377441406,87.79383087158203,74.40379333496094,71.630126953125,86.52816772460938,78.91383361816406,85.02247619628906,74.86106872558594,78.75252532958984,88.11019134521484,86.76284790039062,75.10733032226562,73.37567138671875,88.66088104248047 -2969,82.78483581542969,87.53421020507812,86.9454345703125,74.53785705566406,91.8279800415039,85.67041778564453,76.01683044433594,91.09609985351562,77.44387817382812,73.27310180664062,78.27992248535156,81.21442413330078,89.99247741699219,94.40299987792969,85.100830078125,79.24581146240234,82.98165130615234,73.12568664550781,68.70413208007812,78.61090087890625,92.11639404296875,72.20565032958984,81.47969818115234,82.27417755126953,68.74308776855469,80.13272857666016,87.38771057128906,80.48281860351562,77.10619354248047,77.63648223876953,72.43964385986328,73.1378173828125,79.27496337890625,87.3160629272461,84.27027130126953,81.04427337646484,64.9507064819336,84.40606689453125,80.47947692871094,78.57878875732422,74.337158203125,67.55058288574219,76.88040161132812,77.21468353271484,87.36170196533203,84.27275085449219,94.77568817138672,74.54855346679688,78.95294952392578,91.12149047851562,82.49514770507812,93.03327941894531,80.96810150146484,87.31454467773438,73.59712982177734,78.20438385009766,81.49765014648438,78.46866607666016,88.84893798828125,84.40495300292969,59.81278610229492,85.66970825195312,79.80021667480469,83.07996368408203,83.86408233642578,83.83673095703125,72.76710510253906,84.46845245361328,71.79798889160156,84.4515151977539,76.66697692871094,90.61648559570312,76.38121795654297,64.99286651611328,70.03292846679688,92.72209930419922,89.8092269897461,86.56035614013672,88.75092315673828,78.25440216064453,75.5847396850586,75.93203735351562,89.56773376464844,76.8867416381836,80.601318359375,80.43059539794922,84.13134002685547,80.1910400390625,85.25224304199219,84.42655181884766,72.81178283691406,83.67018127441406,78.62512969970703,80.69373321533203,76.21865844726562,78.82091522216797,76.1416015625,60.526092529296875,78.41575622558594,91.0589370727539,71.0368881225586,77.546875,86.22120666503906,69.59381103515625,68.94498443603516,79.6265869140625,83.99178314208984,76.56619262695312,71.42547607421875,78.39834594726562,82.08612823486328,74.30531311035156,82.96356964111328,83.84898376464844,81.73246765136719,72.72505187988281,86.42488861083984,67.74436950683594,71.10543060302734,79.86158752441406,88.364013671875,75.93161010742188,81.55877685546875,63.0455322265625,89.0316390991211,62.445953369140625,82.92864227294922,78.9147720336914,83.53377532958984,80.80772399902344,88.08454132080078,79.65762329101562,73.62449645996094,75.15193939208984,73.14122009277344,84.16236877441406,70.3524169921875,71.78351593017578,64.61332702636719,80.58358001708984,84.5938720703125,71.8581314086914,66.4832763671875,82.84794616699219,75.1997299194336,90.22942352294922,82.53382110595703,85.83403778076172,77.28602600097656,89.1965103149414,81.28350067138672,82.6205825805664,80.46160125732422,79.5025863647461,91.04558563232422,77.77252197265625,88.8442153930664,89.32673645019531,84.53660583496094,75.94232940673828,82.91322326660156,79.79044342041016,92.23396301269531,72.24166107177734,97.29006958007812,91.8391342163086,74.02091979980469,83.00859069824219,83.58783721923828,90.79249572753906,80.2239990234375,78.84695434570312,92.92708587646484,85.90169525146484,83.20704650878906,80.08624267578125,75.50028228759766,82.1444091796875,86.14618682861328,86.37596130371094,77.50315856933594,92.0359878540039,87.36027526855469,77.26441955566406,85.98234558105469,82.9828872680664,83.97540283203125,79.06775665283203,57.9698600769043,67.79837799072266,73.0058822631836,70.81912231445312,70.02040100097656,79.45384979248047,86.30892944335938,94.85244750976562,76.50636291503906,76.81233215332031,75.43960571289062,86.26934814453125,82.92404174804688,82.74723052978516,90.2525634765625,79.60132598876953,79.46931457519531,70.20356750488281,82.8177490234375,83.93119049072266,60.918922424316406,87.79727172851562,90.45362854003906,81.9093017578125,72.72736358642578,78.97980499267578,85.54109954833984,76.96975708007812,53.895538330078125,81.9174575805664,75.36128234863281,85.17828369140625,75.28408813476562,88.33329772949219,82.35347747802734,79.90390014648438,79.34408569335938,75.21600341796875,74.36101531982422,72.2247085571289,94.83587646484375,59.566009521484375,86.91146850585938,88.94709014892578,76.16470336914062,77.32522583007812,72.24049377441406,87.6148910522461,73.4846420288086,73.53653717041016,86.52816772460938,78.91383361816406,85.02247619628906,74.86106872558594,77.74061584472656,88.11019134521484,86.76284790039062,75.10733032226562,73.37567138671875,88.66088104248047 -2970,82.78483581542969,87.53421020507812,86.9454345703125,74.53785705566406,91.8279800415039,85.67041778564453,76.01683044433594,91.09609985351562,75.79553985595703,73.27310180664062,78.27992248535156,81.21442413330078,87.91769409179688,92.61365509033203,85.100830078125,79.24581146240234,82.98165130615234,73.18103790283203,68.70413208007812,78.61090087890625,92.11639404296875,72.14032745361328,81.21510314941406,82.35291290283203,68.74308776855469,80.13272857666016,87.38771057128906,84.40240478515625,77.10619354248047,77.63648223876953,72.45414733886719,72.89606475830078,81.2945556640625,87.3160629272461,84.27027130126953,81.04427337646484,64.9507064819336,84.40606689453125,80.47947692871094,78.42719268798828,74.337158203125,67.55058288574219,76.88040161132812,77.21468353271484,87.36170196533203,82.62232971191406,95.34489440917969,74.54855346679688,78.95294952392578,91.12149047851562,82.49514770507812,93.03327941894531,80.96810150146484,87.31454467773438,73.52536010742188,78.20438385009766,81.49765014648438,78.46866607666016,88.77098846435547,84.40495300292969,59.81278610229492,85.66970825195312,80.35543060302734,83.07996368408203,83.86408233642578,83.83673095703125,72.76710510253906,83.97562408447266,71.79798889160156,84.4515151977539,76.66697692871094,90.61648559570312,75.88590240478516,64.99286651611328,69.94444274902344,92.72209930419922,89.8092269897461,86.56035614013672,88.75092315673828,77.85779571533203,75.5847396850586,75.93203735351562,89.56773376464844,76.68863677978516,80.78339385986328,80.59612274169922,84.13134002685547,80.1910400390625,85.25224304199219,87.3310775756836,73.17371368408203,84.5052719116211,78.62512969970703,80.69373321533203,76.21865844726562,78.82091522216797,76.1416015625,60.526092529296875,78.41575622558594,90.8184814453125,71.0368881225586,77.546875,86.22120666503906,69.44364929199219,68.94498443603516,79.6265869140625,79.55929565429688,76.56619262695312,71.42547607421875,78.39834594726562,82.08612823486328,73.44029235839844,82.96356964111328,82.91300964355469,81.73246765136719,72.72505187988281,86.42488861083984,67.74436950683594,71.10543060302734,75.93223571777344,88.364013671875,77.09996795654297,81.55877685546875,63.537384033203125,89.0316390991211,62.445953369140625,82.92864227294922,78.86325073242188,83.53377532958984,80.80772399902344,90.07009887695312,79.65762329101562,73.62449645996094,75.15193939208984,73.14122009277344,84.16236877441406,70.3524169921875,71.78351593017578,64.61332702636719,80.58358001708984,89.72727966308594,71.218994140625,65.14173126220703,82.84794616699219,75.1997299194336,90.22942352294922,81.45845031738281,85.83403778076172,77.28602600097656,90.39654541015625,81.28350067138672,82.6205825805664,79.98158264160156,83.28263092041016,91.04558563232422,77.77252197265625,87.24127960205078,89.32673645019531,84.53660583496094,75.94232940673828,82.91322326660156,79.79044342041016,92.760009765625,72.70088958740234,97.96792602539062,91.8391342163086,74.02091979980469,83.00859069824219,85.08648681640625,90.79249572753906,80.35228729248047,78.84695434570312,93.38471984863281,84.1570053100586,83.20704650878906,80.08624267578125,75.30682373046875,82.1444091796875,86.14618682861328,86.37596130371094,77.36237335205078,92.0359878540039,87.36027526855469,77.23432159423828,85.98234558105469,82.9828872680664,83.97540283203125,79.06775665283203,57.9698600769043,67.79837799072266,73.0058822631836,70.81912231445312,70.02040100097656,79.45384979248047,86.30892944335938,94.85244750976562,76.50636291503906,77.86247253417969,75.46028900146484,86.06526947021484,82.92404174804688,83.02790069580078,90.8626480102539,79.40116119384766,79.46931457519531,70.20356750488281,82.8177490234375,83.93119049072266,60.918922424316406,87.79727172851562,90.45362854003906,81.9093017578125,72.72736358642578,79.23202514648438,85.58885192871094,76.96975708007812,53.895538330078125,81.9174575805664,75.5815200805664,85.17828369140625,75.71810913085938,88.64999389648438,82.35347747802734,79.72864532470703,79.34408569335938,75.21600341796875,74.36101531982422,72.2247085571289,94.83587646484375,59.566009521484375,86.87257385253906,88.94709014892578,76.16470336914062,77.42057037353516,72.24049377441406,87.6148910522461,73.09492492675781,73.53653717041016,86.52816772460938,78.91383361816406,85.02247619628906,74.86106872558594,77.74061584472656,88.11019134521484,87.2479248046875,75.10733032226562,73.37567138671875,88.66088104248047 -2971,82.93058776855469,87.53421020507812,86.9454345703125,74.53785705566406,91.8279800415039,85.66531372070312,76.20899200439453,89.30316162109375,75.79553985595703,73.27310180664062,79.37550354003906,81.21442413330078,89.77507019042969,91.83016204833984,86.0242691040039,79.24581146240234,82.98165130615234,73.18103790283203,68.70413208007812,78.61090087890625,92.11639404296875,72.14032745361328,84.06632995605469,82.2032470703125,68.31554412841797,80.13272857666016,87.19242858886719,84.40240478515625,76.82246398925781,77.63648223876953,72.45414733886719,72.89606475830078,80.4903335571289,87.3160629272461,84.27027130126953,81.07978820800781,64.9507064819336,84.83750915527344,80.47947692871094,78.42719268798828,74.51997375488281,67.55058288574219,76.88040161132812,77.21468353271484,87.36170196533203,82.62232971191406,95.54570007324219,74.73839569091797,80.24349212646484,91.12149047851562,81.80162048339844,90.91410064697266,80.96810150146484,87.31454467773438,73.52536010742188,77.85075378417969,81.49765014648438,78.46866607666016,88.77098846435547,84.40495300292969,59.81278610229492,85.66970825195312,80.35543060302734,83.69751739501953,83.86408233642578,83.23797607421875,72.53460693359375,83.43981170654297,71.79798889160156,84.4515151977539,76.66697692871094,90.61648559570312,75.88590240478516,64.99286651611328,69.94444274902344,92.72209930419922,89.8092269897461,86.59590911865234,88.75092315673828,77.42579650878906,75.5847396850586,75.93203735351562,89.56773376464844,76.68863677978516,80.78339385986328,80.59612274169922,84.13134002685547,79.99333953857422,85.25224304199219,81.33623504638672,73.17371368408203,84.5052719116211,78.62512969970703,80.69373321533203,76.21865844726562,78.82091522216797,76.1416015625,60.526092529296875,80.20382690429688,92.27037048339844,70.3971939086914,72.87358856201172,86.68871307373047,69.36371612548828,68.94498443603516,79.6265869140625,79.55929565429688,76.56619262695312,71.85645294189453,78.39834594726562,87.41817474365234,73.44029235839844,82.96356964111328,82.91300964355469,81.536376953125,76.43101501464844,92.6610107421875,67.74436950683594,71.10543060302734,75.93223571777344,88.364013671875,75.43009948730469,81.55877685546875,63.537384033203125,85.98300170898438,62.445953369140625,82.92864227294922,78.86325073242188,83.53377532958984,80.80772399902344,88.3337631225586,79.65762329101562,73.62449645996094,75.15193939208984,73.14122009277344,85.14362335205078,69.61627197265625,72.40009307861328,64.61332702636719,80.58358001708984,89.72727966308594,71.218994140625,65.14173126220703,82.8493881225586,75.1997299194336,89.60677337646484,81.45845031738281,85.83403778076172,77.7558822631836,90.39654541015625,81.28350067138672,82.6205825805664,80.12873077392578,82.0760726928711,91.04558563232422,78.30032348632812,88.86161804199219,89.32673645019531,84.15424346923828,74.27265167236328,82.91322326660156,79.79044342041016,93.25172424316406,72.70088958740234,98.85684204101562,91.8391342163086,74.02091979980469,83.00859069824219,84.72806549072266,88.7374496459961,81.9559097290039,78.84695434570312,93.38471984863281,84.1570053100586,84.7062759399414,80.08624267578125,75.30682373046875,82.1444091796875,86.13060760498047,86.37596130371094,75.8077621459961,95.02872467041016,87.64569091796875,77.23432159423828,87.6646957397461,84.03915405273438,86.63617706298828,79.06775665283203,57.39666748046875,70.72911071777344,73.0058822631836,70.81912231445312,70.02040100097656,79.45384979248047,86.30892944335938,94.85244750976562,77.01069641113281,79.58248138427734,79.7184066772461,86.06526947021484,83.10408782958984,83.02790069580078,90.8626480102539,79.40116119384766,79.46931457519531,70.20356750488281,82.8177490234375,83.93119049072266,60.918922424316406,87.79727172851562,90.45362854003906,82.0200424194336,72.72736358642578,79.23202514648438,85.58885192871094,76.96975708007812,53.895538330078125,81.9174575805664,75.60137939453125,85.17828369140625,75.71810913085938,89.66498565673828,82.35347747802734,79.72864532470703,79.34408569335938,75.21600341796875,74.36101531982422,72.99867248535156,94.83587646484375,59.566009521484375,86.87257385253906,87.21577453613281,76.16470336914062,77.42057037353516,72.24049377441406,87.6148910522461,73.09492492675781,70.85009002685547,87.45128631591797,78.91383361816406,85.02247619628906,75.79351806640625,77.74061584472656,88.09247589111328,86.60504150390625,75.10733032226562,72.62625885009766,88.66088104248047 -2972,82.93058776855469,87.53421020507812,86.98787689208984,74.53785705566406,91.8279800415039,85.66531372070312,76.2631607055664,89.30316162109375,75.79553985595703,73.27310180664062,79.12435150146484,81.21442413330078,90.04573059082031,91.83016204833984,86.0242691040039,79.24581146240234,82.98165130615234,73.18103790283203,68.70413208007812,78.57714080810547,92.53734588623047,72.14032745361328,84.06632995605469,81.80091094970703,68.31554412841797,80.13272857666016,87.19242858886719,84.40240478515625,76.82246398925781,77.63648223876953,72.45414733886719,72.89606475830078,81.7196273803711,87.3160629272461,84.27027130126953,81.07978820800781,64.9507064819336,84.76935577392578,80.47947692871094,78.42719268798828,74.51997375488281,67.55058288574219,77.04562377929688,77.21468353271484,87.70352935791016,80.4216079711914,95.54570007324219,74.73839569091797,80.24349212646484,90.0755386352539,81.80162048339844,90.91410064697266,80.96810150146484,87.48682403564453,73.52536010742188,77.85075378417969,81.5341796875,78.46866607666016,88.77098846435547,84.40495300292969,59.81278610229492,85.66970825195312,80.35543060302734,83.41151428222656,83.86408233642578,82.64842987060547,72.53460693359375,84.1136703491211,71.79798889160156,84.4515151977539,76.62747955322266,90.61648559570312,75.88590240478516,64.99286651611328,69.94444274902344,92.57319641113281,89.8092269897461,86.59590911865234,88.75092315673828,78.1092758178711,76.458984375,75.93203735351562,91.126220703125,76.68863677978516,80.78339385986328,80.52949523925781,84.13134002685547,79.99333953857422,85.25224304199219,81.33623504638672,73.17371368408203,84.5052719116211,75.88904571533203,80.69373321533203,76.21865844726562,78.82091522216797,76.38607025146484,60.526092529296875,79.94131469726562,92.27037048339844,70.3971939086914,72.87358856201172,87.0359115600586,69.28409576416016,66.82878112792969,79.6265869140625,79.55929565429688,79.7712631225586,71.75698852539062,78.39834594726562,88.86595153808594,73.44029235839844,82.96356964111328,82.91300964355469,81.536376953125,76.34624481201172,92.6610107421875,68.02738189697266,70.979736328125,75.93223571777344,88.364013671875,73.20642852783203,81.55877685546875,63.537384033203125,85.98300170898438,62.445953369140625,82.92864227294922,78.80574035644531,83.53377532958984,81.49333190917969,88.3337631225586,79.5035400390625,73.62449645996094,75.15193939208984,73.14122009277344,85.14362335205078,69.49935913085938,72.40009307861328,64.61332702636719,80.58358001708984,90.01492309570312,71.218994140625,67.26115417480469,81.21011352539062,82.61308288574219,89.92530822753906,81.45845031738281,85.83403778076172,77.7558822631836,90.39654541015625,81.28350067138672,82.6205825805664,80.12873077392578,80.68489074707031,91.04558563232422,76.79431915283203,88.86161804199219,89.32673645019531,84.15424346923828,75.21183776855469,82.91322326660156,79.79044342041016,93.84564208984375,72.70088958740234,98.85684204101562,91.8391342163086,73.5456771850586,83.00859069824219,84.72806549072266,88.7374496459961,81.9559097290039,79.94286346435547,88.9366455078125,83.3472900390625,84.7062759399414,82.39324188232422,75.30682373046875,82.1444091796875,86.13060760498047,86.40679168701172,76.97234344482422,96.48833465576172,87.64569091796875,77.49781799316406,87.6646957397461,84.03915405273438,85.80557250976562,79.06775665283203,57.39666748046875,66.45195007324219,73.0058822631836,70.81912231445312,70.02040100097656,79.45384979248047,86.30892944335938,94.85244750976562,77.01069641113281,78.40570068359375,77.56159973144531,86.06526947021484,83.10408782958984,83.02790069580078,86.38446807861328,79.40116119384766,79.46931457519531,70.20356750488281,82.8177490234375,83.93119049072266,60.23811721801758,87.79727172851562,90.28619384765625,82.0200424194336,72.92588806152344,79.23202514648438,85.58885192871094,77.53949737548828,53.895538330078125,81.9174575805664,75.42850494384766,85.17828369140625,75.71810913085938,89.66498565673828,81.58540344238281,79.72864532470703,79.34408569335938,75.21600341796875,74.36101531982422,72.99867248535156,92.07342529296875,59.566009521484375,86.87257385253906,86.29878234863281,75.56330871582031,77.42057037353516,72.24049377441406,87.6148910522461,73.09492492675781,70.85009002685547,87.58939361572266,78.9570083618164,85.02247619628906,75.79351806640625,77.74061584472656,88.09247589111328,86.46607208251953,74.92790985107422,78.76081848144531,89.08942413330078 -2973,82.93058776855469,87.53421020507812,86.98787689208984,74.53785705566406,91.8279800415039,85.66531372070312,75.91056060791016,91.04674530029297,75.79553985595703,73.2409439086914,79.12435150146484,81.21442413330078,90.04573059082031,92.6782455444336,86.0242691040039,79.24581146240234,82.98165130615234,73.18103790283203,68.79033660888672,78.57714080810547,92.53734588623047,72.14032745361328,84.06632995605469,81.80091094970703,68.31554412841797,80.1226577758789,87.19242858886719,84.45259857177734,76.82246398925781,77.63648223876953,72.45414733886719,72.89606475830078,81.76368713378906,87.3160629272461,84.27027130126953,80.65267181396484,64.9507064819336,84.76935577392578,80.12603759765625,78.42719268798828,74.51997375488281,67.55058288574219,77.04562377929688,77.21468353271484,87.70310974121094,80.8419418334961,94.20796203613281,74.9595947265625,80.24349212646484,90.0755386352539,81.80162048339844,92.09513854980469,80.96810150146484,87.88292694091797,73.52536010742188,77.85075378417969,81.2666015625,78.46866607666016,88.77098846435547,84.37251281738281,59.81278610229492,85.2372817993164,83.1313705444336,83.41151428222656,83.86408233642578,83.46813201904297,72.55937957763672,84.1136703491211,71.79798889160156,84.4515151977539,76.62747955322266,93.04621887207031,75.88590240478516,65.14968872070312,69.94444274902344,92.73860168457031,89.8092269897461,86.59590911865234,88.75092315673828,78.1092758178711,76.458984375,75.93203735351562,90.67898559570312,76.65889739990234,80.7553482055664,80.52949523925781,84.13134002685547,79.99333953857422,84.97435760498047,85.63796997070312,73.17371368408203,84.5052719116211,75.88904571533203,80.69373321533203,75.44127655029297,78.82091522216797,76.5054931640625,60.43734359741211,79.94131469726562,95.45938110351562,67.82769775390625,70.34595489501953,86.70162200927734,69.45711517333984,66.82878112792969,79.6265869140625,79.55929565429688,79.7712631225586,71.9042739868164,76.9869613647461,88.86595153808594,73.44029235839844,82.96356964111328,83.29519653320312,81.536376953125,76.7107925415039,92.6610107421875,68.02738189697266,70.979736328125,75.93223571777344,88.364013671875,80.30170440673828,81.55877685546875,63.296451568603516,84.91209411621094,62.13254165649414,83.21248626708984,78.80574035644531,83.53377532958984,81.49333190917969,88.3337631225586,79.46672821044922,73.62449645996094,75.04886627197266,73.14122009277344,85.14362335205078,69.49935913085938,73.41455078125,68.13298797607422,80.58358001708984,84.86966705322266,71.218994140625,70.43446350097656,81.21011352539062,82.61308288574219,86.43006896972656,81.45845031738281,85.83403778076172,77.7558822631836,90.39654541015625,81.21499633789062,82.36042022705078,80.0763931274414,80.68489074707031,91.04558563232422,76.79431915283203,87.64292907714844,89.32673645019531,84.15424346923828,75.21183776855469,82.91322326660156,79.79044342041016,93.84564208984375,72.28620147705078,98.85684204101562,91.8391342163086,73.5456771850586,83.00859069824219,84.72806549072266,89.74734497070312,81.9559097290039,79.94286346435547,88.9366455078125,83.3472900390625,85.43048095703125,82.39324188232422,75.30682373046875,82.3963623046875,86.13060760498047,87.15750122070312,76.62208557128906,97.00489044189453,87.64569091796875,76.5801773071289,84.34938049316406,83.31485748291016,86.26263427734375,79.06775665283203,57.39666748046875,66.45195007324219,73.0058822631836,70.81912231445312,70.02040100097656,79.45384979248047,86.64308166503906,94.85244750976562,76.44438171386719,78.40570068359375,79.33885192871094,86.06526947021484,83.10408782958984,83.02790069580078,86.38446807861328,79.40116119384766,79.20903778076172,70.20356750488281,82.82711029052734,82.72016143798828,62.73539733886719,85.59720611572266,90.81316375732422,82.0200424194336,72.92588806152344,79.23202514648438,85.47798919677734,77.53949737548828,53.4732551574707,81.9174575805664,75.30500793457031,85.17828369140625,75.71810913085938,88.03775024414062,81.58540344238281,79.72864532470703,79.34408569335938,75.21600341796875,74.36101531982422,72.99867248535156,92.07342529296875,59.42980194091797,88.61377716064453,83.94137573242188,75.10518646240234,77.64561462402344,72.24049377441406,87.6148910522461,73.09492492675781,70.11358642578125,87.58939361572266,78.9570083618164,82.5443115234375,75.79351806640625,78.29132080078125,88.09247589111328,86.46607208251953,76.00836944580078,75.82023620605469,89.08942413330078 -2974,82.93058776855469,88.25121307373047,86.98787689208984,74.53785705566406,91.8279800415039,85.66531372070312,76.05766296386719,91.04674530029297,75.79553985595703,72.92176055908203,78.88394165039062,81.21442413330078,88.84935760498047,92.6782455444336,86.0242691040039,79.24581146240234,82.98165130615234,73.18103790283203,69.48698425292969,78.57714080810547,92.53734588623047,72.14032745361328,84.06632995605469,81.46265411376953,68.21080780029297,80.1226577758789,87.6817626953125,84.45259857177734,76.82246398925781,77.63648223876953,72.67230987548828,72.89606475830078,81.76368713378906,87.3160629272461,83.40631103515625,80.65267181396484,64.9507064819336,84.76935577392578,80.12603759765625,78.42719268798828,74.51997375488281,67.55058288574219,77.25078582763672,77.21468353271484,87.70310974121094,80.8419418334961,96.18362426757812,74.9595947265625,81.28561401367188,90.0755386352539,81.80162048339844,94.44540405273438,80.96810150146484,87.88292694091797,73.6364974975586,77.85075378417969,81.2666015625,78.46866607666016,88.77098846435547,84.37251281738281,59.81278610229492,85.2372817993164,83.1313705444336,83.41151428222656,83.86408233642578,83.46813201904297,72.494140625,84.1136703491211,71.79798889160156,85.52816772460938,76.62747955322266,93.04621887207031,76.39457702636719,65.14968872070312,69.94444274902344,92.73860168457031,90.00092315673828,86.61473083496094,87.79866790771484,78.1092758178711,76.458984375,75.93203735351562,90.67898559570312,76.94352722167969,80.7553482055664,80.3884506225586,84.13134002685547,79.99333953857422,84.97435760498047,85.63796997070312,73.17371368408203,84.5052719116211,78.3974380493164,80.69373321533203,72.716552734375,78.82091522216797,76.5054931640625,60.43734359741211,79.94131469726562,94.6396484375,67.82769775390625,69.79314422607422,86.32595825195312,69.30247497558594,66.82878112792969,79.6265869140625,79.55929565429688,74.83369445800781,71.9042739868164,76.9869613647461,88.86595153808594,73.44029235839844,82.96356964111328,83.29519653320312,81.536376953125,75.35704803466797,92.6610107421875,68.02738189697266,73.86078643798828,75.93223571777344,88.364013671875,73.75932312011719,81.55877685546875,63.296451568603516,84.91209411621094,62.13254165649414,83.21248626708984,78.80574035644531,83.53377532958984,81.49333190917969,88.47735595703125,79.46896362304688,73.62449645996094,75.04886627197266,73.14122009277344,85.14362335205078,69.49935913085938,73.41455078125,68.13298797607422,80.58358001708984,84.86966705322266,71.218994140625,70.43446350097656,80.344970703125,82.61308288574219,86.44571685791016,81.45845031738281,85.83403778076172,77.48361206054688,90.39654541015625,81.21499633789062,83.60829162597656,80.13101196289062,80.68489074707031,91.04558563232422,77.32183074951172,87.64292907714844,89.32673645019531,84.15424346923828,76.66789245605469,82.91322326660156,79.79044342041016,91.85102081298828,72.28620147705078,98.85684204101562,91.8391342163086,73.5456771850586,84.07473754882812,84.72806549072266,90.94417572021484,80.05828094482422,79.94286346435547,88.83646392822266,83.3472900390625,85.43048095703125,85.38031768798828,75.30682373046875,82.3963623046875,86.4278564453125,87.15750122070312,76.62208557128906,97.00489044189453,87.64569091796875,76.5801773071289,84.34938049316406,83.31485748291016,82.7433090209961,79.06775665283203,57.39666748046875,66.45195007324219,73.0058822631836,71.05889892578125,70.02040100097656,79.45384979248047,86.64308166503906,94.85244750976562,76.44438171386719,78.40570068359375,81.09780883789062,86.06526947021484,83.10408782958984,83.02790069580078,87.27757263183594,79.40116119384766,79.39472198486328,70.20356750488281,82.82711029052734,82.92860412597656,62.73539733886719,86.92740631103516,92.06965637207031,82.0200424194336,72.64051818847656,79.16842651367188,85.47798919677734,76.34688568115234,53.4732551574707,81.9174575805664,75.33451843261719,85.54143524169922,75.71810913085938,88.03775024414062,81.58540344238281,79.72864532470703,79.34408569335938,75.21600341796875,74.6051254272461,71.69803619384766,94.20622253417969,59.42980194091797,88.61377716064453,83.94137573242188,75.0003433227539,77.5477523803711,72.24049377441406,87.6148910522461,72.86734771728516,70.53435516357422,87.58939361572266,79.17121887207031,84.75004577636719,75.79351806640625,78.60624694824219,87.21565246582031,86.46607208251953,76.00836944580078,75.82023620605469,89.08942413330078 -2975,82.93058776855469,88.25121307373047,86.98787689208984,73.98896789550781,91.8279800415039,85.66531372070312,76.07391357421875,91.04674530029297,75.79553985595703,72.98917388916016,78.88394165039062,82.38468170166016,90.11536407470703,92.6782455444336,85.06278991699219,79.24581146240234,82.98165130615234,73.18103790283203,69.24674224853516,78.57714080810547,92.7375717163086,72.14032745361328,87.03590393066406,81.46265411376953,68.21080780029297,80.1226577758789,87.6817626953125,84.45259857177734,77.44351959228516,77.63648223876953,72.67230987548828,72.89606475830078,82.54074096679688,87.42666625976562,83.40631103515625,80.30253601074219,64.9507064819336,84.76935577392578,80.12603759765625,78.42719268798828,74.51997375488281,67.55058288574219,77.25078582763672,77.21468353271484,87.70310974121094,80.8419418334961,95.03274536132812,74.42684936523438,81.86111450195312,90.0755386352539,81.80162048339844,94.55459594726562,80.96810150146484,87.88292694091797,73.6364974975586,77.85075378417969,81.2666015625,78.46866607666016,89.18185424804688,84.37251281738281,59.81278610229492,85.65823364257812,81.33202362060547,83.84535217285156,83.47914123535156,83.46813201904297,72.74463653564453,84.1136703491211,71.85577392578125,84.235107421875,76.62747955322266,94.1339111328125,76.39457702636719,65.1690902709961,70.27296447753906,92.73860168457031,90.00092315673828,86.61473083496094,87.79866790771484,78.1092758178711,77.570068359375,75.93203735351562,89.60601043701172,76.94352722167969,80.658935546875,80.3884506225586,84.13134002685547,79.99333953857422,85.80488586425781,85.63796997070312,73.17371368408203,84.5052719116211,78.3974380493164,80.69373321533203,73.80432891845703,78.82091522216797,76.5054931640625,60.43734359741211,79.94131469726562,96.32477569580078,67.82769775390625,69.79314422607422,86.32595825195312,69.61534118652344,66.82878112792969,75.62003326416016,79.55929565429688,74.83369445800781,71.66236114501953,76.9869613647461,88.86595153808594,73.44029235839844,82.96356964111328,83.29519653320312,81.536376953125,73.03938293457031,92.6610107421875,68.02738189697266,73.86078643798828,75.46776580810547,88.364013671875,73.75932312011719,81.55877685546875,63.296451568603516,84.91209411621094,62.14385223388672,83.21248626708984,78.80574035644531,83.53377532958984,81.49333190917969,88.47735595703125,79.259033203125,73.62449645996094,75.04886627197266,73.14122009277344,85.14362335205078,69.49935913085938,73.41455078125,68.13298797607422,80.58358001708984,84.86966705322266,71.218994140625,74.35700988769531,80.344970703125,80.4691390991211,86.44571685791016,81.45845031738281,85.83403778076172,77.48361206054688,90.39654541015625,81.21499633789062,82.91556549072266,80.13101196289062,80.68489074707031,91.04558563232422,77.32183074951172,84.67205810546875,89.32673645019531,84.15424346923828,76.82238006591797,82.79158782958984,81.55384826660156,91.85102081298828,72.28620147705078,98.31668853759766,91.8391342163086,73.5456771850586,84.07473754882812,85.28583526611328,90.94417572021484,81.5823745727539,79.94286346435547,91.77222442626953,83.3472900390625,85.43048095703125,85.38031768798828,75.30682373046875,82.3963623046875,86.38980102539062,87.15750122070312,76.62208557128906,95.05514526367188,87.64569091796875,76.78248596191406,84.34938049316406,83.81300354003906,87.09061431884766,79.06775665283203,57.39666748046875,64.44052124023438,73.0058822631836,71.05889892578125,70.02040100097656,79.45384979248047,86.64308166503906,96.99916076660156,76.44438171386719,78.40570068359375,82.02729034423828,86.78021240234375,83.37566375732422,83.02790069580078,87.27757263183594,73.30048370361328,79.39472198486328,70.20356750488281,82.82711029052734,83.2793960571289,63.352325439453125,86.92740631103516,92.06965637207031,82.01651000976562,72.79741668701172,79.16842651367188,85.47798919677734,76.34688568115234,53.4732551574707,82.02948760986328,75.3006591796875,85.54143524169922,75.71810913085938,88.03775024414062,81.58540344238281,79.72864532470703,79.34408569335938,75.21600341796875,74.71183013916016,73.320556640625,94.20622253417969,59.42980194091797,88.36735534667969,84.47697448730469,74.99483489990234,77.5477523803711,72.24049377441406,87.6148910522461,72.86734771728516,70.41293334960938,87.58939361572266,79.17121887207031,84.75004577636719,76.20269775390625,77.9306869506836,87.21565246582031,86.46607208251953,76.00836944580078,75.82023620605469,89.08942413330078 -2976,82.97401428222656,88.25121307373047,88.3993148803711,73.98896789550781,92.14140319824219,85.66531372070312,76.07391357421875,91.04674530029297,75.79553985595703,72.98026275634766,79.06584930419922,82.38468170166016,90.11536407470703,92.6782455444336,84.33580780029297,79.24581146240234,82.98165130615234,73.18103790283203,69.24674224853516,78.57714080810547,92.7375717163086,72.14032745361328,84.16849517822266,81.86905670166016,68.21080780029297,80.77299499511719,88.08876037597656,84.6901626586914,76.89791870117188,77.63648223876953,72.67230987548828,72.89606475830078,82.54074096679688,87.42666625976562,83.40631103515625,80.30253601074219,64.9507064819336,84.76935577392578,80.12603759765625,79.2564468383789,74.51997375488281,67.55058288574219,77.15850067138672,77.65001678466797,87.62770080566406,80.8419418334961,95.03274536132812,74.42684936523438,81.86111450195312,90.0755386352539,81.80162048339844,94.55459594726562,80.96810150146484,87.88292694091797,73.6364974975586,77.85075378417969,81.2666015625,78.46866607666016,89.18185424804688,83.03205871582031,59.81278610229492,86.12561798095703,81.33202362060547,83.84535217285156,83.47914123535156,83.46813201904297,72.74463653564453,84.4507064819336,71.85577392578125,84.235107421875,76.68631744384766,99.04550170898438,75.84197998046875,65.10456085205078,70.27296447753906,92.53279876708984,90.00092315673828,86.6801986694336,87.79866790771484,78.1092758178711,77.570068359375,75.93203735351562,89.60601043701172,76.94352722167969,80.58140563964844,80.3884506225586,82.43608856201172,79.99333953857422,84.82539367675781,85.63796997070312,73.35266876220703,84.5052719116211,78.3974380493164,80.69373321533203,73.80432891845703,78.82091522216797,76.5054931640625,60.43734359741211,79.94131469726562,96.32477569580078,67.82769775390625,67.55587005615234,86.32595825195312,69.61534118652344,66.82878112792969,75.62003326416016,79.55929565429688,74.83369445800781,71.66236114501953,76.9869613647461,86.57890319824219,73.44029235839844,82.96356964111328,83.29519653320312,81.536376953125,73.03938293457031,92.6610107421875,68.02738189697266,73.86078643798828,75.46776580810547,88.364013671875,73.75932312011719,81.55877685546875,63.296451568603516,84.91209411621094,62.14385223388672,82.4935531616211,78.80574035644531,83.53377532958984,81.49333190917969,86.5014877319336,79.259033203125,73.62449645996094,73.91446685791016,74.2063980102539,85.14362335205078,69.49935913085938,73.27436828613281,68.13298797607422,80.58358001708984,84.86966705322266,71.218994140625,74.35700988769531,80.344970703125,80.4691390991211,86.44571685791016,81.45845031738281,85.83403778076172,77.48361206054688,90.39654541015625,81.21499633789062,82.91556549072266,80.13101196289062,83.31526184082031,91.04558563232422,77.32183074951172,84.67205810546875,89.32673645019531,83.88496398925781,76.82238006591797,82.79158782958984,81.55384826660156,91.85102081298828,72.28620147705078,98.31668853759766,91.8391342163086,73.5456771850586,84.07473754882812,84.07953643798828,90.88196563720703,81.5823745727539,79.94286346435547,91.77222442626953,81.53884887695312,85.43048095703125,85.18977355957031,75.30682373046875,82.3963623046875,86.38980102539062,87.15750122070312,76.62208557128906,95.05514526367188,87.64569091796875,76.86036682128906,84.34938049316406,83.81300354003906,87.25434875488281,79.06775665283203,58.39461135864258,64.44052124023438,73.0058822631836,71.05889892578125,70.85322570800781,78.87163543701172,85.01078033447266,96.99916076660156,76.44438171386719,78.68696594238281,81.9260482788086,86.78021240234375,83.37566375732422,83.02790069580078,87.27757263183594,72.8219985961914,79.4653549194336,70.20356750488281,82.89484405517578,83.2793960571289,63.352325439453125,86.92740631103516,92.06965637207031,82.01651000976562,72.79741668701172,79.16842651367188,87.60408782958984,73.33460235595703,53.4732551574707,83.48342895507812,75.3006591796875,85.81675720214844,75.71810913085938,87.91986846923828,82.77320861816406,79.72864532470703,80.33792877197266,75.21600341796875,74.71183013916016,73.58618927001953,94.20622253417969,59.42980194091797,88.36735534667969,84.47697448730469,74.99483489990234,77.5477523803711,72.24049377441406,87.6148910522461,72.86734771728516,70.91507720947266,87.58939361572266,79.33477783203125,84.75004577636719,76.20269775390625,77.9306869506836,87.03977966308594,86.46607208251953,76.00836944580078,75.82023620605469,89.83499908447266 -2977,82.97401428222656,88.25121307373047,88.3993148803711,73.98896789550781,92.14140319824219,85.66531372070312,76.07391357421875,91.04674530029297,75.79553985595703,72.98026275634766,79.06584930419922,82.38468170166016,90.11536407470703,92.88863372802734,84.33580780029297,79.24581146240234,82.98165130615234,73.18103790283203,69.24674224853516,78.57714080810547,92.7375717163086,72.14032745361328,84.16849517822266,81.86905670166016,68.21080780029297,80.77299499511719,88.03034973144531,83.79780578613281,76.91854095458984,77.63648223876953,72.6552505493164,72.89606475830078,80.08489227294922,87.42666625976562,83.40631103515625,80.30253601074219,65.81537628173828,84.76935577392578,80.12603759765625,78.66583251953125,74.51997375488281,67.55058288574219,77.15850067138672,77.65001678466797,87.62770080566406,80.8419418334961,95.03274536132812,74.42684936523438,81.86111450195312,91.34331512451172,81.80162048339844,94.55459594726562,80.96810150146484,87.88292694091797,73.6364974975586,77.85075378417969,81.2666015625,78.46866607666016,89.18185424804688,83.03205871582031,60.79438400268555,86.12561798095703,81.33202362060547,83.84535217285156,83.47914123535156,83.49933624267578,72.74463653564453,84.4507064819336,71.85577392578125,84.235107421875,76.68631744384766,91.64042663574219,76.21997833251953,65.10456085205078,70.20379638671875,92.53279876708984,90.00092315673828,86.6801986694336,87.79866790771484,78.1092758178711,77.570068359375,75.09081268310547,89.60601043701172,76.94352722167969,80.58140563964844,80.3884506225586,82.43608856201172,79.99333953857422,84.82539367675781,85.63796997070312,73.35266876220703,84.5052719116211,78.45803833007812,80.14417266845703,73.80432891845703,78.82091522216797,76.14832305908203,60.6846923828125,79.94131469726562,96.32477569580078,67.82769775390625,67.55587005615234,86.32595825195312,69.55519104003906,66.82878112792969,75.62003326416016,79.25188446044922,74.83369445800781,71.66236114501953,79.41358947753906,89.2876205444336,73.44029235839844,82.96356964111328,81.68589782714844,81.536376953125,73.03938293457031,92.6610107421875,68.02738189697266,73.86078643798828,75.46776580810547,88.29138946533203,73.75932312011719,81.55877685546875,63.296451568603516,84.91209411621094,62.14385223388672,82.4935531616211,78.80574035644531,83.53377532958984,81.49333190917969,86.0587387084961,79.259033203125,71.618896484375,75.23872375488281,74.85586547851562,85.14362335205078,69.49935913085938,71.75569915771484,68.86295318603516,80.58358001708984,85.05426025390625,71.57801818847656,73.70393371582031,84.17803955078125,80.13240814208984,86.44571685791016,81.45845031738281,85.83403778076172,77.6458740234375,90.39654541015625,81.21499633789062,82.91556549072266,80.13101196289062,79.08489227294922,91.04558563232422,77.32183074951172,84.67205810546875,89.61384582519531,83.88496398925781,77.58576965332031,82.90459442138672,81.55384826660156,91.85102081298828,72.28620147705078,98.31668853759766,91.8391342163086,72.13789367675781,84.07473754882812,84.07953643798828,90.88196563720703,79.95769500732422,79.29173278808594,89.77055358886719,81.53884887695312,85.43048095703125,86.21219635009766,75.30682373046875,82.92451477050781,86.38980102539062,87.15750122070312,76.99732208251953,96.66382598876953,87.64569091796875,76.82897186279297,84.34938049316406,83.81300354003906,87.33037567138672,77.03166198730469,57.71580123901367,64.44052124023438,73.0058822631836,71.05889892578125,71.03469848632812,78.87163543701172,85.01078033447266,97.49069213867188,76.26435852050781,78.42243957519531,81.9260482788086,86.78021240234375,83.37566375732422,83.02790069580078,87.27757263183594,74.30123138427734,79.4653549194336,70.20356750488281,82.75611114501953,82.86598205566406,63.352325439453125,86.92740631103516,92.06965637207031,82.01651000976562,72.79741668701172,79.16842651367188,87.60408782958984,75.04275512695312,53.28899383544922,83.73065185546875,75.3006591796875,85.81675720214844,76.48346710205078,89.22663879394531,82.77320861816406,79.87728118896484,80.33792877197266,75.21600341796875,74.71183013916016,73.58618927001953,94.20622253417969,59.17386245727539,88.36735534667969,84.47697448730469,74.99483489990234,77.5477523803711,72.24049377441406,87.6148910522461,72.86734771728516,71.29244995117188,87.58939361572266,79.33477783203125,85.16314697265625,76.20269775390625,77.22300720214844,87.03977966308594,86.46607208251953,76.00836944580078,74.72962188720703,89.83499908447266 -2978,82.97401428222656,88.25121307373047,88.3993148803711,75.83155059814453,92.14140319824219,85.66531372070312,76.07391357421875,91.04674530029297,75.79553985595703,72.92168426513672,79.06584930419922,82.20550537109375,90.11536407470703,92.88863372802734,84.33580780029297,79.24581146240234,81.4763412475586,73.18103790283203,69.24674224853516,78.57714080810547,92.7375717163086,72.14032745361328,84.16849517822266,81.83345031738281,68.21080780029297,80.77299499511719,88.03034973144531,83.79780578613281,76.91854095458984,77.57373046875,72.6552505493164,73.63272094726562,80.08489227294922,87.42666625976562,83.40631103515625,80.99999237060547,65.81537628173828,84.76935577392578,80.12603759765625,78.82843780517578,74.51997375488281,67.55058288574219,77.06942749023438,77.65001678466797,87.236083984375,80.8419418334961,94.53250122070312,74.42684936523438,77.51322174072266,91.34331512451172,81.80162048339844,94.55459594726562,80.97757720947266,87.88292694091797,73.78570556640625,77.85075378417969,81.2666015625,78.50032043457031,89.18185424804688,84.7672119140625,60.79438400268555,86.19702911376953,81.33202362060547,83.84535217285156,83.47914123535156,83.49933624267578,72.74463653564453,84.70922088623047,71.78565216064453,84.235107421875,76.68631744384766,91.64042663574219,76.71299743652344,65.10456085205078,70.20379638671875,92.48832702636719,90.13518524169922,86.88063049316406,87.79866790771484,78.1092758178711,77.570068359375,75.09081268310547,89.60601043701172,76.94352722167969,80.58140563964844,80.3884506225586,81.54216766357422,79.99333953857422,85.21453094482422,85.63796997070312,73.47015380859375,83.39303588867188,78.45803833007812,80.14417266845703,73.80432891845703,78.82091522216797,76.14832305908203,60.881046295166016,80.91664123535156,92.28954315185547,67.82769775390625,67.55587005615234,86.1845932006836,69.55519104003906,66.82878112792969,75.81919860839844,79.25188446044922,74.83369445800781,71.70187377929688,79.41358947753906,88.55255126953125,73.44029235839844,82.96356964111328,80.06281280517578,81.0809326171875,73.03938293457031,90.76861572265625,68.02738189697266,73.86078643798828,75.46776580810547,88.29138946533203,73.75932312011719,81.55877685546875,63.9205207824707,84.91209411621094,62.14385223388672,82.4935531616211,78.80574035644531,83.53377532958984,81.49333190917969,86.0587387084961,79.259033203125,71.618896484375,75.23872375488281,74.85586547851562,85.14362335205078,69.49935913085938,71.75569915771484,68.86295318603516,81.13346862792969,85.05426025390625,71.57801818847656,73.70393371582031,84.17803955078125,86.74429321289062,89.18798828125,81.45845031738281,85.83403778076172,77.59600067138672,90.39654541015625,81.21499633789062,82.91556549072266,80.13101196289062,82.87652587890625,91.04558563232422,77.32183074951172,84.67205810546875,89.61384582519531,83.88496398925781,78.08175659179688,82.90459442138672,82.1405258178711,91.85102081298828,72.28620147705078,98.31668853759766,91.8391342163086,72.13789367675781,84.07473754882812,84.07953643798828,90.88196563720703,79.95769500732422,79.29173278808594,89.77055358886719,81.53884887695312,85.43048095703125,85.84170532226562,75.30682373046875,82.92451477050781,86.39275360107422,87.15750122070312,76.99732208251953,96.66382598876953,87.64569091796875,76.82897186279297,84.34938049316406,83.79805755615234,81.44847106933594,77.03166198730469,57.71580123901367,64.43658447265625,73.0058822631836,71.31756591796875,71.03469848632812,78.87163543701172,85.04796600341797,97.49069213867188,76.26435852050781,78.70845794677734,86.73676300048828,86.9595947265625,83.37566375732422,83.02790069580078,87.27757263183594,74.30123138427734,79.4653549194336,70.20356750488281,82.75611114501953,82.86598205566406,63.352325439453125,86.92740631103516,92.06965637207031,82.01651000976562,72.79741668701172,79.0987777709961,87.60408782958984,74.60296630859375,53.28899383544922,83.73065185546875,75.37556457519531,85.92868041992188,76.48346710205078,89.22663879394531,82.77320861816406,79.15767669677734,80.33792877197266,74.37039947509766,74.93436431884766,73.58618927001953,97.94710540771484,59.17386245727539,86.27727508544922,84.47697448730469,74.99483489990234,77.5477523803711,72.52912139892578,87.6148910522461,72.88862609863281,71.29244995117188,87.58939361572266,79.33477783203125,85.62983703613281,79.0830307006836,79.23170471191406,87.03977966308594,86.10284423828125,76.00836944580078,69.66033935546875,89.83499908447266 -2979,83.17611694335938,88.25121307373047,88.3993148803711,75.83155059814453,92.14140319824219,85.66531372070312,76.07391357421875,91.04674530029297,75.6683578491211,72.92168426513672,79.06584930419922,82.70594787597656,90.11536407470703,92.88863372802734,84.33580780029297,79.24581146240234,81.62515258789062,73.26241302490234,68.8854751586914,78.57714080810547,91.87496185302734,72.14032745361328,81.95855712890625,81.83345031738281,68.21080780029297,81.37747192382812,88.03034973144531,83.77864837646484,76.91854095458984,77.57373046875,72.6552505493164,73.63272094726562,80.08489227294922,87.42666625976562,83.40631103515625,80.99999237060547,65.81537628173828,84.76935577392578,80.12603759765625,78.82843780517578,74.51997375488281,67.55058288574219,77.06942749023438,77.44857025146484,87.236083984375,80.8419418334961,93.5433120727539,74.42684936523438,78.8840560913086,91.34331512451172,81.80162048339844,94.55459594726562,81.0398178100586,87.88292694091797,73.78570556640625,77.85075378417969,81.2666015625,78.36576843261719,89.18185424804688,84.59117889404297,59.67884826660156,86.19702911376953,83.87047576904297,83.84535217285156,83.47914123535156,83.49933624267578,72.74463653564453,84.70922088623047,71.81502532958984,84.235107421875,76.68631744384766,91.64042663574219,76.1988754272461,65.26815032958984,70.20379638671875,93.00053405761719,90.13518524169922,86.9285659790039,87.61518859863281,78.10739135742188,77.570068359375,75.09081268310547,92.24064636230469,77.01488494873047,80.58140563964844,80.52245330810547,81.54216766357422,80.20611572265625,85.21453094482422,85.63796997070312,73.47015380859375,83.39303588867188,77.62928771972656,80.14417266845703,73.80432891845703,78.82091522216797,76.0435562133789,60.856658935546875,80.91664123535156,92.28954315185547,67.82769775390625,67.55587005615234,86.25936126708984,69.55519104003906,66.82878112792969,75.81919860839844,79.25188446044922,74.83369445800781,71.70187377929688,79.41358947753906,88.55255126953125,73.44029235839844,82.96356964111328,87.9625473022461,81.0809326171875,73.03938293457031,89.08185577392578,68.02738189697266,73.86078643798828,75.46776580810547,88.29138946533203,73.75932312011719,81.55877685546875,63.9205207824707,84.91209411621094,62.14385223388672,82.4935531616211,78.80574035644531,83.53377532958984,81.49333190917969,86.0587387084961,79.259033203125,71.618896484375,76.54319763183594,73.87303924560547,85.14362335205078,69.20088958740234,71.044921875,68.86295318603516,81.13346862792969,85.05426025390625,71.57801818847656,73.70393371582031,84.17803955078125,86.74429321289062,89.18798828125,81.28639221191406,85.83403778076172,77.59600067138672,90.39654541015625,81.21499633789062,81.14008331298828,80.13101196289062,80.79821014404297,91.05441284179688,77.32183074951172,86.59176635742188,89.61384582519531,83.88496398925781,78.08175659179688,82.90459442138672,80.12411499023438,91.85102081298828,73.1788101196289,98.31668853759766,91.8391342163086,72.13789367675781,84.07473754882812,84.07953643798828,93.20633697509766,79.95769500732422,79.29173278808594,89.41692352294922,83.46080780029297,85.43048095703125,82.0743408203125,75.30682373046875,82.92451477050781,86.39275360107422,86.43141174316406,76.99732208251953,96.66382598876953,81.3874282836914,76.82897186279297,84.34938049316406,81.53661346435547,82.49279022216797,77.52039337158203,58.014427185058594,65.4254150390625,73.0058822631836,71.31756591796875,71.03469848632812,78.87163543701172,85.04796600341797,97.49069213867188,76.26435852050781,78.70845794677734,87.98067474365234,86.9595947265625,83.37566375732422,83.02790069580078,84.2966079711914,74.30123138427734,79.2265396118164,70.20356750488281,82.75611114501953,82.86598205566406,63.352325439453125,88.08651733398438,92.06965637207031,82.01651000976562,72.79741668701172,79.0987777709961,87.60408782958984,74.60296630859375,52.031517028808594,83.73065185546875,75.37556457519531,83.25051879882812,76.48346710205078,89.22663879394531,82.77320861816406,79.15767669677734,80.33792877197266,74.37039947509766,74.93436431884766,72.84638214111328,97.94710540771484,59.17386245727539,86.27727508544922,84.47697448730469,74.99483489990234,77.6093978881836,72.68836975097656,87.6148910522461,72.88862609863281,71.86200714111328,87.58939361572266,79.33477783203125,85.62983703613281,79.0830307006836,79.23170471191406,87.03977966308594,86.10284423828125,76.00836944580078,80.37335205078125,91.31647491455078 -2980,83.17611694335938,88.25121307373047,88.3993148803711,75.83155059814453,92.14140319824219,85.66531372070312,76.07391357421875,91.04674530029297,76.32676696777344,72.92168426513672,79.93058013916016,82.70594787597656,90.11536407470703,92.88863372802734,84.33580780029297,79.41826629638672,81.12285614013672,73.26241302490234,69.48408508300781,78.57714080810547,91.87496185302734,72.14032745361328,83.2950210571289,81.83345031738281,68.84100341796875,82.72572326660156,88.03034973144531,83.77864837646484,76.91854095458984,77.56995391845703,72.50900268554688,73.63272094726562,80.08489227294922,87.42666625976562,83.40631103515625,81.7359390258789,65.81537628173828,84.76935577392578,80.12603759765625,78.317626953125,74.51997375488281,67.55058288574219,76.98360443115234,77.44857025146484,87.6448974609375,80.8419418334961,92.32254791259766,74.42684936523438,77.14844512939453,90.1994857788086,81.80162048339844,94.55459594726562,81.0398178100586,87.88292694091797,73.78570556640625,78.40547180175781,81.2666015625,78.36576843261719,89.18707275390625,84.59117889404297,59.67884826660156,86.19702911376953,84.66090393066406,83.70712280273438,83.47914123535156,83.49933624267578,72.48493957519531,84.70922088623047,71.21381378173828,84.235107421875,76.68631744384766,94.78123474121094,76.97601318359375,65.16712188720703,70.20379638671875,93.00053405761719,89.5887680053711,86.97859191894531,87.61518859863281,78.10739135742188,77.570068359375,75.09081268310547,92.0979995727539,77.01488494873047,80.58140563964844,80.52245330810547,81.54216766357422,80.20611572265625,85.21453094482422,80.5991439819336,73.4404525756836,83.39303588867188,77.62928771972656,80.14417266845703,73.80432891845703,78.82091522216797,76.0435562133789,60.856658935546875,80.91664123535156,92.28954315185547,67.82769775390625,67.55587005615234,86.25936126708984,69.27348327636719,67.15895080566406,75.81919860839844,79.25188446044922,74.83369445800781,71.70187377929688,79.41358947753906,85.14976501464844,73.44029235839844,82.96356964111328,84.0174331665039,81.0809326171875,73.03938293457031,91.20338439941406,68.02738189697266,73.86078643798828,79.4325942993164,88.29138946533203,73.75932312011719,81.55877685546875,63.995635986328125,87.8311996459961,62.14385223388672,82.4935531616211,78.5967788696289,83.53377532958984,81.19955444335938,86.0587387084961,79.259033203125,72.90178680419922,75.88543701171875,73.87303924560547,85.14362335205078,69.20088958740234,71.044921875,68.86295318603516,81.13346862792969,85.05426025390625,67.61860656738281,73.70393371582031,84.17803955078125,86.74429321289062,89.18798828125,82.01138305664062,85.66433715820312,76.98294067382812,90.39654541015625,81.21499633789062,81.14008331298828,79.73139953613281,81.75677490234375,91.05441284179688,77.32183074951172,86.59176635742188,89.61384582519531,83.88496398925781,78.08175659179688,82.57827758789062,81.94011688232422,91.85102081298828,71.58434295654297,98.31668853759766,91.8391342163086,72.173095703125,84.07473754882812,84.39867401123047,93.20633697509766,79.95769500732422,82.3915786743164,89.41692352294922,85.14933776855469,85.43048095703125,81.63053894042969,75.30682373046875,83.47587585449219,86.07635498046875,85.85877227783203,76.85074615478516,95.18094635009766,81.19792175292969,77.09288787841797,84.34938049316406,84.7380142211914,82.28919219970703,77.52039337158203,58.014427185058594,65.4254150390625,73.0058822631836,71.31756591796875,71.03469848632812,78.87163543701172,85.04796600341797,99.11390686035156,76.26435852050781,79.28778839111328,83.75484466552734,86.9595947265625,83.37566375732422,83.02790069580078,88.6017074584961,74.30123138427734,79.25309753417969,70.20356750488281,82.570556640625,83.7309341430664,63.12234878540039,88.08651733398438,92.06965637207031,82.37571716308594,72.79741668701172,79.0987777709961,88.44969940185547,75.52274322509766,51.883026123046875,83.73065185546875,75.37556457519531,85.13667297363281,76.48346710205078,89.22663879394531,82.77320861816406,79.15767669677734,80.33792877197266,74.37039947509766,74.93436431884766,72.84638214111328,96.97294616699219,59.17386245727539,86.27727508544922,84.47697448730469,74.99483489990234,78.03504180908203,72.68836975097656,91.04471588134766,72.88862609863281,73.23661804199219,86.90662384033203,79.33477783203125,86.29610443115234,78.76467895507812,79.23170471191406,87.03977966308594,86.10284423828125,77.82427215576172,80.37335205078125,91.31647491455078 -2981,83.17611694335938,88.25121307373047,88.3993148803711,76.56610870361328,92.14140319824219,85.95899200439453,76.07391357421875,91.04674530029297,76.32676696777344,72.92168426513672,80.869873046875,82.70594787597656,90.11536407470703,92.88863372802734,84.24493408203125,79.740966796875,81.12285614013672,73.26241302490234,69.48408508300781,78.57714080810547,91.87496185302734,71.59844970703125,83.2950210571289,81.83345031738281,68.84100341796875,82.72572326660156,88.03034973144531,83.67472839355469,76.73603057861328,77.56995391845703,72.50900268554688,73.63272094726562,80.08489227294922,87.42666625976562,83.40631103515625,81.7359390258789,65.81537628173828,84.87413024902344,81.61175537109375,78.317626953125,74.51997375488281,67.55058288574219,76.98360443115234,77.44857025146484,87.6448974609375,82.3409423828125,92.32254791259766,74.42684936523438,77.14844512939453,90.1994857788086,81.93706512451172,91.73121643066406,80.78939819335938,88.04351043701172,73.78570556640625,78.40547180175781,81.2666015625,78.27579498291016,89.18707275390625,84.59117889404297,59.67884826660156,86.19702911376953,84.66090393066406,83.70712280273438,83.47914123535156,83.49933624267578,72.48493957519531,84.70922088623047,71.21381378173828,84.235107421875,76.68631744384766,94.22459411621094,76.97601318359375,65.16712188720703,70.6954345703125,93.00053405761719,89.5887680053711,86.97859191894531,87.61518859863281,78.10739135742188,77.570068359375,75.75167846679688,92.0979995727539,77.01488494873047,80.58140563964844,80.4937744140625,81.54216766357422,80.20611572265625,85.21453094482422,80.5991439819336,73.4404525756836,83.39303588867188,80.62098693847656,80.14417266845703,73.80432891845703,78.82091522216797,77.159423828125,60.856658935546875,80.91664123535156,99.06352996826172,67.82769775390625,67.55587005615234,86.52877044677734,69.27348327636719,67.15895080566406,77.05018615722656,79.25188446044922,76.12654113769531,71.70187377929688,76.76321411132812,85.14976501464844,73.44029235839844,82.63220977783203,80.62228393554688,81.0809326171875,72.64947509765625,91.20338439941406,68.02738189697266,73.86078643798828,79.4325942993164,88.29138946533203,77.24726104736328,85.40813446044922,63.995635986328125,85.98531341552734,62.14385223388672,82.4935531616211,78.5967788696289,83.53377532958984,81.19955444335938,86.0587387084961,79.25180053710938,72.90178680419922,75.37993621826172,73.87303924560547,85.14362335205078,69.20088958740234,70.05496215820312,68.86295318603516,81.13346862792969,85.05426025390625,67.61860656738281,73.70393371582031,84.17803955078125,86.74429321289062,89.18798828125,82.01138305664062,85.66433715820312,76.98294067382812,90.39654541015625,81.26152801513672,81.14008331298828,79.73139953613281,81.75677490234375,91.12579345703125,77.32183074951172,88.87125396728516,89.61384582519531,83.88496398925781,78.08175659179688,82.57827758789062,81.60603332519531,91.85102081298828,71.58434295654297,98.31668853759766,91.8391342163086,72.173095703125,83.23902130126953,83.41121673583984,92.4389419555664,79.95769500732422,82.3915786743164,89.41692352294922,87.01637268066406,85.43048095703125,81.63053894042969,75.30682373046875,83.47587585449219,86.07635498046875,86.79935455322266,78.17110443115234,93.8582534790039,86.23200988769531,77.14309692382812,84.34938049316406,84.7380142211914,82.28919219970703,79.15042114257812,58.20318603515625,65.80661010742188,73.0058822631836,71.31756591796875,71.03469848632812,78.87163543701172,85.04796600341797,99.11390686035156,76.26435852050781,79.28778839111328,85.3884048461914,86.9595947265625,83.37566375732422,83.02790069580078,88.6017074584961,76.89495849609375,79.25309753417969,70.20356750488281,82.61807250976562,86.38937377929688,63.12234878540039,88.08651733398438,92.06965637207031,84.18514251708984,73.2482681274414,79.0987777709961,88.44969940185547,75.52274322509766,51.288875579833984,84.7487564086914,75.37556457519531,85.13667297363281,77.51539611816406,90.07444763183594,82.77320861816406,79.15767669677734,81.91272735595703,74.37039947509766,74.91114044189453,72.83514404296875,96.97294616699219,59.39908218383789,86.27727508544922,84.47697448730469,74.99483489990234,78.03504180908203,72.68836975097656,91.04471588134766,72.88862609863281,73.23661804199219,86.90662384033203,79.33477783203125,86.29610443115234,76.90804290771484,79.23170471191406,87.03977966308594,87.1296157836914,76.50359344482422,76.07833099365234,87.86974334716797 -2982,83.17611694335938,88.03760528564453,88.3993148803711,77.39236450195312,92.36512756347656,85.95899200439453,76.07391357421875,91.04674530029297,76.32676696777344,73.06932067871094,80.869873046875,82.82196044921875,90.11536407470703,92.88863372802734,84.24493408203125,79.06549835205078,81.12285614013672,73.25526428222656,68.96761322021484,78.57714080810547,91.87496185302734,71.59844970703125,83.21883392333984,81.67879486083984,68.84100341796875,82.72572326660156,88.03034973144531,83.67472839355469,76.3699722290039,77.56995391845703,72.50900268554688,73.63272094726562,80.08489227294922,86.66764068603516,83.40631103515625,80.73018646240234,65.81537628173828,84.7061767578125,81.61175537109375,78.317626953125,74.51997375488281,67.55058288574219,76.98360443115234,77.44857025146484,87.6448974609375,80.50877380371094,92.32254791259766,74.42684936523438,80.10455322265625,89.9664077758789,81.93706512451172,91.73121643066406,80.78939819335938,88.04351043701172,74.02925109863281,78.40547180175781,81.2666015625,78.8121337890625,89.18025970458984,84.59117889404297,59.67884826660156,86.19702911376953,81.80583190917969,83.70712280273438,83.47914123535156,83.49933624267578,72.48493957519531,84.70922088623047,71.21381378173828,85.989501953125,76.68631744384766,94.22459411621094,76.97601318359375,65.33948516845703,70.6954345703125,93.00053405761719,89.5887680053711,86.97859191894531,87.61518859863281,78.00101470947266,77.57798767089844,75.75167846679688,92.0979995727539,77.01488494873047,80.58140563964844,80.57682037353516,83.5499038696289,80.20611572265625,85.00252532958984,81.1961669921875,73.4404525756836,83.39303588867188,80.62098693847656,80.14417266845703,73.80432891845703,78.82091522216797,76.92298889160156,60.66385269165039,80.91664123535156,93.37263488769531,67.82769775390625,67.55587005615234,86.52877044677734,69.27348327636719,68.29837799072266,77.05018615722656,79.25188446044922,76.4364242553711,71.70187377929688,76.76321411132812,85.14976501464844,73.44029235839844,82.63220977783203,80.62228393554688,81.0809326171875,72.64947509765625,91.20338439941406,68.02738189697266,73.86078643798828,79.4325942993164,88.34915161132812,75.92558288574219,92.57648468017578,63.995635986328125,85.98531341552734,62.174530029296875,82.4935531616211,78.5967788696289,83.53377532958984,81.19955444335938,86.0587387084961,79.25180053710938,72.90178680419922,75.37993621826172,74.16207885742188,85.14362335205078,69.20088958740234,71.73320770263672,68.86295318603516,81.13346862792969,85.13449096679688,66.66754913330078,73.70393371582031,84.17803955078125,86.74429321289062,89.18798828125,82.01138305664062,85.66433715820312,76.98294067382812,90.39654541015625,81.26152801513672,81.02021026611328,79.73139953613281,81.75677490234375,91.3901596069336,77.32183074951172,88.87125396728516,89.61384582519531,83.88496398925781,78.08175659179688,82.57827758789062,82.82866668701172,91.85102081298828,71.58434295654297,98.31668853759766,91.8391342163086,72.173095703125,83.23902130126953,83.41121673583984,93.65252685546875,79.95769500732422,82.3915786743164,88.06259155273438,88.25172424316406,85.43048095703125,81.63053894042969,75.30682373046875,83.47587585449219,86.07635498046875,86.79935455322266,78.17110443115234,93.8582534790039,86.23200988769531,77.14309692382812,84.34938049316406,84.7380142211914,81.94924926757812,79.15042114257812,59.19679260253906,65.80661010742188,73.1143569946289,71.31756591796875,71.03469848632812,78.87163543701172,85.04796600341797,99.11390686035156,76.26435852050781,79.28778839111328,84.07858276367188,86.9595947265625,83.37566375732422,83.02790069580078,88.6017074584961,75.33320617675781,79.25309753417969,70.20356750488281,82.61807250976562,86.38937377929688,63.12234878540039,88.08651733398438,92.06965637207031,81.11112976074219,73.2482681274414,79.0987777709961,88.44969940185547,73.55904388427734,51.288875579833984,84.7487564086914,75.43867492675781,85.13667297363281,77.51539611816406,90.30938720703125,82.77320861816406,79.15767669677734,81.91272735595703,74.37039947509766,74.91114044189453,72.83514404296875,96.97294616699219,59.39908218383789,86.27727508544922,84.47697448730469,74.99483489990234,78.03504180908203,72.70209503173828,91.04471588134766,72.88862609863281,73.23661804199219,86.94773864746094,79.50730895996094,86.29610443115234,77.35012817382812,79.23170471191406,87.03977966308594,86.94387817382812,76.50359344482422,79.12853240966797,83.79094696044922 -2983,83.24478912353516,88.03760528564453,88.3993148803711,77.39236450195312,92.01158905029297,85.95899200439453,76.07391357421875,92.35746765136719,76.49749755859375,73.06932067871094,80.89498901367188,83.33605194091797,90.04903411865234,92.88863372802734,84.24493408203125,79.06549835205078,81.12285614013672,73.25526428222656,68.96761322021484,78.57714080810547,91.87496185302734,70.78809356689453,83.21883392333984,82.2394790649414,69.12445831298828,82.72572326660156,88.03034973144531,83.67472839355469,76.58842468261719,77.56995391845703,72.50900268554688,73.88397979736328,80.08489227294922,86.66764068603516,83.40631103515625,80.73018646240234,65.69290161132812,84.56251525878906,83.5841064453125,78.317626953125,74.51997375488281,67.55058288574219,76.98360443115234,77.44857025146484,87.14907836914062,80.50877380371094,91.68266296386719,74.42684936523438,80.10455322265625,89.9664077758789,81.93706512451172,91.73121643066406,80.78939819335938,88.04351043701172,73.91578674316406,78.40547180175781,81.2666015625,78.8121337890625,88.65535736083984,83.8092269897461,59.67884826660156,86.19702911376953,81.80583190917969,83.70712280273438,83.47914123535156,83.49933624267578,72.48493957519531,84.70922088623047,71.21381378173828,85.989501953125,76.68631744384766,91.99235534667969,76.74127197265625,65.0704574584961,70.6954345703125,93.00053405761719,89.5887680053711,86.44708251953125,87.61518859863281,78.00101470947266,77.5011215209961,75.75167846679688,92.0979995727539,76.65912628173828,80.58140563964844,80.89500427246094,83.5499038696289,80.20611572265625,85.00252532958984,81.1961669921875,73.4404525756836,83.30118560791016,83.40491485595703,80.14417266845703,71.73773193359375,78.82091522216797,76.92298889160156,60.66385269165039,80.91664123535156,98.25032806396484,67.77006530761719,67.55587005615234,86.4815902709961,69.27348327636719,68.29837799072266,76.68738555908203,79.25188446044922,76.4364242553711,72.54474639892578,76.76321411132812,87.42571258544922,73.44029235839844,82.63220977783203,80.62228393554688,81.0809326171875,72.64947509765625,91.20338439941406,68.02738189697266,73.86078643798828,79.4325942993164,88.34915161132812,75.30607604980469,83.27391815185547,64.3597640991211,85.98531341552734,62.174530029296875,82.4935531616211,78.5967788696289,83.53377532958984,81.19955444335938,86.0587387084961,79.64086151123047,72.90178680419922,75.92640686035156,74.16207885742188,85.14362335205078,70.46273803710938,71.73320770263672,68.86295318603516,81.13346862792969,85.13449096679688,66.61589813232422,73.70393371582031,84.17803955078125,86.74429321289062,89.18614959716797,82.01138305664062,85.66433715820312,77.48966217041016,90.39654541015625,81.26152801513672,81.02021026611328,79.7316665649414,81.75677490234375,91.3901596069336,77.18937683105469,88.87125396728516,89.61384582519531,83.88496398925781,79.95390319824219,82.52590942382812,82.82866668701172,93.09978485107422,71.58434295654297,98.31668853759766,91.8391342163086,72.173095703125,83.23902130126953,83.33648681640625,93.39112854003906,79.95769500732422,82.3915786743164,89.13529205322266,88.25172424316406,85.43048095703125,81.63053894042969,75.1735610961914,83.47587585449219,86.07635498046875,86.79935455322266,75.26976013183594,95.05892181396484,86.23200988769531,76.46170043945312,84.34938049316406,84.7380142211914,83.0216064453125,79.15042114257812,58.32065200805664,65.80661010742188,73.1143569946289,71.31756591796875,71.43120574951172,77.88665771484375,85.04796600341797,98.8573226928711,76.26435852050781,79.28778839111328,84.07858276367188,86.00775909423828,83.37566375732422,83.02790069580078,88.6017074584961,75.33320617675781,79.25309753417969,70.20356750488281,82.61807250976562,86.38937377929688,63.12234878540039,88.08651733398438,92.06965637207031,81.11112976074219,73.68309020996094,79.00674438476562,88.77664947509766,73.55904388427734,53.65327072143555,84.7487564086914,75.43867492675781,85.6581802368164,76.18648529052734,89.8156967163086,82.77320861816406,79.15767669677734,81.91272735595703,74.37039947509766,74.75326538085938,70.49040985107422,96.31153106689453,59.39908218383789,86.27727508544922,84.47697448730469,74.99483489990234,78.0689926147461,72.70209503173828,91.04471588134766,72.88862609863281,74.04280853271484,86.94773864746094,79.50730895996094,83.59737396240234,77.35012817382812,79.23170471191406,87.03977966308594,86.94387817382812,76.23965454101562,79.70594787597656,83.79094696044922 -2984,83.37808990478516,88.73554992675781,88.3993148803711,77.39236450195312,91.80330657958984,85.95899200439453,75.97997283935547,91.47460174560547,74.19761657714844,73.06932067871094,77.74385833740234,83.33605194091797,90.04903411865234,92.88863372802734,85.16776275634766,79.74908447265625,81.0759506225586,73.25526428222656,68.96761322021484,78.53079986572266,91.67403411865234,70.78809356689453,81.72405242919922,82.39352416992188,68.37124633789062,82.72572326660156,88.03034973144531,82.9455795288086,76.3607177734375,77.56995391845703,72.50900268554688,73.88397979736328,79.25094604492188,86.66764068603516,83.40631103515625,79.826171875,65.69290161132812,84.56251525878906,83.5841064453125,78.23660278320312,74.51997375488281,67.55058288574219,76.98360443115234,77.44857025146484,87.04750061035156,82.45545959472656,91.68266296386719,74.34148406982422,80.10455322265625,89.9664077758789,81.93706512451172,91.73121643066406,80.78514862060547,88.04351043701172,73.91578674316406,78.40547180175781,81.2666015625,78.20980834960938,88.65535736083984,83.8092269897461,59.56471252441406,86.39971160888672,83.94513702392578,83.70712280273438,83.47914123535156,83.49933624267578,72.57810974121094,84.70922088623047,71.21381378173828,84.646240234375,76.68631744384766,91.99235534667969,76.76942443847656,65.2574234008789,70.49217224121094,93.00053405761719,89.5887680053711,86.44708251953125,87.61518859863281,78.26644897460938,77.5011215209961,75.3630599975586,93.13691711425781,76.94752502441406,80.58140563964844,80.89500427246094,83.5499038696289,80.20611572265625,85.00252532958984,81.1961669921875,73.4404525756836,83.30118560791016,85.91845703125,80.14417266845703,72.50816345214844,78.82091522216797,76.92298889160156,60.709346771240234,80.91664123535156,98.25032806396484,67.77006530761719,71.09757995605469,87.1206283569336,69.27348327636719,64.39898681640625,76.68738555908203,81.27565002441406,76.4364242553711,72.54474639892578,79.2752456665039,87.42571258544922,73.44029235839844,82.63220977783203,83.14100646972656,81.0809326171875,72.64947509765625,91.20338439941406,68.02738189697266,73.86078643798828,79.4325942993164,88.34915161132812,75.30607604980469,83.27391815185547,64.3597640991211,85.98531341552734,62.27310562133789,82.4935531616211,78.225341796875,83.53377532958984,81.19955444335938,84.95091247558594,79.64086151123047,79.92974090576172,75.92640686035156,74.16207885742188,85.14362335205078,70.46273803710938,69.34312438964844,68.86295318603516,81.54936981201172,85.13449096679688,66.61589813232422,73.55646514892578,83.72183990478516,86.74429321289062,88.28169250488281,82.01138305664062,85.82390594482422,77.48966217041016,90.39654541015625,81.26152801513672,81.2705078125,79.32868957519531,81.75677490234375,91.42575073242188,77.18937683105469,88.87125396728516,89.61384582519531,83.88496398925781,79.95390319824219,82.52590942382812,79.2814712524414,93.09978485107422,71.58434295654297,98.31668853759766,91.8391342163086,72.173095703125,83.23902130126953,83.46885681152344,93.62686157226562,79.95769500732422,83.6922836303711,89.13529205322266,88.25172424316406,86.08134460449219,81.63053894042969,75.1735610961914,82.52222442626953,86.1050796508789,86.79935455322266,76.78538513183594,94.16545104980469,86.23200988769531,76.46170043945312,84.34938049316406,81.26580047607422,84.91694641113281,79.15042114257812,59.717018127441406,65.80661010742188,73.1143569946289,70.44915771484375,71.40424346923828,81.49044036865234,84.9684066772461,99.00132751464844,76.26435852050781,79.69830322265625,86.01130676269531,86.00775909423828,83.37566375732422,83.25238037109375,88.6017074584961,75.88794708251953,79.25309753417969,70.20356750488281,82.61807250976562,86.38937377929688,63.12234878540039,88.08651733398438,92.06965637207031,81.11112976074219,73.04427337646484,78.59962463378906,88.77664947509766,73.55904388427734,51.66004943847656,84.7487564086914,75.43867492675781,85.6581802368164,76.18648529052734,89.8156967163086,82.78997802734375,79.15767669677734,81.91272735595703,74.37039947509766,74.75326538085938,70.49040985107422,96.31153106689453,59.39908218383789,86.27727508544922,84.47697448730469,74.99483489990234,78.0689926147461,72.68333435058594,92.99919891357422,72.88862609863281,74.04280853271484,86.94773864746094,79.50730895996094,83.59737396240234,76.13578796386719,79.23170471191406,87.03977966308594,87.08368682861328,76.23965454101562,79.70594787597656,83.79094696044922 -2985,83.44843292236328,88.73554992675781,88.3993148803711,77.25093841552734,91.61192321777344,85.5655746459961,75.92699432373047,91.47460174560547,75.71434020996094,73.06932067871094,80.88070678710938,83.33605194091797,90.83284759521484,92.88863372802734,85.91798400878906,79.42650604248047,81.0759506225586,73.25526428222656,68.96761322021484,78.53489685058594,91.67403411865234,70.78809356689453,81.72405242919922,82.39352416992188,68.37124633789062,82.32720947265625,88.03034973144531,82.9455795288086,76.3607177734375,77.46366882324219,72.50900268554688,73.88397979736328,79.70327758789062,86.66764068603516,83.40631103515625,81.50713348388672,64.7601547241211,84.64208221435547,83.5841064453125,78.48800659179688,74.51997375488281,67.54511260986328,77.40895080566406,77.44859313964844,87.04750061035156,82.45545959472656,91.68266296386719,74.34148406982422,79.73833465576172,89.9664077758789,81.93706512451172,91.73121643066406,80.6637191772461,87.79752349853516,73.36219024658203,78.40547180175781,81.2666015625,78.20980834960938,88.65535736083984,83.8092269897461,60.086219787597656,86.47683715820312,83.94513702392578,83.90375518798828,83.18268585205078,83.49933624267578,72.57810974121094,84.70922088623047,71.29916381835938,84.646240234375,76.68631744384766,91.99235534667969,76.67964172363281,65.2574234008789,70.49217224121094,93.00053405761719,89.5887680053711,86.44708251953125,85.60099792480469,78.74038696289062,77.5011215209961,75.38604736328125,93.13691711425781,76.60189056396484,80.58140563964844,81.26969146728516,83.5499038696289,80.03380584716797,85.00252532958984,83.3309555053711,73.4404525756836,83.87462615966797,82.27288055419922,80.14417266845703,76.25634002685547,78.70586395263672,76.92298889160156,60.2400016784668,80.91664123535156,99.7101058959961,68.40406799316406,71.09757995605469,87.1206283569336,69.27348327636719,64.39898681640625,76.68738555908203,81.27565002441406,76.4364242553711,72.54474639892578,79.2752456665039,87.42571258544922,74.59941864013672,82.63220977783203,87.29391479492188,81.0809326171875,73.55189514160156,93.85529327392578,68.02738189697266,73.86078643798828,79.4325942993164,88.34915161132812,70.14550018310547,83.27391815185547,64.3597640991211,80.8383560180664,62.25716018676758,82.4935531616211,78.225341796875,85.34087371826172,81.19955444335938,85.86316680908203,79.64086151123047,75.46990966796875,75.1421127319336,74.16207885742188,85.14362335205078,70.40415954589844,69.1639175415039,68.86295318603516,81.54936981201172,85.13449096679688,67.52595520019531,73.55496215820312,88.77251434326172,86.74429321289062,88.28169250488281,82.01138305664062,85.82390594482422,77.48966217041016,90.39654541015625,81.26152801513672,80.8018798828125,79.61690521240234,81.75677490234375,91.42575073242188,77.42829132080078,88.87125396728516,89.61384582519531,83.88496398925781,79.95390319824219,82.52590942382812,79.2814712524414,93.09978485107422,71.58434295654297,98.31668853759766,91.02317810058594,73.52853393554688,83.23902130126953,82.95340728759766,92.28022766113281,79.95769500732422,80.15181732177734,89.13529205322266,85.37530517578125,84.94403076171875,81.63053894042969,75.1735610961914,82.52222442626953,86.1050796508789,86.79935455322266,76.78538513183594,94.16545104980469,86.23200988769531,76.46170043945312,84.34938049316406,81.26580047607422,86.54443359375,79.15042114257812,59.717018127441406,64.62123107910156,73.1143569946289,70.44915771484375,71.40424346923828,81.49044036865234,84.9684066772461,99.00132751464844,76.26435852050781,79.016357421875,88.82823944091797,86.00775909423828,83.4171371459961,83.09268188476562,85.56482696533203,75.88794708251953,79.27940368652344,70.20356750488281,82.61807250976562,86.38937377929688,63.12234878540039,88.08651733398438,92.06965637207031,86.62886810302734,73.04427337646484,79.27863311767578,88.77664947509766,73.55904388427734,51.66004943847656,84.7487564086914,75.43867492675781,87.30584716796875,76.05045318603516,89.8156967163086,82.78997802734375,79.64575958251953,81.91272735595703,74.37039947509766,74.75326538085938,70.49040985107422,96.31153106689453,59.39908218383789,86.18992614746094,86.8587646484375,74.99483489990234,78.30809783935547,72.68333435058594,92.79663848876953,73.33979797363281,74.51319122314453,86.68098449707031,79.50730895996094,83.59737396240234,76.13578796386719,79.48989868164062,87.00604248046875,87.08368682861328,76.23965454101562,73.52799224853516,86.05508422851562 -2986,83.44843292236328,88.73554992675781,88.3993148803711,77.23542022705078,91.61192321777344,85.5655746459961,75.92699432373047,91.47460174560547,75.71434020996094,73.06932067871094,80.88070678710938,84.53079986572266,90.83284759521484,92.88863372802734,85.91798400878906,79.42650604248047,81.0759506225586,73.41034698486328,68.96761322021484,78.53489685058594,91.67403411865234,70.78809356689453,80.27455139160156,82.17271423339844,68.6968765258789,82.32720947265625,88.03034973144531,82.9455795288086,76.3607177734375,77.46366882324219,72.50900268554688,72.42401123046875,79.85792541503906,86.66764068603516,83.40631103515625,81.50713348388672,64.7601547241211,84.64208221435547,83.19174194335938,78.15425109863281,74.51997375488281,67.29924011230469,77.40895080566406,77.44859313964844,87.04750061035156,82.45545959472656,91.68266296386719,74.34148406982422,78.67740631103516,89.9664077758789,81.45079803466797,91.73121643066406,80.6637191772461,87.79752349853516,73.36219024658203,78.40547180175781,82.12462615966797,78.20980834960938,88.53382873535156,83.8092269897461,60.086219787597656,86.47683715820312,83.94513702392578,83.90375518798828,83.18268585205078,83.49933624267578,72.57810974121094,84.70922088623047,71.4236068725586,84.646240234375,76.68631744384766,91.99235534667969,76.67964172363281,65.2574234008789,70.49217224121094,91.7364730834961,89.5887680053711,86.15911102294922,85.60099792480469,78.53667449951172,77.5011215209961,75.657470703125,92.51707458496094,76.60189056396484,80.58140563964844,81.26969146728516,83.5499038696289,80.03380584716797,85.00252532958984,83.3309555053711,73.4404525756836,85.63299560546875,82.27288055419922,80.14417266845703,76.25634002685547,78.70586395263672,76.92298889160156,60.2400016784668,79.71542358398438,94.23979949951172,68.40406799316406,71.09757995605469,87.1206283569336,69.27348327636719,64.39898681640625,78.56131744384766,81.27565002441406,76.4364242553711,72.54474639892578,80.98089599609375,88.1121826171875,74.59941864013672,82.63220977783203,87.29391479492188,81.0809326171875,73.55189514160156,93.85529327392578,68.02738189697266,73.86078643798828,80.19916534423828,88.34915161132812,66.07905578613281,83.27391815185547,64.3597640991211,80.8383560180664,62.245628356933594,82.4935531616211,78.225341796875,85.34087371826172,81.19955444335938,85.86316680908203,79.64086151123047,75.46990966796875,76.03801727294922,74.6373062133789,85.14362335205078,70.40415954589844,69.29512786865234,68.86295318603516,81.54936981201172,85.13449096679688,67.52595520019531,73.55496215820312,88.77251434326172,86.74429321289062,85.37117004394531,82.01138305664062,85.90238189697266,77.21739959716797,90.39654541015625,81.2259521484375,80.8018798828125,79.61690521240234,83.52030944824219,91.42575073242188,77.42829132080078,88.87125396728516,89.61384582519531,83.88496398925781,79.95390319824219,82.52590942382812,79.2814712524414,93.09978485107422,71.58434295654297,98.31668853759766,91.02317810058594,75.09027862548828,82.18497467041016,82.95340728759766,91.42790985107422,79.95769500732422,81.42726135253906,89.13529205322266,88.73712921142578,84.94403076171875,81.63053894042969,74.95035552978516,82.52222442626953,86.1050796508789,87.83842468261719,76.3854751586914,94.16545104980469,86.23200988769531,76.46170043945312,84.0240478515625,83.52626037597656,85.20761108398438,79.15042114257812,59.29176330566406,64.62123107910156,73.1143569946289,70.44915771484375,71.63282012939453,78.24893188476562,84.9684066772461,99.00132751464844,76.26435852050781,79.258056640625,88.82823944091797,86.00775909423828,83.4171371459961,83.09268188476562,87.06009674072266,75.88794708251953,79.27940368652344,70.20356750488281,82.61807250976562,83.41759490966797,63.12234878540039,88.08651733398438,92.06965637207031,86.24160766601562,73.04427337646484,79.41486358642578,88.88163757324219,73.55904388427734,51.66004943847656,84.7487564086914,75.43867492675781,85.9301986694336,76.05045318603516,89.8156967163086,82.78997802734375,79.64575958251953,81.91272735595703,74.37039947509766,74.76851654052734,69.83590698242188,94.5272445678711,59.30248260498047,86.18992614746094,88.40557861328125,74.99483489990234,78.30809783935547,72.68333435058594,95.89240264892578,73.33979797363281,74.51319122314453,86.99659729003906,79.50730895996094,84.25012969970703,76.13578796386719,79.48989868164062,87.00604248046875,87.08368682861328,76.23965454101562,76.90708923339844,86.08567810058594 -2987,83.44843292236328,88.45252990722656,88.91392517089844,77.23542022705078,91.61192321777344,85.7074203491211,75.7569808959961,91.47460174560547,76.14028930664062,73.06932067871094,80.88070678710938,86.63845825195312,90.83284759521484,92.88863372802734,85.91798400878906,79.42650604248047,81.0759506225586,73.52478790283203,68.96761322021484,78.53489685058594,91.67403411865234,70.78809356689453,81.59716033935547,81.56011199951172,68.6968765258789,82.32720947265625,88.03034973144531,83.0843734741211,76.3607177734375,77.43632507324219,72.58731842041016,73.30046844482422,79.85792541503906,86.66764068603516,84.0943374633789,81.50713348388672,64.7601547241211,84.64208221435547,84.5420913696289,78.15425109863281,74.51997375488281,67.29924011230469,77.40895080566406,77.44859313964844,87.04750061035156,82.45545959472656,93.44277954101562,74.34148406982422,78.67740631103516,91.01205444335938,81.1059341430664,92.39715576171875,80.6637191772461,87.80331420898438,73.36219024658203,78.40547180175781,82.12462615966797,78.20980834960938,88.53382873535156,82.67962646484375,60.086219787597656,86.47683715820312,83.94513702392578,83.90375518798828,83.18268585205078,83.49933624267578,72.57810974121094,84.70922088623047,71.4236068725586,84.646240234375,76.68631744384766,91.99235534667969,76.88633728027344,65.38735961914062,70.49217224121094,91.90611267089844,89.5887680053711,86.15911102294922,85.60099792480469,78.50234985351562,78.26671600341797,75.657470703125,92.98530578613281,77.0864486694336,80.58140563964844,81.30558013916016,89.51238250732422,80.03380584716797,85.00252532958984,83.3309555053711,73.21378326416016,85.63299560546875,79.31777954101562,80.14417266845703,76.25634002685547,78.70586395263672,76.92298889160156,60.2400016784668,79.71542358398438,90.8768081665039,68.40406799316406,71.09757995605469,87.1206283569336,69.27348327636719,64.39898681640625,77.56736755371094,81.27565002441406,77.50090026855469,72.54474639892578,77.69297790527344,85.52424621582031,74.59941864013672,82.63220977783203,83.38238525390625,81.0809326171875,73.55189514160156,93.99082946777344,68.02738189697266,73.86078643798828,80.19916534423828,88.34915161132812,66.07905578613281,83.27391815185547,64.3597640991211,80.8383560180664,62.245628356933594,82.4935531616211,78.22150421142578,85.68598937988281,81.01941680908203,85.86316680908203,79.64086151123047,75.46990966796875,76.03801727294922,74.6373062133789,85.14362335205078,70.40415954589844,71.9925537109375,68.86295318603516,81.54936981201172,85.13449096679688,67.71304321289062,73.55496215820312,89.52096557617188,86.74429321289062,85.37117004394531,82.01138305664062,85.90238189697266,76.8311538696289,91.10911560058594,81.2259521484375,83.71564483642578,79.51932525634766,83.52030944824219,89.74516296386719,77.42829132080078,88.87125396728516,89.61384582519531,83.88496398925781,78.7809066772461,82.52590942382812,79.2814712524414,93.09978485107422,70.74929809570312,98.31668853759766,91.27228546142578,75.09027862548828,83.85672760009766,82.95340728759766,91.42790985107422,79.95769500732422,81.79236602783203,90.93226623535156,82.91059875488281,84.94403076171875,81.9898452758789,74.95035552978516,82.52222442626953,86.1050796508789,87.83842468261719,77.59062957763672,97.8745346069336,85.11766052246094,76.46170043945312,84.6539077758789,83.52626037597656,85.20761108398438,79.15042114257812,59.29176330566406,64.62123107910156,73.1143569946289,70.44915771484375,71.63282012939453,78.88359069824219,84.9684066772461,99.00132751464844,76.26435852050781,79.258056640625,88.82823944091797,85.86296081542969,83.4171371459961,82.90713500976562,86.30545806884766,75.88794708251953,79.27940368652344,70.20356750488281,82.61807250976562,83.41759490966797,63.12234878540039,88.08651733398438,92.06965637207031,86.24160766601562,73.04427337646484,79.41486358642578,88.91618347167969,73.14568328857422,51.66004943847656,85.88321685791016,75.30133819580078,85.9301986694336,75.65628814697266,89.91929626464844,83.37413024902344,79.30838012695312,80.47348022460938,74.37039947509766,74.76851654052734,69.83590698242188,94.5272445678711,59.30248260498047,86.18992614746094,88.00764465332031,75.13263702392578,78.30809783935547,72.35137176513672,95.78007507324219,74.48367309570312,75.1128921508789,86.99659729003906,79.58641815185547,84.25012969970703,76.13578796386719,79.48989868164062,87.00604248046875,87.08368682861328,76.23965454101562,73.11844635009766,86.08567810058594 -2988,83.13972473144531,88.45252990722656,89.08293151855469,76.95453643798828,91.61192321777344,85.88745880126953,75.7569808959961,91.47460174560547,76.14028930664062,73.06932067871094,80.88070678710938,86.63845825195312,91.19194793701172,92.88863372802734,85.46833038330078,79.42650604248047,81.0759506225586,73.37419128417969,68.96761322021484,78.53489685058594,91.67403411865234,70.78809356689453,81.59716033935547,81.56011199951172,68.6968765258789,81.9316635131836,88.03034973144531,83.0843734741211,76.3607177734375,77.3782958984375,72.4273452758789,73.30046844482422,79.85792541503906,87.99574279785156,84.0943374633789,81.87310791015625,64.7601547241211,84.64208221435547,84.5420913696289,78.15425109863281,74.40187072753906,67.17908477783203,77.40895080566406,77.44859313964844,87.04750061035156,82.45545959472656,93.44277954101562,74.34148406982422,78.67740631103516,91.01205444335938,81.1059341430664,92.39715576171875,80.6637191772461,87.8299789428711,73.36219024658203,78.40547180175781,82.12462615966797,78.20980834960938,88.53382873535156,82.64344024658203,60.4809455871582,86.47683715820312,84.00895690917969,83.90375518798828,83.18268585205078,83.49933624267578,72.57810974121094,84.70922088623047,71.4236068725586,84.646240234375,76.68631744384766,91.99235534667969,76.88633728027344,65.38735961914062,70.49217224121094,92.24871826171875,89.47432708740234,86.15911102294922,85.60099792480469,78.37584686279297,78.26671600341797,75.657470703125,93.04409790039062,77.0864486694336,80.58140563964844,81.0262451171875,89.51238250732422,80.03380584716797,85.00252532958984,83.3309555053711,73.21378326416016,84.78453826904297,79.31777954101562,80.14417266845703,76.35675048828125,78.70586395263672,76.92298889160156,60.336273193359375,79.71542358398438,90.8768081665039,68.40406799316406,71.09757995605469,87.1206283569336,69.27348327636719,64.39898681640625,77.56736755371094,81.27565002441406,82.01457977294922,72.58583068847656,80.052001953125,85.52424621582031,74.59941864013672,82.63220977783203,80.63862609863281,81.0809326171875,70.72286987304688,93.66407775878906,68.02738189697266,73.86078643798828,80.19916534423828,88.34915161132812,66.07905578613281,82.62864685058594,64.3597640991211,80.8383560180664,62.245628356933594,82.4935531616211,78.22150421142578,85.68598937988281,81.01941680908203,85.86316680908203,79.64086151123047,75.46990966796875,76.03801727294922,74.6373062133789,85.14362335205078,70.40415954589844,71.41444396972656,68.86295318603516,81.54936981201172,85.13449096679688,69.13964080810547,71.23954010009766,86.9413070678711,83.20967864990234,85.37117004394531,82.01138305664062,85.90238189697266,76.59204864501953,91.10911560058594,81.11274719238281,83.71564483642578,79.51932525634766,78.94888305664062,89.74516296386719,77.42829132080078,88.87125396728516,89.61384582519531,83.88496398925781,77.71028137207031,82.52590942382812,79.2814712524414,93.09978485107422,71.00484466552734,98.31668853759766,91.27228546142578,75.09027862548828,84.96603393554688,82.80538940429688,91.42790985107422,79.95769500732422,81.79236602783203,89.60342407226562,87.26325988769531,84.94403076171875,81.9898452758789,74.95035552978516,82.52222442626953,86.1050796508789,87.83842468261719,76.3879165649414,97.8745346069336,85.11766052246094,76.30352020263672,84.6539077758789,83.52626037597656,85.20761108398438,79.40660095214844,59.29176330566406,64.62123107910156,73.1143569946289,70.44915771484375,71.63282012939453,78.88359069824219,84.9684066772461,99.00132751464844,76.6490249633789,79.258056640625,88.82823944091797,85.86296081542969,83.4171371459961,82.90713500976562,86.31165313720703,75.88794708251953,79.27940368652344,70.41864013671875,82.61807250976562,83.41759490966797,63.35715103149414,91.0176773071289,92.06965637207031,85.9110336303711,72.39205169677734,79.41486358642578,85.95372772216797,75.51596069335938,51.66004943847656,85.47773742675781,75.28571319580078,86.38602447509766,76.15089416503906,89.91929626464844,83.37413024902344,79.30838012695312,80.47348022460938,75.06552124023438,74.76851654052734,69.53455352783203,94.5272445678711,59.30248260498047,86.18992614746094,87.79637145996094,75.13263702392578,78.02741241455078,72.35137176513672,93.92585754394531,74.48367309570312,75.1128921508789,86.01079559326172,79.58641815185547,84.25012969970703,76.13578796386719,80.996337890625,87.00604248046875,87.08368682861328,76.8481216430664,73.11844635009766,86.08567810058594 -2989,83.13972473144531,88.91680908203125,89.08293151855469,76.95453643798828,91.61192321777344,85.88745880126953,75.90243530273438,91.47460174560547,76.14028930664062,73.06932067871094,80.88070678710938,86.69798278808594,88.95957946777344,92.88863372802734,85.46833038330078,79.42650604248047,81.0759506225586,73.37419128417969,68.96761322021484,78.53489685058594,91.67403411865234,70.96488952636719,81.59716033935547,81.56011199951172,68.6968765258789,81.9316635131836,88.03034973144531,82.87275695800781,76.3607177734375,77.41287231445312,72.50529479980469,73.30046844482422,79.85792541503906,88.052001953125,84.0943374633789,81.61376190185547,64.7601547241211,84.58757019042969,84.5420913696289,78.15425109863281,74.40187072753906,67.17908477783203,77.70580291748047,77.44859313964844,87.04750061035156,82.91903686523438,93.44277954101562,74.34148406982422,78.67740631103516,91.01205444335938,80.47988891601562,92.39715576171875,80.71548461914062,87.8299789428711,73.36219024658203,78.40547180175781,82.12462615966797,78.2111587524414,88.53382873535156,84.26561737060547,59.83705139160156,86.47683715820312,83.92955780029297,83.90375518798828,83.18268585205078,83.49933624267578,72.63433074951172,84.45594787597656,71.4236068725586,84.89376068115234,76.68631744384766,92.69117736816406,76.88633728027344,65.19414520263672,70.49217224121094,92.24871826171875,89.47432708740234,86.15911102294922,85.60099792480469,78.37584686279297,78.26671600341797,75.38152313232422,93.04409790039062,77.0864486694336,80.58140563964844,81.30105590820312,89.51238250732422,80.03380584716797,85.00252532958984,83.3309555053711,73.21378326416016,85.94145965576172,76.7545166015625,80.04183959960938,76.35675048828125,78.43386840820312,76.92298889160156,60.336273193359375,79.71542358398438,90.14735412597656,70.23589324951172,71.09757995605469,87.1206283569336,69.24308013916016,64.39898681640625,77.56736755371094,81.27565002441406,82.01457977294922,72.58583068847656,79.30598449707031,82.95208740234375,74.59941864013672,82.63220977783203,80.63862609863281,82.09555053710938,74.5120620727539,93.66407775878906,68.02738189697266,73.86078643798828,80.19916534423828,89.10926818847656,67.5061264038086,81.64654541015625,64.3597640991211,80.8383560180664,62.245628356933594,82.4935531616211,78.23979949951172,85.68598937988281,81.61993408203125,85.86316680908203,79.64086151123047,75.46990966796875,76.6911849975586,74.6373062133789,85.23226928710938,70.40415954589844,72.03092956542969,69.54965209960938,81.54936981201172,85.13449096679688,69.13964080810547,72.30868530273438,86.9413070678711,83.20967864990234,85.37117004394531,82.01138305664062,85.90238189697266,76.59204864501953,91.10911560058594,81.10032653808594,83.71564483642578,79.51932525634766,78.94888305664062,89.74516296386719,77.42829132080078,85.43772888183594,89.61384582519531,83.88496398925781,77.71028137207031,82.55054473876953,79.2814712524414,93.09978485107422,71.43024444580078,98.31668853759766,91.27228546142578,75.09027862548828,86.68863677978516,82.34191131591797,91.42790985107422,79.95769500732422,79.03707122802734,86.7127685546875,87.26325988769531,84.94403076171875,79.67926025390625,74.95035552978516,82.52222442626953,86.05260467529297,87.83842468261719,76.3879165649414,89.57938385009766,85.42178344726562,76.29740905761719,84.6539077758789,83.52626037597656,85.20761108398438,79.40660095214844,58.08030700683594,64.62123107910156,73.1143569946289,70.6292495727539,71.63282012939453,76.81603240966797,84.9684066772461,99.00132751464844,76.6490249633789,77.79781341552734,87.02313232421875,85.86296081542969,83.4171371459961,82.90713500976562,86.31165313720703,74.95307159423828,79.27940368652344,70.41864013671875,82.61807250976562,83.41759490966797,63.35715103149414,88.72039031982422,92.06965637207031,84.66390991210938,72.39205169677734,79.41486358642578,86.99524688720703,75.51596069335938,51.66004943847656,83.61067962646484,75.28571319580078,86.16905212402344,76.15089416503906,89.99250793457031,83.37413024902344,79.61875915527344,80.47348022460938,75.06552124023438,74.76851654052734,69.53455352783203,94.5272445678711,59.335636138916016,86.18992614746094,87.36701965332031,75.13263702392578,78.02741241455078,72.35137176513672,91.0262680053711,74.48367309570312,76.0155258178711,86.01079559326172,79.58641815185547,84.25012969970703,76.13578796386719,80.996337890625,87.00604248046875,87.08368682861328,76.8481216430664,72.91375732421875,86.08567810058594 -2990,83.20221710205078,88.91680908203125,91.00225067138672,76.95453643798828,92.00719451904297,85.88745880126953,75.90243530273438,92.3751220703125,76.14028930664062,73.06932067871094,79.52726745605469,84.91525268554688,89.4808349609375,92.88863372802734,85.46833038330078,79.87855529785156,81.7446517944336,73.37419128417969,68.96761322021484,78.53489685058594,91.67403411865234,70.9776382446289,80.79242706298828,81.56011199951172,68.6968765258789,81.9316635131836,88.03034973144531,82.87275695800781,76.3607177734375,77.41287231445312,72.50529479980469,73.30046844482422,79.85792541503906,88.10012817382812,84.43640899658203,81.5507583618164,65.12394714355469,84.58757019042969,84.5420913696289,77.8784408569336,74.40187072753906,67.15908813476562,77.70580291748047,77.44859313964844,87.27457427978516,82.91903686523438,93.79832458496094,74.34148406982422,78.67740631103516,90.76375579833984,80.47988891601562,92.39715576171875,80.65738677978516,87.8299789428711,73.36219024658203,79.11799621582031,81.69612121582031,78.2111587524414,88.53382873535156,84.26561737060547,59.83705139160156,86.47683715820312,83.92955780029297,83.90375518798828,83.18268585205078,83.49933624267578,72.63433074951172,84.45594787597656,71.71585083007812,84.7057113647461,76.68631744384766,92.13600158691406,76.88633728027344,65.19414520263672,70.49217224121094,92.24871826171875,89.47432708740234,86.84222412109375,85.60099792480469,78.37584686279297,77.14058685302734,75.38152313232422,89.95411682128906,76.93212127685547,80.8860855102539,80.98394775390625,89.51238250732422,80.03380584716797,85.00252532958984,83.3309555053711,73.21378326416016,85.94145965576172,76.7545166015625,80.04183959960938,75.00682830810547,81.24034881591797,76.92298889160156,60.336273193359375,79.71542358398438,90.14735412597656,70.23589324951172,71.09757995605469,87.0627212524414,69.24308013916016,63.022979736328125,77.56736755371094,78.93106842041016,82.01457977294922,72.58583068847656,78.00470733642578,82.95208740234375,74.78558349609375,82.63220977783203,80.63862609863281,82.09555053710938,74.5120620727539,93.66407775878906,68.02738189697266,74.1610336303711,80.19916534423828,89.10926818847656,67.5061264038086,81.64654541015625,64.08802795410156,80.8383560180664,61.98107147216797,82.4935531616211,78.48152160644531,91.21197509765625,81.61993408203125,85.86316680908203,79.64086151123047,75.46990966796875,76.6911849975586,74.6373062133789,85.23226928710938,70.12519073486328,72.03092956542969,69.54965209960938,81.54936981201172,85.13449096679688,67.07617950439453,72.74820709228516,83.06634521484375,82.85585021972656,85.37117004394531,81.71712493896484,85.90238189697266,76.59204864501953,91.10911560058594,81.10032653808594,83.71564483642578,79.51932525634766,84.87191009521484,88.88067626953125,77.42829132080078,85.43772888183594,89.30862426757812,83.88496398925781,77.03303527832031,82.55054473876953,80.28450775146484,92.26079559326172,71.43024444580078,98.31668853759766,92.22786712646484,75.09027862548828,86.68863677978516,80.52465057373047,91.42790985107422,79.95769500732422,80.07740783691406,86.7127685546875,86.8528060913086,84.94403076171875,79.67926025390625,74.95035552978516,82.82534790039062,86.05260467529297,87.83842468261719,76.3879165649414,89.57938385009766,86.24343872070312,76.29740905761719,80.82064819335938,84.04486846923828,85.20761108398438,79.40660095214844,58.08030700683594,64.2430648803711,73.64846801757812,70.6292495727539,71.63282012939453,76.81603240966797,85.08914947509766,99.00132751464844,75.9863510131836,77.79781341552734,87.02313232421875,85.86296081542969,83.4171371459961,82.76902770996094,86.74968719482422,74.95307159423828,79.37696838378906,69.8976058959961,82.61807250976562,82.90391540527344,63.35715103149414,88.72039031982422,92.06965637207031,84.66390991210938,72.39205169677734,79.41486358642578,86.99524688720703,74.36656951904297,51.67307662963867,84.59788513183594,75.28571319580078,86.16905212402344,76.15089416503906,89.99250793457031,83.37413024902344,79.61875915527344,80.47348022460938,75.06552124023438,74.76851654052734,69.46791076660156,94.5272445678711,59.335636138916016,88.04499816894531,87.36701965332031,75.13263702392578,78.3426742553711,72.48949432373047,91.0262680053711,74.48367309570312,76.0155258178711,87.8180923461914,79.58641815185547,84.25012969970703,75.67156219482422,80.996337890625,87.00604248046875,87.08368682861328,76.8481216430664,72.91375732421875,85.983154296875 -2991,83.20221710205078,88.91680908203125,91.00225067138672,76.95453643798828,92.00719451904297,86.07359313964844,76.08062744140625,92.3751220703125,75.54117584228516,73.06932067871094,79.52726745605469,84.66605377197266,89.4808349609375,92.88863372802734,85.46833038330078,79.83175659179688,81.7446517944336,73.30091857910156,68.71857452392578,78.53489685058594,91.67403411865234,70.9776382446289,77.92618560791016,81.56011199951172,69.16401672363281,81.9316635131836,88.03034973144531,83.89978790283203,77.39013671875,77.62519836425781,72.50529479980469,73.1585922241211,78.88262176513672,87.584228515625,84.43640899658203,81.5507583618164,65.12394714355469,84.58757019042969,84.5420913696289,77.8784408569336,74.40187072753906,67.15908813476562,77.70580291748047,77.44859313964844,87.27457427978516,82.91903686523438,91.18748474121094,74.34148406982422,78.67740631103516,90.76375579833984,82.25959777832031,92.39715576171875,80.65738677978516,87.8299789428711,73.36746978759766,79.11799621582031,83.08100128173828,78.30000305175781,88.53382873535156,84.26561737060547,59.83705139160156,86.47683715820312,83.92955780029297,83.90375518798828,83.18268585205078,82.85427856445312,72.63433074951172,84.45594787597656,71.71585083007812,84.7057113647461,76.68631744384766,92.31929779052734,76.28323364257812,65.12882232666016,70.49217224121094,91.80018615722656,89.47432708740234,87.05235290527344,85.60099792480469,78.37584686279297,77.14058685302734,75.38152313232422,89.95411682128906,76.93212127685547,80.77735900878906,81.28228759765625,89.51238250732422,80.3805160522461,83.87812805175781,83.3309555053711,73.21378326416016,85.94145965576172,76.7545166015625,80.04183959960938,75.00682830810547,81.24034881591797,76.9743881225586,60.336273193359375,79.71542358398438,89.69343566894531,70.23589324951172,71.09757995605469,87.0627212524414,68.8257827758789,63.022979736328125,77.56736755371094,78.93106842041016,82.01457977294922,72.58583068847656,78.00470733642578,81.49877166748047,74.78558349609375,82.63220977783203,80.63862609863281,82.09555053710938,74.5120620727539,88.90229797363281,68.02738189697266,74.80496978759766,76.95162200927734,90.47250366210938,67.5061264038086,81.64654541015625,64.08802795410156,80.8383560180664,62.03003692626953,83.54361724853516,78.48152160644531,91.5876693725586,81.61993408203125,85.86316680908203,79.57245635986328,75.46990966796875,76.6911849975586,74.6373062133789,85.23226928710938,70.12519073486328,73.99872589111328,69.54965209960938,81.54936981201172,85.13449096679688,68.78301239013672,72.74820709228516,83.85466766357422,82.85585021972656,85.37117004394531,81.71712493896484,85.90238189697266,76.91978454589844,91.10911560058594,81.10015869140625,83.71564483642578,79.51932525634766,84.76594543457031,88.88067626953125,77.42829132080078,85.43772888183594,89.30862426757812,83.88496398925781,77.03303527832031,82.55054473876953,78.76025390625,92.26079559326172,71.43024444580078,98.31668853759766,93.46263122558594,75.09027862548828,86.68863677978516,80.52465057373047,92.13575744628906,79.95769500732422,80.07740783691406,86.7127685546875,83.59991455078125,84.94403076171875,79.67926025390625,74.95035552978516,82.82534790039062,86.05260467529297,87.34081268310547,76.55667877197266,89.57938385009766,86.24343872070312,76.29740905761719,80.82064819335938,84.04486846923828,85.20761108398438,79.40660095214844,58.08030700683594,64.2430648803711,73.64846801757812,70.6292495727539,71.63282012939453,78.28271484375,85.08914947509766,99.96398162841797,75.9863510131836,77.79781341552734,87.02313232421875,85.86296081542969,83.4171371459961,82.76902770996094,86.74968719482422,74.95307159423828,79.37696838378906,69.8976058959961,82.61807250976562,83.0177001953125,64.12181854248047,88.72039031982422,92.06965637207031,84.66390991210938,72.8228988647461,79.41486358642578,86.99524688720703,76.1813735961914,52.0911865234375,84.59788513183594,75.28571319580078,86.16905212402344,76.15089416503906,89.41358184814453,83.37413024902344,79.61875915527344,82.43983459472656,75.06552124023438,74.94125366210938,70.77096557617188,93.9247055053711,59.335636138916016,88.04499816894531,84.8309326171875,75.13263702392578,78.3426742553711,72.55769348144531,89.51961517333984,73.7157974243164,75.20191192626953,87.8180923461914,79.58641815185547,84.25012969970703,75.77055358886719,80.996337890625,87.00604248046875,87.08368682861328,76.8481216430664,75.8064193725586,86.52629852294922 -2992,83.20221710205078,88.91680908203125,89.95892333984375,77.10818481445312,91.46643829345703,85.89588928222656,76.08062744140625,92.3751220703125,75.54117584228516,73.06932067871094,76.60606384277344,84.66605377197266,89.4808349609375,92.88863372802734,85.46833038330078,79.83175659179688,81.7446517944336,73.30091857910156,68.71857452392578,78.53489685058594,91.67403411865234,71.04986572265625,77.92618560791016,81.78641510009766,69.1834945678711,81.9316635131836,88.35540008544922,84.10874938964844,77.10619354248047,77.62519836425781,72.50529479980469,73.1585922241211,78.88262176513672,87.584228515625,84.43640899658203,81.5507583618164,65.12394714355469,84.58757019042969,84.5420913696289,78.72996520996094,74.25279998779297,67.7397232055664,77.70580291748047,76.13761138916016,87.27457427978516,82.91903686523438,91.94064331054688,74.34148406982422,78.67740631103516,90.76375579833984,82.25959777832031,92.39715576171875,80.65738677978516,87.8299789428711,73.36746978759766,79.11799621582031,83.48088073730469,78.30000305175781,88.53382873535156,84.26561737060547,59.83705139160156,86.47683715820312,83.92955780029297,83.75434875488281,83.18268585205078,82.88013458251953,72.60367584228516,84.45594787597656,71.38350677490234,84.7057113647461,76.68631744384766,100.6559829711914,76.28323364257812,65.12882232666016,70.49217224121094,92.33683013916016,89.47432708740234,87.05235290527344,85.60099792480469,78.37584686279297,77.14058685302734,75.07957458496094,90.64724731445312,76.93212127685547,80.77735900878906,81.28228759765625,89.51238250732422,80.3604736328125,83.87812805175781,83.3309555053711,73.27024841308594,85.94145965576172,76.7545166015625,81.259033203125,75.00682830810547,81.24034881591797,76.9743881225586,60.336273193359375,79.04032897949219,89.69343566894531,70.23589324951172,71.09757995605469,86.93648529052734,68.8257827758789,64.03840637207031,77.56736755371094,78.93106842041016,82.01457977294922,72.95173645019531,75.90096282958984,83.25189971923828,74.78558349609375,82.63220977783203,81.17587280273438,82.09555053710938,74.5120620727539,87.38262176513672,68.02738189697266,74.80496978759766,76.95162200927734,92.21273040771484,67.5061264038086,81.64654541015625,64.08802795410156,80.8383560180664,62.03003692626953,83.54361724853516,78.48152160644531,91.5876693725586,81.61993408203125,85.86316680908203,79.57245635986328,71.73148345947266,76.6911849975586,74.6373062133789,85.23226928710938,70.12519073486328,73.99872589111328,70.19459533691406,81.54936981201172,85.13449096679688,68.78301239013672,72.74820709228516,83.85466766357422,82.85585021972656,85.79157257080078,81.71712493896484,85.90238189697266,76.91978454589844,91.10911560058594,80.9629135131836,83.71564483642578,79.51932525634766,84.76594543457031,90.12379455566406,77.42829132080078,85.43772888183594,89.30862426757812,83.84021759033203,79.34918975830078,82.55054473876953,80.9044418334961,96.87005615234375,70.2923355102539,98.42642211914062,93.46263122558594,74.66156005859375,86.68863677978516,80.52465057373047,92.13575744628906,79.95769500732422,80.07740783691406,86.32807159423828,85.22887420654297,84.94403076171875,79.67926025390625,74.95035552978516,82.82534790039062,85.98699951171875,87.34081268310547,76.55667877197266,89.57938385009766,84.32270050048828,76.88233947753906,80.82064819335938,84.4601821899414,85.20761108398438,79.40660095214844,58.08030700683594,64.2430648803711,73.64846801757812,70.6292495727539,71.44313049316406,78.28271484375,85.08914947509766,99.96398162841797,76.78303527832031,77.79781341552734,87.02313232421875,85.86296081542969,82.9425048828125,82.76902770996094,86.74968719482422,74.95307159423828,79.37696838378906,69.8976058959961,82.64847564697266,83.0177001953125,62.03888702392578,89.08040618896484,92.06965637207031,83.7047119140625,72.8228988647461,79.49636840820312,86.99524688720703,75.8487319946289,53.01535415649414,84.59788513183594,75.31229400634766,86.16905212402344,76.15089416503906,88.014404296875,83.37413024902344,79.61875915527344,82.43983459472656,75.06552124023438,74.94125366210938,68.70204162597656,95.87420654296875,59.093448638916016,88.04499816894531,84.8309326171875,75.13263702392578,78.49363708496094,72.55769348144531,89.51961517333984,73.7157974243164,75.20191192626953,87.8180923461914,79.58641815185547,84.25012969970703,76.42035675048828,80.996337890625,87.00604248046875,87.08368682861328,76.8844223022461,75.1137924194336,86.52629852294922 -2993,83.20221710205078,88.91680908203125,89.95892333984375,76.9136962890625,91.46643829345703,85.89588928222656,76.08062744140625,88.1324462890625,75.47068786621094,73.06932067871094,81.831298828125,82.63279724121094,89.57588958740234,92.45208740234375,84.51730346679688,79.83175659179688,83.25611877441406,73.30091857910156,69.01014709472656,78.53489685058594,91.67403411865234,71.04986572265625,77.92618560791016,81.78641510009766,69.1834945678711,81.9316635131836,88.35540008544922,83.44984436035156,77.10619354248047,77.62519836425781,72.50529479980469,73.1585922241211,78.88262176513672,87.584228515625,84.43640899658203,81.29376220703125,65.12394714355469,84.58757019042969,82.5484848022461,78.91529846191406,74.25279998779297,67.77043914794922,77.70580291748047,77.6775894165039,87.27457427978516,82.91903686523438,91.94064331054688,74.34148406982422,78.67740631103516,90.10870361328125,82.25959777832031,92.39715576171875,80.77647399902344,87.8299789428711,72.94351959228516,79.10608673095703,83.48088073730469,78.11790466308594,88.49966430664062,84.26561737060547,59.83705139160156,86.47683715820312,83.92955780029297,83.75434875488281,83.18268585205078,81.844482421875,72.60367584228516,84.45594787597656,71.38350677490234,84.7057113647461,76.68631744384766,97.07275390625,77.09869384765625,65.12882232666016,70.32899475097656,92.33683013916016,89.39614868164062,87.05235290527344,85.60099792480469,77.72479248046875,77.86347198486328,74.55435180664062,90.64724731445312,76.7197036743164,80.77735900878906,81.28228759765625,89.51238250732422,80.3604736328125,83.87812805175781,83.3309555053711,73.27024841308594,91.57225799560547,76.7545166015625,81.259033203125,75.00682830810547,81.24034881591797,76.9743881225586,60.336273193359375,79.04032897949219,87.6678237915039,70.23589324951172,71.09757995605469,86.93648529052734,68.7541275024414,64.03840637207031,77.65367126464844,78.93106842041016,82.01457977294922,72.53926849365234,75.90096282958984,82.1402359008789,74.4983139038086,83.70648956298828,81.17587280273438,81.69938659667969,73.54403686523438,87.38262176513672,68.02738189697266,74.17157745361328,76.95162200927734,89.8707275390625,67.5061264038086,81.64654541015625,64.08802795410156,80.8383560180664,62.03003692626953,83.54361724853516,78.48152160644531,91.5876693725586,81.61993408203125,85.86316680908203,79.7838134765625,71.73148345947266,76.6911849975586,74.6373062133789,85.23226928710938,69.29763793945312,72.9410400390625,70.19459533691406,80.24710845947266,85.13449096679688,68.78301239013672,72.74820709228516,83.82732391357422,82.85585021972656,85.79157257080078,81.71712493896484,86.78498077392578,76.88796997070312,91.10911560058594,80.98947143554688,83.71564483642578,79.51932525634766,84.76594543457031,90.12379455566406,77.42829132080078,85.43772888183594,89.30862426757812,83.84021759033203,76.95519256591797,82.55054473876953,80.9044418334961,98.41389465332031,70.2923355102539,98.42642211914062,93.77835845947266,74.66156005859375,86.68863677978516,80.52465057373047,92.13575744628906,79.95769500732422,80.07740783691406,90.06401062011719,85.37792205810547,84.94403076171875,79.67926025390625,74.95035552978516,82.82534790039062,85.98699951171875,87.34081268310547,76.31639862060547,89.57938385009766,84.32270050048828,76.88233947753906,80.82064819335938,84.4601821899414,85.20761108398438,79.40660095214844,58.08030700683594,64.2430648803711,73.64846801757812,72.37562561035156,71.44313049316406,76.7979507446289,85.08914947509766,99.98988342285156,76.55967712402344,77.94573211669922,87.02313232421875,85.86296081542969,83.0542984008789,82.85247039794922,86.74968719482422,74.95307159423828,79.37696838378906,70.18866729736328,82.11569213867188,83.0177001953125,64.34369659423828,89.08040618896484,92.06965637207031,83.7047119140625,72.74949645996094,79.49636840820312,86.99524688720703,78.28520202636719,53.01535415649414,84.59788513183594,75.31229400634766,87.64956665039062,74.39065551757812,88.014404296875,83.36624908447266,79.61875915527344,80.80835723876953,75.06552124023438,74.94125366210938,69.72430419921875,95.44683837890625,59.093448638916016,87.48944091796875,83.1867446899414,75.13263702392578,78.49363708496094,72.76687622070312,89.51961517333984,73.47421264648438,76.20204162597656,87.45591735839844,79.58641815185547,84.25012969970703,75.60777282714844,80.996337890625,87.00604248046875,87.08368682861328,77.10118865966797,77.2723159790039,84.70787811279297 -2994,83.20221710205078,88.91680908203125,89.95892333984375,76.9136962890625,91.46643829345703,85.89588928222656,76.08062744140625,91.23423767089844,75.47068786621094,73.06932067871094,81.831298828125,82.63279724121094,90.75360107421875,91.91655731201172,84.51730346679688,79.82550048828125,83.25611877441406,73.30091857910156,68.70281219482422,78.53489685058594,91.67403411865234,71.04566955566406,77.92618560791016,81.78641510009766,69.1834945678711,81.9316635131836,88.35540008544922,82.51885986328125,77.10619354248047,77.62519836425781,72.43347930908203,73.54175567626953,78.88262176513672,87.584228515625,84.64217376708984,81.29376220703125,65.12394714355469,84.58757019042969,82.64049530029297,78.91529846191406,74.44380950927734,67.77043914794922,77.40049743652344,77.6775894165039,87.27457427978516,82.91903686523438,92.80054473876953,74.34148406982422,78.67740631103516,90.10870361328125,82.9443130493164,92.39715576171875,80.52217864990234,87.8299789428711,72.94351959228516,78.63047790527344,82.85684967041016,78.11790466308594,88.73564147949219,84.26561737060547,58.55647659301758,86.47683715820312,84.2786636352539,83.75434875488281,84.19949340820312,82.40327453613281,72.6928939819336,84.45594787597656,71.38350677490234,84.7057113647461,76.68631744384766,97.07275390625,77.09869384765625,65.12882232666016,70.32899475097656,92.33683013916016,89.39614868164062,87.05235290527344,85.60099792480469,77.22097778320312,77.5593490600586,73.23931121826172,90.64724731445312,76.7197036743164,80.85057067871094,81.28228759765625,89.51238250732422,80.3604736328125,83.87812805175781,83.3309555053711,73.27024841308594,87.19478607177734,76.7545166015625,81.259033203125,74.66409301757812,81.24034881591797,77.14153289794922,60.52497863769531,77.98717498779297,87.6678237915039,68.0081787109375,71.09757995605469,86.93648529052734,68.7541275024414,64.03840637207031,77.65367126464844,78.93106842041016,82.01457977294922,72.53926849365234,77.87201690673828,82.1402359008789,74.4983139038086,83.70648956298828,83.66822052001953,82.18914794921875,73.64067077636719,87.99173736572266,68.02738189697266,74.17157745361328,76.95162200927734,89.8707275390625,67.5061264038086,81.64654541015625,64.08802795410156,80.8383560180664,62.03003692626953,87.78008270263672,78.12992095947266,91.5876693725586,81.61993408203125,85.86316680908203,79.7838134765625,71.73148345947266,76.6911849975586,74.6373062133789,83.93254852294922,69.29763793945312,72.10657501220703,70.19459533691406,80.0237045288086,85.13449096679688,71.2872543334961,72.22895812988281,85.39917755126953,82.85585021972656,85.79157257080078,79.22126007080078,86.78498077392578,76.88796997070312,91.10911560058594,80.98947143554688,83.71564483642578,79.51932525634766,85.37306213378906,90.12379455566406,74.53450775146484,85.43772888183594,89.30862426757812,83.9481201171875,77.98336029052734,82.55054473876953,80.9044418334961,97.32882690429688,70.2923355102539,98.42642211914062,93.77835845947266,74.66156005859375,86.68863677978516,80.52465057373047,92.5692138671875,79.82184600830078,80.07740783691406,90.25067138671875,85.37792205810547,89.72616577148438,77.34184265136719,74.95035552978516,82.82534790039062,85.98699951171875,86.8548355102539,76.31639862060547,87.45465850830078,84.32270050048828,76.50025177001953,81.18707275390625,84.4601821899414,85.20761108398438,79.40660095214844,58.08030700683594,64.2430648803711,73.64846801757812,72.37562561035156,71.44313049316406,76.86970520019531,85.08914947509766,101.01873779296875,77.19081115722656,77.66616821289062,87.02313232421875,85.03508758544922,82.4596176147461,82.85247039794922,87.84626770019531,74.95307159423828,79.37696838378906,70.18866729736328,82.11569213867188,83.0177001953125,64.34369659423828,89.08040618896484,92.06965637207031,86.59300994873047,72.44231414794922,79.49636840820312,87.34070587158203,78.28520202636719,53.01701354980469,84.59788513183594,75.31229400634766,88.99798583984375,74.39065551757812,89.30581665039062,83.36624908447266,79.61875915527344,80.80835723876953,75.06552124023438,74.94125366210938,71.44537353515625,95.44683837890625,59.23309326171875,87.48944091796875,83.1867446899414,75.13263702392578,78.49363708496094,72.76687622070312,89.51961517333984,74.1692123413086,76.20204162597656,87.88863372802734,79.58641815185547,84.25012969970703,75.60777282714844,80.996337890625,87.00604248046875,87.08368682861328,77.29093933105469,77.2723159790039,84.70787811279297 -2995,83.20221710205078,88.76068878173828,90.08758544921875,76.9136962890625,91.46643829345703,85.89588928222656,76.08062744140625,91.23423767089844,75.56697845458984,73.06932067871094,81.831298828125,82.63279724121094,89.38981628417969,91.91655731201172,84.51730346679688,79.82550048828125,83.25611877441406,73.39396667480469,68.70281219482422,78.53489685058594,91.67403411865234,71.04566955566406,82.00086212158203,81.78641510009766,69.1834945678711,81.9316635131836,88.35540008544922,82.60065460205078,76.79336547851562,77.62519836425781,72.43347930908203,73.54175567626953,78.88262176513672,87.584228515625,85.80867004394531,81.29376220703125,65.12394714355469,84.64153289794922,82.64049530029297,78.80674743652344,74.4313735961914,67.4893798828125,77.00579833984375,77.02295684814453,87.39768981933594,82.91903686523438,92.80054473876953,74.34148406982422,78.32403564453125,89.18949127197266,82.9443130493164,92.39715576171875,80.55290222167969,87.8299789428711,72.94351959228516,78.61558532714844,82.85684967041016,78.11790466308594,88.73564147949219,84.26561737060547,59.39115524291992,86.47683715820312,78.79479217529297,83.75434875488281,83.08078002929688,82.40327453613281,72.6928939819336,84.45594787597656,71.38350677490234,84.7057113647461,76.9119873046875,97.07275390625,77.09869384765625,65.12882232666016,70.27204132080078,92.33683013916016,89.39614868164062,87.25955200195312,85.60099792480469,77.22097778320312,77.87091064453125,74.75312805175781,92.02405548095703,76.7197036743164,80.86316680908203,81.28228759765625,90.14031982421875,80.3604736328125,83.87812805175781,82.0226058959961,73.27024841308594,87.19478607177734,75.6727523803711,81.259033203125,74.66409301757812,80.69872283935547,77.1746826171875,60.52497863769531,79.23751068115234,87.6678237915039,68.0081787109375,71.09757995605469,86.93648529052734,68.7541275024414,64.03840637207031,78.6927490234375,78.93106842041016,80.00823974609375,72.53926849365234,77.74256134033203,82.1402359008789,74.4983139038086,83.70648956298828,83.66822052001953,82.18914794921875,73.64067077636719,88.66860961914062,68.02738189697266,72.61151123046875,76.11164855957031,89.8707275390625,67.5061264038086,81.64654541015625,64.42715454101562,80.8383560180664,61.65285110473633,88.52404022216797,78.5835189819336,90.8138198852539,81.61993408203125,85.86316680908203,79.79894256591797,71.73148345947266,76.6911849975586,74.6373062133789,84.06857299804688,72.11739349365234,72.10657501220703,70.19459533691406,80.0237045288086,85.13449096679688,71.96309661865234,72.46273803710938,85.39917755126953,82.85585021972656,85.79157257080078,79.22126007080078,86.78498077392578,76.88796997070312,91.10911560058594,80.98277282714844,83.71564483642578,79.51932525634766,85.37306213378906,90.12379455566406,74.53450775146484,85.43772888183594,89.30862426757812,83.68403625488281,77.98336029052734,82.45321655273438,80.9044418334961,97.32882690429688,70.2923355102539,97.42793273925781,93.77835845947266,74.66156005859375,89.04528045654297,80.52465057373047,92.5692138671875,79.82184600830078,80.07740783691406,93.89684295654297,85.37792205810547,89.72616577148438,77.34184265136719,74.95035552978516,82.82534790039062,85.75991821289062,84.74412536621094,76.31639862060547,87.45465850830078,84.32270050048828,76.87210083007812,81.18707275390625,85.22649383544922,85.20761108398438,79.40660095214844,58.08030700683594,64.2430648803711,73.64846801757812,72.21088409423828,71.44313049316406,76.86970520019531,85.08914947509766,100.12395477294922,77.19081115722656,77.95443725585938,87.02313232421875,85.03508758544922,82.4596176147461,82.85247039794922,87.3196792602539,74.95307159423828,79.37696838378906,70.18866729736328,82.11569213867188,83.0177001953125,65.23368072509766,89.08040618896484,92.06965637207031,86.59300994873047,72.44231414794922,79.49636840820312,87.18034362792969,79.24341583251953,53.01701354980469,87.46698760986328,75.31229400634766,88.99798583984375,74.39065551757812,89.54470825195312,83.36624908447266,79.61875915527344,80.80835723876953,75.06552124023438,74.90565490722656,71.44537353515625,95.23016357421875,59.23309326171875,85.6152572631836,83.1867446899414,75.13263702392578,78.49363708496094,72.433349609375,88.49160766601562,74.63694763183594,74.92778778076172,87.88863372802734,79.58641815185547,84.25012969970703,75.60777282714844,80.996337890625,87.00604248046875,86.31730651855469,77.29093933105469,73.72289276123047,84.70787811279297 -2996,83.20221710205078,88.4306640625,90.08758544921875,76.9136962890625,91.46643829345703,85.89588928222656,76.08062744140625,91.23423767089844,75.56697845458984,73.06932067871094,76.02632141113281,82.76870727539062,89.88127899169922,92.27556610107422,84.51730346679688,79.82550048828125,85.32290649414062,73.39396667480469,68.70281219482422,78.53489685058594,91.67403411865234,71.04566955566406,82.00086212158203,81.78641510009766,69.1834945678711,81.35508728027344,88.35540008544922,82.60065460205078,76.48709869384766,77.62519836425781,72.30191040039062,73.54175567626953,78.88262176513672,87.584228515625,85.80867004394531,81.29376220703125,65.61815643310547,84.64153289794922,82.64049530029297,78.80674743652344,74.4313735961914,67.59209442138672,77.00579833984375,77.02295684814453,87.39768981933594,82.91903686523438,95.9521255493164,74.34148406982422,75.80770874023438,89.18949127197266,82.9443130493164,92.39715576171875,80.55290222167969,87.88006591796875,72.94351959228516,78.61558532714844,82.85684967041016,78.11790466308594,88.73564147949219,84.26561737060547,60.65752410888672,86.47683715820312,80.03081512451172,83.75434875488281,81.92010498046875,82.40327453613281,72.6928939819336,84.45594787597656,71.38350677490234,84.7057113647461,76.48794555664062,97.07275390625,76.71561431884766,65.12882232666016,70.27204132080078,92.50108337402344,89.33875274658203,86.44357299804688,85.60099792480469,77.22097778320312,77.01863861083984,74.75312805175781,90.1807632446289,76.7197036743164,80.96949768066406,81.17737579345703,82.7181396484375,80.3604736328125,83.67919158935547,82.0226058959961,73.27024841308594,88.92373657226562,75.6727523803711,81.259033203125,75.04886627197266,80.69872283935547,77.1746826171875,60.52497863769531,79.23751068115234,87.6678237915039,68.41838836669922,71.09757995605469,86.57038116455078,68.7541275024414,64.03840637207031,77.75581359863281,77.64863586425781,76.63191986083984,72.53926849365234,77.74256134033203,82.1402359008789,74.4983139038086,83.70648956298828,83.66822052001953,82.18914794921875,73.64067077636719,88.66860961914062,68.02738189697266,72.71680450439453,76.11164855957031,89.8707275390625,69.47539520263672,81.64654541015625,64.42715454101562,86.16742706298828,61.91514587402344,84.93350982666016,78.5835189819336,94.6072769165039,80.34786987304688,88.78252410888672,79.79894256591797,71.73148345947266,76.6911849975586,73.11891174316406,84.06857299804688,72.11739349365234,72.10657501220703,70.19459533691406,84.34525299072266,87.76885986328125,68.76703643798828,73.50406646728516,83.53301239013672,84.24488067626953,85.79157257080078,79.22126007080078,86.78498077392578,77.39817810058594,90.47115325927734,80.9744644165039,83.71564483642578,79.51932525634766,81.51687622070312,91.85215759277344,74.53450775146484,88.1143569946289,89.30862426757812,83.68403625488281,77.98336029052734,82.45321655273438,80.9044418334961,97.24878692626953,70.2923355102539,97.42793273925781,93.77835845947266,74.66156005859375,92.224853515625,80.52465057373047,93.05406951904297,79.82184600830078,80.07740783691406,93.89684295654297,84.9151611328125,89.72616577148438,77.34184265136719,74.95035552978516,83.47799682617188,86.04479217529297,84.74412536621094,76.31639862060547,87.45465850830078,84.32270050048828,76.87210083007812,81.18707275390625,85.22649383544922,86.00730895996094,78.26888275146484,58.08030700683594,64.6386489868164,73.64846801757812,72.21088409423828,71.44313049316406,77.4234848022461,85.08914947509766,100.12395477294922,76.4649658203125,77.25552368164062,87.02313232421875,85.03508758544922,82.4596176147461,82.85247039794922,87.3196792602539,74.95307159423828,79.37696838378906,70.69058990478516,82.11569213867188,83.0177001953125,64.9993896484375,85.31779479980469,92.06965637207031,86.59300994873047,72.44231414794922,79.49636840820312,87.18034362792969,79.4399185180664,53.01701354980469,87.83782958984375,75.31229400634766,85.1515884399414,74.56869506835938,89.54470825195312,83.38719940185547,79.78119659423828,83.69036865234375,75.14303588867188,74.90565490722656,71.16417694091797,95.60511016845703,59.23309326171875,85.6152572631836,82.4370346069336,75.13263702392578,78.49363708496094,72.433349609375,88.49160766601562,74.05497741699219,74.92778778076172,87.88863372802734,79.79927062988281,83.7685775756836,75.60777282714844,81.66215515136719,87.00604248046875,86.268310546875,74.59313201904297,80.36920928955078,89.43162536621094 -2997,83.20221710205078,89.01496887207031,90.08758544921875,76.9136962890625,91.46643829345703,85.89588928222656,76.08062744140625,94.73714447021484,75.56697845458984,73.06932067871094,76.02632141113281,83.30619049072266,88.56591796875,92.27556610107422,83.82288360595703,79.67064666748047,85.32290649414062,73.39396667480469,68.64612579345703,78.53489685058594,91.67403411865234,70.63896179199219,82.00086212158203,81.78641510009766,69.1834945678711,81.35508728027344,88.35540008544922,82.60065460205078,76.48709869384766,77.6561279296875,72.30191040039062,73.54175567626953,78.88262176513672,87.02454376220703,85.80867004394531,81.29376220703125,65.57159423828125,84.64153289794922,82.64049530029297,78.80674743652344,74.15582275390625,67.59209442138672,77.24642944335938,77.02295684814453,87.39768981933594,82.91903686523438,95.836669921875,74.34148406982422,76.37448120117188,89.18949127197266,82.9443130493164,92.39715576171875,80.55290222167969,87.63468933105469,72.94351959228516,78.61558532714844,83.46647644042969,78.11790466308594,88.73564147949219,81.8211441040039,60.65752410888672,86.47683715820312,81.59356689453125,83.15007781982422,81.92010498046875,82.40327453613281,72.6928939819336,84.45594787597656,70.87987518310547,84.7057113647461,76.48794555664062,97.07275390625,76.58953094482422,64.93177032470703,70.27204132080078,92.45355224609375,89.33875274658203,86.44357299804688,85.60099792480469,77.22097778320312,77.01863861083984,74.75312805175781,90.1807632446289,76.7197036743164,80.96949768066406,81.17737579345703,82.7181396484375,80.16741943359375,83.67919158935547,82.0226058959961,73.46487426757812,88.92373657226562,75.6727523803711,81.44165802001953,75.04886627197266,82.31969451904297,77.1746826171875,60.52497863769531,78.88776397705078,87.6678237915039,68.41838836669922,73.26600646972656,86.57038116455078,68.7541275024414,64.03840637207031,80.08817291259766,77.64863586425781,76.63191986083984,71.65741729736328,77.74256134033203,82.1402359008789,74.81732940673828,83.70648956298828,83.52234649658203,82.18914794921875,73.64067077636719,88.66860961914062,68.02738189697266,73.09272766113281,76.46905517578125,89.8707275390625,69.47539520263672,81.64654541015625,63.52983856201172,86.16742706298828,61.91514587402344,84.93350982666016,78.5835189819336,94.6072769165039,81.3865966796875,88.78252410888672,79.79894256591797,71.73148345947266,75.9742431640625,74.08113098144531,85.77503204345703,69.55836486816406,73.22749328613281,70.19459533691406,84.34525299072266,87.76885986328125,68.76703643798828,73.50406646728516,83.53301239013672,84.24488067626953,85.79157257080078,79.22126007080078,86.78498077392578,76.85738372802734,90.47115325927734,80.9744644165039,83.71564483642578,79.51932525634766,81.51687622070312,91.85215759277344,76.0130844116211,88.1143569946289,89.39874267578125,83.68403625488281,79.6737289428711,82.45321655273438,80.9044418334961,94.14905548095703,70.19500732421875,97.8462142944336,93.77835845947266,74.66156005859375,90.12130737304688,79.76526641845703,93.05406951904297,79.88529968261719,80.07740783691406,93.89684295654297,84.9151611328125,91.3017578125,77.34184265136719,75.4979248046875,83.52080535888672,86.04479217529297,84.74412536621094,76.31639862060547,87.45465850830078,85.03543853759766,76.87210083007812,81.18707275390625,85.22649383544922,86.00730895996094,78.26888275146484,58.08030700683594,64.6386489868164,73.64846801757812,72.21088409423828,71.54801177978516,77.4234848022461,85.08914947509766,100.12395477294922,77.17127990722656,77.25552368164062,87.02313232421875,85.54022216796875,83.15662384033203,82.85247039794922,87.3196792602539,74.95307159423828,79.37696838378906,70.69058990478516,82.11569213867188,83.0177001953125,64.9993896484375,86.67387390136719,92.06965637207031,86.59300994873047,72.44231414794922,79.58358001708984,87.57180786132812,80.77100372314453,53.01701354980469,87.83782958984375,75.49024963378906,85.1515884399414,74.56869506835938,89.54470825195312,83.4560546875,79.52686309814453,83.69036865234375,75.14303588867188,74.90565490722656,71.92840576171875,95.60511016845703,59.23309326171875,85.6152572631836,82.4370346069336,75.13263702392578,78.49363708496094,72.433349609375,88.49160766601562,74.31806945800781,74.92778778076172,87.88863372802734,79.7638931274414,82.12936401367188,75.60777282714844,81.66215515136719,80.88957214355469,86.29786682128906,74.59313201904297,78.77831268310547,89.43162536621094 -2998,83.20221710205078,88.39154052734375,90.08758544921875,76.85887908935547,91.46643829345703,85.64683532714844,76.08062744140625,94.73714447021484,76.24030303955078,73.06932067871094,77.74748229980469,83.30619049072266,88.30057525634766,92.27556610107422,83.82288360595703,79.67064666748047,85.32290649414062,73.39396667480469,68.64612579345703,78.53489685058594,92.02079772949219,71.86298370361328,82.00086212158203,81.78641510009766,69.1834945678711,81.35508728027344,88.35540008544922,82.60065460205078,76.48709869384766,77.5560073852539,71.98494720458984,73.54175567626953,79.972412109375,87.02454376220703,85.80867004394531,80.40328979492188,65.57159423828125,84.64153289794922,82.64049530029297,78.80674743652344,74.46490478515625,67.59209442138672,77.17672729492188,77.02295684814453,86.6234130859375,79.06719207763672,95.836669921875,74.34148406982422,76.37448120117188,89.18949127197266,83.59933471679688,92.39715576171875,80.59122467041016,87.63468933105469,72.94351959228516,78.61558532714844,83.46647644042969,78.11790466308594,88.30486297607422,81.8211441040039,61.91532516479492,86.47683715820312,81.59356689453125,83.7186050415039,81.92010498046875,82.40327453613281,72.6928939819336,84.5660171508789,70.87987518310547,84.7057113647461,76.22164916992188,97.07275390625,76.58953094482422,64.93177032470703,70.27204132080078,92.45355224609375,89.5553207397461,86.44357299804688,85.60099792480469,77.22097778320312,77.01863861083984,74.75312805175781,90.1807632446289,76.92718505859375,80.96949768066406,80.93549346923828,82.7181396484375,80.16741943359375,83.67919158935547,82.0226058959961,73.1756362915039,88.92373657226562,75.6727523803711,80.69688415527344,75.04886627197266,82.31969451904297,77.1746826171875,60.52497863769531,78.88776397705078,87.6678237915039,68.41838836669922,70.0786361694336,86.57038116455078,68.7541275024414,64.03840637207031,80.1262435913086,77.64863586425781,76.00218963623047,71.65741729736328,77.74256134033203,83.5582046508789,74.18466186523438,83.19607543945312,81.78474426269531,82.18914794921875,73.64067077636719,88.66860961914062,66.9819564819336,73.79400634765625,76.46905517578125,89.8707275390625,69.47539520263672,81.64654541015625,63.52983856201172,83.81838989257812,62.457359313964844,84.93350982666016,78.5835189819336,94.6072769165039,81.3865966796875,88.78252410888672,79.79894256591797,71.73148345947266,77.37590789794922,74.08113098144531,85.77503204345703,72.13311004638672,73.22749328613281,70.19459533691406,84.34525299072266,87.76885986328125,68.76703643798828,73.50406646728516,83.53301239013672,86.81166076660156,85.79157257080078,79.22126007080078,86.78498077392578,76.85738372802734,90.47115325927734,80.99134063720703,84.04901123046875,79.51932525634766,81.51687622070312,91.62956237792969,76.0130844116211,87.82396697998047,90.33460235595703,83.68403625488281,79.6737289428711,82.45321655273438,80.9044418334961,92.0986099243164,69.91935729980469,97.8462142944336,93.77835845947266,74.15143585205078,89.68024444580078,79.76526641845703,93.05406951904297,79.399169921875,80.07740783691406,93.89684295654297,86.26748657226562,91.3017578125,77.34184265136719,75.5972900390625,83.52080535888672,86.04479217529297,84.43731689453125,76.31639862060547,87.45465850830078,85.03543853759766,76.87210083007812,81.18707275390625,85.22649383544922,86.00730895996094,78.26888275146484,58.08030700683594,64.6386489868164,73.96388244628906,72.21088409423828,71.79814147949219,77.4234848022461,85.08914947509766,100.12395477294922,76.73080444335938,77.6731948852539,87.02313232421875,85.54022216796875,83.09996032714844,82.85247039794922,87.3196792602539,74.95307159423828,79.37696838378906,70.69058990478516,82.11569213867188,83.0177001953125,64.9993896484375,88.71646881103516,92.06965637207031,83.31368255615234,72.44231414794922,79.58358001708984,87.57180786132812,80.77100372314453,53.01701354980469,87.92159271240234,75.49024963378906,85.1515884399414,74.56869506835938,89.54470825195312,83.4560546875,79.52686309814453,83.69036865234375,75.14303588867188,74.89834594726562,72.2367935180664,95.60511016845703,59.38623046875,85.6152572631836,82.4370346069336,75.13263702392578,78.49363708496094,72.433349609375,88.49160766601562,74.31806945800781,74.56299591064453,87.88863372802734,79.7638931274414,82.12936401367188,75.60777282714844,81.66215515136719,81.07156372070312,86.29786682128906,73.13359069824219,78.77831268310547,91.79936218261719 -2999,83.22706604003906,88.39154052734375,90.08758544921875,76.85887908935547,91.46643829345703,85.64683532714844,76.08062744140625,94.73714447021484,76.24030303955078,73.06932067871094,77.74748229980469,83.30619049072266,88.30057525634766,92.27556610107422,83.82288360595703,79.9540786743164,85.32290649414062,73.20144653320312,68.64612579345703,78.53489685058594,92.02079772949219,71.86298370361328,82.00086212158203,81.78641510009766,69.1834945678711,81.35508728027344,88.34388732910156,82.60065460205078,76.48709869384766,77.5560073852539,72.17408752441406,73.54175567626953,79.972412109375,86.35659790039062,85.80867004394531,80.40328979492188,65.57159423828125,84.73158264160156,82.65105438232422,78.75369262695312,74.35843658447266,67.59209442138672,77.1030502319336,77.02295684814453,86.32951354980469,79.06719207763672,93.3302230834961,74.34148406982422,75.63741302490234,88.55235290527344,83.59933471679688,92.59648895263672,80.59122467041016,87.63468933105469,72.94351959228516,79.1506576538086,83.46647644042969,78.11790466308594,88.30486297607422,84.3332748413086,61.21879577636719,86.47683715820312,81.59356689453125,83.7186050415039,81.92010498046875,82.80368041992188,72.6928939819336,84.5660171508789,71.04459381103516,84.7057113647461,76.53736877441406,97.07275390625,76.22297668457031,65.03573608398438,70.0350570678711,92.45355224609375,89.5553207397461,86.43276977539062,85.60099792480469,77.22097778320312,77.01863861083984,74.75312805175781,89.8418960571289,76.92718505859375,80.96949768066406,80.93549346923828,82.7181396484375,80.16741943359375,83.67919158935547,81.09333038330078,73.54400634765625,88.92373657226562,75.6727523803711,80.69688415527344,75.04886627197266,82.31969451904297,77.1746826171875,60.668426513671875,78.09976959228516,87.6678237915039,68.41838836669922,70.0786361694336,86.96979522705078,68.7541275024414,64.03840637207031,80.1262435913086,77.64863586425781,76.00218963623047,72.78050994873047,77.78894805908203,83.5582046508789,74.18466186523438,83.19607543945312,81.78474426269531,82.18914794921875,73.64067077636719,88.66860961914062,66.9819564819336,73.79400634765625,76.46905517578125,94.3917236328125,69.47539520263672,81.64654541015625,64.05858612060547,83.81838989257812,62.457359313964844,84.93350982666016,78.5835189819336,94.6072769165039,81.7745590209961,88.78252410888672,79.79894256591797,71.73148345947266,77.37590789794922,74.08113098144531,85.77503204345703,71.45964813232422,73.22749328613281,70.19459533691406,84.34525299072266,87.76885986328125,68.76703643798828,73.50406646728516,85.54090118408203,86.81166076660156,85.79157257080078,79.22126007080078,86.78498077392578,76.85738372802734,91.05448150634766,80.99134063720703,84.04901123046875,79.51932525634766,81.28022003173828,91.62956237792969,76.63506317138672,87.82396697998047,90.33460235595703,83.68403625488281,81.76957702636719,82.24537658691406,80.34117126464844,92.0986099243164,73.91020965576172,97.8462142944336,93.77835845947266,74.15143585205078,93.21153259277344,79.76526641845703,93.05406951904297,79.399169921875,79.9933090209961,93.98511505126953,86.26748657226562,91.3017578125,77.34184265136719,75.01129913330078,82.9540786743164,86.04479217529297,84.62035369873047,75.50439453125,87.45465850830078,83.63594055175781,76.12298583984375,81.18707275390625,82.02777099609375,86.00730895996094,78.26888275146484,58.08030700683594,64.6386489868164,73.96388244628906,72.21088409423828,71.79814147949219,77.4234848022461,88.64100646972656,101.08625793457031,76.73080444335938,77.64630889892578,87.02313232421875,85.54022216796875,83.09996032714844,82.8897933959961,86.17852783203125,74.95307159423828,79.37696838378906,72.44276428222656,82.11569213867188,83.0177001953125,64.9993896484375,87.73493957519531,92.06965637207031,84.67535400390625,72.44231414794922,79.58358001708984,87.57180786132812,78.42597961425781,53.01701354980469,87.92159271240234,75.49024963378906,85.1515884399414,74.56869506835938,89.54470825195312,83.4560546875,79.52686309814453,83.69036865234375,75.14303588867188,74.82933044433594,72.2367935180664,95.40238952636719,59.04597091674805,85.6152572631836,80.66963958740234,75.13263702392578,78.49363708496094,72.53581237792969,88.18663024902344,74.31806945800781,74.56299591064453,87.88863372802734,79.7638931274414,82.12936401367188,75.60777282714844,83.4178466796875,81.07156372070312,86.89275360107422,73.13359069824219,78.77831268310547,90.81853485107422 -3000,83.40203094482422,88.39154052734375,90.08758544921875,75.6092758178711,92.17833709716797,85.64683532714844,76.08062744140625,91.6409683227539,76.24030303955078,73.06932067871094,76.62889099121094,83.30619049072266,88.30057525634766,92.27556610107422,84.87210083007812,79.63003540039062,85.32290649414062,73.20144653320312,68.59711456298828,78.7677230834961,92.21235656738281,71.86298370361328,80.37268829345703,81.78641510009766,69.1834945678711,81.35508728027344,88.34388732910156,83.1442642211914,76.48709869384766,77.5560073852539,72.16629028320312,73.54175567626953,79.972412109375,86.25647735595703,85.61627960205078,80.40328979492188,65.07701110839844,84.95122528076172,82.65105438232422,78.75369262695312,74.30870056152344,67.58858489990234,77.1030502319336,77.02295684814453,86.32951354980469,79.06719207763672,93.3302230834961,74.45616149902344,75.63741302490234,88.8094711303711,83.59933471679688,92.59648895263672,80.59122467041016,87.63468933105469,72.99263763427734,79.1506576538086,82.67898559570312,78.11790466308594,88.30486297607422,84.68949127197266,61.027381896972656,86.47683715820312,81.7380599975586,84.02745819091797,81.92010498046875,82.80368041992188,72.6928939819336,84.5660171508789,71.04459381103516,84.7057113647461,76.50323486328125,97.07275390625,76.22297668457031,65.00564575195312,69.75084686279297,92.41649627685547,89.5553207397461,86.43276977539062,85.60099792480469,77.22097778320312,77.01863861083984,74.75312805175781,89.8418960571289,76.92718505859375,80.96949768066406,80.93549346923828,82.7181396484375,80.16741943359375,83.67919158935547,78.51927185058594,73.17131042480469,88.92373657226562,76.95079803466797,80.26702117919922,75.04886627197266,82.31969451904297,77.1746826171875,60.145172119140625,78.09976959228516,87.89422607421875,67.63519287109375,70.0786361694336,86.96979522705078,68.77626037597656,67.17475128173828,77.85255432128906,77.64863586425781,75.93850708007812,72.78050994873047,77.78894805908203,83.5582046508789,74.18466186523438,83.19607543945312,81.77183532714844,82.663818359375,73.64067077636719,88.66860961914062,66.9819564819336,72.69920349121094,76.46905517578125,94.6833724975586,69.47539520263672,81.64654541015625,64.05858612060547,83.81838989257812,62.457359313964844,84.93350982666016,78.27069091796875,92.38542938232422,81.75440979003906,88.78252410888672,79.47868347167969,71.73148345947266,77.37590789794922,74.08113098144531,85.77503204345703,71.45964813232422,73.22749328613281,70.19459533691406,84.34525299072266,87.76885986328125,68.76703643798828,73.50406646728516,85.54090118408203,80.9732666015625,85.79157257080078,79.22126007080078,86.78498077392578,76.87146759033203,91.05448150634766,80.99134063720703,84.04901123046875,79.51932525634766,81.28022003173828,91.62956237792969,76.63506317138672,87.82396697998047,90.33460235595703,83.88087463378906,77.54949951171875,82.24537658691406,80.34117126464844,89.78298950195312,73.91020965576172,97.8462142944336,93.77835845947266,76.33625030517578,93.21153259277344,79.76526641845703,93.05406951904297,79.399169921875,79.9933090209961,93.98511505126953,86.26748657226562,91.3017578125,77.34184265136719,75.18778991699219,82.79473114013672,86.04479217529297,84.62035369873047,75.83650207519531,87.45465850830078,83.63594055175781,76.38626098632812,81.18707275390625,82.02777099609375,86.00730895996094,78.26888275146484,58.08030700683594,64.6386489868164,73.96388244628906,72.21088409423828,71.79814147949219,77.4234848022461,88.64100646972656,101.08625793457031,76.73080444335938,77.64630889892578,86.93653106689453,85.54022216796875,83.09996032714844,82.91150665283203,86.42033386230469,74.95307159423828,79.37696838378906,70.95990753173828,82.11569213867188,83.0177001953125,64.9993896484375,87.73493957519531,92.06965637207031,85.35513305664062,72.52655029296875,79.4808349609375,86.66986846923828,78.42597961425781,53.01701354980469,87.13005065917969,75.49024963378906,85.1515884399414,74.56869506835938,89.54470825195312,83.4560546875,79.52686309814453,84.80206298828125,75.14303588867188,74.82933044433594,72.5090560913086,100.62682342529297,59.04597091674805,85.6152572631836,79.1705322265625,75.13263702392578,78.49363708496094,72.53581237792969,88.18663024902344,74.31806945800781,76.45121002197266,87.88863372802734,79.7638931274414,81.36798095703125,75.60777282714844,83.4178466796875,81.45317840576172,86.89275360107422,73.13359069824219,78.77831268310547,90.84001922607422 diff --git a/example/start/outputs/logs/parameter_convergence/tau_mean.csv b/example/start/outputs/logs/parameter_convergence/tau_mean.csv deleted file mode 100644 index a8815d29c..000000000 --- a/example/start/outputs/logs/parameter_convergence/tau_mean.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,79.16519927978516 -50,80.6364517211914 -100,80.71302032470703 -150,80.502197265625 -200,80.35710144042969 -250,80.40957641601562 -300,80.38916015625 -350,80.29854583740234 -400,80.07927703857422 -450,80.30951690673828 -500,80.12841033935547 -550,80.32429504394531 -600,80.16414642333984 -650,80.2247543334961 -700,80.47148895263672 -750,80.54148864746094 -800,80.8340835571289 -850,80.8837890625 -900,80.80147552490234 -950,80.68461608886719 -1000,80.92754364013672 -1050,80.78435516357422 -1100,80.66250610351562 -1150,80.53826141357422 -1200,80.26869201660156 -1250,80.58807373046875 -1300,80.64325714111328 -1350,80.74879455566406 -1400,80.59082794189453 -1450,80.66973114013672 -1500,80.74259185791016 -1550,80.74186706542969 -1600,80.7270278930664 -1650,80.74081420898438 -1700,80.91661071777344 -1750,80.74139404296875 -1800,80.49162292480469 -1850,80.34764099121094 -1900,80.43146514892578 -1950,80.46610260009766 -2000,80.61591339111328 -2050,80.43254852294922 -2100,80.4999771118164 -2150,80.52518463134766 -2200,80.1969985961914 -2250,80.42384338378906 -2300,80.28022766113281 -2350,80.23406219482422 -2400,80.40343475341797 -2450,80.29898071289062 -2500,80.32939910888672 -2550,80.46757507324219 -2600,79.96966552734375 -2650,79.88016510009766 -2700,80.18799591064453 -2750,80.36646270751953 -2800,80.28685760498047 -2850,80.33126831054688 -2900,80.41109466552734 -2950,80.41812896728516 -3000,80.34884643554688 diff --git a/example/start/outputs/logs/parameter_convergence/tau_std.csv b/example/start/outputs/logs/parameter_convergence/tau_std.csv deleted file mode 100644 index 9d21bdc0b..000000000 --- a/example/start/outputs/logs/parameter_convergence/tau_std.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,4.93820858001709 -50,7.718382358551025 -100,7.869138240814209 -150,8.026208877563477 -200,7.577712535858154 -250,7.755209445953369 -300,7.7262282371521 -350,7.938831329345703 -400,7.910824298858643 -450,7.8565168380737305 -500,7.69056510925293 -550,7.739776611328125 -600,7.92889404296875 -650,7.520977973937988 -700,7.567433834075928 -750,7.605949878692627 -800,7.786442756652832 -850,7.825404167175293 -900,7.934397220611572 -950,7.535452365875244 -1000,7.775343894958496 -1050,7.782154560089111 -1100,7.7765116691589355 -1150,7.804086208343506 -1200,7.727681636810303 -1250,7.767457008361816 -1300,7.750988483428955 -1350,7.73728609085083 -1400,7.893876552581787 -1450,7.46342134475708 -1500,7.828738212585449 -1550,7.864557266235352 -1600,7.529219150543213 -1650,7.534405708312988 -1700,7.577609539031982 -1750,7.766939163208008 -1800,7.680196762084961 -1850,7.871394634246826 -1900,7.711240768432617 -1950,7.8122992515563965 -2000,7.45517110824585 -2050,7.499099254608154 -2100,7.784471035003662 -2150,7.748662948608398 -2200,7.813953399658203 -2250,7.858510494232178 -2300,7.383232116699219 -2350,7.552168846130371 -2400,7.703033447265625 -2450,7.810299396514893 -2500,7.855902194976807 -2550,7.908047676086426 -2600,7.901645660400391 -2650,7.4783854484558105 -2700,7.9104413986206055 -2750,7.675772190093994 -2800,7.612502574920654 -2850,7.646550178527832 -2900,7.647156715393066 -2950,7.643579959869385 -3000,7.6457200050354 diff --git a/example/start/outputs/logs/parameter_convergence/v0.csv b/example/start/outputs/logs/parameter_convergence/v0.csv deleted file mode 100644 index 0b6254c8d..000000000 --- a/example/start/outputs/logs/parameter_convergence/v0.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,-2.953040838241577,-3.4919517040252686,-3.9426205158233643,-3.305150270462036 -50,-3.6950302124023438,-4.064720153808594,-4.4304962158203125,-4.001122951507568 -100,-3.6174445152282715,-4.0667243003845215,-4.3007283210754395,-3.9925954341888428 -150,-3.449885129928589,-4.026312828063965,-4.16018009185791,-3.907707452774048 -200,-3.4182379245758057,-4.056082725524902,-4.152319431304932,-3.9625236988067627 -250,-3.3871304988861084,-4.077102184295654,-4.159710884094238,-3.968384027481079 -300,-3.416240930557251,-4.090968132019043,-4.201572895050049,-4.006577014923096 -350,-3.3810272216796875,-4.101132392883301,-4.215813159942627,-3.9868667125701904 -400,-3.3974506855010986,-4.139194965362549,-4.215048789978027,-4.077315807342529 -450,-3.3468003273010254,-4.109426975250244,-4.147654056549072,-3.9699606895446777 -500,-3.33872127532959,-4.137218952178955,-4.154436111450195,-4.001351833343506 -550,-3.3225247859954834,-4.103545665740967,-4.113981246948242,-3.9900615215301514 -600,-3.319324254989624,-4.040224075317383,-4.034735202789307,-3.8728606700897217 -650,-3.2524871826171875,-3.9790148735046387,-3.947822093963623,-3.8278133869171143 -700,-3.373232841491699,-4.083522796630859,-4.033911228179932,-3.9088985919952393 -750,-3.361515522003174,-4.0789666175842285,-4.059571743011475,-3.8939530849456787 -800,-3.3575782775878906,-4.109309673309326,-4.089107513427734,-3.964022159576416 -850,-3.315214157104492,-4.006039142608643,-4.009850025177002,-3.8934578895568848 -900,-3.333731174468994,-4.065530776977539,-4.030935764312744,-3.881457805633545 -950,-3.3158631324768066,-3.9924159049987793,-3.9948081970214844,-3.8227832317352295 -1000,-3.3648345470428467,-4.05601167678833,-4.0639543533325195,-3.9487781524658203 -1050,-3.294739007949829,-4.074986934661865,-4.0185956954956055,-3.9141666889190674 -1100,-3.3270058631896973,-4.087762832641602,-4.066282749176025,-3.9220163822174072 -1150,-3.359130382537842,-4.080361366271973,-4.050153732299805,-3.916527032852173 -1200,-3.2302207946777344,-3.9941346645355225,-3.9421253204345703,-3.8005924224853516 -1250,-3.321653366088867,-4.019694805145264,-3.9617714881896973,-3.8046083450317383 -1300,-3.2764618396759033,-4.0277533531188965,-3.9082107543945312,-3.7744853496551514 -1350,-3.228806972503662,-4.012683868408203,-3.872227191925049,-3.765165090560913 -1400,-3.3288190364837646,-4.07658576965332,-3.9860689640045166,-3.8378798961639404 -1450,-3.3349764347076416,-4.1631598472595215,-4.05820369720459,-3.9017021656036377 -1500,-3.2891738414764404,-4.12973165512085,-3.9804847240448,-3.852424144744873 -1550,-3.336629867553711,-4.1465559005737305,-3.957274913787842,-3.8453848361968994 -1600,-3.2604126930236816,-4.0583391189575195,-3.8894057273864746,-3.7765321731567383 -1650,-3.2844815254211426,-4.119745254516602,-3.8921895027160645,-3.757039785385132 -1700,-3.3333396911621094,-4.174310684204102,-3.967357635498047,-3.839820623397827 -1750,-3.308907985687256,-4.1460771560668945,-3.952868938446045,-3.7996013164520264 -1800,-3.3229990005493164,-4.128968238830566,-3.9818029403686523,-3.8117623329162598 -1850,-3.253169298171997,-4.139807224273682,-3.955991268157959,-3.8490874767303467 -1900,-3.2729570865631104,-4.100503921508789,-3.925070285797119,-3.7708282470703125 -1950,-3.2973787784576416,-4.116365909576416,-3.9578099250793457,-3.809314250946045 -2000,-3.2891414165496826,-4.06341552734375,-3.950101613998413,-3.822390079498291 -2050,-3.308424472808838,-4.08367395401001,-3.9406898021698,-3.769385576248169 -2100,-3.290426015853882,-4.086604595184326,-4.008830547332764,-3.827890396118164 -2150,-3.2636795043945312,-4.106316566467285,-3.999115228652954,-3.8532259464263916 -2200,-3.259251594543457,-4.076711177825928,-3.994662046432495,-3.846652030944824 -2250,-3.4204788208007812,-4.207403659820557,-4.108463764190674,-3.964409351348877 -2300,-3.3083572387695312,-4.1396355628967285,-4.045804500579834,-3.89078426361084 -2350,-3.2354297637939453,-4.047324180603027,-3.9742848873138428,-3.8284072875976562 -2400,-3.3736140727996826,-4.0931925773620605,-4.068978309631348,-3.9277069568634033 -2450,-3.291214942932129,-4.0549492835998535,-4.068501949310303,-3.9353396892547607 -2500,-3.2789156436920166,-4.036397933959961,-4.090893745422363,-3.9420130252838135 -2550,-3.394996166229248,-4.176276206970215,-4.203944206237793,-4.0132904052734375 -2600,-3.330763101577759,-4.119258880615234,-4.115192890167236,-3.938689708709717 -2650,-3.275559902191162,-4.059130668640137,-4.069315433502197,-3.908952236175537 -2700,-3.299067735671997,-4.083263874053955,-4.065886974334717,-3.958742380142212 -2750,-3.3062682151794434,-4.097029685974121,-4.084096908569336,-3.9484012126922607 -2800,-3.31160044670105,-4.108927249908447,-4.101027011871338,-3.9666497707366943 -2850,-3.319279909133911,-4.1214375495910645,-4.11031436920166,-3.9689762592315674 -2900,-3.325747013092041,-4.126560688018799,-4.115696907043457,-3.97497820854187 -2950,-3.325084924697876,-4.1272735595703125,-4.120279788970947,-3.9767909049987793 -3000,-3.3233938217163086,-4.126061916351318,-4.114415645599365,-3.9727160930633545 diff --git a/example/start/outputs/logs/parameter_convergence/xi.csv b/example/start/outputs/logs/parameter_convergence/xi.csv deleted file mode 100644 index 1c8b83153..000000000 --- a/example/start/outputs/logs/parameter_convergence/xi.csv +++ /dev/null @@ -1,100 +0,0 @@ -2901,0.9497963786125183,0.3548955023288727,-0.7572484612464905,0.029459193348884583,0.04207202047109604,0.5506145358085632,0.7544995546340942,-0.12458798289299011,-0.23252981901168823,0.6940639615058899,-0.8598393201828003,0.23407681286334991,-0.46607333421707153,-0.2983306050300598,-0.35352376103401184,0.47131288051605225,-0.9082253575325012,1.2976837158203125,0.32317233085632324,1.1374647617340088,0.33931031823158264,0.3407059907913208,-1.100390911102295,0.28071704506874084,0.24358141422271729,-1.214715600013733,0.003936220891773701,-0.7557538747787476,0.25632381439208984,1.0910526514053345,0.9747512340545654,-0.3191557228565216,-1.5382083654403687,0.6059227585792542,0.31321966648101807,-0.3989444077014923,0.6525569558143616,0.6293870806694031,0.3157161474227905,0.9604986906051636,0.6935867667198181,1.185081124305725,0.6732376217842102,-0.37148433923721313,0.14743943512439728,-1.130241870880127,-0.22096514701843262,0.7481964230537415,-0.2876169979572296,-0.41962820291519165,-0.501041054725647,-0.41375330090522766,1.0434963703155518,0.6108185052871704,0.7942371964454651,0.4343990385532379,-0.03368181735277176,0.8330733180046082,0.483210951089859,0.24808160960674286,-0.7768097519874573,0.5809494256973267,-0.36831608414649963,0.32580065727233887,-0.13120700418949127,-0.23560281097888947,1.0833964347839355,-0.8861590623855591,0.31189191341400146,0.04004371166229248,0.9813454151153564,-1.1405811309814453,0.029544319957494736,1.1743770837783813,-0.0061461711302399635,0.6610994338989258,-0.07180008292198181,0.2979400157928467,-0.7152570486068726,-0.4162352681159973,-0.5478038787841797,0.16322603821754456,0.03582330048084259,1.3027665615081787,1.0813745260238647,0.9248858690261841,1.4482656717300415,0.9243412017822266,-0.16529470682144165,-0.5918829441070557,1.14247465133667,0.6952124238014221,0.39229196310043335,-0.10605189204216003,-1.0554276704788208,-0.3819424510002136,0.6290870308876038,0.11459192633628845,-0.03133991360664368,0.24713949859142303,0.74129319190979,-1.540871500968933,0.178758442401886,0.5713374614715576,-0.4722212553024292,-1.035286545753479,-0.6423597931861877,-0.6435030102729797,-0.1380472332239151,-0.43109118938446045,-0.099957175552845,-0.10436910390853882,-0.6392170190811157,0.1165647879242897,0.13580408692359924,0.27835720777511597,-0.5514792799949646,-0.368845134973526,-0.6093649864196777,-0.8260341286659241,-0.2802789509296417,-0.6658342480659485,-0.6559179425239563,-0.09829472005367279,-0.4150429368019104,0.3542329668998718,-0.7211253643035889,1.2818773984909058,-1.0633118152618408,0.3349562883377075,-0.4942154884338379,0.9277446269989014,-1.5373469591140747,0.7575989961624146,-1.9432377815246582,-0.34741485118865967,0.19924134016036987,-0.36713707447052,-0.9587643146514893,-0.4775974750518799,0.15807829797267914,-0.5668412446975708,0.009629587642848492,-0.5767340660095215,-0.2621390223503113,0.5888813138008118,-0.5913448333740234,-0.43390634655952454,0.7224903106689453,-1.3014841079711914,1.6378800868988037,-0.814437210559845,1.1528446674346924,-1.5943140983581543,-1.0827723741531372,0.18851210176944733,-0.020140860229730606,0.07462438941001892,0.4505635201931,-1.3195319175720215,0.5388150215148926,-0.5907451510429382,0.4678891897201538,-0.9957643747329712,-0.25573375821113586,-0.6201896667480469,-0.5630508661270142,-0.6211161017417908,-0.27303969860076904,-0.33517104387283325,-0.4374345541000366,0.17885002493858337,-0.0709032341837883,-0.16822002828121185,-1.1034539937973022,-0.18024183809757233,0.6994110941886902,0.01830226182937622,1.2501497268676758,-0.12964604794979095,0.007646396290510893,-0.36352360248565674,-0.2597270607948303,0.531670331954956,0.1917295753955841,-0.4576866626739502,0.7075302600860596,0.5669333338737488,0.49251142144203186,-0.43912994861602783,-0.40627071261405945,-0.7668709754943848,0.3718568682670593,-0.057549960911273956,-0.6585153341293335,0.20713010430335999,1.1210761070251465,0.6361861228942871,-0.21379385888576508,0.1102980300784111,0.2666466534137726,0.8243204355239868,-0.13217324018478394,-0.1535942256450653,1.1551727056503296,-1.1884132623672485,0.5960384011268616,-1.3675789833068848,-0.5508275628089905,-0.6901603937149048,0.17196978628635406,-1.1153615713119507,0.9456120729446411,1.0998637676239014,0.1981307864189148,-0.9135971665382385,-0.320645272731781,-0.6843897104263306,1.011910080909729,-0.29736217856407166,0.8748246431350708,0.7061140537261963,0.06977976858615875,-0.33982864022254944,0.23498225212097168,-0.5229593515396118,0.3463504910469055,-0.1397247314453125,-0.3158290982246399,1.2532894611358643,-0.3416363596916199,0.06196358799934387,-0.146585151553154,0.9945076107978821,0.8275730013847351,0.023111388087272644,-0.28308480978012085,1.123013973236084,-0.09143896400928497,1.2316886186599731,-0.47909271717071533,0.05494311451911926,-1.1386207342147827,-0.8095535039901733,1.1292202472686768,-0.6235271692276001,-0.8132672309875488,-0.03716111183166504 -2902,0.9591794013977051,0.21904343366622925,-0.7478654384613037,0.03884221985936165,0.051455046981573105,0.55999755859375,0.763882577419281,-0.11520496010780334,-0.22314679622650146,0.7818237543106079,-0.8504562973976135,0.36991190910339355,-0.45669031143188477,-0.28894758224487305,-0.3441407382488251,0.6088600754737854,-0.8988423347473145,1.307066798210144,0.4741758108139038,1.1468478441238403,0.38821330666542053,0.23447738587856293,-1.0910078287124634,0.2901000678539276,0.4402152895927429,-1.2053325176239014,0.013319247402250767,-0.8880816698074341,0.1288013905286789,1.1121388673782349,0.9841342568397522,-0.12146992981433868,-1.2159669399261475,0.6153057813644409,0.32260268926620483,-0.05145176872611046,0.6619399785995483,0.6387701034545898,0.3250991702079773,0.789488673210144,0.7029697895050049,1.1944642066955566,0.682620644569397,0.014708790928125381,0.15682245790958405,-1.1208587884902954,-0.21158212423324585,0.7970384359359741,-0.27823397517204285,-0.3703621029853821,-0.23764151334762573,-0.27306419610977173,1.0784051418304443,0.6202015280723572,0.6096749901771545,0.4437820613384247,-0.024298790842294693,0.8424563407897949,0.42925041913986206,0.021179664880037308,-0.7674267292022705,0.5903324484825134,-0.35893306136131287,0.33518368005752563,-0.1218239814043045,-0.2262197881937027,1.092779517173767,-0.8767760396003723,0.32127493619918823,0.049426738172769547,0.9907284379005432,-0.5581303238868713,0.0389273464679718,1.2285583019256592,0.1500529944896698,-0.00043797120451927185,-0.062417056411504745,0.3181643486022949,-0.7058740258216858,-0.40685224533081055,-0.5384208559989929,0.17260906100273132,0.045206326991319656,1.1505353450775146,1.0907576084136963,0.9342688918113708,1.457648754119873,0.9337242245674133,-0.15591168403625488,-0.5824999213218689,1.1518577337265015,0.5197226405143738,0.4016749858856201,-0.09666886925697327,-1.6772315502166748,-0.37255942821502686,0.6384700536727905,0.12397494912147522,-0.10482995212078094,0.256522536277771,0.7506762146949768,-1.5314884185791016,0.18814146518707275,0.5807204842567444,-0.46283823251724243,-1.0259034633636475,-0.037492211908102036,-0.634119987487793,-0.12866421043872833,-1.6682499647140503,-0.09057414531707764,-1.5949336290359497,-0.629833996295929,0.12594781816005707,0.041817668825387955,0.28774023056030273,-0.5420962572097778,-0.35946211218833923,-0.7668833136558533,-0.7477155327796936,-0.27089592814445496,-0.6564512252807617,-0.6465349197387695,0.2939828038215637,-0.3626056909561157,0.3636159896850586,-0.7117423415184021,1.4836921691894531,0.13596969842910767,0.3443393111228943,-0.4848324656486511,0.9371276497840881,-1.0598701238632202,0.25559818744659424,-1.9338546991348267,-0.3380318284034729,0.20862436294555664,-0.35775405168533325,-0.9493812918663025,-0.4682144522666931,0.6774230599403381,-0.557458221912384,-0.12127678096294403,-0.9569907784461975,-0.2527559995651245,0.5982643365859985,-0.5819618105888367,0.3894716799259186,0.7318733334541321,-0.8928435444831848,1.6472631692886353,-0.8050541877746582,1.162227749824524,-1.5849310159683228,-1.105310320854187,0.1978951245546341,-0.01075783371925354,0.08400741219520569,0.5332769751548767,-1.335710048675537,0.5481980443000793,-0.21448320150375366,0.4772722125053406,-0.9863813519477844,-0.2320152372121811,-0.6108066439628601,-0.964000403881073,-0.611733078956604,-0.32396674156188965,-0.3257880210876465,-0.42805153131484985,0.18823304772377014,-0.58617103099823,-0.15883700549602509,-1.0940709114074707,-0.17085881531238556,0.708794116973877,-0.4893946051597595,1.3195799589157104,-0.12026302516460419,0.017029423266649246,-0.3349120020866394,-0.25034403800964355,0.5490691661834717,-0.05562364682555199,-0.4483036398887634,0.7169132828712463,-0.33502858877182007,0.501894474029541,-0.039236512035131454,-0.5560432076454163,-0.757487952709198,0.5295620560646057,-0.04816693440079689,-0.6491323113441467,-0.1220930814743042,0.2802184224128723,0.6616570949554443,-0.2044108361005783,0.11968106031417847,0.27602967619895935,0.493118554353714,-0.12279021739959717,-0.14421120285987854,1.2669447660446167,-1.179030179977417,0.6054214239120483,-1.1782597303390503,0.3903009295463562,-0.4464493989944458,0.18135280907154083,-1.1059784889221191,0.9549950957298279,1.109246850013733,0.2793769836425781,-0.9042141437530518,-0.31126224994659424,-0.756646454334259,1.0212931632995605,-0.2879791557788849,0.8842076659202576,0.7154970765113831,0.07916279137134552,-0.2264154553413391,0.24436527490615845,-0.5073714256286621,0.47728636860847473,-0.13034170866012573,-0.3064460754394531,1.2626725435256958,-0.3322533369064331,0.07134661078453064,0.33193033933639526,1.0038906335830688,0.9322919249534607,0.03249441459774971,-0.7214730978012085,0.02984244003891945,-0.0820559412240982,1.2410717010498047,-0.46970969438552856,-0.2722989618778229,-1.1292376518249512,-0.6169997453689575,1.1386033296585083,-0.6141441464424133,-0.8038842082023621,-0.4120173454284668 -2903,0.9649258852005005,0.22478991746902466,-0.7421189546585083,0.04458869993686676,0.05720152705907822,0.5657440423965454,0.7696290612220764,-0.7452116012573242,-0.21740031242370605,0.7807151675224304,-0.8447098135948181,0.37565839290618896,-0.45094382762908936,-0.21689751744270325,-0.5177039504051208,0.6146065592765808,-0.893095850944519,1.356332778930664,0.4799222946166992,1.1525943279266357,0.39395979046821594,0.24022386968135834,-1.085261344909668,0.4023796617984772,0.6967988610267639,-1.4858722686767578,0.019065726548433304,-0.8823351860046387,0.3106692135334015,1.0957175493240356,0.9898807406425476,-0.11572344601154327,-1.210220456123352,0.6210522651672363,0.32834917306900024,-0.04570528864860535,0.6676864624023438,0.6445165872573853,0.3308456540107727,0.7952351570129395,0.7087162733078003,1.200210690498352,0.6883671283721924,0.020455271005630493,0.16256894171237946,-1.1151123046875,-0.20583564043045044,0.8027849197387695,-0.27248749136924744,-0.36461561918258667,-0.23189502954483032,-0.2673177123069763,1.0841516256332397,0.6259480118751526,0.61542147397995,0.4495285451412201,-0.01855231076478958,0.8482028245925903,0.43499690294265747,0.02692614495754242,-0.7616802453994751,0.5960789322853088,-0.35318657755851746,0.34093016386032104,-0.1160774976015091,-0.2204733043909073,1.3432923555374146,-0.8935094475746155,0.41095390915870667,0.05517321825027466,0.9964749217033386,-1.22478449344635,0.11114948987960815,1.2343047857284546,0.1557994782924652,0.00530850887298584,-0.049260202795267105,0.32906702160835266,-0.7533584833145142,-0.40110576152801514,-0.5326743721961975,0.17835554480552673,0.05095280706882477,1.15628182888031,1.0965040922164917,0.9627877473831177,1.4633952379226685,0.9394707083702087,-0.15016520023345947,-0.5767534375190735,1.1576042175292969,0.5254691243171692,0.4074214696884155,-0.09092238545417786,-1.6714850664138794,-0.15723758935928345,0.6442165374755859,0.12972143292427063,-0.06698395311832428,0.2622690200805664,0.7564226984977722,-1.5257419347763062,0.19388794898986816,0.5864669680595398,-0.457091748714447,-0.7892820239067078,-0.1304319202899933,-0.6283735036849976,-0.12291772663593292,-1.6625034809112549,-0.6834545135498047,-0.012050274759531021,-0.6240875124931335,0.13169430196285248,0.047564148902893066,0.29348671436309814,-0.5363497734069824,-0.3537156283855438,-0.6815139651298523,-0.7419690489768982,0.1064625084400177,-0.6507047414779663,-0.6407884359359741,0.29972928762435913,-0.3568592071533203,0.369362473487854,-0.7059958577156067,1.549668312072754,0.27459603548049927,0.3500857949256897,-0.2009507417678833,0.9428741335868835,-1.647553563117981,0.26134467124938965,-1.9281082153320312,-0.3322853446006775,-0.31352394819259644,-0.35200756788253784,-0.9436348080635071,-0.4624679684638977,0.6831695437431335,-0.5517117381095886,-0.11553029716014862,-0.6769046187400818,-0.39876851439476013,0.604010820388794,-0.5762153267860413,0.395218163728714,0.7376198172569275,-0.8870970606803894,1.6530096530914307,-0.7993077039718628,1.1679742336273193,-1.5791845321655273,-1.0995638370513916,0.2036416083574295,-0.005011353641748428,0.2632521092891693,0.5390234589576721,-1.3299635648727417,0.5539445281028748,-0.23310604691505432,0.483018696308136,-0.980634868144989,-0.22626875340938568,-0.46051305532455444,-1.381473183631897,-0.6059865951538086,-0.31822025775909424,-0.5018101930618286,-0.3411852717399597,0.19397953152656555,-0.5804245471954346,-0.10242128372192383,-1.0883244276046753,-0.16511233150959015,0.7145406007766724,-0.4191451668739319,1.3253264427185059,-0.5709640979766846,0.022775903344154358,0.7560766339302063,-0.24459755420684814,0.5548156499862671,0.1719198077917099,-0.442557156085968,0.7226597666740417,-0.32928210496902466,0.5076409578323364,-1.70552396774292,-0.5502967238426208,-0.7517414689064026,0.5353085398674011,-0.04242045432329178,-0.6433858275413513,-0.11634659767150879,0.2859649062156677,0.6674035787582397,-0.1986643522977829,0.12542754411697388,0.28177616000175476,0.4774172902107239,-0.11704373359680176,-1.0960516929626465,1.2773958444595337,-1.1732836961746216,0.6111679077148438,-1.1725132465362549,0.3960474133491516,-0.018176797777414322,0.18709929287433624,-1.1002320051193237,1.0975602865219116,1.1149933338165283,0.28512346744537354,-0.8984676599502563,-0.1981930136680603,-1.0288286209106445,1.027039647102356,0.14194917678833008,0.889954149723053,0.7212435603141785,0.08490927517414093,0.1046781837940216,0.25011175870895386,-0.5016249418258667,0.47964903712272644,-0.7425428032875061,-0.8794101476669312,1.3033243417739868,-0.5950431823730469,-0.28086450695991516,0.3376768231391907,1.0096371173858643,0.9380384087562561,0.03824089467525482,-0.7157266139984131,0.03558892011642456,0.005752447992563248,1.2703959941864014,-0.46396321058273315,-0.26655247807502747,-1.1234911680221558,-0.2635924220085144,1.1443498134613037,-0.3941258192062378,-0.7981377243995667,-0.4062708616256714 -2904,0.9780500531196594,0.5580809712409973,-0.7289947867393494,0.057712893933057785,0.07032572478055954,0.5788682103157043,0.7827532291412354,-0.7320874333381653,-0.20427611470222473,0.7938393354415894,-0.8315856456756592,0.3887825906276703,-0.43781962990760803,-0.20377331972122192,-0.4149698317050934,0.762498676776886,-0.8799716830253601,1.3694570064544678,0.40866541862487793,1.0599418878555298,0.6600708365440369,0.36810410022735596,-1.0721371173858643,0.4155038595199585,0.48823729157447815,-1.472748041152954,0.03218992054462433,-0.8692110180854797,0.3237934112548828,1.1088417768478394,1.0030049085617065,-0.10259924829006195,-1.1970962285995483,-0.20492616295814514,0.34147337079048157,-0.6932975649833679,0.5381782054901123,0.6576407551765442,0.34396985173225403,0.8083593249320984,0.7218404412269592,1.2090197801589966,0.6520706415176392,0.03357946500182152,0.17569313943386078,-1.3444011211395264,-0.19271144270896912,0.8088680505752563,-0.2593632936477661,-0.35149142146110535,-0.218770831823349,-0.254193514585495,1.0972758531570435,0.6390721797943115,0.6285456418991089,0.4626527428627014,-0.005428115837275982,0.8002727031707764,0.567110002040863,0.040050338953733444,-0.7485560774803162,0.6092031002044678,-0.34006237983703613,0.35405436158180237,-0.10295329988002777,-0.20734910666942596,1.3564165830612183,-0.8803852796554565,0.556623637676239,0.06829741597175598,1.0095990896224976,-1.2116602659225464,0.12427368760108948,1.1654720306396484,0.16892367601394653,0.018432702869176865,-0.03613600879907608,0.342191219329834,-0.6969746351242065,-0.3879815638065338,-0.5195502042770386,0.04987302049994469,0.06407700479030609,1.1694060564041138,1.1096283197402954,0.9759119153022766,0.611160159111023,0.9525948762893677,-0.13704100251197815,-0.5636292695999146,1.1707284450531006,-0.12910917401313782,0.5110235214233398,-0.07779818773269653,-1.6583608388900757,-0.14411339163780212,0.6882917881011963,0.14284563064575195,-0.053859759122133255,0.17569777369499207,0.002709534950554371,-2.0585086345672607,0.2070121467113495,0.5995911359786987,-0.4439675509929657,-0.7308765649795532,-0.11730772256851196,0.3600671589374542,-0.1097935289144516,-1.5401400327682495,-0.4613667130470276,0.0010739201679825783,-0.3580317497253418,0.1448184996843338,0.06068834289908409,0.5383575558662415,-0.4360552430152893,-0.3405914306640625,-0.6683897972106934,-0.31290125846862793,0.11958670616149902,-0.6375805735588074,-0.6276642680168152,-0.5921798348426819,-0.343735009431839,0.4140954315662384,-0.6928716897964478,1.4659725427627563,0.2877202332019806,0.3070440888404846,-0.18782654404640198,0.9559983015060425,-1.3662832975387573,0.27446886897087097,-1.9149839878082275,-1.1175000667572021,-0.3003997504711151,-0.3388833701610565,-0.9305106401443481,-0.4493437707424164,-0.29584184288978577,-0.5385875701904297,-0.1024060994386673,-0.6637804508209229,-0.3856443166732788,0.3839503228664398,-0.5630911588668823,0.4083423614501953,0.7507439851760864,-0.8739728927612305,1.6338468790054321,-0.5833451747894287,1.181098461151123,-1.5660603046417236,-1.086439609527588,0.21676580607891083,0.008112841285765171,0.18188214302062988,0.552147626876831,-1.316839337348938,0.5056015253067017,-0.219981849193573,-0.874530553817749,-0.9675107002258301,-0.21314455568790436,-0.4473888576030731,-1.0042824745178223,-0.5928624272346497,0.3811507523059845,-0.4886859953403473,-0.3280610740184784,0.20710372924804688,-0.5673003792762756,-0.9361847043037415,-1.2459416389465332,-0.21789053082466125,0.6010171175003052,-0.46563681960105896,1.3384506702423096,-0.5578399300575256,0.24554023146629333,1.198488473892212,-0.23147335648536682,0.567939817905426,0.18504400551319122,-0.5255005955696106,0.7357839345932007,0.7157056331634521,0.5207651257514954,-0.10618665814399719,-0.5371725559234619,-0.7386173009872437,0.5484327077865601,-0.08493909984827042,-0.6302616596221924,-0.10322239995002747,0.29908910393714905,0.6805277466773987,-0.18554015457630157,0.3183179199695587,0.2949003577232361,0.4905414879322052,-0.10391953587532043,-1.0829274654388428,1.2254722118377686,-1.1601594686508179,0.6469619870185852,-1.1593890190124512,-0.3652913272380829,-0.0050526028499007225,0.20022349059581757,-1.08710777759552,1.1106845140457153,0.871315062046051,0.950163722038269,-0.8853434920310974,-0.18506881594657898,-1.0157043933868408,1.1564857959747314,0.3638339340686798,0.9030783176422119,0.7343677282333374,0.09803347289562225,0.11275499314069748,0.2632359564304352,-0.4885007441043854,0.43017885088920593,-0.7294186353683472,-0.6493045687675476,1.3164485692977905,-0.5819190144538879,-0.26774030923843384,0.048217203468084335,1.022761344909668,0.951162576675415,0.05136508867144585,-0.7026024460792542,0.048713114112615585,0.018876641988754272,1.283520221710205,-0.45083901286125183,-0.25342828035354614,-1.110366940498352,-0.2504682242870331,1.1574740409851074,-0.38100162148475647,-0.7850135564804077,-0.39314666390419006 -2905,0.880112886428833,0.555660605430603,-0.4977123737335205,0.0552925169467926,0.06790535151958466,0.5764478445053101,0.7803328633308411,-0.7345077991485596,-0.2066964954137802,0.7914189696311951,-0.8340060114860535,0.386362224817276,-0.27931007742881775,-0.21398870646953583,-0.2058921605348587,0.7855430841445923,-0.8823920488357544,1.3670365810394287,0.40624505281448364,0.9950776696205139,0.6576504707336426,0.36568373441696167,-1.0745575428009033,0.4130834937095642,0.616267740726471,-1.4751684665679932,-0.10884542018175125,-0.871631383895874,0.3213730454444885,1.1064213514328003,1.0005844831466675,0.14847955107688904,-1.1995166540145874,-0.13574416935443878,0.33694589138031006,0.07003092020750046,0.535757839679718,0.6552203893661499,0.34154948592185974,0.8059389591217041,0.7194200754165649,1.2065993547439575,0.6497530341148376,0.00590971764177084,0.19731800258159637,-1.3468215465545654,-0.1951318234205246,0.8064476847648621,-0.2617836594581604,-0.2998853325843811,0.2691240608692169,-0.2566138803958893,1.1159108877182007,0.6366518139839172,0.6261252760887146,0.46023237705230713,-0.00784849189221859,0.7978523373603821,0.5646896362304688,0.25757142901420593,-0.7135540246963501,0.6067827343940735,-0.236894890666008,0.3516339957714081,-0.2559993863105774,-0.20976948738098145,1.284996747970581,-0.4319141209125519,0.5542032718658447,-0.04045737162232399,1.0071786642074585,-1.2140806913375854,0.09809073805809021,1.1630516052246094,0.18014982342720032,0.016012325882911682,0.08905325829982758,0.3397708535194397,-0.6993950009346008,-0.5515638589859009,-0.5080121755599976,0.047452643513679504,0.06165662780404091,1.1669856309890747,1.1072078943252563,0.9734915494918823,0.6087397933006287,0.7279886603355408,-0.13946138322353363,-0.5660496354103088,1.1683080196380615,0.37254998087882996,0.5086031556129456,-0.08021856099367142,-1.6607812643051147,-0.1465337723493576,0.685871422290802,0.14042524993419647,-0.26575785875320435,-0.20018325746059418,0.00028915866278111935,-2.120222568511963,0.204591765999794,0.5971707701683044,-0.44638791680336,-0.7332969307899475,-0.11972809582948685,0.35764679312705994,-0.11221390217542648,-0.13491149246692657,-0.17252714931964874,-0.0013464561197906733,-0.20047688484191895,0.14239811897277832,0.3216795325279236,0.5359371900558472,-0.4384756088256836,-0.8715945482254028,-0.6708101630210876,-0.3153216242790222,0.11716633290052414,-0.6400009393692017,-0.6300846338272095,-0.5946002006530762,-0.3461553752422333,0.4116750657558441,-0.695292055606842,1.4635521173477173,0.2852998673915863,0.30462372303009033,-0.19024692475795746,0.9535779356956482,-1.3687037229537964,0.2720485031604767,-2.2470896244049072,-1.1199204921722412,-0.17485035955905914,-0.3413037359714508,-1.98714017868042,-0.45176413655281067,-0.29826220870018005,-0.541007936000824,-0.10482647269964218,-0.6662008166313171,-0.757289707660675,0.38152995705604553,-0.5655115246772766,0.405921995639801,0.7483236193656921,-0.8763932585716248,1.631426453590393,-0.585765540599823,1.178678035736084,-1.5684807300567627,-1.088860034942627,0.21434542536735535,0.005692465230822563,0.1794617623090744,0.455848753452301,-1.319259762763977,0.5031811594963074,-0.40056654810905457,0.4767002463340759,-1.362255334854126,-0.21556493639945984,-0.4498092234134674,-0.7490273118019104,-0.595282793045044,0.3787303864955902,-0.4911063611507416,-0.3304814398288727,0.2046833485364914,-0.5697207450866699,-0.9386050701141357,-1.2483620643615723,-0.22031091153621674,0.5985967516899109,-0.46805718541145325,1.3360302448272705,-0.5602602958679199,0.24311985075473785,0.37207961082458496,-0.2338937371969223,0.6338026523590088,0.17382921278476715,-0.5279209613800049,0.7333635687828064,0.7132852673530579,0.5183447599411011,-0.10860703140497208,-0.5395929217338562,-0.7410376667976379,0.5460123419761658,-0.0873594731092453,-0.7834373712539673,-0.10564277321100235,0.29666873812675476,0.6781073808670044,-0.18796053528785706,0.31589755415916443,0.2924799919128418,0.4881211221218109,-0.10633990913629532,-1.0853478908538818,1.2230517864227295,-0.973453938961029,0.6445416212081909,-1.1618094444274902,-1.1475934982299805,-0.00747297890484333,0.19780310988426208,-1.089528203010559,1.1082640886306763,0.8688946962356567,0.9477433562278748,-0.8877638578414917,-0.18748919665813446,-1.0181248188018799,1.1540653705596924,0.3614135682582855,-0.2930235266685486,0.830195963382721,0.09561309963464737,0.019885364919900894,0.06851077824831009,-0.49092110991477966,0.42775848507881165,-0.22370196878910065,-0.6517249345779419,1.3140281438827515,-0.5843393802642822,-0.47815194725990295,0.04579682648181915,1.020340919494629,0.9487422108650208,-0.7096601128578186,-0.4029419720172882,1.0028215646743774,0.01645626500248909,1.281099796295166,-0.4532593786716461,-0.25584864616394043,-1.1127873659133911,-0.25288859009742737,0.8356897234916687,-0.5038286447525024,-0.787433922290802,-0.39556702971458435 -2906,0.9853032827377319,0.35554239153862,-0.49314168095588684,0.059863217175006866,-0.34067782759666443,0.5810185670852661,0.7849035859107971,-0.7299370765686035,-0.20212578773498535,0.7959896922111511,-0.6922752857208252,0.39093291759490967,-0.2747393846511841,-0.13846455514431,-0.20132145285606384,0.7901138067245483,-0.8778213262557983,1.3497549295425415,0.41107818484306335,0.99964839220047,0.6622211933135986,0.2221270054578781,-1.0699868202209473,0.4176541864871979,0.5592786073684692,-1.470597743988037,-0.10427471995353699,-0.867060661315918,0.18033024668693542,1.0814179182052612,1.0051552057266235,0.1530502587556839,-1.1949459314346313,-0.0070032160729169846,0.4570523202419281,0.07460162043571472,0.5403285622596741,0.659791111946106,0.3461201786994934,0.8105096817016602,0.7131897807121277,1.2111700773239136,0.6543237566947937,0.13054883480072021,0.20188871026039124,-0.7434091567993164,-0.19056111574172974,0.8110184073448181,-0.25721296668052673,-0.29531463980674744,0.2736947536468506,-0.24714843928813934,1.1204816102981567,0.6412225365638733,0.650932252407074,0.4648030698299408,0.07182639092206955,0.8024230599403381,0.5692603588104248,0.2621421217918396,-0.7067398428916931,0.6113534569740295,-0.23232418298721313,0.35620468854904175,-0.2514286935329437,-0.20519877970218658,1.289567470550537,-0.3525957465171814,0.5587739944458008,-0.03588666766881943,1.0117493867874146,-1.2095099687576294,0.10266143828630447,1.1676223278045654,0.18472053110599518,0.32359740138053894,0.21549738943576813,0.34434154629707336,-0.6948242783546448,-0.5469931364059448,-0.7360507249832153,-0.42170003056526184,0.036334648728370667,1.1879675388336182,1.1117786169052124,0.9780622720718384,0.6133105158805847,0.7325593829154968,-0.13489067554473877,-0.5614789128303528,1.1728787422180176,-0.03557264059782028,0.5758056640625,-0.07564786076545715,-1.6562105417251587,-0.14196306467056274,0.4910932183265686,0.14499595761299133,-0.2611871659755707,-0.19561254978179932,0.004859860986471176,-2.5170528888702393,0.20916247367858887,0.5162394642829895,-0.4418172240257263,-0.7663298845291138,-0.46755650639533997,0.3622174859046936,-0.10764320194721222,-0.1303407847881317,-0.16795644164085388,-0.17697149515151978,-0.19590617716312408,0.14696882665157318,0.32625022530555725,-0.5525904893875122,-0.4339049160480499,-0.8670238256454468,-0.6662394404411316,-0.31075093150138855,0.1217370331287384,-0.6354302167892456,-0.6255139112472534,-0.5900294780731201,-0.7990703582763672,0.5287513136863708,-0.6916711926460266,1.4018731117248535,0.3456036150455475,0.309194415807724,-0.1856762170791626,0.9581486582756042,-1.3641330003738403,0.27661919593811035,-0.647860050201416,-0.6433277130126953,0.41809746623039246,-0.33673304319381714,-1.9825694561004639,-0.447193443775177,-0.2936915159225464,-0.3445231020450592,-0.10025577247142792,-0.400488018989563,-0.752718985080719,0.3861006498336792,-0.7988929152488708,0.6682320833206177,0.7528943419456482,-0.8718225359916687,1.6359971761703491,-0.5811948180198669,1.18324875831604,-1.8801171779632568,-1.084289312362671,0.2189161330461502,-0.7100304961204529,0.18403246998786926,0.4538815915584564,-1.314689040184021,0.5077518820762634,-0.3959958553314209,-0.306658536195755,-1.35768461227417,-0.21099422872066498,-0.44523853063583374,-0.7444565892219543,-0.8034971356391907,0.3833010792732239,-0.4865356683731079,-0.325910747051239,0.20925405621528625,-0.5651500225067139,-1.0223027467727661,-1.2437913417816162,-0.21574020385742188,0.6031674742698669,-0.4634864926338196,1.3406009674072266,-0.5556895732879639,0.24769055843353271,0.37665030360221863,-0.22932302951812744,0.6383733749389648,0.178399920463562,-0.5233502388000488,0.7379342913627625,0.7178559899330139,0.5229154825210571,-0.026659054681658745,0.5849189162254333,-0.7364669442176819,0.5505830645561218,-0.08278877288103104,-0.7788666486740112,-0.10107207298278809,0.3012394309043884,0.6826781034469604,-0.1833898276090622,0.3204682469367981,0.29705068469047546,0.3194415867328644,-0.10176920890808105,-1.0807771682739258,1.2276225090026855,-0.968883216381073,0.4879949390888214,-1.1572387218475342,-0.7822946310043335,-0.0029022768139839172,0.20237381756305695,-1.084957480430603,1.1128348112106323,0.8734654188156128,0.9523140788078308,-0.8831931352615356,-0.1829184889793396,-1.0135540962219238,1.1586360931396484,0.3659842610359192,-0.2884528338909149,0.16449306905269623,0.10018379986286163,0.024456067010760307,-0.24298395216464996,-0.486350417137146,0.4323291778564453,-0.2191312611103058,-0.6471542119979858,1.3185988664627075,-0.5797686576843262,0.07553935796022415,0.05036752671003342,1.024911642074585,0.9533129334449768,-0.7050893902778625,-0.39837127923965454,1.0073922872543335,0.021026967093348503,1.1643211841583252,-0.44868868589401245,-0.25127795338630676,-1.1196537017822266,-0.2706124782562256,0.9116461873054504,-0.4164161682128906,-0.7563670873641968,-0.3909963369369507 -2907,0.9913953542709351,0.3616344630718231,-0.4870496094226837,0.0659552812576294,-0.3345857560634613,0.6084032654762268,0.7909956574440002,-0.7238450050354004,-0.19603371620178223,0.7181950211524963,-0.6861832141876221,0.3970249891281128,-0.26864731311798096,-0.13237248361110687,-0.19522938132286072,0.7962058782577515,-0.8717292547225952,1.3284790515899658,0.4171702563762665,1.0057404041290283,0.263510137796402,0.22821907699108124,-1.3607908487319946,0.423746258020401,0.5997829437255859,-0.5785941481590271,-0.09818265587091446,-0.8609685897827148,0.18642231822013855,1.089280605316162,1.0112472772598267,0.15914233028888702,-1.1888538599014282,-0.0009111515246331692,0.4631443917751312,0.017647430300712585,0.7022526860237122,0.6658831834793091,0.35221225023269653,0.8166017532348633,0.7192818522453308,1.2172621488571167,0.6682813763618469,-0.5783926248550415,0.20798078179359436,-1.3162434101104736,-0.1844690442085266,0.8178569674491882,-0.2511208951473236,-0.2892225682735443,0.2797868251800537,-0.24105636775493622,1.1653847694396973,0.5259181261062622,0.6570243239402771,0.5149468779563904,-0.11729893088340759,0.7461416125297546,0.5753524303436279,0.2682341933250427,-0.70064777135849,0.5942521691322327,-0.22623211145401,0.658320963382721,-0.2453366219997406,-0.19910670816898346,1.3621199131011963,-0.34650367498397827,0.5648660659790039,-0.0297946035861969,1.0178414583206177,-1.2034178972244263,0.08718232065439224,1.0899327993392944,0.1908126026391983,0.32968947291374207,0.22158946096897125,0.3504336178302765,-0.6887322068214417,-0.5163664221763611,-0.7299586534500122,-0.4156079590320587,0.042426712810993195,1.236443042755127,1.1178706884384155,0.968349814414978,0.6194025874137878,0.8145768642425537,-0.12879860401153564,-0.5553868412971497,1.1789708137512207,-0.029480576515197754,-0.3692084550857544,-0.06955579668283463,-1.6501184701919556,-0.13587099313735962,0.49718528985977173,0.15108802914619446,-0.2617121934890747,0.13292419910430908,0.010951925069093704,-2.703206777572632,0.215254545211792,0.5223315358161926,-0.4357251524925232,-0.7602378129959106,-0.46146443486213684,0.36830955743789673,-0.10155113786458969,-0.12424872070550919,-0.22664731740951538,-0.12184538692235947,-0.18981410562992096,0.22839388251304626,0.3323422968387604,-0.5464984178543091,-1.407031774520874,-0.8609317541122437,-0.6601473689079285,-0.3046588599681854,0.12782910466194153,-0.6293381452560425,-0.6194218397140503,-0.583937406539917,-0.7929782867431641,0.534843385219574,0.25436270236968994,1.4079651832580566,0.3516956865787506,0.01301022619009018,-0.17958414554595947,0.9642407298088074,-1.3580409288406372,0.2827112674713135,-0.6417679786682129,0.08336388319730759,0.4241895377635956,1.0383284091949463,-2.266240358352661,-0.4411013722419739,0.16565456986427307,-0.3384310305118561,-0.09416370838880539,-0.948350191116333,-0.8016871809959412,0.3921927213668823,-0.7928008437156677,0.6743241548538208,0.7589864134788513,-0.8657304644584656,1.6420892477035522,-0.5751027464866638,1.2001147270202637,-1.8740251064300537,-1.0781972408294678,-0.0307268425822258,-0.7039384245872498,0.1901245415210724,0.5138730406761169,-1.3085969686508179,0.5883452892303467,-1.084322214126587,-0.3005664646625519,-1.3515925407409668,-0.20490215718746185,-0.7537357807159424,-0.7383645176887512,-0.7974050641059875,0.6181589365005493,-0.4804435968399048,-0.3198186755180359,0.21534612774848938,-0.5590579509735107,-1.016210675239563,-1.237699270248413,-0.010448671877384186,0.6092595458030701,-0.4488219618797302,1.3466930389404297,-0.5495975017547607,-0.009558327496051788,0.38274237513542175,-0.22323095798492432,0.644465446472168,0.18449199199676514,-0.5172581672668457,0.983157753944397,0.723948061466217,0.5290075540542603,-0.4416833221912384,0.5910109877586365,-0.7303748726844788,0.4836648106575012,-0.07669670879840851,-0.7727745771408081,-0.05693080276250839,0.30733150243759155,0.6887701749801636,-0.17729775607585907,0.3265603184700012,0.3031427562236786,0.3255336582660675,-0.09567714482545853,-1.0746850967407227,1.2720123529434204,-0.9627911448478699,0.49147501587867737,-1.151146650314331,-0.5849448442459106,0.03469157963991165,0.20846588909626007,-0.49731069803237915,1.3684604167938232,0.8795574903488159,0.9584061503410339,-0.8771010637283325,-0.17682641744613647,-1.0074620246887207,1.1482574939727783,0.3720763325691223,-0.2823607623577118,0.17058514058589935,0.10627586394548416,0.030548131093382835,-0.23689188063144684,-0.48025834560394287,0.43842124938964844,-0.21303918957710266,-1.2075161933898926,1.3246909379959106,-0.573676586151123,0.08163142204284668,0.056459590792655945,1.031003713607788,0.9594050049781799,0.2511853575706482,-0.3922792077064514,0.1119714304804802,-0.2549382448196411,1.1704132556915283,-0.4425966143608093,-0.7068024277687073,-0.6285779476165771,-0.26452040672302246,0.8697091341018677,-0.4103240966796875,-0.7502750158309937,-0.5122563242912292 -2908,0.7999322414398193,0.4596691131591797,-0.48311278223991394,0.06989210844039917,-0.33064892888069153,0.6123400926589966,0.8277662396430969,-0.7199081778526306,-0.19209688901901245,0.7221318483352661,-0.6822463870048523,0.40096181631088257,-0.06545542180538177,-0.105811707675457,-0.19129255414009094,0.7870051264762878,-0.8663370609283447,1.4331389665603638,0.42110708355903625,1.0096771717071533,0.6391019225120544,0.232155904173851,-1.3568540811538696,0.4276830852031708,0.6037197709083557,-0.5746573209762573,-0.09424582868814468,-0.8570317625999451,0.19035914540290833,1.093217372894287,1.0151840448379517,0.1630791574716568,-1.1849170923233032,0.003025672398507595,0.467081218957901,0.021584253758192062,0.7061895132064819,0.6698200106620789,0.2222868800163269,0.9341714978218079,0.7741339802742004,1.2211989164352417,0.5860989093780518,-0.5744557976722717,0.5843245387077332,-1.3123066425323486,-0.8053986430168152,0.821793794631958,-0.6021592020988464,-0.28528574109077454,0.2837236523628235,-0.23711954057216644,1.1693215370178223,0.529854953289032,0.6609611511230469,0.4806405007839203,-0.11336210370063782,0.7500784397125244,0.5792892575263977,0.2721710205078125,-0.7081358432769775,0.5564672350883484,-0.22229528427124023,0.45329099893569946,-0.24139979481697083,-0.19516988098621368,1.3049380779266357,-0.31955257058143616,0.6016656160354614,-0.025857780128717422,1.0217782258987427,-1.1994811296463013,0.09111914783716202,1.106938123703003,0.19474942982196808,0.33362630009651184,0.22552628815174103,0.33334994316101074,-0.6847953796386719,-0.588992714881897,-0.5557859539985657,-0.41167113184928894,0.04636353626847267,1.1433987617492676,1.1218074560165405,0.9296435713768005,-0.13818269968032837,0.8185136914253235,0.43571221828460693,-0.5514500141143799,1.1829075813293457,-0.9596876502037048,-0.3652716279029846,-0.09974348545074463,-1.3345903158187866,-0.1253504455089569,0.5011221170425415,0.15502485632896423,-0.27355456352233887,0.13686102628707886,0.014888748526573181,-2.699270009994507,0.21919137239456177,0.5262683629989624,-0.7520685791969299,-0.891829252243042,-0.45752760767936707,0.3722463846206665,-0.09761431068181992,-0.12031189352273941,-0.2227104902267456,-0.11790855973958969,-0.18587727844715118,0.23233070969581604,0.33627912402153015,-0.5509249567985535,-1.403095006942749,-0.8569949269294739,-0.4205503463745117,-0.03805640712380409,0.1317659318447113,-0.6254013180732727,-0.6154850125312805,-0.5800005793571472,-0.7890414595603943,0.8899356722831726,0.2582995295524597,1.4119019508361816,0.3556325137615204,0.016947049647569656,0.4604780077934265,0.9681775569915771,-1.3541041612625122,0.28664809465408325,-0.6378311514854431,0.08730071038007736,0.0973544716835022,0.018641408532857895,-2.233910083770752,-0.4371645450592041,0.16959139704704285,-0.3344942033290863,0.2760801613330841,-0.9444133639335632,-0.7977503538131714,0.26962196826934814,-0.788864016532898,0.6782609820365906,0.7629232406616211,-0.8617936372756958,1.6460260152816772,-0.571165919303894,1.2040514945983887,-1.8700883388519287,-1.0742604732513428,-0.026790019124746323,-0.70000159740448,0.19406136870384216,0.5178098678588867,-1.3046602010726929,0.5922821164131165,-1.080385446548462,-0.2966296374797821,-1.3476557731628418,-0.071698859333992,-0.7497989535331726,-1.133892297744751,-0.7934682369232178,0.6220957636833191,-0.5693711638450623,-0.13806051015853882,0.18357068300247192,-0.555121123790741,-1.012273907661438,-1.233762502670288,-0.0065118479542434216,0.6131963729858398,-0.05874243751168251,1.3506298065185547,-0.545660674571991,-0.005621503572911024,0.38667920231819153,-0.30923956632614136,0.6484022736549377,0.1884288191795349,-0.5133213400840759,0.9870945811271667,0.8008169531822205,0.53294438123703,-0.43774649500846863,0.12014147639274597,-0.6685448884963989,0.487601637840271,-0.07275988161563873,-0.7688377499580383,-0.052993979305028915,0.31126832962036133,0.6927070021629333,-0.1733609288930893,0.330497145652771,0.30707958340644836,0.2827346622943878,0.08013167232275009,-0.8749498724937439,1.1778451204299927,-0.9588543176651001,0.49541184306144714,-1.147209882736206,-0.29808497428894043,0.03862840309739113,0.21240271627902985,-0.19670060276985168,1.3723971843719482,0.8834943175315857,-0.30824756622314453,-0.8731642365455627,-0.10845077782869339,-1.1880323886871338,1.1370561122894287,0.3760131597518921,-0.278423935174942,0.7374696135520935,0.11021269112825394,0.03448495641350746,0.1865907460451126,-0.8265911936759949,0.4423580765724182,-0.2104087769985199,-0.8838189840316772,1.3286277055740356,-0.5697397589683533,0.08556824922561646,0.06039641425013542,1.034940481185913,0.9633418321609497,0.25512218475341797,-0.38834238052368164,0.11590825766324997,-0.25100141763687134,1.1743500232696533,-0.43865978717803955,-0.9298531413078308,-0.11270612478256226,-0.2605835795402527,0.8736459612846375,-0.4063872694969177,-0.7463381886482239,-0.5083194971084595 -2909,0.8770307302474976,0.49064216017723083,-0.47318756580352783,0.07981733232736588,-0.3207237124443054,0.728897750377655,0.8376914858818054,-0.7099829316139221,-0.18217165768146515,0.7581010460853577,-0.6723211407661438,0.4108870327472687,-0.14017674326896667,-0.0958864837884903,-0.18136732280254364,0.7969303727149963,-0.8564118146896362,1.4430642127990723,0.43103229999542236,1.0196024179458618,0.6490271687507629,0.24208113551139832,-1.0488457679748535,0.4376083016395569,0.49551889300346375,-0.5647320747375488,-0.08432060480117798,-0.3580849766731262,0.3074702024459839,1.1031426191329956,1.0251092910766602,0.1730043888092041,-1.1749918460845947,0.012950897216796875,0.06490663439035416,0.03150947764515877,0.7161147594451904,0.6797452569007874,0.2322121113538742,0.9440967440605164,0.5284223556518555,1.2311241626739502,0.5960241556167603,-0.5645305514335632,0.5942497849464417,-1.0381656885147095,-0.7954733967781067,0.8317190408706665,-0.5922339558601379,-0.2753605246543884,0.2936488687992096,-0.7299742102622986,1.181045651435852,0.5603507161140442,0.5702121257781982,0.4905657172203064,-0.10343687981367111,0.7442409992218018,0.5892145037651062,-0.5795990228652954,-0.6707109808921814,0.5663924813270569,-0.10128224641084671,0.46321621537208557,-0.23147456347942352,-0.18524464964866638,1.3148633241653442,-0.30962735414505005,0.38202905654907227,0.12331420928239822,1.0317034721374512,-1.1895558834075928,0.10104437172412872,1.1168633699417114,0.20467466115951538,0.34355151653289795,0.23545151948928833,0.34327515959739685,-0.6748701333999634,-0.5790674686431885,-0.5458607077598572,-0.578754186630249,0.05628876015543938,1.153324007987976,1.131732702255249,0.9629276990890503,-0.12825746834278107,0.830660879611969,0.44563743472099304,-0.5415247678756714,1.1928328275680542,-0.9497624039649963,0.7397500872612,-0.08981826156377792,-1.3246650695800781,-0.1154252216219902,0.6919335722923279,-0.40759116411209106,-0.26362934708595276,0.14678625762462616,0.33054688572883606,-2.689344882965088,0.22911660373210907,0.5361936092376709,-0.7421433329582214,-0.5490967631340027,-0.44760239124298096,0.022899456322193146,-0.05698379874229431,-0.860627293586731,-0.2127852588891983,-0.10798333585262299,-0.37375059723854065,0.24225594103336334,0.06632021814584732,-0.540999710559845,-1.3931697607040405,-0.8470696806907654,-0.9495306015014648,-0.028131183236837387,0.41046589612960815,-0.6154760718345642,-1.6685856580734253,-0.5700753331184387,-0.8934754729270935,0.8998609185218811,0.2682247459888458,1.4218271970748901,0.3655577301979065,0.02687227353453636,0.4704032242298126,0.9781028032302856,-1.3441789150238037,0.4947420656681061,-0.6279059052467346,0.09722593426704407,0.1072796955704689,-0.23447592556476593,-2.223984956741333,-0.427239328622818,-0.11951502412557602,-0.3245689868927002,0.47151699662208557,-0.9344881176948547,-0.7878251075744629,0.27954718470573425,-0.7789387702941895,0.6881862282752991,0.7728484869003296,0.051234401762485504,1.6559512615203857,-0.7317359447479248,1.1297736167907715,-1.8601630926132202,-0.1944074183702469,-0.016864795237779617,-0.6900763511657715,0.20398660004138947,0.5277351140975952,-1.2947349548339844,0.48064279556274414,-0.8511724472045898,-0.286704421043396,-1.3377305269241333,-0.0617736354470253,-0.7398737072944641,0.171997532248497,-0.7835429906845093,0.5874201655387878,-0.5594459176063538,-0.22208307683467865,0.19349591434001923,-0.5451958775520325,-0.4783532917499542,-1.2238372564315796,0.0034133768640458584,0.6231216192245483,0.011259832419455051,1.3605550527572632,-0.5357354283332825,0.004303721245378256,-1.0357557535171509,-0.29931434988975525,0.5301230549812317,0.19835405051708221,-0.5033960938453674,0.9970198273658752,0.8869518041610718,0.5428696274757385,-0.4278212785720825,0.13006670773029327,-0.6586196422576904,0.2279725819826126,-0.06283465772867203,-0.7142077088356018,0.13700953125953674,0.32119354605674744,0.45352277159690857,-0.4905124604701996,0.3404223620891571,0.3170047998428345,0.2926598787307739,0.0900568962097168,-1.30980384349823,1.1877703666687012,-0.9489290714263916,0.5053370594978333,-1.1372846364974976,-0.2881597578525543,0.048553626984357834,-0.09793794900178909,-0.18677537143230438,1.3823224306106567,0.8934195637702942,-0.2983223497867584,-0.8632389903068542,-0.29360049962997437,-1.1781071424484253,1.2003929615020752,0.3859383761882782,-0.2684987187385559,0.2637745141983032,-0.2452266961336136,0.04441018030047417,0.1965159773826599,-0.8166659474372864,0.4522832930088043,-0.2004835456609726,-0.8738937377929688,1.3385529518127441,-0.5598145127296448,0.09549347311258316,0.7613623142242432,0.9496897459030151,0.9732670783996582,0.2650474011898041,-0.37841716408729553,0.12583348155021667,-0.03545067459344864,1.0745636224746704,-0.42873457074165344,-0.7565581798553467,-0.16849084198474884,-0.14537866413593292,0.883571207523346,-0.35595133900642395,-0.7364129424095154,-0.49839428067207336 -2910,0.8674672842025757,0.4010963439941406,-0.4130868911743164,0.0702538788318634,-0.4670373201370239,0.7193343043327332,0.8281280398368835,-0.6768934726715088,-0.19173511862754822,0.7485376000404358,-0.6818845868110657,0.4013235867023468,-0.14974020421504974,0.05309627205133438,-0.1909307837486267,0.7873669266700745,-0.8018280267715454,1.4297035932540894,0.4214688539505005,1.01003897190094,0.6394637227058411,0.47862184047698975,-1.0584092140197754,0.428044855594635,0.48595544695854187,-0.5742955207824707,0.015482760034501553,-0.6611449718475342,0.297906756401062,1.0935791730880737,0.9655367136001587,0.16344092786312103,-1.1845552921295166,0.0033874427899718285,0.010228599421679974,-0.05715836212038994,0.7065513134002686,0.6701818108558655,0.22264865040779114,0.9345332980155945,0.430717796087265,1.2215607166290283,0.5909405946731567,-0.887452244758606,0.5846863389015198,-1.0477291345596313,-0.8050368428230286,0.8246093988418579,-0.6017974019050598,-0.2849239706993103,0.2840854227542877,-0.7395376563072205,1.1714822053909302,0.5507872700691223,0.5606486797332764,0.4810022711753845,0.053017258644104004,0.7766735553741455,0.5796510577201843,-0.5891624689102173,-0.6802744269371033,0.5251488089561462,-0.11084569990634918,0.5105895400047302,-0.2410380244255066,-0.21262121200561523,1.3340318202972412,-0.3191908001899719,0.48127397894859314,0.10870439559221268,0.9767925143241882,-1.3221979141235352,0.09148091822862625,1.1072999238967896,0.1951112002134323,0.3339880704879761,0.21125954389572144,0.333711713552475,-0.8456737399101257,-0.5886309146881104,-0.555424153804779,-0.31627458333969116,0.046725306659936905,1.3072056770324707,1.1348437070846558,0.9533642530441284,0.2525825500488281,0.9503416419029236,0.43607398867607117,-1.6113193035125732,1.189225673675537,-1.087859869003296,-0.9071803689002991,-0.0993817150592804,-1.334228515625,0.2262875884771347,0.682370126247406,0.05674692243337631,-0.27319279313087463,-0.06584545224905014,0.3209834396839142,-2.105282783508301,0.219553142786026,0.526630163192749,-0.7517067790031433,-0.5586602091789246,-0.45716583728790283,0.0133360018953681,-0.06654725223779678,-0.8701907396316528,-0.299512654542923,-0.11754678934812546,-0.3833140432834625,0.23269248008728027,0.05675676465034485,-0.8072189092636108,-1.4027332067489624,-0.8566331267356873,-0.2836414575576782,-0.9939279556274414,1.1303329467773438,-0.651261031627655,-1.6781491041183472,-0.6805283427238464,-0.9030389189720154,0.8902974724769592,0.17142032086849213,1.4122637510299683,0.24122931063175201,0.08938165754079819,0.46083977818489075,0.9685393571853638,-1.3537423610687256,0.4851786196231842,-0.6374693512916565,0.0876624807715416,0.09771624207496643,0.5471696853637695,-2.233548402786255,-0.43680277466773987,0.03443032503128052,-0.33413243293762207,1.8386166095733643,-1.0439618825912476,-0.6091845631599426,0.4862043857574463,-0.7885022163391113,0.6786227822303772,0.7632850408554077,0.04167094826698303,1.6463878154754639,-0.7412993907928467,1.1202101707458496,-1.0527355670928955,-0.20397087931632996,-0.02642824873328209,-1.700162410736084,0.1944231390953064,0.5181716680526733,-1.3042984008789062,0.47107934951782227,-0.8607358932495117,-0.29626786708831787,-1.3472939729690552,-0.07133708894252777,-0.749437153339386,-0.02042645961046219,-0.7931064367294312,0.5824734568595886,-0.3411654829978943,-0.23164653778076172,0.18393245339393616,-0.5547593235969543,-0.5935166478157043,-1.2334007024765015,-0.006150077562779188,0.6135581731796265,0.0016963779926300049,1.2214518785476685,-0.5452988743782043,-0.005259733181446791,-0.7396355867385864,-0.3088777959346771,0.5205596089363098,0.18879058957099915,-0.5129595398902893,0.9874563813209534,0.8773883581161499,0.07978009432554245,-0.37809354066848755,0.1205032542347908,-0.6681830883026123,0.41624635457992554,-0.0723981112241745,-0.7237711548805237,0.12744607031345367,0.31163010001182556,0.8897021412849426,-0.5000759363174438,0.37087786197662354,0.3074413537979126,0.1293056458234787,0.08049344271421432,-1.3193672895431519,1.2383909225463867,-0.9584925174713135,0.4957736134529114,-0.3034576177597046,-0.8693865537643433,0.03899017348885536,-0.1811431497335434,0.1825580596923828,1.3727589845657349,0.8838561177253723,-0.3078857958316803,-0.8728024363517761,-0.30316394567489624,-1.1876705884933472,1.1908295154571533,0.3763749301433563,-0.2780621647834778,0.25421106815338135,-0.25479015707969666,0.034846726804971695,0.18695251643657684,-0.49179941415786743,0.44271984696388245,-0.04512830823659897,-0.8834571838378906,1.3289895057678223,-0.5693779587745667,0.08593001961708069,0.7517988681793213,0.9401262998580933,1.0289356708526611,-0.005454876460134983,-0.3879806101322174,0.1162700280547142,-0.04501412808895111,1.0650001764297485,-0.4382980167865753,-0.3808359205722809,-0.1780543029308319,-0.47725898027420044,0.8740077614784241,-0.4791100025177002,-1.0165331363677979,-0.29640084505081177 -2911,0.8533215522766113,0.38695061206817627,-0.42723262310028076,0.008574077859520912,-0.4811830520629883,0.7227936387062073,0.8139823079109192,-0.5526576042175293,-0.15479137003421783,0.7343918681144714,-0.33532023429870605,0.38717785477638245,-0.1638859361410141,0.03895054757595062,-0.20507651567459106,0.7732211947441101,-0.8631162047386169,1.4134622812271118,0.40732312202453613,0.9958932399749756,0.2208126187324524,0.5384633541107178,-1.0725549459457397,0.41389912366867065,0.4718097150325775,-0.5884412527084351,0.0013370336964726448,-0.49170607328414917,0.28376102447509766,1.0794334411621094,0.9513909816741943,0.14929519593715668,-1.198701024055481,0.4456883370876312,-0.003917126916348934,-0.071304090321064,0.6924055814743042,0.7301067113876343,0.12021663039922714,0.9203875660896301,0.41657206416130066,1.207414984703064,0.5767948627471924,-0.9567511081695557,0.5705406069755554,-1.0618748664855957,-0.9035981893539429,0.8104636669158936,-0.6159431338310242,-0.29906970262527466,0.26993969082832336,-0.3455451428890228,1.1573364734649658,0.536641538143158,0.4615047872066498,0.46685653924942017,0.038871534168720245,0.7625278234481812,0.56550532579422,-0.6033082008361816,-0.6944201588630676,0.5110030770301819,-0.12499142438173294,0.49644380807876587,-0.25518375635147095,-0.2267669439315796,1.3198860883712769,-0.3333365321159363,0.46903958916664124,0.09455867111682892,0.9814246296882629,-1.3363436460494995,0.07733519375324249,1.0931541919708252,0.18096546828746796,0.3198423385620117,0.19711381196975708,0.3195659816265106,-0.8598194718360901,-0.6027766466140747,-0.5695698857307434,0.31274956464767456,0.03257957845926285,1.2930599451065063,1.1326361894607544,1.0205541849136353,0.23843681812286377,0.9361959099769592,0.4219282567501068,-1.6254650354385376,1.3524423837661743,-1.1020056009292603,-0.9213261008262634,-0.11352743953466415,-1.3483742475509644,0.21214185655117035,0.8754814863204956,0.042601197957992554,-0.287338525056839,-0.7154035568237305,0.30683770775794983,-2.4325079917907715,0.20540741086006165,0.5120335817337036,-0.7658525109291077,-0.5728059411048889,-0.4960799813270569,-0.09095446020364761,-0.08069297671318054,-0.8843364715576172,-0.31365838646888733,-0.20765870809555054,-0.15606482326984406,0.21854674816131592,-0.17041561007499695,-0.8213646411895752,-1.342511534690857,-0.38894277811050415,-0.2977871894836426,-1.0080736875534058,1.1161872148513794,-0.4833805561065674,-1.8712831735610962,-0.23502859473228455,-0.9171846508979797,0.8761517405509949,0.03473404049873352,1.398118019104004,-0.3762723207473755,0.07523593306541443,0.45655733346939087,0.9543936252593994,-1.36788809299469,0.47103288769721985,-0.6516150832176208,-0.8050373792648315,-1.1195603609085083,0.6520954370498657,-2.0413661003112793,-0.4509485065937042,0.02028459869325161,-0.3505505323410034,1.8244708776474,-1.058107614517212,-0.623330295085907,0.5508630275726318,-0.8749529719352722,0.6644770503044128,0.9099941849708557,0.027525221928954124,1.6322420835494995,-0.755445122718811,1.1060644388198853,-1.0668812990188599,-0.2181166112422943,-0.040573976933956146,0.2013918161392212,-0.06367691606283188,0.504025936126709,-1.1077430248260498,0.4702970087528229,-0.8748816251754761,-0.38518741726875305,-1.3614397048950195,-0.08548281341791153,-0.7635828852653503,-0.03457218408584595,-0.8072521686553955,0.5683277249336243,0.6250792145729065,-0.24579226970672607,0.1697867214679718,-0.5689050555229187,-0.6076623797416687,-1.2475464344024658,-0.020295804366469383,0.5994124412536621,-0.012449348345398903,1.207306146621704,-0.5594446063041687,-0.03533992916345596,-0.7537813186645508,-0.3230235278606415,0.5064138770103455,0.1746448576450348,-0.5271052718162537,0.944048285484314,0.9333808422088623,0.06563436985015869,-0.3922392725944519,0.22174140810966492,-0.6823288202285767,0.4021006226539612,-0.08654383569955826,-0.737916886806488,0.11330034583806992,0.2974843680858612,0.8755564093589783,-0.09896301478147507,0.3567321300506592,0.29329562187194824,0.1766534149646759,0.06634771823883057,-1.3335130214691162,1.3377536535263062,-0.9726382493972778,0.481627881526947,-0.9041702151298523,-0.5674667954444885,0.024844447150826454,-0.19528888165950775,0.16841232776641846,1.3586132526397705,0.869710385799408,0.30054208636283875,-0.8869481682777405,-0.3173096776008606,-1.2018163204193115,1.176683783531189,0.36222919821739197,-0.29220789670944214,0.240065336227417,-0.268935889005661,0.020701000466942787,0.1728067845106125,-0.5059451460838318,0.4285741150379181,-0.05927403271198273,-0.897602915763855,1.325862169265747,-0.583523690700531,-0.8311330080032349,0.7376531362533569,0.9259805679321289,1.0147899389266968,-0.019600603729486465,-0.40212634205818176,0.10212430357933044,-0.05915985256433487,1.0292643308639526,-0.3033798336982727,-0.39498165249824524,-0.19220003485679626,0.0851261094212532,0.8598620295524597,-0.37313976883888245,-1.0306788682937622,-0.3105465769767761 -2912,0.8604614734649658,0.39409056305885315,-0.4200926721096039,0.238312765955925,-0.8900274634361267,0.7134338021278381,0.8211222290992737,-0.5455176830291748,-0.10767824947834015,0.7415317893028259,-0.3281802833080292,0.3943178057670593,-0.1567460000514984,0.04609048366546631,-0.19793657958507538,0.7803611159324646,-0.4329104721546173,1.4206022024154663,0.6214048862457275,1.00303316116333,0.3271728456020355,-0.04053132236003876,-1.0654150247573853,0.42103907465934753,0.4789496660232544,-0.5813013315200806,0.008476970717310905,-0.4845661222934723,0.29090097546577454,1.0865733623504639,0.9880280494689941,0.15643513202667236,-1.1915611028671265,0.4528282880783081,0.003222810570150614,-0.06416415423154831,0.6995455026626587,0.6588714718818665,0.12735657393932343,0.9275274872779846,0.6875672936439514,1.1608545780181885,0.5839347839355469,-0.9376310110092163,0.5776805281639099,-1.0547349452972412,-0.6368385553359985,0.817603588104248,-0.6088032126426697,-0.2919297516345978,0.27707964181900024,-0.33696985244750977,1.1644763946533203,0.5437814593315125,0.46864473819732666,0.47399649024009705,0.04601147025823593,0.7696677446365356,0.5726452469825745,-0.5961682796478271,-0.6872802376747131,0.5181429982185364,-0.11785148829221725,0.4369458556175232,-0.24804382026195526,-0.17158697545528412,1.3270260095596313,-0.3261965811252594,0.4761795401573181,0.1016986072063446,0.9419041275978088,-1.329203724861145,0.08447512984275818,1.105045199394226,0.30625298619270325,-0.05441637337207794,0.20425374805927277,0.15428206324577332,-0.8526795506477356,-0.5473414659500122,-0.8770166635513306,0.31988951563835144,0.039719514548778534,1.253939151763916,1.1179475784301758,1.0276941061019897,0.24557675421237946,0.9433358311653137,0.49241161346435547,-1.618325114250183,1.2254055738449097,-1.0948656797409058,-0.9141861796379089,-0.10638750344514847,-1.3402125835418701,0.21928179264068604,0.39710795879364014,0.04974113404750824,-0.14875806868076324,-0.708263635635376,0.3139776587486267,-2.0440237522125244,0.21254734694957733,0.5191735029220581,-0.7587125897407532,-0.5656660199165344,-0.48894003033638,-0.08381452411413193,-0.07355304062366486,-0.8771965503692627,-0.30651843547821045,-0.20051877200603485,-0.14892488718032837,0.2256866842508316,0.15315143764019012,-0.8142247200012207,-0.1686762422323227,-0.38180282711982727,-0.6999112367630005,0.6293772459030151,0.8336756229400635,-0.4762406051158905,-1.8331400156021118,-0.22788865864276886,-0.9100447297096252,0.8832916617393494,0.04187397658824921,1.4052579402923584,-0.3691323697566986,0.08237586915493011,0.46369728446006775,0.9615335464477539,-1.3607481718063354,0.47817283868789673,-0.6444751620292664,-1.7093157768249512,-1.1124204397201538,-0.2706303894519806,-2.034226179122925,-0.44380855560302734,0.027424536645412445,-0.34341058135032654,1.554437518119812,-1.267784595489502,-0.6161903738975525,0.5580029487609863,-0.8678130507469177,0.6716169714927673,0.9995831251144409,-0.44922900199890137,1.639382004737854,-0.7483052015304565,1.0545488595962524,-1.0597413778305054,-0.897405743598938,-0.03343404084444046,0.20853175222873688,0.3760656416416168,0.5513451099395752,-1.1006031036376953,0.47743695974349976,-1.111304521560669,-1.2853474617004395,-1.354299783706665,-0.07834287732839584,-0.9537175297737122,0.09105706959962845,-0.800112247467041,0.5754676461219788,0.632219135761261,-0.2386523336172104,0.45741936564445496,-0.5617651343345642,-0.591529905796051,-1.2404065132141113,-0.013155866414308548,0.6065523624420166,-0.005309410858899355,1.016696810722351,-0.5523046851158142,-0.028199991211295128,-0.890154242515564,-0.3158835768699646,0.5135537981987,0.18178479373455048,-0.7332343459129333,0.9511882066726685,0.9405207633972168,0.07277430593967438,-0.385099321603775,0.2288813441991806,-0.6497274041175842,0.40820401906967163,-0.07940389961004257,-0.7307769656181335,0.1204402819275856,0.3046243190765381,0.8826963305473328,-0.22321920096874237,0.36387208104133606,0.3004355728626251,0.44330981373786926,0.07348765432834625,-1.3263731002807617,1.2672181129455566,-0.9654983282089233,0.428345650434494,-0.45929667353630066,-0.560326874256134,0.03198438510298729,-0.18814894556999207,-0.18927060067653656,1.1841226816177368,0.8768503069877625,0.8391861915588379,-0.879808247089386,-0.3101697266101837,-1.194676399230957,1.1838237047195435,0.36936914920806885,-0.28506794571876526,0.24720527231693268,-0.3418031632900238,0.027840938419103622,0.17994672060012817,-0.4988051950931549,0.43571406602859497,-0.05213409662246704,-0.85091233253479,1.3564891815185547,-0.5763837695121765,-0.8239930868148804,0.7447930574417114,0.9331204891204834,1.0219298601150513,-0.01246066577732563,-0.3949863910675049,0.10926423966884613,0.2808190882205963,1.0364042520523071,-0.2962398827075958,-0.38784170150756836,-0.18506009876728058,0.09226604551076889,0.8670019507408142,-0.36599981784820557,-1.0235389471054077,-0.30340662598609924 -2913,0.8592352867126465,0.3928644061088562,-0.006597764790058136,-0.3038359582424164,-0.7311517000198364,0.7122076153755188,0.8198960423469543,-0.5467438697814941,-0.06500229984521866,0.7403056025505066,-0.3294064402580261,0.3930916488170624,-0.07954200357198715,0.04486431926488876,-0.19916275143623352,0.6453695297241211,-0.43413662910461426,1.419376015663147,0.6201786994934082,1.0018069744110107,0.3259466886520386,0.40147849917411804,-1.805149793624878,0.4198129177093506,0.24036452174186707,-0.5825275182723999,-0.05043249577283859,-0.48579227924346924,0.2896748185157776,1.0853471755981445,0.7904900908470154,-0.007714696228504181,-1.1927872896194458,0.45160213112831116,0.001996645936742425,-0.06539031863212585,0.6983193159103394,0.6576452851295471,0.12613040208816528,0.9263013005256653,0.6863411068916321,1.1640713214874268,0.5827085971832275,-0.8169529438018799,0.5764543414115906,-0.8563342094421387,-0.6380647420883179,0.8163774013519287,-0.9851216077804565,-0.2931559085845947,0.2758534848690033,-0.3381960093975067,1.163250207901001,0.5425552725791931,0.5767332911491394,0.47807005047798157,0.044785305857658386,0.7615112662315369,0.6030653715133667,-0.5973944664001465,-0.6885064244270325,0.516916811466217,-0.1190776526927948,0.43571969866752625,-0.9783987998962402,-0.1696452498435974,1.325799822807312,-0.46560433506965637,0.47495338320732117,0.10047244280576706,0.9030677676200867,-0.8463436365127563,0.08324896544218063,1.1038190126419067,0.3050268292427063,0.42897823452949524,0.20302757620811462,0.2646414041519165,-0.8539057374000549,-0.659144401550293,-0.7824490666389465,-0.27472394704818726,0.12364088743925095,1.2527129650115967,1.1167213916778564,0.9855952262878418,0.2443505823612213,0.9421096444129944,0.4911854565143585,-0.8201295137405396,1.2241793870925903,-1.096091866493225,-0.9154123663902283,-0.10761366784572601,-1.3414387702941895,0.2180556207895279,0.3958818018436432,0.14078454673290253,-0.1499842405319214,-0.7094898223876953,0.3426363468170166,-2.0452499389648438,0.2113211750984192,0.5179473161697388,-0.7260371446609497,-0.5668922066688538,-0.49016618728637695,-0.08504068851470947,-0.0185486301779747,-0.10528234392404556,-0.3077445924282074,-0.201744943857193,-0.1501510590314865,0.22446051239967346,0.230428084731102,-0.16623865067958832,-1.0408375263214111,-0.3830289840698242,-0.12273517996072769,-0.6255950927734375,-0.44693252444267273,-0.5183165073394775,-1.8343662023544312,-0.229114830493927,-0.9112709164619446,0.9948561787605286,0.04064781218767166,1.404031753540039,-0.37035852670669556,0.08114970475435257,-0.020802266895771027,0.9603073596954346,-1.0317494869232178,0.4769466817378998,-0.6457013487815857,-1.4105430841445923,0.2726358473300934,-0.45241349935531616,-1.309934139251709,-0.4450347125530243,-0.13443706929683685,-0.373822957277298,1.3541916608810425,-1.2690107822418213,-0.6174165606498718,0.2738158106803894,-0.8690392374992371,0.670390784740448,0.8482801914215088,-0.1077912226319313,1.6639204025268555,-0.7495313882827759,1.053322672843933,-0.9750165343284607,-0.4213464558124542,-0.034660205245018005,0.20730558037757874,0.3401309847831726,0.5501189231872559,-1.1018292903900146,0.4762108027935028,-1.1125307083129883,-1.2865736484527588,-1.3555259704589844,-0.07956904172897339,-0.9549437165260315,0.1729680597782135,-0.8013384342193604,0.48290690779685974,0.6309929490089417,-0.23987850546836853,0.456193208694458,-0.8392717242240906,-0.9911673665046692,-1.2416326999664307,-0.2725565433502197,0.6053261756896973,-0.006535575725138187,1.0154706239700317,-0.5535308718681335,-0.029426155611872673,-0.8913804292678833,-0.31710973381996155,0.5123276114463806,0.18055862188339233,-0.7344605326652527,-0.1069246307015419,0.9392945766448975,0.07154814153909683,-0.6919600367546082,0.670852541923523,-0.38619548082351685,0.4069778621196747,-0.08063006401062012,-0.7320031523704529,-0.056085005402565,0.30339816212654114,0.8814701437950134,-0.2244453728199005,0.3626459240913391,0.2767263352870941,0.4420836567878723,0.07226148992776871,-0.3853473961353302,1.2659919261932373,-0.9667245149612427,0.42711949348449707,-0.4605228304862976,-0.5615530610084534,0.030758220702409744,-0.24819336831569672,-0.1904967725276947,1.1828964948654175,0.8756241202354431,0.790333092212677,-0.8810344338417053,-0.31139588356018066,-1.1959025859832764,1.1188955307006836,0.3681429922580719,-0.2862941026687622,0.24597910046577454,-0.34302932024002075,0.026614774018526077,0.17872054874897003,-0.7676122188568115,0.434487909078598,-0.053360261023044586,-0.8521385192871094,1.280837059020996,-0.5776099562644958,-0.4722827970981598,0.7435668706893921,0.9082998633384705,1.020703673362732,0.2911458909511566,-0.39621254801750183,0.10803807526826859,0.27959293127059937,1.0351780652999878,-0.2974660396575928,-0.5671083331108093,-0.0008227901998907328,0.09103988111019135,1.0378482341766357,-0.3672259747982025,-1.024765133857727,-0.14078836143016815 -2914,0.8057913780212402,0.40222272276878357,0.0027605388313531876,-0.294477641582489,-0.7217934131622314,0.7269387245178223,0.8292543292045593,-0.5373855829238892,-0.15140898525714874,0.7496638894081116,-0.336749404668808,0.40244996547698975,-0.07018370181322098,0.05422262102365494,-0.019927365705370903,0.6547278165817261,-0.4247783124446869,1.4104171991348267,0.6295369863510132,1.0111652612686157,0.42358794808387756,0.3719482719898224,-1.795791506767273,0.42917123436927795,0.24972282350063324,0.08507706224918365,-0.04107419401407242,-0.47643396258354187,0.29903313517570496,1.0551542043685913,0.8765596151351929,0.13428550958633423,-1.1834290027618408,0.4609604477882385,-0.2758439779281616,-0.7334722280502319,0.7076776027679443,0.6670035719871521,0.13548870384693146,0.9407644867897034,0.6956993937492371,1.1734296083450317,0.5920668840408325,-1.6065746545791626,0.6577016115188599,-0.8469759225845337,-0.6287064552307129,0.8257356882095337,-0.9757633209228516,-0.28379759192466736,0.28521180152893066,-0.32883769273757935,1.172608494758606,0.5591036677360535,0.5860915780067444,0.5272517800331116,0.05414360761642456,0.7708695530891418,0.6124236583709717,0.02842600829899311,-0.6791481375694275,0.526275098323822,-0.10971935093402863,0.4450780153274536,-0.9690405130386353,-0.0796552523970604,1.335158109664917,-0.8457360863685608,0.48431169986724854,0.10983074456453323,0.9291468858718872,-0.8369853496551514,-0.04476628452539444,1.1131772994995117,0.15144185721874237,0.4383365511894226,0.18545955419540405,0.27399972081184387,-0.84454745054245,-0.649786114692688,-0.7730907797813416,-0.2653656303882599,0.13299919664859772,1.2620712518692017,1.1260796785354614,0.9771857261657715,0.5456292629241943,0.9514679312705994,0.5005437731742859,-0.8107712268829346,1.2335376739501953,-0.3726837933063507,-0.9060540795326233,-0.09825536608695984,-0.6694086790084839,0.22741392254829407,0.6121737957000732,0.1501428484916687,-0.1406259387731552,-0.7001315355300903,0.35199466347694397,-2.035891532897949,0.22067947685718536,0.5531256198883057,-0.7166788578033447,-0.5575339198112488,-0.4808078706264496,-0.0756823867559433,-0.009190326556563377,-2.412452220916748,-0.7622076272964478,-0.19238664209842682,-0.14079275727272034,0.3470134437084198,0.23978638648986816,-0.11588095128536224,-1.0314792394638062,-0.37367066740989685,-0.11337687820196152,-0.6162368059158325,-0.43757420778274536,-0.5089582204818726,-2.120529890060425,-0.27857622504234314,-0.9019126296043396,1.0042145252227783,0.050006113946437836,1.413390040397644,-0.3610002100467682,0.09050800651311874,-0.011443963274359703,0.9248563051223755,-1.0223912000656128,0.48630499839782715,-0.6363430619239807,-0.8051153421401978,0.28199416399002075,-0.4430551826953888,-1.300575852394104,-0.4356763958930969,-0.12507876753807068,-0.3644646406173706,1.3635499477386475,-1.2596524953842163,0.43529102206230164,0.7092571258544922,-0.8596809506416321,0.679749071598053,0.8576384782791138,-0.556598961353302,1.6732786893844604,-0.7401731014251709,1.062680959701538,-0.9656582474708557,0.5280154943466187,-0.025301901623606682,0.2166638821363449,-0.14469529688358307,0.5832284092903137,-0.5986030101776123,0.4855691194534302,-1.1031724214553833,-1.2772153615951538,-1.3461676836013794,-0.07021073997020721,-0.9455854296684265,0.18232636153697968,-0.7919801473617554,0.4922652244567871,0.21837623417377472,-0.23052020370960236,0.4655515253543854,-0.8299134373664856,-0.9818090796470642,-1.6217868328094482,0.015247391536831856,0.5421150922775269,0.002822727896273136,1.0248289108276367,-0.5441725850105286,0.053367599844932556,-0.627254068851471,-0.3077514171600342,0.5216858983039856,-0.0930250734090805,-0.7251022458076477,-0.09756632894277573,0.9486528635025024,0.080906443297863,-0.934374988079071,0.6802108287811279,-0.3768371641635895,0.2334441840648651,-0.6909011006355286,-0.7226448655128479,-0.04672670364379883,0.3127564787864685,0.8908284306526184,-0.17558541893959045,0.3720042407512665,0.2860846519470215,0.6974027156829834,0.08161979168653488,-0.8739814758300781,1.2753502130508423,-0.9573662281036377,0.43647781014442444,-0.45116451382637024,-0.5521947741508484,0.16182927787303925,-0.23883506655693054,-0.18113847076892853,1.2643945217132568,0.8849824070930481,0.22314663231372833,0.06001563370227814,-0.3020375669002533,-1.1865442991256714,1.1282538175582886,0.37750130891799927,-0.27693578600883484,0.2553374171257019,-0.3336710035800934,-0.010296927765011787,0.1880788505077362,-0.7582539319992065,0.4438462257385254,-1.205617070198059,-1.0544342994689941,1.290195345878601,-0.5682516694068909,-0.4629244804382324,0.7529251575469971,0.9176581501960754,0.9708765745162964,0.300504207611084,-0.44996708631515503,0.11739637702703476,0.28895124793052673,1.0445363521575928,-0.9540701508522034,-0.5577500462532043,0.008535513654351234,0.10039818286895752,1.0472065210342407,-0.35786765813827515,-0.49596062302589417,-0.13143005967140198 -2915,0.7848189473152161,0.3795238733291626,-0.01993832364678383,-0.31717649102211,-0.7444922924041748,0.7540912628173828,0.7927843332290649,-0.5600844621658325,-0.1974157840013504,0.7269650101661682,-0.35944825410842896,0.3797511160373688,-0.480526328086853,0.03152375668287277,-0.04262622818350792,0.6508219242095947,-0.44747716188430786,1.3877183198928833,0.6068381071090698,0.9884663820266724,0.4008890986442566,0.3492494225502014,-1.8184903860092163,0.406472384929657,0.22702395915985107,-0.11794015765190125,0.011521587148308754,-0.49913281202316284,0.276334285736084,1.1187888383865356,0.8538607358932495,0.11158664524555206,-1.2061278820037842,0.43826159834861755,-0.3177594542503357,0.16503854095935822,0.684978723526001,0.6443046927452087,0.11278983950614929,0.91806560754776,0.6730005145072937,1.1507307291030884,0.5693680047988892,-1.629273533821106,0.5310322642326355,-0.736735463142395,-0.3612992763519287,0.8030368089675903,-0.4658335745334625,-0.30649644136428833,0.2625129520893097,-0.3515365421772003,1.1499096155166626,0.5482885241508484,0.94488924741745,0.5045529007911682,0.18696045875549316,0.8744930028915405,0.6402950286865234,0.005727145820856094,-0.6912220120429993,0.5035762190818787,-0.035922177135944366,0.42237916588783264,-0.9917393922805786,-0.10235411673784256,1.3124592304229736,-0.8684349656105042,0.46161285042762756,0.05092281103134155,0.9064480066299438,-0.8596842288970947,0.12133525311946869,1.0936816930770874,0.1287429928779602,0.4058414101600647,0.1627606898546219,0.2513008713722229,-0.6655613780021667,-0.688527524471283,-0.7957896590232849,-0.28806447982788086,0.11030033230781555,1.0857818126678467,1.1441333293914795,0.9544868469238281,0.522930383682251,0.928769052028656,0.21021293103694916,-0.8334701061248779,1.210838794708252,-0.3953826427459717,-1.0528461933135986,-0.120954230427742,0.22038955986499786,0.6784931421279907,0.5894749164581299,0.12744398415088654,-0.16332480311393738,-0.7228304147720337,0.17478832602500916,-1.5754785537719727,0.1979806125164032,0.6933009028434753,-1.1953155994415283,-0.5802327990531921,-0.5035067200660706,-0.09838125109672546,-0.031889189034700394,-2.4351511001586914,-0.7849065065383911,0.029066817834973335,-1.2034072875976562,0.7201288938522339,0.217087522149086,-0.945710301399231,-1.1633628606796265,-0.3963695168495178,-0.19674846529960632,-0.6389356851577759,-0.46027305722236633,-0.5316570997238159,-2.143228769302368,-0.3012750744819641,-0.924611508846283,0.981515645980835,0.02730725146830082,1.3906911611557007,-0.38369905948638916,-0.06136948615312576,-0.03414282575249672,0.9021574258804321,-1.0455329418182373,0.4636061489582062,-0.6590419411659241,-0.8278142213821411,0.3237539529800415,-0.46575403213500977,-1.4078553915023804,-0.4583752453327179,-0.14777763187885284,-0.3871634900569916,1.340851068496704,-1.2823513746261597,0.41259217262268066,0.6865582466125488,-0.8823798298835754,0.6570501923561096,0.8349395990371704,-0.5792978405952454,1.650579810142517,-0.6654670238494873,1.0399820804595947,-0.9883571267127991,0.5053166151046753,-0.0480007641017437,0.19396501779556274,-0.16739416122436523,0.5605295300483704,-0.6213018894195557,0.44474419951438904,-1.1258713006973267,-1.4082375764846802,-1.3688665628433228,-0.09290960431098938,-0.9682843089103699,0.7900904417037964,-0.8146790266036987,0.46956637501716614,0.5900582671165466,-0.2532190680503845,0.4428526759147644,-0.3326633870601654,-0.4807399809360504,-1.6444857120513916,-0.0074514709413051605,0.5104623436927795,-0.019876133650541306,1.0021300315856934,-0.5668714642524719,0.03066873736679554,-0.6499529480934143,-0.33045026659965515,0.4989870488643646,0.30534568428993225,-0.7478011250495911,0.9815406799316406,0.9259539842605591,0.05820757895708084,-0.3918273150920868,0.7853989005088806,-0.39953601360321045,0.21074531972408295,-0.9014373421669006,-0.7453437447547913,-0.069425567984581,0.29005762934684753,0.6401199102401733,-0.19828428328037262,0.3493053913116455,0.2633858025074005,0.67470383644104,0.058920927345752716,-0.8966803550720215,1.252651333808899,-0.980065107345581,0.41377896070480347,-0.4738633632659912,-0.25656041502952576,0.13913041353225708,0.007277803495526314,-0.2038373351097107,1.2416956424713135,0.7437909841537476,0.20044776797294617,-0.3087068498134613,-0.32473641633987427,-1.150387167930603,1.1296570301055908,0.3548024594783783,-0.2996346354484558,0.23263855278491974,-0.35636985301971436,-0.032995790243148804,0.16537998616695404,-0.7809528112411499,0.4211473762989044,-1.2283159494400024,-1.0771331787109375,1.2493914365768433,-0.5909505486488342,0.10510118305683136,0.7302262783050537,0.8949592709541321,0.948177695274353,0.277805358171463,-0.472665935754776,0.0946975126862526,0.26625239849090576,1.0218374729156494,-1.2587788105010986,-0.5804489254951477,-0.014163348823785782,0.07769931852817535,0.7423795461654663,-0.5653721690177917,-0.5186594724655151,-0.3205746114253998 -2916,0.7773195505142212,0.3720244765281677,-0.027437716722488403,-0.04976629838347435,-0.7519916892051697,0.7465918660163879,0.8406326770782471,-0.5675838589668274,-0.20491518080234528,0.7194656133651733,-0.7062975764274597,0.3722517192363739,-0.20828565955162048,0.024024363607168198,-0.20442481338977814,0.6433225274085999,-0.45497655868530273,1.3802189826965332,0.599338710308075,0.9809669852256775,0.3933897018432617,0.34175002574920654,-1.8259897232055664,0.3989729881286621,0.37527352571487427,-0.12543955445289612,0.004022194072604179,-0.5066322088241577,0.2688348889350891,1.1112895011901855,0.8463613390922546,0.10408724844455719,-1.2136272192001343,0.4307622015476227,0.035629753023386,0.15753914415836334,0.6774793267250061,0.6368052959442139,0.10529044270515442,0.9105662107467651,0.6655011177062988,1.1432313919067383,0.5618686079978943,-1.636772871017456,0.5235328674316406,-0.7442348599433899,-0.3687986731529236,0.6958445906639099,-0.4733329713344574,-0.3139958381652832,0.2550135552883148,-0.3590359389781952,1.1424102783203125,0.5407891273498535,0.9373898506164551,0.49705350399017334,0.1794610619544983,0.8669936060905457,0.6373081207275391,-0.0017722472548484802,-0.6987214088439941,0.4960768222808838,-0.5995181798934937,0.41487976908683777,-0.2516472339630127,-0.10985350608825684,1.3316280841827393,-0.7736449241638184,0.4541134536266327,0.04342341795563698,0.8181291818618774,-0.8671836256980896,0.003336254507303238,1.0861823558807373,0.12124359607696533,0.3983420133590698,0.15526129305362701,0.24380147457122803,-0.7670020461082458,-0.6960269212722778,-0.513415515422821,-0.6312941312789917,0.10280093550682068,1.0782824754714966,1.1366339921951294,0.9469874501228333,1.3657766580581665,0.9212696552276611,0.16365352272987366,-0.8409695029258728,1.2033394575119019,-0.13659027218818665,-1.0603455305099487,-0.12845362722873688,0.212890163064003,0.6709937453269958,1.0503617525100708,0.11994458734989166,-0.17082419991493225,-0.7303298115730286,0.16728892922401428,-1.7161380052566528,0.19048121571540833,0.6858015060424805,-0.8425822854042053,-0.587732195854187,-0.5110061168670654,-0.10588064789772034,-0.008118148893117905,-2.442650556564331,-0.792405903339386,0.02156742475926876,-1.2109066247940063,0.712629497051239,0.20958812534809113,-0.9532096982002258,-1.1708621978759766,-0.4038689136505127,-0.2042478621006012,-0.6464350819587708,-0.4677724540233612,-0.5391564965248108,-2.1771600246429443,-0.308774471282959,-0.9321109056472778,1.0815669298171997,0.019807858392596245,1.3831918239593506,0.32457852363586426,-0.06886887550354004,-0.041642218828201294,0.8625529408454895,-1.0530322790145874,0.4561067521572113,-0.666541337966919,-0.835313618183136,0.7468609809875488,-0.47325342893600464,-1.4153547286987305,-0.46587464213371277,-0.43113237619400024,-0.18089842796325684,1.333351731300354,-0.601172685623169,0.218147411942482,0.679058849811554,-0.8868152499198914,0.5792865753173828,1.1534587144851685,-0.5867972373962402,1.643080472946167,-0.6729664206504822,1.0324827432632446,-0.995856523513794,-0.9030038714408875,-0.05550015717744827,0.18646562099456787,0.15430322289466858,0.5530301332473755,-0.6288012862205505,0.6004937887191772,-1.1333706378936768,-1.4157369136810303,-1.7282065153121948,-0.10040900111198425,-0.8717917799949646,0.7825910449028015,-0.8221784234046936,0.20114195346832275,0.5825588703155518,-0.2607184648513794,0.43535327911376953,-0.3401627838611603,-1.0914932489395142,-1.6519850492477417,-0.25592780113220215,0.5029629468917847,-0.16413748264312744,0.9946306347846985,-0.5743708610534668,0.023169344291090965,0.29074162244796753,-0.33794966340065,0.49148765206336975,0.2978462874889374,-0.7553005218505859,0.9740412831306458,0.9184545874595642,-0.007168259471654892,-0.39932671189308167,0.7778995037078857,-0.4165380299091339,0.20324592292308807,-0.9089367389678955,-0.6883352398872375,-0.07692496478557587,0.6653891205787659,0.6326205134391785,-0.2057836800813675,0.34180599451065063,0.25588640570640564,0.8289994597434998,0.05142153427004814,-0.9041797518730164,1.2451519966125488,-1.1559935808181763,0.4062795639038086,-0.4813627600669861,-0.26405981183052063,0.1316310167312622,-0.0002215895801782608,-0.2851908206939697,1.2341963052749634,0.7362915873527527,0.1929483711719513,-0.3162062466144562,-0.33223581314086914,-1.1578865051269531,1.1221576929092407,-2.0254199504852295,-0.45698124170303345,0.22513915598392487,-0.36386924982070923,-0.04049518331885338,0.15788058936595917,-0.7884522080421448,0.41364797949790955,-1.243306279182434,-1.0846325159072876,1.2127172946929932,-0.5984499454498291,0.09760178625583649,0.6775710582733154,0.8874598741531372,0.9406782984733582,0.27030596137046814,-0.4801653325557709,0.08719812333583832,0.2587530016899109,1.0143381357192993,-0.1727343201637268,-0.5879483222961426,-0.021662741899490356,0.148607075214386,0.7348801493644714,-0.5728715658187866,-0.3086971938610077,-0.32807400822639465 -2917,0.7871610522270203,0.3406055271625519,-0.034924302250146866,0.14910200238227844,-0.7594782710075378,0.7474172115325928,0.8331460952758789,-0.5750704407691956,-0.5757099390029907,0.7119790315628052,-0.7137841582298279,0.36476513743400574,-0.7027007937431335,0.33270248770713806,-0.2119113951921463,0.6358359456062317,-0.4624631404876709,1.372732400894165,0.5918521285057068,0.9639832973480225,0.38590312004089355,0.3342634439468384,-1.8334763050079346,0.18981653451919556,0.3677869439125061,-0.13292613625526428,-0.0034643905237317085,-0.5141187906265259,0.0950564444065094,1.1038029193878174,0.8388747572898865,0.09660066664218903,-1.2211138010025024,0.4232756197452545,0.02814316749572754,-0.31700628995895386,0.6699927449226379,0.6293187141418457,0.09780386090278625,0.903079628944397,0.6580145359039307,1.1357448101043701,0.5403638482093811,-0.5598604679107666,0.44762223958969116,-0.7268054485321045,-0.37628525495529175,0.6883580088615417,-0.3587031364440918,-0.32148241996765137,0.24752697348594666,-0.36652252078056335,0.9992473125457764,0.5333025455474854,0.8485260009765625,0.4895669221878052,0.17197448015213013,0.8595070242881775,0.6298215389251709,-0.009258831851184368,-0.7883407473564148,0.6309051513671875,-0.6070047616958618,0.4073931872844696,-0.25913381576538086,-0.09211229532957077,1.324141502380371,-0.7811315059661865,0.4466268718242645,0.035936832427978516,0.8693971037864685,-0.5689496994018555,0.09398829936981201,1.0786957740783691,0.11375701427459717,0.5063492655754089,0.14777471125125885,0.23631489276885986,-0.774488627910614,-0.6811016798019409,-0.8071540594100952,-0.6387807130813599,0.09531435370445251,1.179571270942688,1.1291474103927612,0.9395008683204651,1.3582900762557983,0.8028049468994141,0.1561669409275055,-0.7304695844650269,1.1958528757095337,0.3402913510799408,-0.9366275072097778,-0.40407001972198486,0.20540358126163483,0.6635071635246277,1.0428751707077026,0.1124580055475235,-0.17831078171730042,-0.7378163933753967,0.15980234742164612,-1.723624587059021,0.18299463391304016,0.6783149242401123,-0.7589139938354492,-0.34198662638664246,-0.5184926986694336,-0.1133672297000885,0.1336720734834671,-2.450137138366699,-1.019945740699768,0.014080840162932873,-1.2183932065963745,-0.1177327036857605,0.20210154354572296,-0.960696280002594,-1.1783487796783447,-0.41135549545288086,-0.21173444390296936,0.2299463152885437,-0.47525903582572937,-0.546643078327179,-2.1846466064453125,-0.31626105308532715,-0.939597487449646,1.0740803480148315,0.012321273796260357,1.0724306106567383,0.26353752613067627,-0.0763554573059082,-0.049128804355859756,0.8550663590431213,-1.0605188608169556,-0.07113799452781677,-0.6740279197692871,-0.7928664088249207,0.7393743991851807,-0.4807400107383728,-1.5795618295669556,-0.47336122393608093,-0.4386189579963684,-0.41586190462112427,1.3258651494979858,-0.6086592674255371,-0.42297184467315674,0.6715722680091858,-0.8943018317222595,0.5717999935150146,1.1459721326828003,-0.5942838191986084,1.6355938911437988,0.4250820279121399,1.0076924562454224,-1.003343105316162,0.6332107186317444,-0.06298673897981644,0.1789790391921997,-0.0014160452410578728,0.5540673136711121,-0.6362878680229187,0.5930072069168091,-1.2893636226654053,-1.4232234954833984,-1.735693097114563,-0.10789558291435242,-0.8792783617973328,0.7751044631004333,-0.7049003839492798,0.1936553716659546,0.5750722885131836,-0.7229655385017395,0.45888110995292664,-0.727819561958313,-1.0989798307418823,-0.4926224946975708,-0.2213263362646103,0.30819419026374817,-0.1716240644454956,0.9871440529823303,-0.6990817785263062,0.015682760626077652,0.28325504064559937,0.09039250016212463,0.4840010702610016,0.2903597056865692,-0.7627871036529541,0.21938180923461914,0.910968005657196,-0.01465484406799078,-0.9400805234909058,0.41761207580566406,-0.4240246117115021,0.1957593411207199,-0.9164233207702637,-0.6958218216896057,-0.08441154658794403,0.41212356090545654,0.6251339316368103,-0.21327026188373566,0.33431941270828247,0.24839982390403748,0.6846456527709961,0.04393494874238968,-0.9116663336753845,1.2376654148101807,-1.1634801626205444,0.39879298210144043,-0.48884934186935425,0.42945602536201477,0.12414443492889404,0.10346857458353043,-0.06143811717629433,1.556827187538147,0.7288050055503845,-0.18454277515411377,-0.32369282841682434,-0.252890020608902,-1.1653730869293213,1.1146711111068726,-2.500493288040161,-0.4644678235054016,0.2665911316871643,-0.3713558316230774,-0.04798176884651184,0.150394007563591,-0.013472559861838818,0.4061613976955414,-1.103472352027893,-1.0921190977096558,1.191400408744812,-0.6059365272521973,0.09011520445346832,0.952799916267395,0.9367530345916748,0.93319171667099,-0.4503782093524933,-0.12509873509407043,0.07971154153347015,0.2512664198875427,1.034844160079956,-0.18022090196609497,-0.5954349040985107,-0.02914932742714882,0.14112049341201782,0.7629451155662537,-0.4671216607093811,-0.31618377566337585,-0.3355605900287628 -2918,0.8090795874595642,0.3625240623950958,-0.013005780056118965,0.22050583362579346,-0.6067095398902893,0.7693357467651367,0.8550646305084229,-0.5531519055366516,-0.5537914037704468,0.7338975667953491,-0.6918656229972839,0.3866836726665497,-0.6807822585105896,0.354621022939682,-0.18999287486076355,0.6577544808387756,-0.44054460525512695,1.4372578859329224,0.3494996726512909,0.9859018325805664,0.4078216552734375,0.3561819791793823,-1.8115577697753906,0.2117350548505783,0.38970547914505005,-0.11100761592388153,-0.3091532588005066,-0.7499381303787231,0.11697496473789215,1.1257214546203613,0.8360059857368469,0.11851918697357178,-0.39502429962158203,0.44519415497779846,0.05006168782711029,-0.8385434746742249,0.6919112801551819,0.5897622108459473,0.119722381234169,0.9249981641769409,0.6799330711364746,1.157663345336914,0.562282383441925,-0.5379419326782227,0.4695407748222351,-0.9027142524719238,-0.79691481590271,0.7305665016174316,-0.33678460121154785,-0.2995638847351074,0.2694455087184906,-0.3446039855480194,1.0211658477783203,0.5552210807800293,0.8704445362091064,0.5114854574203491,0.19389300048351288,0.8814255595207214,0.6517400741577148,-0.5304594039916992,-0.7664222121238708,0.6528236865997314,-0.5850862264633179,0.42931172251701355,-0.2372152954339981,-0.07019377499818802,1.3663395643234253,-0.7592129707336426,0.46854540705680847,-0.1838749200105667,0.8913156390190125,-0.5470311641693115,0.11590681970119476,1.1347419023513794,0.05480947345495224,0.5819277167320251,0.1696932315826416,0.2582334280014038,-0.7525700926780701,-0.5936941504478455,-0.5264780521392822,-0.6168621778488159,0.11723287403583527,1.201489806175232,1.1510659456253052,0.961419403553009,1.020655870437622,0.7544525861740112,0.17808546125888824,-0.7085510492324829,1.2177714109420776,0.10953541100025177,-0.9147089719772339,-0.3821514844894409,-0.04081219434738159,0.6854256987571716,1.0647937059402466,-0.029813183471560478,-0.15639226138591766,-0.7158978581428528,-0.8708915710449219,-1.6207985877990723,0.2049131542444229,0.7002334594726562,-0.7369954586029053,-0.3200680911540985,-0.1913767009973526,-0.09144870936870575,0.4014819860458374,-2.4282186031341553,-0.9342809915542603,0.0359993614256382,-1.1964746713638306,-0.09581418335437775,0.2240200638771057,-1.2998073101043701,-1.1564302444458008,-0.3894369602203369,-0.1898159235715866,0.25186485052108765,-0.4533405005931854,-0.524724543094635,-1.6174538135528564,-0.2943425178527832,-0.917678952217102,1.0959988832473755,-0.3474726974964142,1.0943491458892822,-0.14093439280986786,-0.11770205199718475,-0.027210282161831856,0.8769848942756653,-1.0386003255844116,-0.04921947419643402,-0.6521093845367432,0.2267412394285202,-0.13860268890857697,-0.45882147550582886,-1.5576432943344116,-0.451442688703537,-1.06942880153656,-0.3939433693885803,1.3477836847305298,-0.5867407321929932,0.09924744069576263,0.6934908032417297,-0.8723832964897156,0.5937185287475586,1.1678906679153442,-0.5723652839660645,1.7569960355758667,0.44700056314468384,0.8948105573654175,-1.0770922899246216,0.6551292538642883,-0.041068218648433685,0.20089755952358246,-0.0834689512848854,0.5912509560585022,-0.6143693327903748,0.614925742149353,-1.2674450874328613,-1.4013049602508545,-1.713774561882019,-0.7018744945526123,-0.8573598265647888,0.7970229983329773,-0.5133851766586304,0.21557389199733734,0.7231294512748718,-0.7010470032691956,0.4807996451854706,-0.705901026725769,-0.895939290523529,-1.1265029907226562,-0.3398020267486572,0.3301127254962921,-0.14970554411411285,1.0090625286102295,-0.6345991492271423,-0.2186005860567093,0.3051735758781433,-0.15129555761814117,0.5059195756912231,0.05786590278148651,-0.7408685684204102,0.2413003295660019,0.5976508259773254,-0.6148660182952881,-0.4084019660949707,0.439530611038208,-0.40210607647895813,-0.6207991242408752,0.06886027753353119,-0.6739032864570618,-0.22673216462135315,0.4340420961380005,0.6470524668693542,-0.1913517415523529,0.3562379479408264,0.2703183591365814,0.70656418800354,0.06585346907377243,-0.8897477984428406,1.2595839500427246,-1.38071870803833,0.4207115173339844,-0.4669308066368103,0.4513745605945587,0.1460629552602768,-0.11931373178958893,-0.03951959311962128,1.578745722770691,1.028968334197998,-0.23105432093143463,-0.3017742931842804,-0.23097150027751923,-1.1434545516967773,1.1365896463394165,-2.4169580936431885,-0.44254928827285767,0.28850966691970825,-0.34943729639053345,-0.02606324665248394,1.1381850242614746,-0.21152369678020477,0.4280799329280853,-1.0815538167953491,-1.0702005624771118,1.213318943977356,-0.5840179920196533,0.004156576469540596,0.974718451499939,0.9925092458724976,0.9551102519035339,-0.42845967411994934,0.3664366900920868,-0.18942934274673462,0.27318495512008667,1.0474387407302856,-0.15830238163471222,-0.5923426747322083,-0.007230805233120918,0.16303901374340057,0.7848636507987976,-0.44520312547683716,-0.2472084015607834,-0.31364205479621887 -2919,0.8426337242126465,0.3685365915298462,0.048563823103904724,0.22651836276054382,-0.47370898723602295,0.724754273891449,0.8610771894454956,-0.25678008794784546,-0.547778844833374,0.7472286224365234,-0.6858530640602112,0.39269620180130005,-1.2142030000686646,0.3606335520744324,-0.18398034572601318,0.6637670397758484,-0.4345320761203766,1.4432704448699951,0.35551220178604126,0.9919143915176392,0.41383418440818787,0.3621945083141327,-1.8055452108383179,0.21774758398532867,0.3957180082798004,-0.10499507933855057,-0.35962367057800293,-0.7439255714416504,0.12298750132322311,1.1733545064926147,0.8420185446739197,-0.010271855629980564,-0.6612834334373474,0.45120668411254883,0.056074224412441254,-0.6457774639129639,0.6979238390922546,0.59577476978302,0.12573491036891937,0.9310107231140137,0.6859456300735474,1.1564972400665283,0.5682949423789978,-0.5319293737411499,0.4537590742111206,-0.8967016935348511,-0.8003917336463928,0.7365790605545044,-0.3307720720767975,-0.29355135560035706,0.27545803785324097,-0.3610048294067383,1.027178406715393,0.561233639717102,0.8764570951461792,0.5174980163574219,0.19990552961826324,0.8874381184577942,0.6577526330947876,-0.6924053430557251,-0.7604096531867981,0.6588362455368042,-0.3725065290927887,0.3444817066192627,-0.23120276629924774,-0.06418123841285706,1.372352123260498,-1.0065522193908691,0.28850674629211426,-0.17786239087581635,0.8973281979560852,-0.5410186052322388,0.11517976224422455,1.1407544612884521,0.0608220100402832,0.5879402756690979,0.17570576071739197,0.2642459571361542,-0.7465575337409973,-0.5786888599395752,-0.5204654932022095,-0.6108496189117432,0.12324541062116623,1.210912823677063,1.072699785232544,0.9674319624900818,0.7662144899368286,0.6739936470985413,0.1840979903936386,-0.7025384902954102,1.2237839698791504,0.11554794758558273,-0.9086964130401611,-0.6482493877410889,-0.03479965776205063,0.6914382576942444,1.0708062648773193,-0.023800648748874664,-0.1503797322511673,-0.37855491042137146,-0.8648790121078491,-0.7328254580497742,0.21092568337917328,0.706246018409729,-0.9887256622314453,-0.31405556201934814,-0.18536417186260223,-0.08543617278337479,0.0777660384774208,-2.422206163406372,-0.9282684326171875,0.04201189801096916,-1.1904621124267578,-0.08980164676904678,0.23003259301185608,-1.2937947511672974,-1.150417685508728,-0.38342443108558655,-0.4175950884819031,0.257877379655838,-0.6811409592628479,-0.5187119841575623,-1.6114412546157837,-0.28832998871803284,-0.9116663932800293,1.1020114421844482,-0.3414601683616638,1.2308971881866455,-0.1349218636751175,-0.04701652377843857,-0.021197747439146042,0.9026515483856201,-1.0325877666473389,-0.04320693761110306,-0.6460968255996704,0.23275376856327057,-0.1325901597738266,-0.609441339969635,-1.5516307353973389,-0.4454301595687866,-0.7672640085220337,-0.38793084025382996,1.3537962436676025,-0.5807281732559204,0.1052599772810936,0.8143345713615417,-0.7749676704406738,0.5997310876846313,1.049752116203308,-0.5663527250289917,1.7630085945129395,0.4530130922794342,0.9008231163024902,-1.0710797309875488,0.6611418128013611,-0.03505568206310272,0.20691008865833282,-0.07745641469955444,0.597263514995575,-0.608356773853302,0.6209383010864258,-1.2614325284957886,-0.13829222321510315,-0.9330428242683411,-0.6656908392906189,-0.8208662271499634,0.80303555727005,-0.5073726177215576,0.20043453574180603,0.7291420102119446,-0.6950344443321228,0.48681217432022095,-0.8544369339942932,-0.8899267315864563,-1.1204904317855835,-0.13844183087348938,0.3361252546310425,-0.1436930149793625,1.389248251914978,-0.7074908018112183,-0.21258805692195892,0.3111861050128937,-0.1452830284833908,0.5119321346282959,0.06387843936681747,-0.7348560094833374,-0.22395198047161102,-0.4045179784297943,-0.49505993723869324,-0.40238943696022034,0.4455431401729584,-0.39609354734420776,-0.46774932742118835,0.07487281411886215,-1.1635665893554688,0.3906162977218628,0.44005462527275085,0.653065025806427,0.4087955355644226,0.3622504770755768,0.2763308882713318,0.7125767469406128,0.0718660056591034,-0.8837352395057678,1.2655965089797974,-1.4381940364837646,0.42672404646873474,-0.46091827750205994,0.4573870897293091,0.15207548439502716,0.7016039490699768,-0.16567236185073853,1.5847582817077637,1.0349808931350708,-0.22504179179668427,-1.130218505859375,-0.30114439129829407,-1.5090022087097168,1.1426022052764893,-2.4109456539154053,-0.4365367591381073,0.2945221960544586,-0.3434247672557831,-0.020050711929798126,-0.054443977773189545,-0.2055111676454544,0.4281863868236542,-0.9240033626556396,-1.064188003540039,1.2193315029144287,-0.5780054330825806,0.010169112123548985,0.9807310104370117,0.9985218048095703,0.9611228108406067,-0.5896582007408142,-0.114998959004879,-0.18341681361198425,0.27919748425483704,0.9800218939781189,0.4333871901035309,-0.5863301157951355,-0.0012182695791125298,-0.24653461575508118,0.7908762097358704,-0.5817804932594299,-0.24119587242603302,-0.3076295256614685 -2920,0.7911368012428284,0.3446912467479706,0.024718472734093666,0.2026730179786682,-0.3852371573448181,0.7219254374504089,0.9540237188339233,-0.28062543272972107,-0.571624219417572,0.7233832478523254,-0.7096984386444092,0.36885085701942444,-1.2380483150482178,0.33678820729255676,-0.2078256905078888,0.6814445853233337,-0.28359541296958923,1.419425129890442,0.33166685700416565,1.039868712425232,0.38998883962631226,0.31573179364204407,-2.0915331840515137,0.19390223920345306,0.3718726634979248,-0.12884043157100677,0.03281416743993759,-0.7677709460258484,0.3175991177558899,1.077014684677124,0.8181731700897217,-0.0341172069311142,-0.6851288080215454,0.4273613393306732,0.47761109471321106,0.10830070823431015,0.8215456008911133,0.571929395198822,0.10188955813646317,0.9071653485298157,0.6621002554893494,1.132651925086975,0.5444495677947998,-0.5557747483253479,0.429913729429245,-0.9205470681190491,-0.8242371082305908,0.7127336859703064,-0.33691924810409546,-0.31739670038223267,0.25161269307136536,0.03215908259153366,1.0033330917358398,0.5065198540687561,0.8526117205619812,0.5641202926635742,0.17606018483638763,0.8635927438735962,0.5874413847923279,-0.7162507176399231,-0.8116737604141235,0.6349908709526062,-0.3963518738746643,0.1675405353307724,-0.25504812598228455,-0.08607727289199829,1.3654597997665405,-1.0303975343704224,0.419673353433609,-0.20170773565769196,0.9189380407333374,-0.5648639798164368,0.09133441001176834,1.116909146308899,0.036976657807826996,0.5640949010848999,0.15186041593551636,0.24040061235427856,-0.7704029083251953,-0.6025342345237732,-0.5443108677864075,-0.6346949934959412,0.09940005838871002,1.1870675086975098,1.0488544702529907,0.9294502139091492,0.7423691153526306,0.6501482725143433,0.160252645611763,-0.7263838648796082,1.1999386548995972,0.09170259535312653,-0.9325417876243591,-0.6720947623252869,-0.058645009994506836,0.5288816094398499,1.0469609498977661,-0.04764600098133087,-0.1742250770330429,-0.40240025520324707,-0.8887243866920471,-0.7566708326339722,0.18708033859729767,0.682400643825531,-0.6380296349525452,-0.33790090680122375,-0.5077690482139587,-1.3784079551696777,0.07132754474878311,-0.32126298546791077,-0.9521138072013855,0.442388117313385,-1.214307427406311,-0.37932029366493225,0.0019107107073068619,-1.3176400661468506,-1.5896745920181274,-0.40726977586746216,-0.4414404332637787,0.1747814416885376,0.22320881485939026,-0.5425573587417603,-1.635286569595337,-0.33959200978279114,-0.9355117678642273,1.078166127204895,-0.36530551314353943,0.9926198124885559,-0.1587672084569931,-0.07086187601089478,-0.04504309594631195,0.8427919149398804,-1.056433081626892,-0.06705228984355927,-0.6699422001838684,-1.2381411790847778,-0.22368472814559937,-0.633286714553833,-1.575476050376892,-0.46927550435066223,-0.7911093831062317,-0.41177618503570557,0.4213643968105316,-0.6045735478401184,0.08141462504863739,0.7904891967773438,-0.7988130450248718,0.9775912165641785,1.0259068012237549,-0.5901980996131897,1.7391632795333862,-0.17147839069366455,0.8769777417182922,-1.094925045967102,0.6372964382171631,-0.05890103429555893,0.18306474387645721,0.46425244212150574,0.5405443906784058,-0.6322021484375,0.5970929265022278,-1.1060757637023926,-0.16213756799697876,-0.9568881988525391,-0.6895362138748169,0.12160756438970566,-0.22339734435081482,-0.4471583664417267,0.6907461285591125,0.6877807378768921,-0.41669392585754395,0.46296682953834534,-0.1823045313358307,-1.1521168947219849,-1.1443357467651367,-0.162287175655365,0.3906838297843933,-0.2824952304363251,1.5055540800094604,-0.7313361763954163,-0.1595175564289093,0.28734076023101807,-0.16912837326526642,0.4880867898464203,-0.043282948434352875,-0.6857298612594604,-0.24779732525348663,1.0930253267288208,-0.5189052820205688,-0.42623478174209595,0.42169779539108276,-0.5782989263534546,-0.49159467220306396,0.051027461886405945,-1.187411904335022,-0.09396732598543167,0.41620928049087524,0.629219651222229,0.384950190782547,0.33840513229370117,0.2524855434894562,0.6434828639030457,0.048020653426647186,-0.9075806140899658,1.2417511940002441,-1.4620393514633179,0.40287870168685913,-0.48476362228393555,0.41375449299812317,0.016066567972302437,0.6777585744857788,-0.18951770663261414,1.650527000427246,1.0111355781555176,-0.24888713657855988,-1.182606816291809,-0.3249897360801697,-0.7280564904212952,1.118756890296936,-0.8575571179389954,-0.43130600452423096,0.270676851272583,-0.3672701120376587,-0.043896064162254333,-0.07828933000564575,-0.22935651242733002,0.40434104204177856,-0.29495003819465637,-1.0880333185195923,1.1954861879348755,-0.6018508076667786,-0.6715151071548462,0.9568856358528137,0.9746764302253723,1.0159260034561157,-0.6135035753250122,-0.1388443112373352,-0.20726215839385986,-0.3467841148376465,0.9914377331733704,0.4095418453216553,-0.6101754903793335,-0.025063619017601013,-0.2703799605369568,0.7670308351516724,-0.512233316898346,-0.2650412321090698,-0.3314748704433441 -2921,0.7988973259925842,0.543398380279541,0.03247900679707527,0.21043355762958527,-0.37747663259506226,0.7296859622001648,0.9617842435836792,-0.2728649079799652,-0.704932689666748,0.7311437726020813,-0.7019379138946533,0.20723570883274078,-0.5052443742752075,0.3445487320423126,-0.2190963178873062,0.6892051100730896,-0.2758348882198334,1.4200069904327393,0.3394273817539215,1.0476292371749878,0.3977493643760681,0.3234923183917999,-1.3686089515686035,0.20166277885437012,0.37963318824768066,-0.12107989937067032,0.040574703365564346,-0.7600104212760925,0.32535964250564575,1.1447432041168213,0.8259336948394775,-0.026356671005487442,-0.6773682832717896,0.2842552065849304,0.4853716194629669,0.1160612404346466,0.45830750465393066,0.5796899199485779,0.10965009033679962,0.8597391247749329,0.6698607802391052,1.140412449836731,0.5522100925445557,-0.548014223575592,0.43767425417900085,-1.1948528289794922,-0.43959841132164,0.7864001393318176,-0.3291587233543396,-0.3096361756324768,0.5405929684638977,-0.6321138739585876,1.0110936164855957,0.514280378818512,0.8603722453117371,0.5718808174133301,0.1838207244873047,0.5706120729446411,0.5952019095420837,-0.5085774064064026,-0.8039132356643677,0.5560261607170105,-0.38859134912490845,0.39103808999061584,-0.11133285611867905,-0.07831674069166183,1.3732203245162964,-0.7455217838287354,0.42743387818336487,-0.1939471960067749,0.9266985654830933,-0.1828184276819229,0.0990949422121048,1.1246696710586548,0.04473719373345375,0.5718554258346558,0.15173563361167908,0.06974441558122635,-0.8948937058448792,-0.6005991697311401,-0.5365503430366516,-0.6269344687461853,0.29004570841789246,1.1948280334472656,1.0566149950027466,0.988666296005249,0.7501296401023865,0.7274276614189148,0.16801318526268005,-0.7186233401298523,1.1661336421966553,0.09946312755346298,-0.9247812628746033,-0.33319440484046936,-0.05088447406888008,0.5366421341896057,1.054721474647522,-0.03988546505570412,-0.16646453738212585,-0.3946397304534912,-0.8809638619422913,-1.2807459831237793,0.19484087824821472,0.6901611685752869,-0.6302691102027893,-0.3301403820514679,-0.5000085234642029,-1.3706474304199219,0.07908807694911957,0.4960927665233612,-1.594980001449585,0.45014864206314087,-1.2065469026565552,-0.3715597689151764,0.18684335052967072,-1.3098795413970947,-1.5819140672683716,-0.3995092511177063,-0.4336799085140228,-0.21034981310367584,0.18358123302459717,-0.5347968339920044,-1.627526044845581,-0.06943228095769882,-0.9277512431144714,0.8310647010803223,-0.9709683656692505,0.9260303974151611,-0.15100666880607605,-0.2288094460964203,-0.037282560020685196,0.8505524396896362,-1.0486725568771362,-0.05929175391793251,-0.6621816754341125,-1.230380654335022,-0.2159241884946823,-0.6255261898040771,-1.676621437072754,-0.46151497960090637,0.701023280620575,-0.4040156602859497,-0.8075991868972778,-0.6229447722434998,0.08917515724897385,0.7982497215270996,-0.791052520275116,0.26132577657699585,1.0336673259735107,-0.5824375748634338,1.746923804283142,-0.1637178510427475,0.8401424884796143,-1.0871645212173462,0.6296188831329346,-0.051140498369932175,0.19082528352737427,0.4452968239784241,0.5546714663505554,-0.6244416236877441,0.7132340669631958,-1.0983152389526367,-0.1543770283460617,-0.9491276741027832,-0.681775689125061,-0.20795412361621857,-0.21563680469989777,-0.3887883722782135,0.6985066533088684,0.25119245052337646,-0.4089334011077881,0.4707273542881012,-0.30472272634506226,-1.2383551597595215,-1.1365752220153809,-0.15452663600444794,0.39844435453414917,-0.2747347056865692,1.5049511194229126,-0.6550717353820801,-0.15175701677799225,0.2951012849807739,-0.16136783361434937,0.49584731459617615,-0.03552241250872612,-0.6779693365097046,0.49541038274765015,1.1007858514785767,0.52070152759552,-0.9113413095474243,0.4294583201408386,-0.5705384016036987,-0.4838341474533081,0.0587879978120327,-1.1796513795852661,-0.08620679378509521,-0.09875213354825974,0.506798267364502,0.39271071553230286,0.34616565704345703,0.26024606823921204,0.6512433886528015,-0.06476319581270218,-0.89982008934021,1.1304718255996704,-1.454278826713562,0.410639226436615,0.5088724493980408,-0.32406774163246155,-0.07998092472553253,0.6855190992355347,-0.18175716698169708,1.658287525177002,1.0188961029052734,-0.27841153740882874,-1.1748462915420532,-0.3786689043045044,-0.7202959656715393,1.126517415046692,-0.8497965931892395,-0.4235454797744751,-0.07576661556959152,-0.35950958728790283,0.024957410991191864,-0.0705287978053093,-0.22159597277641296,0.38250595331192017,-0.34948745369911194,-0.9507455825805664,1.2032467126846313,-0.5940902829170227,-0.6637545824050903,0.43195468187332153,0.9824369549751282,1.0236865282058716,-0.6057430505752563,-0.13108377158641815,-0.1995016187429428,-0.3390235900878906,0.9991982579231262,0.41730237007141113,-0.6024149656295776,0.17941036820411682,-0.2626194357872009,0.35045889019966125,-0.5044727921485901,-0.25728070735931396,-0.32371434569358826 -2922,0.787763237953186,0.4843783676624298,0.1038464680314064,0.3262234032154083,-0.38861069083213806,0.7164056897163391,0.8849074244499207,-0.283998966217041,-0.31520795822143555,0.7135852575302124,-0.7130720019340515,0.19610165059566498,-0.5163784623146057,0.3334146738052368,-0.23023037612438202,0.6780710220336914,-0.2869689464569092,1.4088729619979858,0.44784143567085266,1.0648125410079956,0.3866153061389923,0.3123582601547241,-1.379742980003357,0.25077173113822937,0.36849913001060486,-0.13221396505832672,0.029440637677907944,-0.7711445093154907,0.31422558426856995,1.1567811965942383,0.8147996068000793,-0.1792396754026413,-0.27759191393852234,0.2731211483478546,0.4742375612258911,-0.08331946283578873,0.44717344641685486,0.5685558319091797,0.09851602464914322,0.8486050367355347,0.658726692199707,1.1292784214019775,0.5410760045051575,-0.5591483116149902,0.42654019594192505,-0.22118869423866272,-0.38092145323753357,0.7544809579849243,-0.3402927815914154,-0.3207702338695526,0.5294588804244995,-0.4983420968055725,1.0308011770248413,0.5031462907791138,0.8492381572723389,0.5607467293739319,0.17268666625022888,0.5594779849052429,0.5955983996391296,-0.5197114944458008,-0.8150473237037659,0.5448920726776123,-0.16978076100349426,0.22758424282073975,-0.12246692180633545,-0.08945080637931824,1.362086296081543,-0.7566558718681335,0.41629981994628906,-0.3558558523654938,0.9155644774436951,-0.19395248591899872,0.11941315978765488,1.1135356426239014,0.03360312804579735,0.5607213377952576,-0.02218262106180191,0.18824809789657593,-0.7025982141494751,-0.6117332577705383,-0.5476844310760498,-0.6380685567855835,0.27891165018081665,1.1836940050125122,1.0454809665679932,0.9662202000617981,-0.46151813864707947,0.7162935733795166,0.15687912702560425,-0.7297574281692505,1.1549996137619019,0.08832906186580658,-0.9359153509140015,-0.34432846307754517,-0.5260342359542847,0.5255080461502075,1.0435874462127686,-0.05101953074336052,-0.17759859561920166,-0.405773788690567,-0.8920979499816895,-1.2918800115585327,0.18370682001113892,0.6790270805358887,-0.45263493061065674,-0.3412744402885437,-0.5111426115036011,-1.3817814588546753,0.06795401126146317,0.4849587082862854,-1.6061140298843384,0.5096414089202881,-1.2176809310913086,-0.3826938271522522,0.1757092922925949,-1.3210135698318481,-1.593048095703125,-0.4106433093547821,-0.44481396675109863,-0.22148387134075165,0.17244717478752136,-0.5459309220314026,-1.6805250644683838,-0.08056634664535522,-0.9388853311538696,0.8199306130409241,0.21700724959373474,0.8404068946838379,-0.6105607151985168,0.14740070700645447,-0.0484166257083416,0.8516638875007629,-1.0598065853118896,-0.07042581588029861,-0.6733157634735107,-1.2415146827697754,-0.35527941584587097,-0.6366602778434753,-1.2478822469711304,-0.4726490378379822,-0.7309541702270508,-0.6971810460090637,-0.818733274936676,-0.26433461904525757,0.07804109156131744,0.7871156334877014,-0.8021866083145142,0.25019171833992004,1.0225332975387573,-0.593571662902832,1.7357897758483887,-0.08516188710927963,0.8290084004402161,-1.0982985496520996,0.5096650719642639,-0.7841036915779114,0.17969122529029846,0.43416276574134827,0.5435373783111572,-0.6355757117271423,0.7020999789237976,-1.1094492673873901,-0.1655110865831375,-0.24195465445518494,-0.6929097771644592,-0.21908818185329437,-0.22677086293697357,-0.7517779469490051,0.6873725652694702,0.27371007204055786,-1.349018931388855,0.5247480869293213,-0.31585678458213806,0.2489219605922699,-1.7942765951156616,-0.16566069424152374,0.5304534435272217,-0.285868763923645,1.4938170909881592,-0.6662058234214783,-0.16289107501506805,0.08142755180597305,-0.17250189185142517,0.48471325635910034,-0.04665647819638252,-0.6891034245491028,0.48427632451057434,1.0896518230438232,0.5095674395561218,-0.9224753975868225,0.5664198994636536,-0.799854040145874,-0.6247068643569946,0.0476539321243763,-0.9256222248077393,-0.09734085947275162,-0.10988619923591614,0.46744778752326965,0.38157665729522705,0.3350315988063812,0.24911201000213623,0.6401093006134033,0.15399706363677979,-0.5051636695861816,1.119337797164917,-1.2040420770645142,0.5283988118171692,0.49773839116096497,-0.33520179986953735,-0.09111499041318893,0.4197109341621399,-0.1928912252187729,1.6471534967422485,1.00776207447052,0.3511272668838501,-0.4438105523586273,-0.3898029625415802,-0.7314300537109375,1.1153833866119385,-0.7352826595306396,-0.4346795380115509,-0.08690068125724792,-0.43137645721435547,0.013823346234858036,-0.0816628634929657,-0.23273003101348877,0.37137189507484436,-0.36062151193618774,-0.605469822883606,1.192112684249878,-0.6052243709564209,-0.6748886704444885,0.4208206236362457,1.0249719619750977,0.8251210451126099,-0.6168771386146545,-0.14221782982349396,-0.21063567698001862,-0.4900577962398529,0.988064169883728,0.4061683118343353,-0.6135490536689758,0.16827630996704102,-0.18516996502876282,0.33932483196258545,-0.5156068801879883,-0.26841476559638977,-0.33484840393066406 -2923,0.7817670106887817,0.4783821702003479,0.0978502631187439,0.3202272057533264,-0.39460688829421997,0.7550135850906372,0.8789111971855164,-0.2899951636791229,-0.32120415568351746,0.7075890302658081,-0.7783189415931702,0.19010543823242188,-0.52237468957901,0.3274184763431549,-0.23622658848762512,0.6720747947692871,-0.2929651439189911,1.4028767347335815,0.31986522674560547,1.1020781993865967,0.3806191086769104,0.08620286732912064,-1.0696607828140259,0.3188214600086212,0.67151939868927,-0.13821017742156982,-0.26800280809402466,-0.777140736579895,0.30822938680648804,1.150784969329834,0.808803379535675,-0.23072603344917297,-0.28358811140060425,0.5830729007720947,0.4682413637638092,-0.08931566774845123,0.44117724895477295,0.5625596046447754,0.09251981973648071,0.8426088094711304,0.6527304649353027,1.1332937479019165,0.5350797772407532,-0.15209369361400604,0.42054399847984314,-0.22718490660190582,-0.5168733596801758,0.74848473072052,-0.3462889790534973,-0.14409880340099335,0.5234626531600952,-0.5043383240699768,1.024804949760437,0.6218204498291016,0.8546172380447388,0.5547505021095276,0.16669045388698578,0.5534817576408386,0.5896021723747253,-0.408931165933609,-0.8210435509681702,0.538895845413208,-0.17577697336673737,0.22158803045749664,-0.40500104427337646,-0.09544701129198074,1.3560900688171387,-0.7626520991325378,0.3704363703727722,0.11855074018239975,0.9095682501792908,-0.19994869828224182,0.1423371583223343,1.107539415359497,0.027606919407844543,0.5394191741943359,0.0164603553712368,0.18225188553333282,-1.0405173301696777,-0.6387951374053955,-0.5536806583404541,-0.6440647840499878,0.27291545271873474,1.177697777748108,1.0394847393035889,0.9602239727973938,0.054901111871004105,0.7102973461151123,0.15088291466236115,-0.33920344710350037,1.1490033864974976,0.08233285695314407,-0.9419115781784058,0.06947299093008041,-0.3366919457912445,0.5195118188858032,1.173167109489441,-0.057015739381313324,-0.15185077488422394,-0.4117699861526489,-0.8980941772460938,-1.297876238822937,0.1777106076478958,0.6078618168830872,-0.45863112807273865,-0.3472706377506256,-0.5171388387680054,-1.3877776861190796,0.06195780262351036,-0.29754361510276794,-0.8564547896385193,0.5036451816558838,-0.8636996746063232,0.5066350698471069,0.1697130799293518,-1.3270097970962524,-2.1568236351013184,-0.3581773340702057,-0.45081016421318054,-0.22748008370399475,0.16645096242427826,-0.5519271492958069,-1.686521291732788,-0.05094379186630249,-1.0627893209457397,0.8139343857765198,0.21101103723049164,0.8344106674194336,-0.6165569424629211,0.14140449464321136,-0.41132423281669617,0.8456676602363586,-1.065802812576294,-0.07642202079296112,-0.6500688791275024,-1.2475109100341797,-0.04971997067332268,-0.6426565051078796,-1.2538784742355347,-0.552422046661377,-0.7369503974914551,-0.703177273273468,-0.8247295022010803,-0.3982848525047302,0.07204488664865494,0.7811194062232971,-0.8081828355789185,0.24419550597667694,1.016537070274353,-1.2061057090759277,1.7297935485839844,-0.09115809202194214,0.8230121731758118,-0.6311923265457153,0.23096154630184174,-0.7900999188423157,-0.4837578535079956,1.107195258140564,0.5375411510467529,-0.6415719389915466,0.6649847030639648,-1.1154454946517944,-0.17150729894638062,-0.24795086681842804,-0.6989060044288635,-0.22508439421653748,-0.23276707530021667,-0.7884451746940613,0.6813763380050659,0.26771387457847595,-1.3550151586532593,0.518751859664917,-0.32185298204421997,-0.954242467880249,-1.839624047279358,-0.02127574011683464,0.5244572162628174,-0.29186496138572693,1.4878208637237549,-0.6722020506858826,-0.16888728737831116,0.07543134689331055,-0.1556524783372879,0.47871705889701843,-0.6846613883972168,-0.6950996518135071,0.01042755413800478,0.8484694957733154,0.5147994160652161,-0.9284716248512268,0.5604236721992493,-0.8058502674102783,0.3758099377155304,0.04165772348642349,-0.9316184520721436,-0.10333706438541412,-0.33893197774887085,0.46145159006118774,0.37558045983314514,0.3290354013442993,0.30562928318977356,0.634113073348999,0.14800085127353668,-0.5372248291969299,1.3582843542099,-1.2100383043289185,0.5775871872901917,0.49174219369888306,0.2909945547580719,-0.09711119532585144,0.45904669165611267,-0.198887437582016,1.6295608282089233,1.0017658472061157,-0.22925381362438202,-0.44980674982070923,-0.3957991600036621,-0.7374262809753418,1.1093871593475342,-0.741278886795044,-0.4406757354736328,-0.09289688616991043,-0.4373726546764374,-0.08272600173950195,-0.0876590684056282,-0.2590210437774658,0.36537569761276245,-0.36661770939826965,-0.4716895818710327,1.1769731044769287,-0.6112205982208252,-0.6808848977088928,0.4148244261741638,1.0189757347106934,0.8191248178482056,-0.32687631249427795,-0.14821404218673706,-0.7331666946411133,-0.4960539937019348,0.9694110155105591,0.4001721143722534,-0.6195452809333801,0.443053662776947,-0.19116617739200592,0.33332863450050354,-0.5216031074523926,-0.26656797528266907,-0.34084460139274597 -2924,0.7961593270301819,0.49277448654174805,0.07814246416091919,0.33461952209472656,-0.3802145719528198,0.6752655506134033,0.8933035135269165,-0.2756028473377228,-0.6262021660804749,0.8689106106758118,-0.76392662525177,0.21963930130004883,-0.006844342686235905,-0.07346725463867188,-0.22183427214622498,0.6864671111106873,-0.27857282757759094,1.361191987991333,0.3342575430870056,1.0628082752227783,0.5086100697517395,0.10059518367052078,-1.0552685260772705,0.33321377635002136,0.6859117150306702,-0.12381786108016968,-0.2536104917526245,-0.27846381068229675,0.3226217031478882,1.111388087272644,0.6907776594161987,0.06795325875282288,-0.2691957950592041,0.5974652171134949,0.48263368010520935,-0.07492335140705109,0.4555695652961731,0.5769519209861755,0.10691213607788086,0.8570011258125305,0.5485674738883972,1.062312364578247,0.6127503514289856,-0.1377013772726059,0.4755583107471466,-0.9257649779319763,-0.5918048620223999,0.7628770470619202,-1.1513761281967163,-0.1297064870595932,0.09803977608680725,-1.0486496686935425,1.0391972064971924,0.6351574063301086,0.8690095543861389,0.5691428184509277,0.18108277022838593,0.8799106478691101,0.4581158757209778,-0.39453884959220886,-0.80665123462677,0.5532881617546082,-0.16138465702533722,0.2359803467988968,-0.3906087279319763,-0.0810546949505806,1.316153645515442,-0.7482597827911377,0.4593808352947235,0.1329430490732193,0.9316949844360352,-0.18555638194084167,0.021321535110473633,1.1219316720962524,0.04199923574924469,0.4303804636001587,0.09863334894180298,0.19664420187473297,-1.0261250734329224,-0.6229414939880371,-0.539288341999054,-0.6296724677085876,0.2873077690601349,1.1867358684539795,1.0538769960403442,0.974616289138794,0.06929342448711395,0.7246896624565125,-0.06871764361858368,-0.41438254714012146,1.163395643234253,0.25661951303482056,-0.9275192618370056,0.08386530727148056,-0.32229962944984436,0.5339041352272034,1.1875593662261963,-0.02002762258052826,-0.1374584585428238,-0.3973776698112488,-0.8837018609046936,-1.4026508331298828,0.10204549878835678,0.6222541332244873,-0.4442388117313385,-0.33287832140922546,-0.5027465224266052,-0.5770833492279053,0.4655582010746002,-0.2831512987613678,-0.8420624732971191,0.3770468235015869,-0.8493073582649231,0.5210273861885071,0.18410539627075195,-1.312617540359497,-1.3317240476608276,-0.34378501772880554,-0.48004546761512756,-0.2130877673625946,0.22191572189331055,-0.5375348329544067,-1.4221889972686768,-0.036551475524902344,-1.0483970642089844,0.8283267021179199,0.22540335357189178,0.8488029837608337,-0.602164626121521,0.1557968109846115,-0.396931916475296,0.9113321900367737,-1.137123942375183,-0.062029704451560974,-0.6356765627861023,-1.2419424057006836,0.040611159056425095,-0.6282641887664795,-1.2394862174987793,-0.5380297303199768,-0.7225580811500549,-0.6887849569320679,-0.8103371858596802,-0.31330665946006775,0.08643720299005508,0.7955117225646973,-0.5681650042533875,0.08836492896080017,1.0309293270111084,-1.1917134523391724,1.7441858053207397,-0.07676577568054199,1.0312684774398804,-0.5428634285926819,0.24535386264324188,-0.7757076025009155,-0.46936553716659546,1.1215875148773193,0.5519334673881531,-0.6271796226501465,0.6970964670181274,-1.101053237915039,-0.15711498260498047,-0.2335585504770279,-0.6845136880874634,-0.21069207787513733,-0.21837475895881653,-0.7740528583526611,0.6957686543464661,-0.05634671449661255,-1.340622901916504,0.5331441760063171,-0.4586048126220703,-0.9398501515388489,-1.8252317905426025,-0.006883424706757069,0.5388495326042175,-0.2774726450443268,1.5022131204605103,-0.6578097343444824,-0.39453715085983276,0.0898236632347107,-0.14126016199588776,0.4931093752384186,-0.6427868604660034,-0.6807073354721069,-0.4733295440673828,0.8628618121147156,0.5291917324066162,-0.9140793085098267,0.0012587895616889,-0.3219785988330841,-0.0534626841545105,0.05605003982782364,-1.064704418182373,-0.08894474804401398,-0.3245396614074707,0.4758439064025879,0.3899727761745453,0.34342771768569946,0.3200215995311737,0.7163376808166504,0.16239316761493683,-0.5228325128555298,1.3894824981689453,-1.195646047592163,0.7377480268478394,0.5061345100402832,0.30538687109947205,0.07806330919265747,0.14533185958862305,-0.4328497648239136,1.6439530849456787,1.11851167678833,-0.21486149728298187,-0.4354144334793091,-0.3754470944404602,-0.7230339646339417,1.061091423034668,-0.7268865704536438,-0.42628341913223267,-0.07850456982851028,-0.42298033833503723,0.16289520263671875,-0.07326675206422806,-0.24462872743606567,0.3797680139541626,-1.1438452005386353,-0.45729726552963257,1.191365361213684,-0.596828281879425,-0.6156781911849976,0.42921674251556396,1.0333679914474487,0.8335171341896057,-0.9041134715080261,-0.13382172584533691,-0.7187743782997131,-0.48166167736053467,0.9838033318519592,0.41456443071365356,-0.8988713026046753,0.45744597911834717,-0.17677386105060577,0.3477209508419037,-0.5072107911109924,-0.2521756589412689,-0.3264522850513458 -2925,0.7799902558326721,0.4766054153442383,0.06197339668869972,0.3184504508972168,-0.3963836431503296,0.6590964794158936,0.8449042439460754,-0.08463768661022186,-0.45136749744415283,0.8258155584335327,-1.1818512678146362,0.20347023010253906,-0.023013409227132797,-0.08963632583618164,-0.034214239567518234,0.6956387758255005,-0.2947418987751007,1.3450229167938232,0.36902040243148804,1.0800701379776,0.49244099855422974,-0.015117194503545761,-1.1856753826141357,0.3170447051525116,0.6697426438331604,-0.4892745614051819,-0.11909069120883942,-0.36429840326309204,0.5954173803329468,1.0952190160751343,0.9524737596511841,0.05178419128060341,-0.3499152362346649,0.5812961459159851,-0.1090002954006195,-0.4558420777320862,0.43940049409866333,0.5607828497886658,0.0907430648803711,0.8408320546150208,0.6296963095664978,1.0413764715194702,0.5965812802314758,-0.6066046357154846,0.45938923954963684,-0.647101640701294,-0.6079739332199097,0.7467079758644104,-1.167545199394226,-0.14587555825710297,0.08187070488929749,-0.6066642999649048,1.0230281352996826,0.6189883351325989,0.8528404831886292,0.552973747253418,0.16491369903087616,1.0724190473556519,0.441946804523468,-0.594007134437561,-0.8228203058242798,0.5371190905570984,-0.17755372822284698,0.21981127560138702,0.02386796846985817,-0.09722375869750977,1.2999845743179321,-0.7644288539886475,0.44321176409721375,-0.10182848572731018,0.9219382405281067,-0.20172545313835144,0.005152467638254166,1.1057626008987427,0.025830168277025223,0.4142113924026489,0.08246427774429321,-0.18245677649974823,-1.0422941446304321,-0.564806342124939,-0.5554574131965637,-1.2255181074142456,0.2711386978626251,1.0037885904312134,1.2408193349838257,0.9532415270805359,0.053124357014894485,0.8696211576461792,-0.08488671481609344,-0.4305516183376312,1.080596923828125,0.2404504418373108,-0.9436883330345154,0.06769624352455139,-0.3384687006473541,0.10171893239021301,1.1713902950286865,-0.16641800105571747,-0.3919699490070343,-0.13624626398086548,-0.8998709321022034,-1.4188199043273926,0.08587643504142761,0.6060850620269775,-0.46040788292884827,-0.34904739260673523,-0.518915593624115,-0.593252420425415,0.44938912987709045,-0.604962944984436,-0.8582315444946289,0.21832714974880219,-0.8654764294624329,0.5048583149909973,0.1679363250732422,-0.9369372129440308,-1.3478931188583374,0.05371854081749916,-0.12787142395973206,-0.22925683856010437,0.20574665069580078,-0.559745728969574,-1.4383580684661865,-0.024464478716254234,-1.0645661354064941,0.8121576309204102,0.20923428237438202,1.6063227653503418,-0.6183336973190308,0.13962773978710175,-0.4131009876728058,1.0784326791763306,-0.578291654586792,-0.07819877564907074,-0.6518456339836121,-1.1425807476043701,0.024442091584205627,-0.8000658750534058,-1.255655288696289,-0.5541988015174866,-1.1311230659484863,-0.7049540281295776,-0.8265062570571899,-0.3294757306575775,0.07026813924312592,0.7793426513671875,-0.5843340754508972,0.11973679065704346,1.0147602558135986,-1.0531936883926392,1.72801673412323,-0.09293484687805176,1.0548582077026367,-0.5590324997901917,0.22918479144573212,-0.7918766736984253,-0.20541301369667053,1.1054184436798096,0.50865238904953,-0.6433486938476562,0.6809273958206177,-1.1172223091125488,-0.17328405380249023,-0.24972762167453766,-0.7006827592849731,-0.2268611490726471,-0.6246961355209351,-0.7902219295501709,0.6795995831489563,-0.07251578569412231,-1.3567919731140137,0.5169751048088074,-0.3450686037540436,0.22972756624221802,-1.8414008617401123,-0.02305249124765396,0.36755701899528503,-0.4629005789756775,1.4860440492630005,-0.6739788055419922,-0.31130144000053406,0.07365459203720093,0.3009999990463257,0.4769403040409088,-0.6589559316635132,-0.6968764066696167,-0.4894986152648926,0.8466927409172058,0.5130226612091064,-0.952124297618866,-0.014910277910530567,-0.33814767003059387,-0.06963175535202026,0.03988097235560417,0.7344483137130737,-0.10511381924152374,-0.36427295207977295,0.3982805907726288,0.3482235074043274,0.3272586464881897,0.30385252833366394,0.5489466190338135,0.11724814772605896,-0.7953387498855591,1.3733134269714355,-1.2118151187896729,0.6907323598861694,0.48996543884277344,-1.1566773653030396,0.061894241720438004,0.12916278839111328,-0.44901883602142334,1.627784013748169,1.1023426055908203,0.37233495712280273,-0.45158350467681885,-0.41480541229248047,-0.4406116306781769,0.9953246116638184,-0.7430556416511536,-0.44245249032974243,-0.09467363357543945,-0.439149409532547,0.14672613143920898,-0.08943581581115723,-0.3515010476112366,0.35846424102783203,-1.160014271736145,-0.47346633672714233,1.1751962900161743,0.46579962968826294,-0.6318472623825073,0.4130476713180542,1.017198920249939,0.9854726791381836,-0.9202825427055359,-0.14999079704284668,-0.5787893533706665,-0.49783074855804443,0.9676342606544495,0.3983953595161438,-0.6308304071426392,0.4412769079208374,-0.5917291045188904,0.3315518796443939,-0.5233798623085022,-0.2683447301387787,-0.3426213562488556 -2926,0.7696936726570129,0.48848792910575867,-0.11807741969823837,0.3077496588230133,-0.44166669249534607,0.6517978310585022,0.8376055955886841,-0.40539827942848206,-0.5333628058433533,0.8185169100761414,-1.3984791040420532,0.12926897406578064,-0.030312033370137215,0.49732640385627747,-0.0415128618478775,0.6304139494895935,-0.3020405173301697,1.3981636762619019,0.36172178387641907,1.0727715492248535,0.48514237999916077,-0.02241581864655018,-1.1929739713668823,0.3097460865974426,0.662443995475769,-0.36794769763946533,-0.1263893097639084,-0.371597021818161,0.5899514555931091,1.0769399404525757,0.9451751112937927,0.04448556900024414,-0.3572138547897339,0.5739974975585938,-0.38517266511917114,0.18999072909355164,0.43210187554359436,0.5534842014312744,0.08344443887472153,0.8335334062576294,0.6223976612091064,1.0340778827667236,0.5892826318740845,-0.770170271396637,0.26315808296203613,-0.6544002890586853,-0.615272581577301,0.7456125020980835,-1.1748437881469727,-0.15317417681217194,0.07457207888364792,-0.6139629483222961,1.015729546546936,0.5354481935501099,0.7592632174491882,0.4908321797847748,0.1576150804758072,0.7952975630760193,0.43464818596839905,0.10595830529928207,-0.7589628100395203,0.6523988842964172,-0.18485234677791595,0.21673175692558289,0.016569344326853752,-0.10452238470315933,1.2922104597091675,-0.7543559670448303,0.4359131455421448,-0.09352418780326843,0.813396692276001,-0.2090240716934204,-0.0021461565047502518,1.098464012145996,0.018531544134020805,0.40691277384757996,0.07516565173864365,-0.1897553950548172,-1.0495927333831787,-0.5721049904823303,-0.5521244406700134,-0.16702452301979065,0.26384007930755615,0.9970192313194275,1.233520746231079,0.9227166771888733,0.04582573473453522,0.8623225092887878,-0.07234004884958267,-0.9871242642402649,1.2311904430389404,-0.3706747591495514,-0.9509869813919067,0.060397617518901825,-0.3457673192024231,0.7891319394111633,0.776297926902771,-0.17371661961078644,-0.39926856756210327,-0.14354488253593445,-0.9071695804595947,-1.4261184930801392,0.17476189136505127,0.5987864136695862,-0.4677062928676605,-0.3563460111618042,-0.5262142419815063,-0.6005510687828064,0.4420905113220215,-0.6122615933418274,-0.8655301928520203,0.21102853119373322,-0.8727750778198242,0.49755969643592834,0.12265988439321518,-1.0637205839157104,-1.355191707611084,0.05697879195213318,-0.2479785680770874,-0.23655545711517334,0.1984480321407318,-0.5670443773269653,-1.4614399671554565,-0.03176310285925865,-1.0718647241592407,0.8048589825630188,0.024497414007782936,1.5990241765975952,-0.1935921013355255,0.13232912123203278,-0.42039960622787476,1.0343477725982666,-0.9723246693611145,-0.0854974016547203,-0.6591442823410034,-0.8504804968833923,0.01714346744120121,-0.8073645234107971,-1.2629538774490356,-0.5614974498748779,-1.138421654701233,-0.712252676486969,-0.8338049054145813,-0.3367743492126465,0.263323575258255,0.7720440030097961,-0.5916327238082886,0.11243816465139389,0.3653663098812103,-0.6744192838668823,1.7207181453704834,-0.10023347288370132,1.0475596189498901,-1.3050826787948608,0.22188617289066315,-0.7991753220558167,-0.2127116322517395,1.098119854927063,0.5013537406921387,-0.6506473422050476,0.6736287474632263,-1.1245208978652954,-0.1805826723575592,-0.2570262551307678,-0.5942150950431824,-0.23415976762771606,-0.6319947838783264,-0.43799877166748047,0.6723009347915649,0.6726018786430359,-1.3640905618667603,0.509676456451416,-0.2850160300731659,0.22242894768714905,-1.8486994504928589,-0.03035111539065838,0.36025840044021606,-0.30396363139152527,1.2667388916015625,-0.6812774538993835,-0.318600058555603,0.12498626857995987,0.2937013804912567,0.46964168548583984,-0.5186225175857544,-0.7041750550270081,-0.49679723381996155,0.8393940925598145,0.18579056859016418,-0.9594229459762573,-0.02220890298485756,-0.34544628858566284,-0.07693038135766983,0.032582350075244904,0.2505001127719879,-0.11241244524717331,-0.3715715706348419,0.3909819722175598,0.3409248888492584,0.3199600279331207,0.29655390977859497,0.5416479706764221,0.1099495217204094,0.04907568544149399,1.366014838218689,-1.2191137075424194,0.6834337115287781,0.48266682028770447,-0.7879074811935425,0.054595619440078735,0.5217351317405701,-0.4563174545764923,1.6204854249954224,1.0950440168380737,0.36503633856773376,-0.42702674865722656,-0.42210403084754944,-0.44791024923324585,1.0621998310089111,-0.7503542900085449,-0.4497511088848114,-0.10197225958108902,-0.44644802808761597,0.0212030578404665,-0.5880066752433777,-0.35879966616630554,0.3799659311771393,-1.0655308961868286,-0.4418378472328186,1.1678977012634277,0.45850101113319397,-0.6391459107398987,0.40574905276298523,1.0099003314971924,0.9780754446983337,-0.98138827085495,-0.15728941559791565,-0.5860880017280579,-0.5051293969154358,0.9603356122970581,0.01993396319448948,-0.14414501190185547,0.43397828936576843,-0.5990277528762817,0.32425326108932495,-0.5306785106658936,-0.27564334869384766,-0.34991997480392456 -2927,0.7379602193832397,0.5650916695594788,-0.12179587781429291,0.3040311932563782,-0.3822687566280365,0.6480793952941895,0.8338871598243713,-0.4091167449951172,-0.537081241607666,0.8147984743118286,-1.0104373693466187,0.1255505084991455,-0.0340304933488369,0.49360793828964233,-0.04523131996393204,0.6266955137252808,-0.1032705083489418,1.385456919670105,0.35800331830978394,1.1660126447677612,0.4664444923400879,-0.026134276762604713,-1.1966924667358398,0.24652737379074097,0.7535105347633362,-0.37166616320610046,-0.13010777533054352,-0.37531548738479614,0.5862330198287964,1.1075584888458252,1.0161349773406982,0.05297672748565674,-0.360932320356369,0.570279061794281,0.026592738926410675,0.1862722635269165,0.42838340997695923,0.5497657656669617,0.07972598075866699,0.8298149704933167,0.6186792254447937,1.0303593873977661,0.5674677491188049,-0.7738887071609497,0.259439617395401,-0.658118724822998,-0.6189910173416138,0.7418940663337708,-1.1785622835159302,-0.15689264237880707,0.07085362076759338,-0.6176813840866089,1.0120110511779785,0.5317297577857971,0.7555447816848755,0.5926317572593689,0.15389661490917206,0.7915791273117065,0.4309297204017639,0.10223984718322754,-0.762681245803833,0.5402496457099915,-0.1885708123445511,0.21301329135894775,0.012850886210799217,-0.27170902490615845,1.28849196434021,-0.7580744028091431,0.43219467997550964,-0.09724264591932297,0.8635921478271484,-0.21274253726005554,-0.005864614620804787,1.0947455167770386,0.2185227870941162,0.7264026403427124,0.07144719362258911,-0.19347386062145233,-1.0533112287521362,-0.591307520866394,-0.5727274417877197,-0.17074298858642578,-0.14587178826332092,0.9933007955551147,1.1165621280670166,0.9732760190963745,0.04210727661848068,0.8586040735244751,-0.07605850696563721,-0.9908427000045776,1.227471947669983,-0.6007668375968933,-1.202019453048706,0.05667915940284729,-0.3494857847690582,0.19136080145835876,0.7725794911384583,-0.3640163540840149,-0.4029870331287384,-0.21181973814964294,-0.9108880162239075,-1.4298369884490967,0.17104342579841614,0.5950679779052734,-0.47142475843429565,-0.36006447672843933,-0.5299326777458191,-0.6042695045471191,0.43837204575538635,-0.6159800291061401,-0.869248628616333,0.20731006562709808,-0.3535979688167572,0.4938412308692932,0.11894142627716064,-1.067439079284668,-1.3589102029800415,0.053260333836078644,-0.25169703364372253,-0.3210776448249817,0.19472956657409668,-0.5707628130912781,-1.465158462524414,-0.03548156097531319,0.39572277665138245,0.8787412643432617,0.0207789558917284,1.2622076272964478,-0.19731056690216064,0.12861065566539764,0.07007796317338943,1.030629277229309,-0.5764324069023132,-0.08921585977077484,-0.6628627181053162,-1.364916443824768,0.013425009325146675,-0.8110829591751099,-1.2666723728179932,-0.5652158856391907,-1.1421401500701904,-0.7159711122512817,-0.837523341178894,-0.3404928147792816,0.2596051096916199,0.7683255672454834,-0.5953511595726013,0.10871970653533936,0.3616478443145752,-0.6781377196311951,1.7169996500015259,-0.10395193099975586,1.0438411235809326,-0.7909970283508301,0.21816770732402802,-0.4793190658092499,-0.21643009781837463,1.0944013595581055,0.49763527512550354,-0.6543657779693604,0.6699103116989136,-1.128239393234253,-0.2055312544107437,-0.26074472069740295,-0.710049569606781,-0.21971435844898224,-0.6357132196426392,-0.6957120299339294,0.6685824990272522,0.6688834428787231,-1.3678090572357178,0.4963587820529938,-0.15522116422653198,0.21871048212051392,-2.1495182514190674,-0.2543235719203949,0.35653993487358093,-0.3076820969581604,1.263020396232605,-0.5997076034545898,-0.532971203327179,-1.223096251487732,0.2899829149246216,0.4659232199192047,-0.5223409533500671,-0.7078934907913208,0.16358250379562378,0.8356756567955017,0.18207210302352905,-0.9631413817405701,0.1705358922481537,-0.349164754152298,-0.08064883947372437,0.02886389195919037,0.24678164720535278,-0.11613090336322784,-0.22865566611289978,0.3872635066509247,0.3372064232826233,0.3162415623664856,0.29283544421195984,0.5379295349121094,0.10623106360435486,-1.3057702779769897,1.3622963428497314,-1.222832202911377,0.6797152757644653,0.47894835472106934,-0.7916259169578552,0.0508771613240242,0.5180166959762573,-0.46003592014312744,1.6167669296264648,1.2873932123184204,0.36131787300109863,-0.4307452142238617,-0.42582249641418457,-0.6424281001091003,0.9613005518913269,-0.7540727257728577,-0.2838060259819031,-0.10569071769714355,-0.4302644729614258,-0.04400138556957245,-0.5917251110076904,-0.3625181317329407,0.3831162750720978,-1.0692493915557861,-0.293462336063385,1.1641792058944702,0.45478254556655884,-0.6428643465042114,0.4020305871963501,1.0061818361282349,0.5884044766426086,-0.9851067066192627,0.07250703126192093,-0.5898064374923706,-0.07958658784627914,0.9566171765327454,0.2255391627550125,-0.1478634774684906,0.4302598237991333,-0.6027461886405945,0.3205347955226898,-0.5343969464302063,-0.2793618142604828,-0.3536384403705597 -2928,0.7157830595970154,0.7194466590881348,-0.14397300779819489,0.2818540632724762,-0.4044458866119385,0.6259022355079651,0.8499804139137268,-0.43129387497901917,-0.5592584013938904,0.7926213145256042,-1.0326144695281982,0.17387309670448303,-0.056207627058029175,0.44594085216522217,-0.06740844994783401,0.6045183539390564,-0.12544764578342438,1.3817375898361206,0.33582618832588196,1.1438355445861816,0.4442673623561859,-0.04831140860915184,-0.8992099165916443,0.224350243806839,0.6654584407806396,-0.39384329319000244,-0.1522849053144455,-0.3974926173686981,0.564055860042572,1.0853813886642456,0.9939578175544739,0.03079959563910961,-0.383109450340271,0.5481019020080566,0.3784101903438568,0.16409513354301453,0.40620627999305725,0.5275886058807373,0.057548850774765015,0.8076378107070923,0.5154134035110474,1.0081822872161865,0.5452905893325806,-1.1185966730117798,0.23726248741149902,-0.6802958846092224,-0.6411681771278381,0.7197169065475464,-1.4244571924209595,-0.17906977236270905,0.048676490783691406,-0.6666490435600281,0.9876341223716736,0.47900035977363586,0.7333676218986511,0.5192113518714905,-0.05518239736557007,0.9451610445976257,0.40875259041786194,0.08006271719932556,-0.7848584055900574,0.5180724859237671,-0.21074794232845306,0.19083616137504578,-0.00932624563574791,-0.2938861548900604,1.3253217935562134,-0.7802515625953674,0.5043194890022278,-0.03203931450843811,0.8414149880409241,-0.23491966724395752,-0.028041746467351913,1.072568416595459,0.19634565711021423,0.704225480556488,0.049270063638687134,-0.3554464280605316,-1.0754883289337158,-0.5822837352752686,-0.41495493054389954,-0.19292011857032776,0.012290237471461296,0.9508509039878845,1.094385027885437,0.9510988593101501,0.8182249665260315,0.8364269137382507,0.17872369289398193,-1.0130198001861572,1.4439198970794678,-0.6908887624740601,-1.2241965532302856,0.2713688910007477,-0.3716629147529602,0.8263129591941833,0.7504023313522339,-0.38619348406791687,-0.4251641631126404,-0.23399686813354492,-0.5997908711433411,-1.4520140886306763,0.14886629581451416,0.6750686764717102,-0.4339706003665924,-0.3822416067123413,-0.8202119469642639,-0.42091742157936096,0.24858054518699646,-0.6381571888923645,-0.8914257884025574,0.1851329356431961,-0.44450077414512634,0.47166410088539124,-0.05029456317424774,-1.0896161794662476,-1.381087303161621,0.031083201989531517,-0.2738741636276245,0.7649667263031006,0.46194398403167725,-0.5929399728775024,-1.8668839931488037,-0.18962791562080383,0.37354564666748047,0.7636200785636902,-0.0013981759548187256,1.0244070291519165,-0.21948769688606262,0.10643352568149567,0.04790083318948746,0.9140562415122986,-0.5986095666885376,-0.11139298975467682,-0.897757887840271,-0.1558469831943512,-0.12218020856380463,-0.8332601189613342,0.8122182488441467,-0.587393045425415,-1.16431725025177,-0.7381482720375061,-0.8597005009651184,-0.3626699447631836,0.2374279797077179,0.31322214007377625,-0.6175283193588257,0.08654257655143738,0.3394707143306732,-0.7003148794174194,1.6948225498199463,-0.12612906098365784,0.867213785648346,-0.8403611779212952,0.19599057734012604,-0.5014961957931519,-0.2386072278022766,1.0722242593765259,0.47545814514160156,-0.7987351417541504,0.6477331519126892,-1.1504164934158325,0.8439081311225891,-0.28292185068130493,-0.7322267293930054,-0.24189148843288422,-0.6578903794288635,-0.7604772448539734,0.6464053392410278,0.6467062830924988,-1.3899861574172974,0.45978689193725586,-0.17739829421043396,0.19653335213661194,-1.230108380317688,-0.2765007019042969,0.33436280488967896,-0.3298592269420624,1.2408432960510254,-0.6218847632408142,-0.5551483631134033,-0.8143081068992615,0.2678057849407196,0.44374608993530273,-0.5445181131362915,-0.9883665442466736,-0.07521124184131622,0.8134984970092773,0.15989497303962708,-0.9853185415267944,0.1483587622642517,-0.21317613124847412,-0.10282596945762634,-1.1283303499221802,-0.15907999873161316,0.09022305905818939,-0.1929386556148529,0.3650863766670227,0.3150292932987213,0.4868277609348297,0.27065831422805786,0.515752375125885,-0.03942074626684189,0.08180555701255798,1.3401192426681519,-1.2450093030929565,0.7268879413604736,0.45677122473716736,-0.8138030767440796,0.028700029477477074,0.49583956599235535,-0.4822130501270294,1.5945898294448853,1.2652161121368408,0.33914074301719666,-0.45292234420776367,-0.44799962639808655,-0.6646052598953247,0.9391233921051025,-0.776249885559082,-0.30598315596580505,-0.12786784768104553,-0.45244160294532776,-0.05440998077392578,-0.6139022707939148,-0.38469526171684265,0.33633100986480713,-1.0914264917373657,-0.895730197429657,1.1678470373153687,0.43260541558265686,-0.6650415062904358,-0.45874670147895813,0.9840046763420105,0.5256571173667908,-1.388175368309021,0.05032990127801895,-0.611983597278595,-0.29887524247169495,0.934440016746521,0.01612098328769207,-0.3621043860912323,0.3545374572277069,-0.6249233484268188,0.29835766553878784,-0.5565741062164307,-0.30153894424438477,-0.37581557035446167 -2929,0.7461905479431152,0.4840289354324341,-0.11356549710035324,-0.12177292257547379,-0.21539348363876343,0.6563097238540649,0.8803879022598267,-0.4008863568305969,-0.5288509130477905,0.8230288028717041,-1.0022069215774536,0.10238359868526459,-0.02580011636018753,0.4763483703136444,-0.03700093924999237,0.6349258422851562,-0.3328721821308136,1.3274472951889038,0.3662337064743042,1.1742430925369263,0.47467488050460815,-0.017903897911310196,-0.8688024282455444,0.25475776195526123,0.6386569142341614,0.047654472291469574,-0.06397829949855804,-0.3670850992202759,0.5944633483886719,1.1157889366149902,1.0243653059005737,-0.09657671302556992,-0.35270193219184875,0.3668304979801178,0.40881770849227905,-0.2846659719944,0.43897923827171326,0.39680615067481995,0.08795636147260666,0.8237103223800659,0.5499566793441772,1.1264421939849854,0.732429563999176,-0.7962354421615601,0.26767000555992126,-0.6498883962631226,-0.40128540992736816,0.7501243948936462,-1.3940496444702148,-0.148662269115448,-0.21170011162757874,-0.6362415552139282,1.0180416107177734,0.5094078779220581,0.8093057870864868,0.5496188402175903,0.07231244444847107,0.9755685329437256,0.5276550054550171,0.1104702278971672,-0.7927712202072144,0.5484799742698669,-0.07784712314605713,0.24908068776130676,-0.712742269039154,-0.2634786367416382,1.355729341506958,-0.7498440742492676,0.5347269773483276,-0.001631803810596466,0.8718224763870239,-0.20451214909553528,0.002365764230489731,1.1029759645462036,0.22675317525863647,0.7504421472549438,0.04216634854674339,0.22640460729599,-1.0450807809829712,-0.5518762469291687,-0.3845474123954773,-0.16251260042190552,0.04269775003194809,0.9812583923339844,1.1247925758361816,0.98150634765625,0.4480781853199005,0.8668344020843506,0.20913121104240417,-1.2629003524780273,1.0663903951644897,-0.6604812741279602,-0.6549807190895081,0.3017764091491699,-0.34125539660453796,0.10187133401632309,0.7808098196983337,-0.35578596591949463,-0.39475664496421814,-0.20358934998512268,-0.5693833827972412,-1.4216065406799316,0.1792738139629364,0.7054761648178101,-0.5755759477615356,-0.4038977324962616,-0.5549734830856323,-0.3905099034309387,0.2789880633354187,0.2744496166706085,-0.8709660768508911,0.21554043889045715,-0.4140932559967041,0.5020716190338135,-0.019887052476406097,-1.059208631515503,-1.3826873302459717,0.06149071455001831,-0.3270490765571594,0.7953742146492004,0.4923515021800995,-0.5625324845314026,-1.836476445198059,-0.1592203974723816,-0.7146809697151184,0.79402756690979,0.02900933474302292,1.0548145771026611,-0.18908017873764038,0.1368410289287567,0.0783083438873291,0.7319461107254028,-0.9076119065284729,0.08040577918291092,-0.8673503994941711,-0.12543946504592896,-0.09177269786596298,-0.8028526306152344,-0.5090528726577759,-0.5569855570793152,-1.3724998235702515,-0.6448614597320557,-0.8292930126190186,-0.33226242661476135,0.26783549785614014,-0.4948789179325104,-0.5871208310127258,0.11695008724927902,0.36987823247909546,-0.6699073910713196,1.725230097770691,-0.09572155028581619,0.9397848844528198,-0.8099536895751953,0.4497475326061249,-0.4710886776447296,-0.20819970965385437,0.8880877494812012,0.5058656334877014,-1.1367067098617554,0.6781406402587891,-1.120008945465088,0.14097025990486145,-0.36026278138160706,-0.7018192410469055,-0.45143362879753113,-0.6274828910827637,-0.7300697565078735,0.22731605172157288,0.7379748225212097,-1.3595786094665527,0.4297485053539276,-0.14699077606201172,0.22694087028503418,-1.1997008323669434,-0.22460123896598816,0.3647703230381012,-0.29945170879364014,1.27125084400177,-0.5914772748947144,-0.5247408747673035,-0.7839006185531616,0.29821330308914185,0.474153608083725,-0.5141106247901917,-0.9579590559005737,-0.12335891276597977,0.8439059853553772,0.366767555475235,-1.2570711374282837,0.17876628041267395,-0.18276861310005188,-0.0724184587597847,-1.0979228019714355,-0.5054553151130676,0.12063056975603104,-0.09768033772706985,0.39549389481544495,0.34543681144714355,0.28823259472846985,0.3010658323764801,0.8678663969039917,-0.009013235569000244,0.3488840162754059,1.3705267906188965,-1.214601755142212,0.7572954297065735,0.4871787428855896,-0.7833955883979797,0.05910754203796387,0.6594746708869934,-0.4518055319786072,1.3323085308074951,1.444390892982483,0.3695482611656189,-0.6068273186683655,-0.4175921082496643,0.19925948977470398,0.9695308804512024,-1.2679622173309326,-0.2755756378173828,-0.09746033698320389,-0.4220340847969055,-0.024002470076084137,-0.5834947824478149,-0.3542877435684204,0.3630259037017822,-1.061018943786621,-0.8653227090835571,1.1982545852661133,0.26668182015419006,-0.6346340179443359,-0.4283391833305359,1.0144121646881104,0.5560646057128906,-1.3577678203582764,0.0807374119758606,-0.5815761089324951,-0.2684677243232727,0.8970329165458679,0.046528495848178864,-0.29866060614585876,0.38494497537612915,-0.594515860080719,0.3287651836872101,-0.5261666178703308,-0.2711314260959625,-0.34540805220603943 -2930,0.7647899985313416,0.407571017742157,-0.12852823734283447,0.45571663975715637,-0.4747287333011627,0.6413469910621643,0.865425169467926,-0.41584908962249756,-0.5438136458396912,0.8080660700798035,-1.921864628791809,0.05778269097208977,-0.040762852877378464,0.4613856375217438,-0.260031133890152,0.6199631094932556,-0.09178043156862259,1.3124845027923584,0.37306517362594604,1.1189945936203003,0.5719997882843018,-0.03286663442850113,0.04655933007597923,0.4590481221675873,0.6236941814422607,-0.5058445334434509,-0.021889083087444305,-0.3820478320121765,0.5795006155967712,1.1008261442184448,1.0094025135040283,-0.11153945326805115,-0.34721267223358154,0.35186776518821716,0.6745334267616272,0.1327134668827057,0.4240165054798126,0.3818434178829193,0.07299362123012543,0.8028897047042847,0.5349939465522766,1.11147940158844,0.7174668312072754,-0.8111981749534607,0.25270727276802063,-0.4704812169075012,-0.3941575586795807,0.7351616621017456,-0.9882692694664001,-0.16362500190734863,-0.22666284441947937,-0.6512042880058289,1.060947299003601,0.49444514513015747,0.7943430542945862,0.5346561074256897,0.057349707931280136,1.1813808679580688,0.42775318026542664,0.09550748765468597,-0.807733952999115,0.5335172414779663,-0.5889344811439514,0.23411795496940613,-0.7277050018310547,-0.2784413695335388,1.3407665491104126,-0.6815470457077026,0.519764244556427,-0.0165945403277874,0.8568597435951233,-0.2194748818874359,-0.012596973218023777,1.0880131721496582,0.10961688309907913,0.28813907504081726,0.02720361202955246,0.21144187450408936,-0.6382677555084229,-0.6041291356086731,-0.39951014518737793,-0.5505046248435974,0.10688310116529465,0.9662956595420837,1.1098297834396362,0.9665436148643494,0.5201771855354309,0.85187166929245,0.19416847825050354,-2.6222639083862305,1.0514276027679443,-0.8489569425582886,-0.5124471187591553,0.2868136763572693,-0.3562181293964386,0.08690859377384186,0.7658470869064331,-0.37074869871139526,-0.4097193777561188,-0.21855208277702332,-0.5843461155891418,-1.436569333076477,0.16431108117103577,0.8874045610427856,-0.5905386805534363,-0.3934513330459595,-0.569936215877533,-0.40547263622283936,0.26402533054351807,-0.20368170738220215,-0.8859288096427917,0.20057770609855652,-0.6061050891876221,0.48710888624191284,-0.03484978899359703,-1.0741714239120483,-1.397650122642517,0.04652797803282738,-0.34201180934906006,0.7804114818572998,0.47738876938819885,-0.5774952173233032,-1.8514392375946045,-0.13183622062206268,-0.729643702507019,0.8222463726997375,0.01404659729450941,1.0398517847061157,-0.3137785792350769,0.1563756763935089,0.06334560364484787,0.7169833779335022,-0.9225746393203735,0.06544303894042969,-0.8823131322860718,-0.1404021978378296,-0.10673543810844421,-0.817815363407135,0.18637537956237793,-0.5719482898712158,-0.027550403028726578,-0.6598241925239563,-0.8442557454109192,-0.347225159406662,0.2528727650642395,-0.5098416805267334,-0.6020835638046265,0.10198734700679779,0.3549154996871948,-0.6848701238632202,1.6506881713867188,-0.11068429052829742,0.9248221516609192,-0.824916422367096,0.43478479981422424,-0.13100194931030273,-0.680528461933136,0.8731250166893005,0.4909029006958008,-1.1516695022583008,0.7326386570930481,-1.5331575870513916,0.12600752711296082,-0.21248199045658112,-0.7167819738388062,-0.46639636158943176,-0.6424456238746643,-0.7450324892997742,0.21235331892967224,0.7230120897293091,-0.17579764127731323,0.414785772562027,-0.3083752393722534,0.21197813749313354,-1.2146636247634888,-0.2395639717578888,0.34980759024620056,-0.31441444158554077,1.170005202293396,-0.606440007686615,-0.5397036075592041,-0.7988633513450623,0.2832505702972412,0.15404057502746582,-0.3161287009716034,-0.9729217886924744,0.817207396030426,0.8289432525634766,0.35180482268333435,-0.932735025882721,0.16380354762077332,-0.19773134589195251,-0.08738119900226593,-1.112885594367981,-1.212332010269165,0.1056678295135498,-0.11264307796955109,0.3805311620235443,0.3304740786552429,0.2732698619365692,0.28610309958457947,0.8529036641120911,-0.023975972086191177,0.33392128348350525,1.355563998222351,-1.2295645475387573,0.49827224016189575,0.5732449889183044,-0.533409059047699,0.044144805520772934,0.6445119380950928,-0.4667682647705078,1.2310349941253662,1.4294281005859375,0.35458552837371826,-0.6217900514602661,-0.43255484104156494,0.18429675698280334,0.9545681476593018,-1.282925009727478,-0.39658746123313904,-0.11242307722568512,-0.43699681758880615,-0.03896520659327507,-0.5984575152397156,-0.36925047636032104,0.3480631709098816,-1.0759817361831665,-0.8802854418754578,1.2154477834701538,0.25171908736228943,-0.6495967507362366,-0.4433019161224365,0.9380607604980469,0.6499778628349304,-0.9663626551628113,0.7694476246833801,-0.8375789523124695,-0.28343045711517334,0.6759510040283203,0.03156575933098793,-0.3136233389377594,0.7472988963127136,-0.6094785928726196,0.5545338988304138,-0.5411293506622314,-0.28609415888786316,-0.36037078499794006 -2931,0.7780600190162659,0.7038217782974243,-0.28013986349105835,0.4689866304397583,-0.4614587426185608,0.6546170115470886,0.8786951899528503,-0.40257909893989563,-0.9912852048873901,0.8213360905647278,-1.9085946083068848,0.071052685379982,-0.06988734006881714,0.4746556282043457,-0.24676114320755005,0.6332331299781799,-0.07851043343544006,1.3801521062850952,0.386335164308548,1.1322646141052246,0.5852698087692261,-0.019596638157963753,0.07516343146562576,0.4723181128501892,0.6369642019271851,-0.492574542760849,-0.008619086816906929,-0.3687778413295746,0.5827628970146179,1.0552350282669067,1.0226725339889526,-0.09826945513486862,-0.9456962943077087,0.20594336092472076,0.9022355675697327,0.14598345756530762,0.43728649616241455,0.39511340856552124,0.13333448767662048,0.816159725189209,0.5482639670372009,1.1247494220733643,0.734700620174408,-0.845304012298584,0.26597726345062256,-0.4572112262248993,-0.38088756799697876,0.7484316825866699,-0.9749992489814758,-0.1503550112247467,0.018344974145293236,-0.6379342675209045,1.0742173194885254,0.553902268409729,0.9503865242004395,0.6107652187347412,0.07061970233917236,1.1946508884429932,0.44102317094802856,-0.7054982781410217,-0.7944639325141907,0.5467872619628906,-0.5756644606590271,0.05856529623270035,-0.7144349813461304,-0.21332672238349915,1.354036569595337,-0.273288756608963,0.5330342650413513,0.007933796383440495,0.8701297640800476,-0.20620489120483398,0.0006730230525135994,1.1012831926345825,0.12288688123226166,0.3014090657234192,0.11776944249868393,0.16451169550418854,-0.6249977350234985,-0.6184333562850952,-0.3920666575431824,-0.5372346043586731,0.12015309929847717,0.9795656800270081,1.1230998039245605,0.9798136353492737,0.5334472060203552,0.8651416897773743,0.3197481036186218,-1.3037458658218384,1.3357840776443481,-1.1856554746627808,-0.49917712807655334,0.3000836670398712,-0.34294813871383667,0.10017859190702438,0.7791171073913574,-0.35747870802879333,-0.39644938707351685,-0.2052820920944214,-1.938888430595398,-1.4232993125915527,0.1775810718536377,0.90067458152771,-0.577268660068512,-0.38018134236335754,-0.5596635937690735,-0.3922026455402374,0.056375183165073395,-0.38398227095603943,-0.8726587891578674,0.21384769678115845,-0.06358882039785385,0.5384846925735474,-0.11837188154459,-1.060901403427124,-1.7198292016983032,0.059797972440719604,-0.32874181866645813,0.5435874462127686,0.19582661986351013,-0.5642251968383789,-1.8381692171096802,-0.0803818479180336,0.42693695425987244,0.8355163931846619,-1.0668094158172607,1.1750450134277344,-0.03368630260229111,0.16964566707611084,0.0766156017780304,0.7302533984184265,-0.9093046188354492,0.07871303707361221,-0.8690431118011475,0.034994252026081085,-0.09346543997526169,-0.5424844026565552,0.19964537024497986,-0.5586782693862915,-0.22792235016822815,-0.7214301824569702,-0.8309857249259949,-0.33395516872406006,-1.5303088426589966,-0.49657168984413147,-0.5888135433197021,0.4666844308376312,0.36818549036979675,-0.6716001033782959,1.7133787870407104,-0.0974142923951149,0.9380921721458435,-0.44367074966430664,0.44805479049682617,-0.09738890081644058,-0.09428807348012924,0.7531614899635315,0.5041729211807251,-1.1383994817733765,0.7459086775779724,-1.5198875665664673,0.13927751779556274,-0.1992119997739792,-0.7035119533538818,-0.2790062129497528,-0.62917560338974,-0.7317624688148499,0.22562330961227417,0.7362821102142334,0.243586927652359,0.44310253858566284,-0.2951052486896515,0.22524812817573547,-1.2013936042785645,-0.37440523505210876,0.3630775809288025,-0.30114445090293884,1.1832752227783203,-0.671549916267395,-0.23597273230552673,-0.7855933308601379,-1.0015822649002075,0.09175263345241547,-0.30285871028900146,-0.95965176820755,0.7315489649772644,0.8422132730484009,0.3650748133659363,-1.0965392589569092,0.17707353830337524,-0.18446135520935059,-0.0741112008690834,-1.0996155738830566,-1.1990619897842407,0.11893782764673233,-0.09937307983636856,0.39380115270614624,0.34374406933784485,0.28653985261917114,0.2993730902671814,0.8661736845970154,-0.010705975815653801,-0.3532670736312866,1.2413822412490845,-1.216294527053833,0.5115422606468201,0.5865150094032288,-0.5201390385627747,0.05741479992866516,0.620055615901947,-0.4534982740879059,1.2443050146102905,1.4426981210708618,0.3678555190563202,-0.6085200309753418,-0.419284850358963,-0.373735249042511,0.9678381681442261,-1.2696549892425537,-0.3833174705505371,0.25932836532592773,-0.4237268269062042,-0.025695210322737694,-0.5851874947547913,-0.3559804856777191,0.3613331615924835,-0.49906739592552185,-0.8326558470726013,1.2287178039550781,0.26498907804489136,-0.6363267302513123,-0.4300319254398346,0.9072772860527039,0.6632478833198547,-0.953092634677887,0.7827176451683044,-0.8653063774108887,-0.2701604664325714,1.041509747505188,0.04483575373888016,-0.704746425151825,0.7605689167976379,-0.5962085723876953,0.7118779420852661,-0.5278593301773071,-0.27282416820526123,-0.34710079431533813 -2932,0.784198522567749,0.5723044276237488,-0.2740013599395752,0.47512513399124146,-0.45532023906707764,0.6498521566390991,0.7766411304473877,-0.3964405953884125,-1.0227124691009521,0.8720688223838806,-0.8304752707481384,0.07719117403030396,-0.4516693353652954,0.6915180087089539,-0.3265101909637451,0.6393716335296631,-0.2009531557559967,1.3706908226013184,0.39247366786003113,1.138403058052063,0.5914083123207092,0.4231705665588379,0.08130192011594772,0.47845661640167236,0.9332084059715271,-0.48643603920936584,-0.0024805967696011066,-0.36263933777809143,0.8241888880729675,1.0613734722137451,1.028810977935791,-0.09213096648454666,-0.9395577907562256,0.21208184957504272,0.2973422408103943,0.15212194621562958,0.4434249997138977,0.552008330821991,-0.34859931468963623,0.8222982287406921,0.5544024705886841,1.1308878660202026,0.7408391237258911,-0.8391655087471008,0.2721157670021057,-0.24066618084907532,-0.0899481326341629,0.7545701861381531,-0.9688607454299927,-0.14421652257442474,-0.07099956274032593,-0.6317957639694214,1.0803557634353638,0.5827354788780212,0.8017730712890625,0.52175372838974,0.07675819098949432,1.2007893323898315,0.4471616744995117,-0.6993597745895386,-0.7883254289627075,0.38535356521606445,-0.569525957107544,0.269228994846344,-0.244464710354805,-0.20718823373317719,1.3601750135421753,-0.26844683289527893,0.5391727685928345,0.01407228596508503,0.8762682676315308,-0.20006640255451202,-0.024312103167176247,1.107421636581421,0.12902536988258362,0.23585154116153717,0.0691516101360321,0.1706501841545105,-0.6188592314720154,-0.6122948527336121,-0.3859281539916992,-0.5310961008071899,-0.030851928517222404,0.9857041835784912,1.0635639429092407,0.9749991297721863,0.5395857095718384,0.8712801933288574,0.325886607170105,-1.297607421875,1.3419225215911865,-1.2514280080795288,-0.4930386245250702,0.30622217059135437,-0.43331921100616455,0.10631708055734634,0.9595451951026917,-0.3513402044773102,-0.38451722264289856,-0.19914360344409943,-1.9327499866485596,-1.4171608686447144,0.18371956050395966,0.9068130850791931,-0.5711301565170288,-0.3740428388118744,-0.5535250902175903,-0.3860641419887543,0.4044150412082672,-0.3778437674045563,-1.1995842456817627,0.2199861854314804,-0.05745033174753189,0.3855365514755249,0.11076147109270096,-1.0547629594802856,-1.1482844352722168,0.06593646109104156,-0.322603315114975,-0.38024085760116577,0.2019651085138321,-0.5580866932868958,-1.2180068492889404,-0.07424335926771164,-1.059306263923645,0.841654896736145,-0.8628644943237305,1.599351167678833,-0.027547812089323997,0.28034549951553345,0.08275409042835236,0.7866347432136536,-0.9031661152839661,-0.029348498210310936,-0.9072699546813965,0.041132740676403046,-0.08732695132493973,-0.6138363480567932,0.20578385889530182,-0.5525397658348083,-0.2217838615179062,-0.7152916789054871,-0.8248472213745117,-0.5479803085327148,-1.5241703987121582,0.07604028284549713,-0.582675039768219,0.4728229343891144,0.3743239939212799,-0.6654615998268127,1.7195172309875488,-0.09127580374479294,0.9442306756973267,-0.4375322461128235,-0.8414182066917419,-0.09125041216611862,-0.08814958482980728,0.11912451684474945,0.5103114247322083,-1.132261037826538,0.7520471811294556,-1.513749122619629,0.1454160064458847,-0.057314708828926086,-0.6973734498023987,-0.27286770939826965,-0.6230370998382568,-0.7256239652633667,0.23176179826259613,0.7424206137657166,0.24972541630268097,0.0926133543252945,-0.28896674513816833,0.4042189121246338,-1.195255160331726,-0.3682667315006256,0.36921608448028564,-0.2950059473514557,1.1894136667251587,-0.16871054470539093,-0.2630276381969452,-0.7794548273086548,-0.9954437613487244,0.4386811852455139,-0.2967202067375183,-0.9535132646560669,1.0451090335845947,0.848351776599884,0.37121331691741943,-1.0904008150100708,0.1832120269536972,-0.17832286655902863,0.02802056260406971,-1.0934771299362183,-1.1929235458374023,0.1250763237476349,0.22202469408512115,0.17608393728733063,0.4882926046848297,0.2926783561706543,0.30551159381866455,0.8723121881484985,-0.004567485768347979,-0.6419757008552551,1.3245265483856201,-1.2101560831069946,0.5176807641983032,0.5926535129547119,-0.5140005350112915,0.06355328857898712,0.6956035494804382,-0.44735977053642273,1.250443458557129,1.4488365650177002,0.32505738735198975,-0.6023815274238586,-0.43625277280807495,-0.36759674549102783,1.0263432264328003,-1.3137147426605225,-0.37717896699905396,0.2654668688774109,-0.41758832335472107,-0.019556719809770584,-0.5790489912033081,-0.34984198212623596,0.31306883692741394,-0.4929288923740387,-0.8265173435211182,1.2348562479019165,-0.647969663143158,-0.6301882266998291,-0.42389342188835144,0.913415789604187,0.883072018623352,-0.9469541311264038,0.3095005452632904,-0.8591678738594055,0.006432102527469397,1.0476481914520264,0.05097424238920212,-0.9194852709770203,0.7667074203491211,-0.5900700688362122,0.7180164456367493,-0.521720826625824,-0.2666856646537781,-0.340962290763855 -2933,0.7816802263259888,0.5696538090705872,-0.2766519784927368,0.47247451543807983,-0.45797085762023926,0.6719324588775635,0.960651159286499,-0.3990912139415741,-1.0253630876541138,0.8350611329078674,-0.8331258893013,0.07454054057598114,-0.45431995391845703,0.2301095575094223,-0.32916080951690674,0.6367210149765015,-0.2568063735961914,1.3680402040481567,0.3898230493068695,1.1357524394989014,0.5887576937675476,0.4575522541999817,0.07865128666162491,0.47580599784851074,0.9305577874183655,-0.48908665776252747,-0.00513122882694006,-0.36528995633125305,0.7041147351264954,1.0587228536605835,1.0261603593826294,-0.09478159993886948,-0.9422084093093872,0.2094312161207199,0.26092052459716797,-0.17187145352363586,0.5340131521224976,0.5174519419670105,-0.22144310176372528,0.8196476101875305,0.49625349044799805,1.128237247467041,0.662451982498169,-0.8418161273002625,0.5034468770027161,-0.24331681430339813,-0.07923810929059982,0.8066201210021973,-0.9555681347846985,-0.14686715602874756,-0.07365019619464874,-0.634446382522583,1.1002438068389893,0.5800848603248596,0.7991224527359009,0.5191031098365784,0.05930527299642563,0.8356355428695679,0.4713817834854126,-0.7020103931427002,-0.8421691060066223,0.38270294666290283,-0.5721765756607056,0.2665783762931824,-0.2471153438091278,-0.2098388671875,1.3575243949890137,-0.6411511898040771,0.5365221500396729,0.011421654373407364,0.8736176490783691,-0.39600419998168945,-0.06047016382217407,1.1047710180282593,0.17180652916431427,0.3583301305770874,0.06650097668170929,0.16799955070018768,-0.621509850025177,-0.6052389740943909,-0.4535379111766815,-0.5337467193603516,-0.03350256010890007,0.9830535650253296,1.060913324356079,0.9723485112190247,0.5369350910186768,0.8686295747756958,0.16342967748641968,-1.3002580404281616,1.339271903038025,-0.43582844734191895,-0.4956892430782318,0.30357155203819275,-0.43596982955932617,0.10366644710302353,0.95689457654953,-0.3539908230304718,-0.3871678411960602,-0.20179423689842224,-1.9354006052017212,-1.084014654159546,0.18106892704963684,0.9041624665260315,-0.49127840995788574,-0.376693457365036,-0.6491518616676331,-0.21288985013961792,0.4017644226551056,-0.3804943859577179,-1.2022348642349243,0.45039743185043335,-0.060100965201854706,0.3828859329223633,0.10811083763837814,-1.0574135780334473,-1.1509350538253784,0.19316287338733673,-0.3252539336681366,0.07314307987689972,0.19931447505950928,-0.5607373118400574,-1.08735191822052,-0.07689399272203445,-0.4327855706214905,0.8390042781829834,-0.8655151128768921,1.5967005491256714,-0.030198443681001663,0.2776948809623718,0.08010345697402954,0.8064917922019958,-0.9058167338371277,-0.0319991298019886,-0.398340106010437,0.03848210722208023,-0.08997758477926254,-0.6164869666099548,0.203133225440979,-0.55519038438797,-0.224434494972229,-0.5645835399627686,-0.8274978399276733,-0.5506309270858765,-1.5268210172653198,0.07140480726957321,-0.5853256583213806,0.21891666948795319,0.3947295546531677,-0.6681122183799744,1.7168666124343872,-0.09392643719911575,0.9565833806991577,-0.4401828646659851,0.20841936767101288,-0.09390104562044144,-0.0908002182841301,0.11647388339042664,0.5076608061790466,-1.1349116563796997,0.749396562576294,-1.5163997411727905,0.3982588052749634,0.025020228698849678,-0.7000240683555603,-0.2755183279514313,-0.6256877183914185,-0.7282745838165283,0.22911116480827332,0.6085526943206787,-0.28589731454849243,0.35467201471328735,-0.29161736369132996,0.8129527568817139,-1.1979057788848877,-0.37091735005378723,0.366565465927124,-0.5974447131156921,1.186763048171997,-0.17136117815971375,-0.2656782567501068,-0.7821054458618164,-0.998094379901886,0.4360305666923523,-0.29937082529067993,-0.9266685247421265,1.042458415031433,0.8457011580467224,0.3685626983642578,-1.0930514335632324,-0.2550112009048462,-0.42661434412002563,-0.5822710394859314,-1.0961277484893799,-1.195574164390564,0.12242569029331207,0.21937406063079834,0.5462312698364258,0.4856419861316681,0.6914274096488953,0.30286097526550293,0.8229414224624634,-0.007218117825686932,-0.32571953535079956,1.3218759298324585,-1.2128067016601562,0.5437449812889099,0.5900028944015503,-0.5166511535644531,0.06090265512466431,0.6929529309272766,-0.45001038908958435,1.2477928400039673,1.4461859464645386,-0.24228717386722565,-0.6050321459770203,-0.4389033913612366,-1.077170968055725,0.9811515212059021,-1.316365361213684,-0.3798295855522156,-0.5456448793411255,-0.9175992012023926,-0.010453512892127037,-0.5238093137741089,-1.0944418907165527,0.3104182183742523,-0.4955795109272003,-0.9058732390403748,1.2322056293487549,-0.6506202816963196,-0.05131120979785919,-0.42654404044151306,0.9107651710510254,0.8804214000701904,-1.3357558250427246,0.3068499267101288,0.1578565090894699,-0.1514870524406433,1.0449975728988647,0.0483236089348793,-0.9266809821128845,0.7640568017959595,-0.3040614128112793,0.5167225003242493,-0.5243714451789856,-0.2693362832069397,-0.3436129093170166 -2934,0.7618523240089417,0.5510267615318298,-0.35038331151008606,0.4538474678993225,-0.27735674381256104,0.6533054113388062,0.9327344298362732,-0.4177182614803314,-1.043990135192871,0.8164340853691101,-0.8517529368400574,0.2463962435722351,-0.30270126461982727,0.21148250997066498,-0.34778785705566406,0.6294807195663452,-0.27543342113494873,1.3494131565093994,0.3711960017681122,1.112674593925476,0.13750788569450378,0.340920627117157,-0.7252125144004822,0.3830139935016632,0.8676824569702148,-0.3310242295265198,-0.02375827357172966,-0.3974287509918213,0.685487687587738,1.0400958061218262,1.1518850326538086,-0.1134086474776268,-0.6225318908691406,0.19080416858196259,0.058455392718315125,0.2986713647842407,0.49723321199417114,0.4988248944282532,-0.2400701493024826,0.8010205626487732,0.4776264429092407,1.1096101999282837,0.6438249349594116,-0.8604431748390198,0.48481982946395874,-0.26194384694099426,-0.09786515682935715,0.8047760725021362,-0.9741951823234558,-0.16549420356750488,-0.09227724373340607,-0.7513356804847717,1.081616759300232,0.5614578127861023,1.0776633024215698,0.500476062297821,0.020896339789032936,0.8170084953308105,0.48987728357315063,-0.7206374406814575,-1.0080888271331787,0.3640758991241455,-0.5908036231994629,0.24795132875442505,-0.26574239134788513,-0.22846591472625732,1.3388973474502563,-0.6597782373428345,0.39756709337234497,-0.007205391302704811,0.9712480306625366,-0.4146312475204468,-0.0790972113609314,1.086143970489502,0.15317948162555695,0.3397030830383301,0.047873929142951965,0.14937250316143036,-0.6401368975639343,-0.6238660216331482,-0.46590641140937805,-0.5523737668991089,-0.052129603922367096,0.9644265174865723,1.069865107536316,0.9537214636802673,0.5183080434799194,0.8500025272369385,0.14480262994766235,-1.36513352394104,1.3206448554992676,-0.8685336709022522,-0.8177201747894287,0.2849445044994354,-0.4545968770980835,0.0850393995642662,0.9382675290107727,-0.3726178705692291,-0.4057948887348175,-0.5381383895874023,-1.9540276527404785,-1.1026417016983032,0.16244187951087952,0.8855354189872742,-0.7004241943359375,-0.3744644522666931,-0.6677789092063904,-0.23151689767837524,0.20557968318462372,-0.3991214334964752,-1.2208619117736816,0.431770384311676,-0.07872801274061203,0.36425888538360596,0.08948379009962082,-1.0760406255722046,-0.772489607334137,0.1745358258485794,-0.3438809812068939,0.3035278916358948,0.914512574672699,-0.9841448664665222,-1.1059789657592773,-0.09552104026079178,-0.4514126181602478,0.8203772306442261,-0.8841421604156494,1.578073501586914,-0.04882548749446869,0.2590678334236145,0.06147640943527222,0.7878647446632385,-0.924443781375885,-0.05062617361545563,-0.41696715354919434,0.019855061545968056,-0.10860463231801987,-0.6351140141487122,0.18450617790222168,-0.6259440183639526,0.35475367307662964,-0.5832105875015259,-0.8461248874664307,-0.5692579746246338,0.16248857975006104,0.05277775973081589,-0.6039527058601379,0.5819639563560486,0.3761025071144104,-0.6867392659187317,1.695994257926941,-0.11255348473787308,0.9379563331604004,-0.45880991220474243,-0.776400089263916,-0.11252809315919876,-0.10942726582288742,0.09784683585166931,0.4890337586402893,-1.153538703918457,0.7307695150375366,-1.5350267887115479,0.37963175773620605,0.21790958940982819,-0.7186511158943176,-0.15950016677379608,-0.6443147659301758,-0.7469016313552856,0.210484117269516,0.5899256467819214,-0.30452436208724976,0.33604496717453003,-0.3102444112300873,0.7943257093429565,-1.216532826423645,-0.38954439759254456,0.3479384183883667,-0.6160717606544495,1.1681360006332397,-0.18998822569847107,-0.28430530428886414,-0.8782971501350403,-1.0167213678359985,0.41740351915359497,-0.31799787282943726,-0.9452955722808838,1.0238313674926758,0.8270741105079651,0.3499356508255005,-1.1116784811019897,-0.2736382484436035,-0.060457974672317505,-0.34017661213874817,-1.1147547960281372,-0.9922511577606201,0.10379864275455475,0.20074701309204102,0.7975939512252808,0.46701493859291077,0.6728003621101379,0.2842339277267456,0.9946020841598511,-0.3434714376926422,-0.3443465828895569,1.3590238094329834,-1.2314337491989136,0.5251179337501526,0.08224692940711975,-0.5352782011032104,0.04227560758590698,0.715779185295105,-0.4686374366283417,1.22916579246521,1.4275588989257812,-0.2609142065048218,-0.6236591935157776,-0.28168922662734985,-1.4845072031021118,0.9625244736671448,-1.3349924087524414,-0.3984566330909729,-0.5642719268798828,-0.6455702781677246,-0.3257174491882324,-0.43841618299484253,-1.152753472328186,0.24507158994674683,0.5864206552505493,-0.6737121343612671,1.2135785818099976,-0.6692473292350769,-0.06993825733661652,-0.4451710879802704,0.8921381235122681,0.8617943525314331,-0.09162735939025879,0.28822287917137146,0.13922946155071259,-0.5440504550933838,1.0263705253601074,0.029696563258767128,-0.9453080296516418,0.7454297542572021,-0.4347078204154968,0.974942684173584,-0.5429984927177429,-0.287963330745697,-0.3622399568557739 -2935,0.7690636515617371,0.5582380890846252,-0.42330390214920044,0.46105876564979553,-0.15418952703475952,0.6605167388916016,0.8523057699203491,-0.24325750768184662,-1.0367788076400757,0.8236454129219055,-0.844541609287262,0.20976968109607697,-0.29548996686935425,0.2186938226222992,-0.34057655930519104,0.6366920471191406,-0.2682221233844757,1.3566244840621948,0.515641450881958,1.1198859214782715,0.144719198346138,0.34813192486763,-0.7180011868476868,0.3265903890132904,0.8748937845230103,-0.32381293177604675,-0.024087008088827133,-0.00824730470776558,0.6926990151405334,1.130318284034729,1.1397234201431274,-0.10619734227657318,-0.6153205633163452,0.1980154812335968,0.06566669791936874,0.30588266253471375,0.5044445395469666,0.5060362219810486,-0.09700096398591995,0.8082318902015686,0.48483774065971375,1.1168572902679443,0.6785232424736023,-0.8532318472862244,0.49203112721443176,-0.25473254919052124,-0.34812313318252563,0.8577481508255005,-0.753591775894165,-0.15828289091587067,0.42080453038215637,-0.7441243529319763,1.0888280868530273,0.5686691403388977,1.0848746299743652,0.5076873898506165,-0.11151653528213501,1.0167067050933838,0.49708858132362366,-0.7134261131286621,-0.992385983467102,0.37128719687461853,-0.0054087829776108265,0.25516262650489807,-0.2585310935974121,-0.2212546020746231,1.3461086750030518,-0.6525669097900391,0.48543596267700195,5.917157977819443e-06,0.978459358215332,-0.40741994976997375,-0.07188590615987778,1.0933552980422974,0.16039079427719116,-0.09807654470205307,0.05508523806929588,0.15658381581306458,-1.073011875152588,-0.6166546940803528,-0.4692363142967224,-0.5451624393463135,-0.04491829499602318,0.9716378450393677,1.0770764350891113,0.9486510753631592,0.4429401755332947,0.8572138547897339,0.15201394259929657,-0.46368858218193054,1.3656315803527832,-0.8613223433494568,-0.8105088472366333,0.36739420890808105,-0.4473855793476105,0.09225070476531982,0.9454788565635681,-0.6369600296020508,-0.3985835909843445,-0.5309270620346069,-1.946816325187683,-1.0954303741455078,0.26280421018600464,0.8927467465400696,-0.41324689984321594,-0.40516385436058044,-0.660567581653595,-0.22430558502674103,0.21279099583625793,-0.3919101357460022,-1.2424067258834839,0.43898168206214905,-0.07151670753955841,0.371470183134079,-0.12752719223499298,-1.0688292980194092,-0.7652782797813416,0.18174713850021362,-0.3366696834564209,0.3107391893863678,-0.14775951206684113,-0.9769335389137268,-1.098767638206482,-0.08830973505973816,-0.017884839326143265,0.8275885581970215,-1.7840899229049683,1.5852848291397095,0.00021532876417040825,0.2662791311740875,-0.28400251269340515,0.827793300151825,-0.9172324538230896,-0.04341486468911171,-1.3144408464431763,0.027066370472311974,-0.10139332711696625,-0.6279026865959167,0.1917174905538559,-0.6187326908111572,0.36196497082710266,-0.5759992599487305,-0.06782027333974838,-0.5077365040779114,-0.22801654040813446,0.059989068657159805,-0.5967413783073425,0.589175283908844,0.3833138048648834,-0.6795279383659363,1.7032055854797363,-0.5870164632797241,0.9451676607131958,-0.4515986144542694,-0.7691887617111206,-0.10531678795814514,-0.1022159606218338,0.10505814105272293,0.49624505639076233,-1.1463273763656616,0.737980842590332,-1.4926609992980957,0.3868430554866791,0.3780588209629059,-0.8493717312812805,-0.3311806321144104,-0.37393951416015625,-0.7396903038024902,0.2176954299211502,0.4293600022792816,-0.2887280583381653,0.34325626492500305,-0.30303311347961426,0.7592945694923401,-1.2093214988708496,0.22730423510074615,0.3551497161388397,-0.608860433101654,1.1753473281860352,-0.18277691304683685,-0.2770940065383911,-0.8710858225822449,-1.0095100402832031,0.3159594237804413,-0.31078657507896423,-0.7482398748397827,0.6575518846511841,0.8603723049163818,0.3571469485759735,-1.1044671535491943,-0.2664269506931305,-0.3560398817062378,-0.33296531438827515,-1.1075434684753418,-0.986748993396759,-0.026597652584314346,0.1316101849079132,0.8048052787780762,0.4742262363433838,0.6800116896629333,0.08372700959444046,1.0018134117126465,-0.3362601399421692,-0.36587855219841003,1.3662351369857788,-1.2242224216461182,0.532329261302948,0.08945823460817337,-0.528066873550415,0.0494869165122509,0.7229905128479004,-0.46142613887786865,1.0052849054336548,1.0928782224655151,-0.839844822883606,-0.6164478659629822,-0.27447792887687683,-1.4772958755493164,1.0282849073410034,-1.327781081199646,-0.4001658260822296,-0.5570605993270874,-0.6383589506149292,-0.3185061514377594,-0.4312048852443695,-1.1455421447753906,0.1899026483297348,0.5936319828033447,-0.6665008068084717,1.220789909362793,-0.7193770408630371,-0.19833293557167053,-0.43795979022979736,0.9715151190757751,1.0535608530044556,-0.08441605418920517,0.2954341769218445,0.1464407742023468,-0.5368391275405884,0.9696195721626282,0.3041868209838867,-1.0377825498580933,0.7526410818099976,0.44672510027885437,0.9678789973258972,-0.715858519077301,-0.280752032995224,-0.3550286591053009 -2936,0.7725929021835327,0.5617673397064209,-0.4197746217250824,0.4645880460739136,-0.15066026151180267,0.6640459895133972,0.8558350205421448,-0.4831238090991974,-1.0332494974136353,0.8271746635437012,-0.6399710178375244,0.2132989466190338,-0.2919606864452362,0.22222308814525604,-0.337047278881073,0.6402212977409363,-0.26469284296035767,1.3129487037658691,0.5721882581710815,1.123415231704712,0.14824846386909485,0.35166120529174805,-0.7144719362258911,0.33011966943740845,0.8784230351448059,-0.3202836513519287,-0.020557736977934837,-0.004718032665550709,0.6962282657623291,1.1338475942611694,1.1432527303695679,-0.10266806930303574,-0.6117913126945496,0.20154474675655365,-0.42598116397857666,-0.14659573137760162,0.5079737901687622,0.5229080319404602,-0.574238121509552,0.8117611408233643,0.4883670210838318,1.1203866004943848,0.682052493095398,-0.8497025966644287,0.5538883209228516,-0.2512032687664032,-0.3445938527584076,0.8612774014472961,-0.7500625252723694,-0.15475362539291382,-0.0739801898598671,-0.7405951023101807,1.103980541229248,0.5721983909606934,1.0884039402008057,0.5112166404724121,-0.10798726230859756,1.0202360153198242,0.5006178617477417,-0.519446849822998,-0.9888567328453064,0.5102409720420837,-0.0018795111682265997,0.12625670433044434,-0.029376188293099403,-0.1384134739637375,1.220797061920166,-0.6490376591682434,0.6314001679420471,0.19354791939258575,0.9819886088371277,-0.3126363754272461,-0.06835663318634033,1.0968846082687378,0.163920059800148,-0.09454727172851562,0.05861451104283333,0.16011308133602142,-1.0694825649261475,-0.6134920120239258,-0.46570703387260437,-0.5416331887245178,-0.04138902202248573,0.9751670956611633,1.0226352214813232,0.9521803259849548,0.4464694559574127,0.8607431054115295,0.15554320812225342,-0.4601593017578125,1.3691608905792236,-1.1739448308944702,-0.8069795966148376,0.3709234893321991,-0.44385629892349243,0.09577997773885727,0.9490081071853638,-0.6334307789802551,-0.20118263363838196,-0.5273978114128113,-0.5819963812828064,-1.0919010639190674,0.2663334906101227,1.0875627994537354,-0.4097176194190979,-0.6355624198913574,-0.2399848848581314,-0.22077631950378418,0.26348844170570374,-0.1439865678548813,-1.2388774156570435,0.4425109624862671,-1.4232970476150513,0.374999463558197,-0.21728858351707458,-1.1248557567596436,-1.2878793478012085,0.18527640402317047,-0.33314040303230286,0.31426846981048584,0.48616674542427063,-0.9734042882919312,-1.0952383279800415,-0.08478046208620071,-0.014355567283928394,0.8311178088188171,-1.7805606126785278,1.58881413936615,0.04450790211558342,0.26980841159820557,0.04204269498586655,0.8313225507736206,-0.913703203201294,-0.039885591715574265,-1.3109115362167358,0.03059564158320427,-0.0978640541434288,-0.6243734359741211,-0.8177240490913391,-0.8774768710136414,0.12341418117284775,-0.5724700093269348,-0.06429100036621094,-0.5042072534561157,-1.4331955909729004,0.06351833790540695,-0.5932121276855469,0.5927045345306396,0.38684308528900146,-0.6759986877441406,1.7067348957061768,-0.5834872126579285,0.9486969113349915,-0.44806933403015137,0.2507164180278778,0.0019225466530770063,-0.09868668764829636,0.14435432851314545,0.49977433681488037,-0.39274123311042786,0.7415100932121277,-1.5510187149047852,0.3903723359107971,0.3815881013870239,-0.46248573064804077,-0.32765135169029236,-0.3704102337360382,-0.7361610531806946,-0.10551594942808151,0.43288928270339966,-0.28519877791404724,0.3467855453491211,-0.2995038330554962,-0.23777423799037933,-1.1681137084960938,0.230833500623703,0.35091307759284973,-0.6053311824798584,1.1635812520980835,0.06677543371915817,-0.5246978998184204,-0.8675565719604492,-1.3833261728286743,0.3194887042045593,-0.9396898150444031,-0.7755112051963806,0.6610811352729797,0.8639015555381775,0.20487703382968903,-1.100937843322754,0.2042464166879654,-0.35251060128211975,-0.3294360339641571,-1.3188915252685547,-0.05089018493890762,-0.02306838147342205,0.45401132106781006,0.8083345293998718,0.5715610384941101,0.683540940284729,0.0872562825679779,0.9684500694274902,-0.8678080439567566,-0.33034753799438477,1.3697644472122192,-1.2206931114196777,0.5358585119247437,0.3842369616031647,-0.5245376229286194,0.053016189485788345,0.726519763469696,-0.4578968584537506,1.0088142156600952,1.0964075326919556,-0.8363155722618103,-0.6129186153411865,-0.2709486484527588,-1.473766565322876,1.061242938041687,-1.3242517709732056,-0.3966365456581116,-0.5535313487052917,-0.04471323639154434,-0.17385053634643555,-0.42767560482025146,-1.1420128345489502,0.19343191385269165,0.5971612334251404,-0.662971556186676,1.2243192195892334,-0.7158477902412415,-0.19480367004871368,-0.4344305098056793,0.9750443696975708,1.057090163230896,0.31426793336868286,0.2989634573459625,0.14997003972530365,-0.11564985662698746,0.9016703367233276,0.30771610140800476,-0.947646975517273,0.7561703324317932,-0.06507641822099686,0.9714082479476929,-0.7123292684555054,-0.27722275257110596,-0.35149937868118286 -2937,0.782218873500824,0.5713933110237122,-0.2581994831562042,0.47421398758888245,0.4061395227909088,0.6736719608306885,0.9435144662857056,-0.4734978675842285,-1.014857530593872,0.8368006348609924,-0.6303450465202332,0.21985721588134766,-0.28233474493026733,-0.7831000089645386,-0.3274213373661041,0.6498472690582275,-0.2550669014453888,1.3225746154785156,0.5818142294883728,1.1330411434173584,0.43832990527153015,0.3612871468067169,-0.2582651972770691,0.3397456109523773,0.8880490064620972,-0.6782515645027161,-0.21866396069526672,0.00490791629999876,0.7058542370796204,1.143473505973816,1.0489561557769775,-0.09304212033748627,-0.6021653413772583,0.21117070317268372,-0.4163552224636078,-0.13696977496147156,0.6877421736717224,0.5662277340888977,-0.5646121501922607,0.8213871121406555,0.49799296259880066,1.1300125122070312,0.6916784644126892,-0.9036135077476501,0.5635142922401428,-0.24157732725143433,-1.0696200132369995,0.8709033727645874,0.29115137457847595,-0.14512768387794495,0.3993571400642395,0.3725910484790802,1.1136064529418945,0.6296208500862122,1.049896240234375,0.4726649820804596,-0.0983613133430481,1.0298619270324707,0.510243833065033,-0.5098208785057068,-0.9675596356391907,0.4911198914051056,-0.7185999155044556,0.1358826458454132,-0.019750239327549934,-0.08370091021060944,1.217624306678772,-0.6394116878509521,0.6410261392593384,0.20317387580871582,0.991614580154419,-0.30603694915771484,-0.05873068422079086,1.1065105199813843,0.17354601621627808,-0.08492132276296616,0.0682404637336731,0.1697390377521515,-1.059856653213501,-0.6038660407066345,-0.269741952419281,-0.5320072174072266,-0.06550329178571701,0.9847930669784546,1.0322611331939697,0.9618062973022461,0.2264414131641388,0.8703690767288208,0.5336443781852722,-0.45053336024284363,1.3787868022918701,-1.0582369565963745,-0.7973536252975464,0.321103572845459,-0.43423035740852356,0.10540592670440674,0.958634078502655,-0.6238048076629639,-0.38558825850486755,-0.51777184009552,-0.5723704099655151,-1.082275152206421,0.27595943212509155,1.0971887111663818,-0.40009167790412903,-0.6259364485740662,-0.23035892844200134,-0.2111503779888153,0.2731143832206726,-0.13436061143875122,-1.229251503944397,0.45213690400123596,-1.4136711359024048,0.3846254050731659,0.677895724773407,-1.115229845046997,-0.23717615008354187,0.19490236043930054,-0.323514461517334,0.351331889629364,0.4957926869392395,-0.9637783169746399,-1.085612416267395,-0.11238888651132584,-0.004729618318378925,0.8407437801361084,-1.7709347009658813,1.5984400510787964,0.05413385108113289,0.27943435311317444,0.051668643951416016,0.8409485220909119,-0.9440715312957764,-0.122445248067379,-1.3012856245040894,0.04022159054875374,-0.08823810517787933,-0.4417683184146881,-0.2102648913860321,-0.8558602929115295,0.13304013013839722,-0.5628440380096436,-0.05466505140066147,-1.1685981750488281,-1.423569679260254,0.07314428687095642,-0.5835861563682556,0.6023305058479309,0.39646902680397034,-0.6663727164268494,1.673356294631958,-0.5738612413406372,0.9583228826522827,0.22452577948570251,0.2603423595428467,0.011548495851457119,0.00032917410135269165,0.1539802849292755,0.5094003081321716,-0.383115291595459,0.751136064529419,-1.5413928031921387,0.399998277425766,-0.5314112305641174,-0.5583310723304749,-0.3180254101753235,-0.36078429222106934,-0.7265350818634033,-0.02696392685174942,-0.007619552314281464,-0.27557283639907837,0.35641148686408997,-0.28987789154052734,-0.22814828157424927,-1.350587010383606,-0.06080698221921921,0.34474775195121765,-0.5957052111625671,1.17320716381073,-0.23881635069847107,-0.5150719285011292,-0.857930600643158,-1.3737002611160278,0.3291146457195282,-0.9300638437271118,-0.9723921418190002,0.670707106590271,0.8735275268554688,0.2145029902458191,-1.0913119316101074,0.21387237310409546,-0.31412503123283386,0.05853036791086197,-1.292861819267273,-0.041264235973358154,-0.013442432507872581,0.46363726258277893,0.8179605007171631,-0.20153608918190002,0.41518309712409973,0.12336953729391098,0.7404208779335022,-1.5061674118041992,-0.3207215964794159,1.3793903589248657,-1.2110671997070312,0.5022788047790527,0.39386290311813354,-0.47453004121780396,0.06264214217662811,0.7361457347869873,-0.44827091693878174,1.0184401273727417,1.1252031326293945,-0.826689600944519,-0.6032926440238953,-0.2613227069377899,-1.4641406536102295,1.0708688497543335,-0.9989294409751892,-0.3870106041431427,-0.5439053773880005,-0.42115017771720886,-0.16422459483146667,-1.1042780876159668,-1.1323869228363037,0.24350789189338684,0.25693759322166443,-0.6287864446640015,1.2300852537155151,-0.9066690802574158,-0.18517771363258362,-0.42480456829071045,0.9154024124145508,1.0667160749435425,-0.4622925817966461,0.3085893988609314,0.42113980650901794,-0.10602390766143799,0.9112963080406189,0.31734204292297363,-0.9380210041999817,0.7657963037490845,-0.05545046925544739,0.9810342192649841,-0.7027032971382141,-0.2675968110561371,-0.7736284732818604 -2938,0.7589136958122253,0.5480881333351135,-0.28150469064712524,0.4509087800979614,-0.12467239797115326,0.6503667831420898,0.9202092885971069,-0.49680304527282715,-1.064971923828125,0.8489495515823364,-0.6536502242088318,0.19655202329158783,-0.30563992261886597,-0.8064051866531372,-0.35072654485702515,0.7220863699913025,-0.15482662618160248,1.2455309629440308,0.5585090517997742,1.1097359657287598,0.41502469778060913,0.37813854217529297,-0.7770184278488159,0.3164404034614563,0.8647438287734985,-0.22725676000118256,-0.24196915328502655,-0.018397275358438492,0.6825490593910217,1.1201683282852173,1.025650978088379,-0.1163473129272461,-0.24093236029148102,0.3449733853340149,-0.4396604299545288,-0.16027496755123138,0.6644369959831238,0.5429225564002991,-0.5879173278808594,0.7980819344520569,0.5768226981163025,1.1067073345184326,0.6683732867240906,-0.9269186854362488,0.5402091145515442,-0.26488250494003296,-0.4749665856361389,0.8648967146873474,-0.4277889132499695,-0.05638512223958969,0.37605196237564087,0.27800214290618896,1.090301275253296,0.6266259551048279,1.0265910625457764,0.6129739284515381,-0.12166650593280792,1.006556749343872,0.4869386553764343,-0.5331260561943054,-1.0216330289840698,0.46781468391418457,-0.7419050931930542,0.11236009001731873,-0.04305543005466461,-0.10700610280036926,1.3731615543365479,-0.6627168655395508,0.6177209615707397,0.179868683218956,0.9896231889724731,-0.3293421268463135,-0.08203587681055069,1.0832053422927856,0.15024082362651825,-0.07547725737094879,0.04493527114391327,0.3522339463233948,-1.0831618309020996,-0.6271712183952332,-0.29304713010787964,0.23527483642101288,-0.08880848437547684,0.961487889289856,1.008955955505371,0.9385011196136475,0.20313622057437897,0.8470638990402222,0.5103392004966736,-0.47383856773376465,1.4644100666046143,-1.0815421342849731,-0.820658802986145,0.29779839515686035,-0.4575355648994446,0.08210073411464691,0.9353289008140564,-0.6894281506538391,-0.4088934659957886,-1.1229641437530518,-0.5956755876541138,-1.1055803298950195,0.2526542544364929,0.9279446005821228,-0.42339688539505005,-0.7757680416107178,-0.25366413593292236,-0.23445557057857513,0.24980919063091278,-0.15766580402851105,-1.2525566816329956,-0.5624899864196777,-1.2635854482650757,0.3613201975822449,0.6545905470848083,-1.1385350227355957,-1.2836123704910278,0.10663409531116486,-0.3468196392059326,0.3280267119407654,0.47248750925064087,-0.6746519804000854,-1.1788794994354248,-0.13569408655166626,-0.028034809976816177,0.8174386024475098,-1.1135735511779785,1.5751348733901978,0.030828658491373062,0.2561291456222534,0.02836345136165619,0.7796587347984314,-1.271828532218933,-0.14575043320655823,-1.324590802192688,0.016916397958993912,-0.11154329776763916,-0.46507352590560913,-0.23357008397579193,-0.8791654706001282,0.9702976942062378,-0.5861492156982422,1.2028881311416626,-0.20220626890659332,-1.654360055923462,0.049839094281196594,-0.6068913340568542,0.5790253281593323,0.3731638193130493,-0.6700580716133118,1.6500511169433594,-0.5971664190292358,0.9350177049636841,0.2012205868959427,0.23703716695308685,-0.011756696738302708,-0.022976018488407135,0.13067509233951569,0.6839439272880554,-0.4064204692840576,0.7278308868408203,-1.5646979808807373,0.37669306993484497,0.38313615322113037,-0.5816362500190735,-0.3413305878639221,-0.3139020800590515,-0.749840259552002,-0.2180410474538803,-0.03092474490404129,-0.298878014087677,0.33310627937316895,-0.313183069229126,-0.2514534592628479,-1.3738921880722046,-0.08411217480897903,0.32144254446029663,-0.14516843855381012,1.1499019861221313,-0.2621215581893921,-0.5383771061897278,-0.8812357783317566,-1.3970054388046265,0.3058094382286072,-0.9533690214157104,-0.9956973195075989,0.6474019289016724,0.8502223491668701,0.2897803783416748,-1.114617109298706,0.19056718051433563,-0.4938874840736389,-0.5274863839149475,-1.3161669969558716,-0.5661476850509644,-0.03674762696027756,0.4403320550918579,0.7946553230285645,0.4389563202857971,0.3918778896331787,0.10006434470415115,0.7789788842201233,-1.5294725894927979,0.3166349530220032,1.4916377067565918,-1.2343723773956299,0.39654719829559326,0.3705577254295349,-0.4978352189064026,0.039336949586868286,0.7128405570983887,-0.47157609462738037,0.9951349496841431,1.101897954940796,-0.8499947786331177,-0.6265978217124939,-0.28462791442871094,-0.44046270847320557,1.039212703704834,-1.0222346782684326,-0.4103158116340637,-0.5672105550765991,-0.38971638679504395,-0.10134902596473694,-1.1275832653045654,-0.8043278455734253,0.22020269930362701,0.2336324006319046,-0.6520916223526001,1.2067800760269165,-0.8830637335777283,-0.20848290622234344,-0.4481097459793091,0.8920972347259521,1.0434108972549438,-0.47123193740844727,0.28528422117233276,0.3978345990180969,-0.12932910025119781,0.7976313829421997,0.294036865234375,-1.0347950458526611,0.7424911260604858,-0.07875566184520721,0.9577290415763855,-0.7260084748268127,-0.2909020185470581,-0.796933650970459 -2939,0.723713755607605,0.43727633357048035,-0.3186734914779663,0.4647112786769867,-0.255068302154541,0.6641692519187927,0.9340117573738098,-0.6664205193519592,-0.9393806457519531,0.8627520203590393,-0.433419793844223,0.2103545218706131,-0.8189858794212341,-0.5262004137039185,-0.3277057409286499,0.7358888387680054,-0.1410241276025772,1.2593334913253784,0.3021533191204071,1.241029977798462,0.4288271963596344,0.39194104075431824,-0.763215959072113,0.4042370915412903,0.8785462975502014,0.17856593430042267,-0.22816665470600128,-0.004594779573380947,0.6963515281677246,1.133970856666565,1.0394535064697266,0.15563693642616272,-0.6611852049827576,0.35877588391304016,-0.1782722771167755,-0.14647246897220612,0.6782394647598267,0.49051496386528015,-0.5741148591041565,0.8118844032287598,0.6246761083602905,1.1205098628997803,0.6821757555007935,-0.5482266545295715,0.5540115833282471,-0.2510800063610077,-0.6328459978103638,0.8786991834640503,-0.4139864146709442,-0.04258262738585472,0.38985446095466614,0.29180464148521423,0.9353148937225342,0.6404284238815308,0.9625834226608276,0.626776397228241,-0.10786400735378265,1.0203592777252197,0.5007411241531372,-0.5193235874176025,-1.0078305006027222,0.48161718249320984,-0.7281026244163513,0.126162588596344,-0.02925293520092964,-0.093203604221344,1.3869640827178955,-0.6489143967628479,0.6315234303474426,0.19367118179798126,1.0034257173538208,-0.27107444405555725,-0.06823337823152542,1.0970078706741333,0.16404332220554352,0.11822134256362915,0.05873776599764824,0.22327838838100433,-1.069359302520752,-0.6133687496185303,-0.27924463152885437,0.17595046758651733,-0.07500598579645157,1.095890998840332,1.0227584838867188,0.9523035883903503,0.21693871915340424,0.860866367816925,0.5241416692733765,-0.6362248659133911,1.478212594985962,-0.9808700680732727,-0.703433096408844,0.3116008937358856,-0.4437330663204193,-0.35198238492012024,0.9491313695907593,-0.7642608880996704,-0.3950909674167633,-1.109161615371704,-0.5818731188774109,-1.8669699430465698,0.2567288279533386,0.44993647933006287,-0.2978847324848175,-0.7619655728340149,-0.2398616373538971,-0.22065307199954987,0.33305850625038147,-0.14386330544948578,-0.8751840591430664,0.0016326578333973885,-1.249782919883728,-0.01523620169609785,0.8299345970153809,-1.124732494354248,-1.2698098421096802,0.12043659389019012,-0.5864235758781433,0.34182921051979065,0.4691196084022522,-0.6608495116233826,-1.1650769710540771,-0.12189158797264099,-0.014232314191758633,0.7402727007865906,-1.0997710227966309,1.6035423278808594,0.04463115334510803,0.2699316442012787,0.2083243578672409,0.7934612035751343,-1.2580260038375854,-0.13194793462753296,-1.3107882738113403,-0.15264765918254852,-0.09774079918861389,-0.45127102732658386,0.1193302720785141,-0.8653630018234253,0.9841001629829407,-1.0295268297195435,1.2166906595230103,-0.18840377032756805,-0.8901624083518982,0.06364159286022186,-0.5930888652801514,0.7812654972076416,0.3869663178920746,-0.6562556028366089,1.663853645324707,-0.583363950252533,0.948820173740387,0.21502308547496796,0.2508396506309509,0.002045799046754837,-0.00917352270334959,0.14447759091854095,0.6977463960647583,-0.39261797070503235,0.7603559494018555,-1.5508954524993896,0.47190073132514954,-0.684243381023407,-0.6494390964508057,-0.32752808928489685,-0.30009958148002625,-0.7360377907752991,-0.20423854887485504,-0.16516432166099548,-0.28507551550865173,0.3469087779521942,-0.7330301403999329,-0.23765096068382263,-1.360089659690857,0.2334497570991516,0.3352450430393219,-0.13136593997478485,1.163704514503479,-0.24831905961036682,-0.5245746374130249,-0.8674333095550537,-1.3832029104232788,0.31961193680763245,-1.3348275423049927,-0.5963765978813171,0.6612043976783752,0.864024817943573,0.3035828769207001,-1.1008145809173584,0.2043696790933609,-0.4658423066139221,-0.5136839151382446,-1.2070987224578857,-1.678230881690979,-0.022945132106542587,0.4541345536708832,0.4005216062068939,-0.16748395562171936,0.2665907144546509,0.11386684328317642,0.6035232543945312,-0.6469078660011292,0.33043745160102844,1.5054402351379395,-1.2205698490142822,0.41034969687461853,0.3843602240085602,-0.4840327203273773,0.053139444440603256,0.4843740165233612,-0.4577735960483551,1.0089374780654907,1.1157004833221436,-0.8361923098564148,-0.612795352935791,-0.27082541584968567,-0.4266602098941803,1.0530152320861816,-1.008432149887085,-0.39651331305503845,-0.8110476136207581,-0.3759138882160187,-0.2784111201763153,0.06284531950950623,-0.7905253767967224,0.23400519788265228,0.24743489921092987,-0.6382891535758972,1.2205826044082642,-0.8692612648010254,-0.02819058671593666,-0.5377357602119446,0.905899703502655,0.7777002453804016,-0.457429438829422,0.29908671975135803,0.4116370975971222,-0.11552660167217255,0.8114338517189026,0.30783936381340027,-1.0209925174713135,0.7562935948371887,-0.06495316326618195,0.9715315103530884,-0.6117804646492004,-0.6822238564491272,-0.7831311821937561 -2940,0.7072939872741699,0.4208565354347229,-0.02410741336643696,0.44829148054122925,-0.2288973182439804,0.6477494835853577,0.8905487656593323,-0.6828402876853943,-0.22037912905216217,0.8463322520256042,-0.056366369128227234,0.19393473863601685,-0.46446821093559265,-0.5426201820373535,-0.2608180046081543,0.7194690704345703,-0.134285569190979,1.2429137229919434,0.28573352098464966,1.2246102094650269,0.41240739822387695,0.3755212426185608,-0.7796357274055481,0.38781729340553284,0.7404117584228516,-0.9650397896766663,0.019586889073252678,-0.021014563739299774,0.6799317598342896,1.1173352003097534,1.0230337381362915,0.13921715319156647,-0.6776049733161926,-0.0485944002866745,-0.2016305923461914,-0.16289225220680237,0.6618196964263916,0.4740951657295227,-0.31779250502586365,0.7954646348953247,0.7326411604881287,1.1040900945663452,0.6657559871673584,-0.5646464228630066,0.537591814994812,-0.26749980449676514,-0.6492657661437988,0.8622794151306152,-0.43040621280670166,-0.05900241434574127,0.3734346628189087,0.2753848433494568,0.9188951253890991,0.6240086555480957,0.9461636543273926,0.7774316668510437,-0.1242837905883789,1.0039395093917847,0.48432132601737976,-0.5357433557510376,-1.0242502689361572,0.4651973843574524,-0.7445223927497864,0.10974280536174774,-0.04567272216081619,-0.05847088247537613,1.3705443143844604,-0.665334165096283,0.6151036620140076,-0.3557336628437042,0.9870059490203857,-0.2874942421913147,-0.041118815541267395,1.0805881023406982,0.19577936828136444,-0.06702078878879547,0.04231797903776169,0.20685860514640808,-1.0926694869995117,-0.6297885179519653,-0.2956644296646118,-0.008496182039380074,-0.09142576903104782,1.079471230506897,0.905180037021637,0.9164705276489258,0.20051893591880798,0.84444659948349,0.6338467001914978,0.34224674105644226,1.1972492933273315,-0.9972898364067078,-0.719852864742279,0.2951810956001282,-0.46015286445617676,-0.3684021830558777,-0.2913375198841095,-0.8607171177864075,-0.41151076555252075,-1.1255813837051392,-0.598292887210846,-1.7850311994552612,-0.03980495035648346,0.4335166811943054,-0.31430453062057495,-0.8170402646064758,-0.25628143548965454,-0.23707285523414612,0.316638708114624,-0.22959421575069427,-0.9929600954055786,-0.014787127263844013,-1.266202688217163,-0.05424036830663681,0.8135148286819458,-0.6421592235565186,-1.2862296104431152,0.10401681065559387,-0.04679436981678009,0.3254094123840332,0.45269981026649475,-0.6772692799568176,-1.1814967393875122,-0.13831137120723724,-0.03065209835767746,0.7238529324531555,-1.116190791130066,1.5871225595474243,0.02821136824786663,0.25351184606552124,0.19190457463264465,0.7770414352416992,-1.2744457721710205,-0.1483677178621292,-1.3272080421447754,-0.16906744241714478,-0.11416058242321014,-0.4676908254623413,-0.45087262988090515,-0.8817827701568604,0.9676803946495056,-0.706287682056427,1.2002708911895752,-0.18577997386455536,-0.9065821766853333,-0.10882727801799774,-0.6095086336135864,0.740720808506012,0.37054651975631714,-0.672675371170044,1.6375443935394287,-0.599783718585968,0.9324004054069519,0.1986033022403717,0.23441986739635468,-0.12059864401817322,-0.025593306869268417,0.1280578076839447,0.6813266277313232,0.20382948219776154,0.6379618644714355,-1.5673152208328247,0.4554809331893921,-0.700663149356842,-0.6658588647842407,-0.3439478874206543,-0.9896788597106934,-0.7524575591087341,-0.2206583321094513,-0.03350917994976044,-0.3014953136444092,0.4063853919506073,-0.7494499087333679,-0.13642697036266327,-1.1460834741592407,0.04674740135669708,0.31882524490356445,-0.1477857232093811,1.147284746170044,-0.26473885774612427,-0.54099440574646,-0.42611372470855713,-1.2710660696029663,0.303192138671875,-0.5219017863273621,-0.6127963662147522,-0.24696995317935944,0.9587271213531494,0.2871630787849426,-0.10948385298252106,0.18794989585876465,-0.48226210474967957,-0.5301036834716797,-1.2235184907913208,-1.694650650024414,-0.03936491906642914,0.43771475553512573,0.3841018080711365,-0.2802198827266693,0.25017091631889343,0.09744706004858017,-0.05163617432117462,-0.6633276343345642,0.314017653465271,1.4890204668045044,-1.1176605224609375,0.4483078122138977,0.36794042587280273,-0.5004525184631348,0.036719657480716705,0.46795421838760376,-0.47419339418411255,0.9925177097320557,1.1993780136108398,-0.43363627791404724,-0.6292151212692261,-0.2872452139854431,-0.02136884815990925,1.0365954637527466,-1.02485191822052,-0.4129331111907959,-0.561721682548523,-0.3923336863517761,-0.29483091831207275,0.04642553627490997,-0.45413026213645935,0.21758541464805603,0.23101511597633362,-0.6036970615386963,1.1671955585479736,-0.612331748008728,-0.04461037367582321,-0.5541555285453796,0.9089985489845276,0.7612804770469666,-0.47384923696517944,0.2826669216156006,0.39521729946136475,-0.04254496097564697,0.7950140833854675,0.2914195656776428,-1.0374122858047485,0.7398738265037537,-0.0813729465007782,0.9551117420196533,-0.6282002329826355,-0.6986436247825623,0.03784988820552826 -2941,0.7307425141334534,0.44430506229400635,0.05717511847615242,0.4717400074005127,-0.01662343367934227,0.6711980104446411,0.9139972925186157,-0.5613126754760742,-0.29671719670295715,0.8697807788848877,-0.5711768865585327,0.2552056312561035,-0.5671258568763733,-0.5191716551780701,-0.36813610792160034,0.7429175972938538,-0.11083704233169556,1.2663623094558716,0.3091820478439331,1.2478617429733276,0.4358559250831604,0.39896976947784424,-0.7561872005462646,0.4112658202648163,0.763860285282135,-0.9415912628173828,0.043035417795181274,0.0024339668452739716,0.703380286693573,1.1407837867736816,1.0150572061538696,0.16266568005084991,-0.6541564464569092,-0.025145869702100754,-0.13696010410785675,-0.13944372534751892,0.685268223285675,0.49754369258880615,-0.11506758630275726,0.6323932409286499,0.7560896873474121,1.1275386810302734,0.6892045140266418,-0.5411978960037231,0.40465328097343445,-0.2440512776374817,-0.6258172392845154,0.8857279419898987,-0.4069576859474182,0.17258873581886292,0.39688318967819214,0.29883337020874023,0.9423436522483826,0.6474571824073792,0.9890012145042419,0.8222941756248474,-0.10083526372909546,1.027388095855713,0.5077698826789856,-0.5122948288917542,-1.031406283378601,0.48864591121673584,-0.7210738658905029,0.12090621888637543,-0.5083116292953491,-0.19068709015846252,1.3939929008483887,-0.6418856382369995,0.5474011301994324,0.09637713432312012,1.010454535484314,-0.7398209571838379,-0.01767028495669365,1.1040366888046265,0.2192278951406479,-0.12442374229431152,0.06576651334762573,0.23030713200569153,-1.0692209005355835,-0.6063399910926819,-0.27221590280532837,0.014952348545193672,-0.06797723472118378,1.1029198169708252,0.9947576522827148,0.9399190545082092,0.38024047017097473,0.8678951263427734,0.21706649661064148,0.3656952679157257,1.2206978797912598,-0.9738413095474243,-0.6964043378829956,0.3186296224594116,0.12614977359771729,-0.34495365619659424,-0.26788899302482605,-0.837268590927124,-0.3880622386932373,-1.102132797241211,-0.5748443603515625,-1.761582612991333,-0.016356419771909714,0.45696520805358887,-0.2908560037612915,-0.7935917377471924,-0.5202874541282654,-0.21362432837486267,0.34008723497390747,-0.20614568889141083,-0.9695115685462952,0.008661403320729733,-1.2427541017532349,-0.030791837722063065,0.8369633555412292,-0.6187106966972351,-1.262781023979187,0.12746533751487732,-0.023345839232206345,0.4697691798210144,0.4761483371257782,-0.6538207530975342,-1.158048152923584,-0.1148628443479538,-1.634983777999878,1.3138927221298218,-1.0927422046661377,1.6105711460113525,0.05165989696979523,0.2769603729248047,0.10602468252182007,0.9348737001419067,-1.2509971857070923,-0.12491919100284576,-1.3037594556808472,-0.14561891555786133,-0.7742980718612671,-0.44424229860305786,-1.4443182945251465,-0.8583342432975769,-1.0246871709823608,-0.6828391551971436,0.955854594707489,-0.3906194567680359,-0.8831336498260498,-0.0853787511587143,-0.586060106754303,0.688346803188324,0.3939950466156006,-0.6492268443107605,1.660992980003357,-0.5763351917266846,0.9558489322662354,0.22205182909965515,0.2578684091567993,-0.09715011715888977,-0.0021447762846946716,0.15150633454322815,0.7047751545906067,0.22727800905704498,0.7812438607215881,-1.5438666343688965,0.47892946004867554,-0.3245827555656433,-0.6424103379249573,-0.32049936056137085,-0.9662303328514099,-0.7290090322494507,0.06147957220673561,-0.010060649365186691,-0.27804678678512573,0.42983391880989075,-0.7260013818740845,-0.11297844350337982,-1.1226348876953125,0.07019592821598053,0.7194108963012695,-0.09065350890159607,1.1707333326339722,-0.24129033088684082,-0.5175458788871765,-0.4026651978492737,-1.247617483139038,0.32664066553115845,-0.4984532594680786,0.11041945219039917,-0.223521426320076,0.9821756482124329,0.3106116056442261,-0.5986253023147583,0.2756659984588623,-1.001957654953003,-0.5066551566123962,-1.2000699043273926,-0.3521263003349304,0.09346039593219757,0.4611632823944092,0.4075503349304199,-0.25677135586738586,0.2736194431781769,0.12089559435844421,-0.028187643736600876,-0.6398791074752808,0.33746618032455444,1.5124690532684326,-1.0942119359970093,0.5587354302406311,0.3913889527320862,-0.4770039916038513,0.14150968194007874,0.14588311314582825,-0.4507448673248291,1.0159662961959839,1.2190558910369873,-0.4101877510547638,-0.6057665944099426,-0.26379668712615967,0.11556458473205566,1.0837182998657227,-1.0014033317565918,-0.38948458433151245,-0.5382731556892395,-0.3688851594924927,-0.2713823914527893,0.06987406313419342,-1.3758866786956787,0.24103394150733948,0.25446364283561707,-0.2521009147167206,1.1906441450119019,-0.5888832211494446,-0.021161843091249466,-1.5596076250076294,0.7759758830070496,0.78472900390625,-0.450400710105896,0.30611544847488403,0.4186658263206482,-0.019096430391073227,0.818462610244751,0.31486809253692627,-0.5473607182502747,0.7633223533630371,-0.05792441591620445,0.9785602688789368,-0.5428780913352966,-0.6751950979232788,-0.2477821707725525 -2942,0.6790643930435181,0.40536531805992126,0.01823536679148674,0.4328002631664276,-0.05556318536400795,0.5598159432411194,0.8750575184822083,-0.6002524495124817,-0.4405529797077179,0.8308410048484802,-0.6101166605949402,0.21626588702201843,-0.6060656309127808,-0.5581114292144775,-0.4070758521556854,0.7039778232574463,-0.23188593983650208,1.2085562944412231,0.270242303609848,1.208922028541565,0.3969161808490753,0.05242624133825302,-0.7951269745826721,0.3723260760307312,0.7249205112457275,-0.9805310368537903,0.0040956661105155945,-0.03650578483939171,0.6734881401062012,1.101844072341919,0.9761174321174622,-0.12511134147644043,-0.6930962204933167,0.2653237283229828,-0.46915796399116516,-0.178383469581604,0.5660611391067505,0.45860394835472107,-0.15400734543800354,0.6611191630363464,0.7171499133110046,0.9658803343772888,0.5205709338188171,-0.5801376700401306,0.36571353673934937,-0.2829910218715668,-0.3146374821662903,0.8396371006965637,-0.4458974301815033,0.13364899158477783,0.35794344544410706,0.25989362597465515,0.9034038782119751,0.6085174083709717,0.9500614404678345,0.7833544015884399,-0.13977500796318054,0.9884483218193054,0.4688301384449005,-0.5512346029281616,-1.072096824645996,0.44970616698265076,-0.48249712586402893,0.08196646720170975,-0.5472514033317566,-0.23698750138282776,1.355053186416626,-0.680825412273407,0.6490606069564819,0.05743738263845444,0.9715147614479065,-0.7787607312202454,0.0057253651320934296,1.0650969743728638,0.2595449686050415,0.1141737625002861,0.026826761662960052,0.19136738777160645,-1.0241116285324097,-0.5959844589233398,-0.31115564703941345,-0.023987403139472008,-0.10691698640584946,1.0639801025390625,0.9558178782463074,0.9009792804718018,0.34130072593688965,0.828955352306366,0.6171761751174927,0.3267555236816406,1.181758165359497,-0.42680349946022034,-0.7353441119194031,0.27968987822532654,0.7015060782432556,-0.07893026620149612,-0.30682873725891113,-0.8762083649635315,-0.4270019829273224,-0.23377683758735657,-0.61378413438797,-1.9171134233474731,-0.15129625797271729,0.4180254638195038,-0.3297957479953766,-0.47340714931488037,-0.1977050006389618,-0.25256407260894775,0.3011474907398224,-0.2450854480266571,-1.0084513425827026,-0.030278347432613373,-1.2816938161849976,0.5007153749465942,0.7980235815048218,-0.6567901968955994,-1.3017207384109497,0.08852558583021164,-0.062285590916872025,0.4308294355869293,0.2131807506084442,-0.8199164271354675,-0.6495735049247742,-0.15380260348320007,-1.6739234924316406,1.1375412940979004,-1.1316819190979004,1.5716314315795898,0.06107711046934128,0.09037130326032639,0.06708493083715439,0.8959339261054993,-1.6356195211410522,-0.16385895013809204,-1.3426991701126099,-0.1845586597919464,0.1937849223613739,-0.48318204283714294,0.6533693671226501,-0.8972740173339844,-1.0636268854141235,-0.721778929233551,0.9169148206710815,-0.42955920100212097,-1.0498075485229492,-0.12431850284337997,-0.6249998807907104,0.6494070291519165,0.7874829769134521,-0.688166618347168,1.6220532655715942,-0.615274965763092,0.9169091582298279,0.18311208486557007,0.21892866492271423,-0.13608986139297485,-0.04108452796936035,0.11256658285856247,0.6658353805541992,0.1883382499217987,0.6572995185852051,-1.5828063488006592,0.05866777151823044,-0.527338981628418,-0.6066802144050598,-0.35943910479545593,-1.0051701068878174,-0.7679488062858582,0.02253982052206993,-0.04900040104985237,-0.3169865310192108,0.9040196537971497,-0.7729475498199463,-0.1519182026386261,-1.1615746021270752,-0.3366956412792206,0.6804711222648621,-0.09278310835361481,1.1317936182022095,-0.09352598339319229,-0.556485652923584,-0.44160494208335876,-0.9943816661834717,0.5674126744270325,-0.7097014784812927,0.22322770953178406,-0.26246118545532227,0.9432358741760254,0.271671861410141,-0.6375650763511658,0.7355887293815613,-0.6671690344810486,-0.38950929045677185,-1.2390096187591553,-0.3910660445690155,0.05452064424753189,0.4222235381603241,0.36861059069633484,-0.09457851201295853,0.2346796989440918,0.08195584267377853,-0.06712739169597626,-0.6788188815116882,0.29852643609046936,1.47352933883667,-0.96192866563797,0.3369852602481842,0.3524492084980011,-0.5159437656402588,0.3501601815223694,0.32156339287757874,-0.4896846115589142,1.4477113485336304,1.26866614818573,-0.4491274952888489,-0.6447063684463501,-0.30273643136024475,0.07662483304738998,1.0239648818969727,-0.7024311423301697,-0.42842432856559753,-0.577212929725647,-0.40782490372657776,-0.3103221356868744,0.03093431144952774,-1.4148263931274414,0.3054945170879364,-0.6929799914360046,-0.1642836034297943,1.1517044305801392,-0.1909075379371643,-0.44559246301651,-1.598547339439392,0.7370361089706421,0.7457892298698425,-0.4893404543399811,0.26717570424079895,0.3797260820865631,-0.05803618207573891,0.7795228362083435,0.416335791349411,-0.5863004922866821,0.7243825793266296,-0.09686416387557983,0.9396204948425293,-0.5818178653717041,-0.7141348719596863,-0.2867219150066376 -2943,0.775148332118988,0.410119891166687,0.6062968969345093,0.43755483627319336,-0.05080859735608101,0.5725343227386475,0.8798121213912964,-0.3544104993343353,-0.43579840660095215,0.8355956077575684,-0.605362057685852,0.22102047502994537,-0.6013110280036926,-0.5533568263053894,-0.4023212790489197,0.6466276049613953,-0.22713135182857513,1.2133108377456665,0.27499687671661377,1.2136765718460083,0.40167075395584106,0.29918336868286133,-0.790372371673584,0.37708064913749695,0.7296751141548157,-0.9757764339447021,0.008850252255797386,-0.03175119683146477,0.5150032639503479,1.1065986156463623,1.0458390712738037,-0.12035675346851349,-0.6883416175842285,0.27007830142974854,-0.4644033908843994,-0.07438383996486664,0.548064649105072,0.4633585214614868,-0.1492527574300766,0.6658737659454346,0.7219045162200928,0.970634937286377,0.6179734468460083,-0.5753830671310425,0.5217944383621216,-0.9806906580924988,-0.30988290905952454,0.8443917036056519,-0.2705804109573364,0.13840357959270477,-0.3678768277168274,0.2646481990814209,0.9081584811210632,0.6132720112800598,0.9548160433769226,0.6123339533805847,-0.1350204199552536,1.0895286798477173,0.47358471155166626,-0.5464800000190735,-1.0673422813415527,0.4544607400894165,-0.4777425527572632,0.08672105520963669,-0.5424968004226685,-0.23223291337490082,1.3752914667129517,-0.6760708093643188,0.4484865963459015,0.06219197064638138,0.9829480051994324,-0.7740061283111572,-0.164615660905838,1.0698515176773071,0.15961189568042755,0.08662845939397812,0.03158134967088699,0.1961219757795334,-1.0193570852279663,-0.5912298560142517,-0.3663627803325653,0.5361697673797607,-0.10216239839792252,1.1866185665130615,0.9605724811553955,1.0258288383483887,-0.1605958491563797,0.8337099552154541,0.6219307780265808,0.33151009678840637,1.5771435499191284,-0.4220489263534546,-0.7305895090103149,0.2813169062137604,0.7062606811523438,-0.07417567819356918,-0.3020741641521454,-0.8714537620544434,-0.42224740982055664,-0.22902224957942963,-0.6090295314788818,-1.9123588800430298,0.05072224140167236,0.42278003692626953,-0.32504117488861084,-0.4686525762081146,-0.34314438700675964,-0.2478094846010208,0.40913125872612,-0.24033086001873016,-0.9421120882034302,-0.02552376128733158,-1.2769392728805542,0.5054699778556824,0.8027781844139099,-0.6520355939865112,-1.2969661951065063,0.09328017383813858,-0.057531002908945084,0.43558400869369507,0.700461208820343,-0.8151618242263794,-0.3415927290916443,-0.14904801547527313,-1.6691689491271973,1.1422958374023438,-1.126927375793457,1.5763859748840332,0.31842389702796936,-0.01634923554956913,0.07183951884508133,0.9006885290145874,-1.6308649778366089,-0.1591043621301651,-1.020856499671936,0.08859135210514069,0.19853951036930084,-0.7767469882965088,-0.13173265755176544,-0.8925194144248962,-1.0588723421096802,-0.7170243263244629,-0.08790810406208038,-0.4248046278953552,-1.0450530052185059,-0.11956391483545303,-0.6202452778816223,0.6541616320610046,0.7922375798225403,-1.0158416032791138,1.6268078088760376,-0.6105203628540039,0.921663761138916,0.187866672873497,0.22368325293064117,-0.1313352733850479,-0.03632993996143341,0.11732117086648941,0.6705899834632874,0.19309283792972565,0.6620541214942932,-1.5897952318191528,0.23358623683452606,0.45821240544319153,-1.0047636032104492,-0.3546845316886902,-1.000415563583374,-0.76319420337677,0.027294406667351723,-0.04424581304192543,-0.31223195791244507,0.9087742567062378,-0.7681929469108582,-0.14716361463069916,-1.1568200588226318,-0.33194106817245483,0.6852257251739502,-0.08802852034568787,1.1365481615066528,-0.08877139538526535,-0.5517310500144958,-0.436850368976593,-1.057572841644287,-0.26917001605033875,-0.7049468755722046,0.227982297539711,0.10975618660449982,0.9479904770851135,0.006897194776684046,-0.6266632080078125,0.7403433322906494,-0.6624144315719604,-0.5496140122413635,-0.7606064677238464,0.2497205287218094,0.05927523225545883,0.42697811126708984,0.3733651638031006,-0.08982392400503159,0.23943428695201874,0.08671043068170547,-0.062372803688049316,-0.6740642786026001,-1.249696135520935,1.4782838821411133,-0.8667704463005066,0.370066374540329,0.35720378160476685,-0.5111891627311707,0.18221595883369446,0.3263179659843445,0.10481502115726471,1.4524658918380737,1.4889452457427979,-0.44437292218208313,-0.639951765537262,-0.3856830298900604,0.08137942105531693,1.028719425201416,-0.6976765394210815,-0.8909655809402466,-0.5724583268165588,-0.403070330619812,-0.30556756258010864,0.03568889945745468,-0.035532668232917786,0.31024909019470215,-0.6882253885269165,-0.15952901542186737,1.1564589738845825,-0.5421544313430786,-0.44083788990974426,-1.5937927961349487,0.7417907118797302,0.7505438327789307,-1.7963601350784302,0.2719302773475647,0.38448065519332886,-0.053281594067811966,0.6598600745201111,0.42109036445617676,-0.2592955529689789,0.7291371822357178,-0.0921095758676529,0.9443750977516174,-0.577063262462616,-0.7093802690505981,-0.2819673418998718 -2944,0.7668346166610718,0.40180614590644836,0.597983181476593,0.4292410910129547,0.15004146099090576,0.5642206072807312,0.8714984059333801,-0.362724244594574,-0.4562267065048218,0.8272818922996521,-0.8621645569801331,0.133517786860466,-0.6096247434616089,-0.5616705417633057,-0.18932795524597168,0.638313889503479,-0.23544509708881378,1.2049970626831055,0.35314396023750305,1.0849639177322388,0.3933570086956024,0.2291461080312729,-0.7986860871315002,0.3687669038772583,0.6511916518211365,-0.9840901494026184,0.0005365107208490372,-0.040064938366413116,0.6098285913467407,1.0982848405838013,1.0375252962112427,-0.12867049872875214,-0.5640861988067627,0.2617645561695099,-0.47271713614463806,-0.31343579292297363,0.5397509336471558,0.45504477620124817,0.1472136229276657,0.845190167427063,0.7095886468887329,0.9623212218284607,0.609659731388092,-0.5836967825889587,0.5134807229042053,-1.0855042934417725,-0.45958128571510315,0.8360779881477356,-0.2928560674190521,0.13008983433246613,-0.37619057297706604,-0.09610262513160706,0.921506404876709,0.6049582958221436,0.9465023279190063,0.6797986030578613,-0.14333416521549225,1.0812149047851562,0.4652709662914276,-0.7799294590950012,-1.068040132522583,0.36133435368537903,-0.48605629801750183,0.07840731739997864,-0.4140239655971527,-0.24054665863513947,1.3669776916503906,-0.6217858791351318,0.44017285108566284,0.05387822911143303,0.9746342897415161,-0.7823198437690735,-0.17292940616607666,1.061537742614746,0.1512981504201889,0.07831472158432007,0.023267608135938644,0.18780823051929474,-0.660679042339325,-0.599543571472168,-0.37467652559280396,-0.11159881949424744,-0.11047613620758057,1.174899697303772,0.9522587656974792,1.0175150632858276,-0.16890959441661835,0.8253962397575378,0.6711195707321167,0.3231963515281677,1.5688297748565674,-0.43036267161369324,-0.9131589531898499,0.27300316095352173,0.6979469656944275,-0.15926772356033325,-0.31038790941238403,-1.1007330417633057,-0.19689345359802246,-0.23733599483966827,-0.6173432469367981,-2.2009735107421875,0.042408499866724014,0.4144662916660309,-0.2938214838504791,-0.47696632146835327,0.025281433016061783,-0.33457744121551514,0.40081751346588135,-0.8233863711357117,-0.8930994868278503,-0.03383750468492508,-1.2852530479431152,0.4971562325954437,0.7944644689559937,-0.6603493094444275,-0.7590145468711853,0.08496643602848053,-0.06584474444389343,0.4272702634334564,0.6921474933624268,-0.8234755396842957,-0.34990647435188293,0.219244584441185,-1.6774827241897583,1.0674926042556763,-1.135241150856018,1.5680721998214722,0.3101101517677307,-0.02466297708451748,0.19014132022857666,0.8869549632072449,-1.63917875289917,-0.24995596706867218,-1.528835415840149,0.08027760684490204,0.1902257651090622,0.095801442861557,-0.1400464028120041,-0.9008331298828125,-1.0671861171722412,-0.7253380417823792,-0.09622184932231903,-0.43311837315559387,-0.25681832432746887,-0.0881957858800888,-0.6285589933395386,0.6458479166030884,0.783923864364624,-1.0814648866653442,1.6184940338134766,-0.6188340783119202,0.9133500456809998,0.17955292761325836,0.21536950767040253,-0.3372659385204315,-0.04464368149638176,0.10900743305683136,0.6622762680053711,0.8616006970405579,0.653740406036377,-1.5981090068817139,-0.6448480486869812,0.4498986601829529,-1.0130773782730103,-0.36299827694892883,-1.008729338645935,-0.7715079188346863,0.018980665132403374,-0.05255955457687378,-0.3205457031726837,0.9004605412483215,-0.7765066623687744,0.03683711960911751,-1.1651338338851929,-0.25378766655921936,0.6769120097160339,-0.09634226560592651,1.1282343864440918,-0.0970851331949234,-0.5600447654724121,-0.44516411423683167,-0.5139109492301941,-0.6729044914245605,-0.7132605910301208,0.21966855227947235,0.10144244134426117,0.9396767616271973,0.23166103661060333,-1.2502504587173462,0.7320296168327332,-0.6707281470298767,0.002677652984857559,-0.3845803737640381,0.10218648612499237,0.10617423057556152,0.4186643660068512,0.4859442710876465,-0.09813766181468964,0.2311205416917801,0.07839669287204742,-0.07068654894828796,-0.13287940621376038,-1.2868400812149048,1.4699701070785522,-0.8750841617584229,0.36175262928009033,0.3488900363445282,-0.5195028781890869,0.1739022135734558,0.31800422072410583,0.09650127589702606,1.4441521167755127,1.4806314706802368,-0.4318067729473114,-0.6482654809951782,-0.3939967751502991,-0.42585647106170654,1.020405650138855,-0.7059902548789978,-0.8992792963981628,-0.6622386574745178,0.032776448875665665,-0.3138813078403473,0.027375157922506332,-0.36285409331321716,0.3019353449344635,-0.6965391039848328,-0.16784276068210602,1.0813523530960083,-0.5504681468009949,-0.4491516351699829,-1.1792927980422974,0.733476996421814,0.7422301173210144,-1.8046739101409912,0.26361653208732605,0.04778728261590004,-0.061595335602760315,0.6515463590621948,0.4127766191959381,0.09707826375961304,0.7208234667778015,-0.10830692946910858,0.9360613822937012,-0.5853769779205322,-0.7176939845085144,-0.2902810871601105 -2945,0.6789131164550781,0.42198172211647034,0.618158757686615,0.4494166672229767,0.17021703720092773,0.5843961834907532,0.8916739821434021,-0.342548668384552,-0.2850472033023834,0.8715015053749084,-0.48243165016174316,0.15369336307048798,-0.5894491672515869,-0.7247428297996521,-0.1691523790359497,0.658489465713501,-0.2152695208787918,1.2251726388931274,0.373319536447525,1.27605402469635,0.4839523434638977,0.24932168424129486,-0.7785105109214783,0.3889424800872803,0.6713672280311584,-1.259166955947876,0.02071208320558071,-0.019889365881681442,0.6300041675567627,1.1184604167938232,1.0577008724212646,-0.10849492251873016,-0.5439106225967407,0.28194013237953186,-0.4471469819545746,0.09043607115745544,0.5599265098571777,0.4574720561504364,0.16738919913768768,0.5840859413146973,0.7297642230987549,0.9824967980384827,0.5985313057899475,0.13310295343399048,0.5336562991142273,-1.0653287172317505,-0.4394057095050812,0.8562535643577576,-0.27268049120903015,0.1502654105424881,-1.2565503120422363,-0.07592704892158508,0.9046827554702759,0.6830964684486389,0.9666779041290283,0.6999741792678833,-0.12315858900547028,1.1013904809951782,0.5217354893684387,0.3839617371559143,-1.0370947122573853,0.381509929895401,-0.37400054931640625,0.09858289361000061,-0.39384838938713074,-0.2203710824251175,1.3871532678604126,-0.4774828553199768,0.4603484272956848,0.0740538015961647,0.9822972416877747,-0.8915179371833801,-0.1680590659379959,1.067512035369873,0.17147372663021088,0.3247588276863098,0.04344318062067032,-0.028378549963235855,-0.640503466129303,-0.579367995262146,-0.38636061549186707,-0.09142324328422546,-0.17257341742515564,1.195075273513794,0.9724343419075012,1.0241848230361938,-0.14873401820659637,0.8455718159675598,0.6912951469421387,0.3433719277381897,0.871366560459137,-0.23055776953697205,-0.8929833769798279,0.20094172656536102,0.7181225419044495,-0.13909214735031128,-0.29021233320236206,-1.0805574655532837,-0.1767178773880005,-0.2171604186296463,-0.5971676707267761,-2.0224452018737793,-0.1837112456560135,0.43464186787605286,-0.27364590764045715,-0.4567907452583313,0.04545700550079346,-0.31440186500549316,0.6128263473510742,-0.49466919898986816,-0.8729239106178284,-0.013661932200193405,-1.2650774717330933,0.5173317790031433,0.8146400451660156,-0.22227931022644043,-1.1124695539474487,0.1051420122385025,-0.011469930410385132,-0.6968711614608765,0.7123230695724487,-0.8032999634742737,-0.7335973381996155,0.23942016065120697,-1.6573071479797363,0.9880625009536743,-1.115065574645996,1.5882477760314941,0.3302857279777527,0.10862565040588379,0.21031689643859863,0.9082179069519043,-1.619003176689148,-0.2297803908586502,-1.508659839630127,0.10045318305492401,0.21040134131908417,0.11597701907157898,-0.11987082660198212,-0.8806575536727905,-1.0470105409622192,-0.7051624655723572,-0.07604627311229706,-0.4129427969455719,-1.9753996133804321,-0.06802020967006683,-0.6083834171295166,0.6660234928131104,0.9777694940567017,-0.8378890752792358,1.7139261960983276,-0.5986585021018982,0.8763333559036255,0.19972850382328033,0.2355450838804245,-0.4305320680141449,-0.024468109011650085,0.12918300926685333,0.6824518442153931,0.4722050130367279,0.7969071865081787,-1.577933430671692,-0.6246724724769592,0.29858964681625366,-0.9929018020629883,-0.34282270073890686,-0.9885537624359131,-0.7513323426246643,0.0391562357544899,-0.032383982092142105,-0.30037012696266174,0.8319439888000488,-0.7563310861587524,0.02263512834906578,-1.144958257675171,-0.2336120903491974,0.6970875859260559,-0.07616668939590454,1.1484099626541138,-0.07690955698490143,-0.4863436818122864,-0.4249885380268097,-0.4937353730201721,0.6603515148162842,-0.6930850148200989,0.23984412848949432,-0.19669605791568756,0.9598523378372192,-0.19346214830875397,-1.2300748825073242,0.7522051930427551,-0.573896586894989,0.022853225469589233,-0.3644047975540161,0.12236206233501434,0.1263498067855835,0.43883994221687317,0.012627806514501572,-0.07796208560466766,0.25129610300064087,0.0985722690820694,-0.05051097646355629,-0.1127038300037384,-1.2666645050048828,1.4901456832885742,-0.8549085855484009,0.4591113328933716,0.36906561255455017,-0.49932730197906494,-0.7061024308204651,0.3381797969341278,-0.43592220544815063,1.4643276929855347,1.5008070468902588,-0.41163119673728943,-1.1500555276870728,-0.19497153162956238,-0.1989520639181137,1.040581226348877,-0.6858146786689758,-0.8791037201881409,-0.6420630812644958,0.05295202136039734,-0.22381362318992615,-0.08762487769126892,-0.3426785171031952,0.4556490182876587,-0.792644202709198,-0.13932594656944275,1.1015279293060303,-0.5302925705909729,-0.42897605895996094,-1.1591172218322754,0.7536525726318359,0.5262420773506165,-1.7844983339309692,0.283792108297348,-0.33406373858451843,-0.04141976311802864,0.6717219352722168,0.4329521954059601,0.11725383996963501,0.7409990429878235,-0.08813135325908661,1.0018713474273682,-0.5905919075012207,-1.1892751455307007,-0.2701055109500885 -2946,0.6772759556770325,0.4203445315361023,0.7059134244918823,0.38678333163261414,0.1685798466205597,0.5827590227127075,0.8900368213653564,-0.34418585896492004,-0.28668439388275146,0.7859166860580444,-0.08566191047430038,0.15205617249011993,-0.46487104892730713,-0.7263799905776978,-0.17078956961631775,0.6568523049354553,-0.21690671145915985,1.223535418510437,0.371682345867157,1.1377328634262085,0.48231515288352966,0.12269683927297592,-0.7801476716995239,0.35078930854797363,0.6697300672531128,-1.2608041763305664,-0.10980053246021271,-0.021526549011468887,0.628367006778717,1.1168231964111328,1.0560636520385742,-0.11013210564851761,0.3571200668811798,0.2803029417991638,-0.4487841725349426,0.088798888027668,0.4530239701271057,0.45583486557006836,0.16575200855731964,0.5824487805366516,0.7281270623207092,1.0347191095352173,0.648128867149353,0.13146576285362244,0.5320191383361816,-1.066965937614441,-0.6656793355941772,0.8546164035797119,-0.2743176817893982,0.3459486663341522,-1.2581875324249268,-0.07756423205137253,0.9014797210693359,0.6470814347267151,0.9650407433509827,0.6719404458999634,-0.12479577213525772,1.1503984928131104,0.5200983285903931,0.38232454657554626,-1.0387319326400757,0.37987273931503296,-0.3756377398967743,0.09694571048021317,-0.6031407713890076,-0.04341556876897812,1.3855160474777222,-0.451450914144516,0.4587112367153168,0.07241661846637726,0.980660080909729,-0.1356087625026703,-0.16969625651836395,1.0658748149871826,0.16983653604984283,0.3231216371059418,0.041805997490882874,0.07343768328428268,-0.6421406269073486,-0.5686884522438049,-0.3879978060722351,-0.09306042641401291,-0.17421060800552368,1.1934380531311035,0.9707971811294556,1.0114768743515015,-0.15037120878696442,0.8439346551895142,0.689657986164093,0.34173473715782166,0.7934036254882812,-0.2321949601173401,-0.672393262386322,0.19930453598499298,0.7164853811264038,-0.14072933793067932,-0.2918495237827301,-1.0821946859359741,-0.17835506796836853,-0.21879760921001434,-0.5988048315048218,-2.0240824222564697,0.18462781608104706,0.4330046772956848,-0.09326351433992386,-0.45842793583869934,0.04381982237100601,-0.3160390555858612,0.6111891865730286,0.8340727686882019,-0.3542148172855377,0.5150071978569031,-1.627840518951416,0.5156946182250977,0.81300288438797,-1.0355912446975708,-1.1141067743301392,0.10350482910871506,-0.7173886895179749,-0.6985083222389221,0.7106859087944031,-0.8049371242523193,-0.7352344989776611,0.23778297007083893,-0.6402782797813416,0.9717640280723572,-1.1167027950286865,1.7197787761688232,0.42219680547714233,-1.4293856620788574,0.2086797058582306,0.8858190774917603,-1.6206403970718384,-0.23141758143901825,-1.5102970600128174,-0.009288826026022434,0.20876415073871613,0.11433983594179153,0.39994123578071594,-0.8822947144508362,-1.0486477613449097,-0.7067996263504028,-0.0776834562420845,-0.41457998752593994,-1.9770368337631226,-0.3423071801662445,-0.6100205779075623,0.6664744019508362,0.976132333278656,-0.8395262360572815,1.7122889757156372,-0.6002956628799438,0.8746961951255798,0.1980913132429123,0.23390789330005646,-0.43216925859451294,-0.668655276298523,0.1275458186864853,0.7035419344902039,0.47056782245635986,0.7952700257301331,-0.22884222865104675,-0.6263096332550049,-0.45734331011772156,-0.9945389628410339,-0.3444598913192749,-0.9901909232139587,-0.75296950340271,0.037519052624702454,-0.03402116522192955,-0.3020073175430298,0.8303068280220032,-0.7579682469367981,-0.31287503242492676,-1.1465954780578613,-0.19447027146816254,0.4241999685764313,-0.2498309165239334,1.1467727422714233,-0.36311838030815125,-0.4879808723926544,-0.42662572860717773,-0.49537256360054016,0.6587143540382385,-1.1729038953781128,0.23820693790912628,0.1497066766023636,1.0308034420013428,-0.195099338889122,-1.432105302810669,0.7505680322647095,-0.5755337476730347,0.02121604233980179,-0.36604198813438416,0.1207248792052269,-0.218051016330719,0.4372027516365051,0.010990622453391552,-0.0007006085943430662,0.24965891242027283,0.09693508595228195,-0.052148159593343735,-0.4907400906085968,-1.2683017253875732,1.4885084629058838,-0.9214439392089844,0.45747414231300354,0.36742842197418213,-0.5009644627571106,-1.0316338539123535,0.2412267029285431,0.13292858004570007,1.4626904726028442,1.2644343376159668,-0.5962830185890198,-1.1516927480697632,-0.304855078458786,-0.20058925449848175,1.0389440059661865,0.6017366647720337,-0.8807408809661865,-0.6437002420425415,0.051314838230609894,-0.3945313096046448,-0.08926206082105637,-0.34431570768356323,0.36773091554641724,-0.7942813634872437,-0.1409631371498108,1.0998907089233398,-0.5319297313690186,-0.430613249540329,-1.1607544422149658,0.7520154118537903,0.4185659885406494,-1.7861355543136597,0.28215491771698,-0.3357009291648865,-0.043056946247816086,0.6700847744941711,-0.3187732696533203,0.11561665683984756,0.8938220739364624,-0.06109025329351425,1.0002341270446777,-0.5922290682792664,-1.1909123659133911,-0.6289620995521545 -2947,0.6927932500839233,0.543643593788147,0.8178390860557556,0.17108219861984253,0.18409712612628937,0.676692545413971,0.9055541157722473,-0.22238487005233765,-0.2711670994758606,0.8014339804649353,-0.07014463096857071,0.21701759099960327,-0.44935375452041626,-0.9403261542320251,-0.5277244448661804,0.6723695993423462,-0.20138943195343018,1.239052653312683,0.38719964027404785,1.1555395126342773,0.49783244729042053,0.1382141262292862,-0.7646303772926331,0.3663066029548645,0.6852473616600037,-1.2452869415283203,-0.09428325295448303,-0.006009266711771488,0.6438843011856079,1.132340431213379,1.0715808868408203,-0.09461482614278793,0.3726373612880707,0.2958202362060547,-0.43326687812805176,-0.03545357659459114,0.4685412645339966,0.47135215997695923,0.23214147984981537,0.6553745865821838,0.7436443567276001,1.0502363443374634,0.5404680371284485,0.1469830423593521,0.5475364327430725,-0.5399745106697083,-0.6501620411872864,0.8701336979866028,-0.24379770457744598,0.3614659607410431,-1.2426702976226807,-0.062046948820352554,0.9487662315368652,0.662598729133606,0.9513341188430786,0.5715888738632202,-0.10927849262952805,0.9517914652824402,0.5356156229972839,0.39784184098243713,-1.0232146978378296,0.46325501799583435,-0.3601204454898834,0.11246298998594284,-0.21908526122570038,-0.05178646370768547,1.3633300065994263,-0.4359336197376251,0.4709174931049347,0.08793389797210693,0.9961773753166199,-0.12009148299694061,-0.15417897701263428,1.0813920497894287,0.1853538155555725,0.33863893151283264,0.05732328072190285,0.08895496279001236,-0.6266233325004578,-0.5531711578369141,-0.37248051166534424,0.46105605363845825,0.11587508022785187,1.1889545917510986,1.0057373046875,1.0269941091537476,-0.13485392928123474,0.8334989547729492,0.7051752805709839,0.3572520315647125,1.701909065246582,-0.2166776806116104,-0.6568759679794312,0.21482181549072266,0.7320026755332947,-0.12521205842494965,-0.27633222937583923,-0.6019418835639954,-0.16283778846263885,-0.20328032970428467,-0.5832875370979309,-2.0085651874542236,0.12952794134616852,0.4485219717025757,-0.07774623483419418,-0.44291064143180847,0.059337105602025986,-0.30052176117897034,0.44098806381225586,-0.5168070793151855,-1.197082281112671,0.530524492263794,-1.232778787612915,-1.1892757415771484,0.8285201787948608,-1.0200740098953247,-1.0113836526870728,0.11902210861444473,-0.701871395111084,-0.6829910278320312,0.726203203201294,-0.7894198298454285,-0.7197172045707703,0.2533002495765686,-0.6247609853744507,1.01333487033844,-1.1011855602264404,1.7352960109710693,0.4377140998840332,-1.4138684272766113,0.2462175190448761,0.9707701802253723,-1.6051231622695923,-0.26756829023361206,-1.4947798252105713,0.006228456273674965,-0.12909770011901855,0.1298571228981018,-0.7122780680656433,-0.8667774200439453,-1.0331305265426636,-0.691282331943512,-0.06216617301106453,-0.3990626931190491,-1.9615195989608765,-0.32678988575935364,-0.7266772389411926,0.681991696357727,0.9916496276855469,-0.3305113911628723,1.775691270828247,-0.584778368473053,0.8902134895324707,-0.7736948728561401,0.15949635207653046,-0.6941502690315247,-0.6531379818916321,0.14306309819221497,0.7190592288970947,0.48608511686325073,0.8107873201370239,-0.21332494914531708,-0.6868634819984436,-1.3415898084640503,-0.9790216684341431,-0.32894259691238403,-0.9746736288070679,-0.7374522089958191,0.05303633585572243,-0.018503881990909576,-0.08316999673843384,0.845824122428894,-0.7424509525299072,-0.2973577380180359,-1.4049347639083862,-0.17895299196243286,0.43971726298332214,-0.23431363701820374,1.1622899770736694,-0.3476010859012604,-0.47246357798576355,-0.560657799243927,-0.4798552691936493,0.6742316484451294,-1.2420833110809326,0.25372421741485596,0.16522395610809326,1.0463206768035889,-0.17958205938339233,-1.4165880680084229,0.3326229751110077,-0.5600164532661438,0.03673332557082176,-0.3505246937274933,0.13624216616153717,-0.20253373682498932,0.452720046043396,0.02650790475308895,0.01481667347252369,0.2651762068271637,0.11245236545801163,0.5589423179626465,-0.3827710747718811,-1.2527844905853271,1.5040256977081299,-0.9059266448020935,0.4729914367198944,0.382945716381073,-0.4854471683502197,-1.0161166191101074,0.25674399733543396,-0.4802913963794708,1.4782077074050903,1.279951572418213,-0.5807657241821289,-1.136175513267517,-0.30636587738990784,-0.999951183795929,1.0562653541564941,0.6172539591789246,-0.8652235865592957,-0.5597847104072571,0.06683211773633957,-0.3790140151977539,0.2574699819087982,0.08729775249958038,0.3832482099533081,-0.1064421683549881,-0.12544585764408112,1.2283846139907837,-0.5164124369621277,-0.4150959551334381,-1.1452372074127197,0.7867372035980225,0.5605936646461487,-1.7706183195114136,0.29767221212387085,-0.3201836347579956,-0.027539663016796112,0.6339166164398193,-0.30325597524642944,0.13113394379615784,0.9093393683433533,-0.04557297006249428,1.127496600151062,-0.41697829961776733,-0.577360987663269,-0.6134448051452637 -2948,0.7009430527687073,0.5517933964729309,0.8259888887405396,0.17923201620578766,0.1922469437122345,0.5290288329124451,0.9137039184570312,-0.21423505246639252,-0.4149271547794342,0.8095837831497192,-0.06199481338262558,0.2251674085855484,-0.44120392203330994,-0.9321763515472412,-0.5195746421813965,0.5248295664787292,-0.19323961436748505,1.2472025156021118,0.3953494727611542,1.163689374923706,0.5059822797775269,0.14636394381523132,-0.7564805746078491,0.4326970875263214,0.6933971643447876,-1.2261196374893188,-0.0861334353685379,0.0021405527368187904,0.6520341038703918,1.1404902935028076,1.079730749130249,-0.0864650085568428,0.16559003293514252,0.303970068693161,-0.3519592583179474,0.06849262118339539,0.4766910970211029,0.47950199246406555,0.2402912974357605,0.6635243892669678,0.751794159412384,1.058386206626892,0.5486178398132324,0.15513285994529724,0.5556862354278564,-0.5318247079849243,-0.6420122385025024,0.8447141647338867,-0.23564788699150085,0.3696157932281494,-1.234520435333252,-0.9567956924438477,0.9569160342216492,0.6098924875259399,0.9594839215278625,0.5797386765480042,-0.4420696198940277,1.1483964920043945,0.5437654256820679,0.029231982305645943,-0.944990336894989,0.3846246302127838,-0.7234694361686707,0.12061280757188797,-0.21093544363975525,-0.04363664239645004,1.3363227844238281,-0.4277837872505188,0.479067325592041,0.09608371555805206,1.0043271780014038,-0.11194166541099548,-0.14602915942668915,1.0895419120788574,0.19350363314151764,-0.0015216302126646042,0.06547310203313828,-0.008845722302794456,-0.3126085698604584,-0.5450213551521301,-0.3643306791782379,0.4692058861255646,0.124024897813797,1.1971044540405273,1.1017260551452637,1.0351439714431763,-0.1267041116952896,0.8416487574577332,0.7133250832557678,0.36540186405181885,1.2196803092956543,-0.20852786302566528,-0.6487261652946472,0.22297163307666779,0.7401524782180786,0.3647538721561432,-0.2681823968887329,0.12317515909671783,-0.15468797087669373,-0.713172972202301,-0.27270692586898804,-1.3604986667633057,0.13767775893211365,0.36111387610435486,0.2303197830915451,-0.43476080894470215,0.06748692691326141,-0.292371928691864,0.5273799300193787,-0.7972926497459412,-1.4581881761550903,0.5651451349258423,-1.2246289253234863,-1.1811258792877197,0.8366699814796448,-1.7197015285491943,-1.003233790397644,0.12717193365097046,-0.6937215924263,-0.6748412251472473,0.7343530058860779,-0.7812700271606445,-0.7115674018859863,0.2614500820636749,-0.8379421234130859,1.0214847326278687,-0.516312301158905,1.743445873260498,0.24717484414577484,-1.4923721551895142,0.2543673515319824,0.9789199829101562,-1.927615761756897,-0.25941845774650574,-1.4866299629211426,0.014378275722265244,-0.1660461723804474,0.13800694048404694,-0.2154734879732132,-0.8586276173591614,-1.0249806642532349,-0.6541845798492432,-0.149677574634552,-0.39091286063194275,-1.423760175704956,-0.3186400532722473,-0.6725229620933533,0.690141499042511,0.9884455800056458,-0.38898319005966187,1.7838411331176758,-0.576628565788269,0.8983632922172546,-0.7655450701713562,0.16764616966247559,-0.46359971165657043,-0.6449881792068481,0.1512129157781601,0.7272090315818787,0.49423494935035706,0.8189371228218079,-0.20517513155937195,-0.9000675082206726,-1.2668248414993286,-0.9708718657493591,-0.17446587979793549,-0.9665238261222839,-0.6104831695556641,-0.13983386754989624,-0.010354062542319298,-0.023266373202204704,0.853973925113678,-0.7343011498451233,-0.28920790553092957,-1.3967849016189575,-0.4472920298576355,0.44786709547042847,-0.2261638194322586,1.1704398393630981,-0.33945125341415405,-0.4643137454986572,-0.5525079965591431,-0.01193089596927166,0.6823814511299133,-0.3666592538356781,0.2618740499019623,0.1733737736940384,1.0544705390930176,-0.1714322417974472,-1.4084382057189941,0.340772807598114,-0.5518666505813599,0.04488314688205719,-0.34237486124038696,0.1443919837474823,-0.1943839192390442,0.4608698785305023,0.03465772420167923,-0.9514256715774536,0.27332603931427,0.12060218304395676,0.5670921206474304,-0.8684133887290955,-1.2446346282958984,1.4821388721466064,-1.029540777206421,0.6851232647895813,0.3678072392940521,-0.4772973358631134,-1.0079667568206787,0.2648938298225403,-0.4721415638923645,1.486357569694519,0.9860724806785583,-0.5519686937332153,-1.1280256509780884,-0.2982160449028015,-0.991801381111145,1.0644152164459229,0.6254037618637085,0.057447806000709534,-0.5516349077224731,0.25187355279922485,-0.3708641827106476,0.22754518687725067,0.09544757008552551,0.39139804244041443,-0.09829235076904297,-0.11729604005813599,1.2365344762802124,-0.455256849527359,-1.8333827257156372,-1.6632261276245117,0.7948870062828064,1.088090181350708,-0.5788585543632507,0.3058220446109772,-0.3120338022708893,-0.14466054737567902,0.6420664191246033,-0.9283693432807922,0.17739398777484894,0.9174891710281372,-0.03742314875125885,1.1356464624404907,-0.408828467130661,-0.5692111849784851,-0.6052950024604797 -2949,0.6954270601272583,0.5462774038314819,0.8204728960990906,0.17371602356433868,0.18673095107078552,0.5235128402709961,0.8622313737869263,-0.12986446917057037,-0.4204431474208832,0.8040677905082703,-1.0191899538040161,0.33170193433761597,-0.23447035253047943,-0.9376923441886902,-0.5250906348228455,0.5017575025558472,-0.11987724900245667,1.241686463356018,0.3898334801197052,1.1581733226776123,0.321006178855896,0.14084795117378235,-0.7619965672492981,0.4024307131767273,0.6878811717033386,-1.0503439903259277,-0.09164942800998688,-0.0033754436299204826,0.6465181112289429,1.1349742412567139,1.0742146968841553,-0.09198100864887238,0.16007404029369354,0.3549959361553192,-0.35747525095939636,0.06297662854194641,0.47117510437965393,0.4739859998226166,0.23477530479431152,0.6580083966255188,0.7716766595840454,0.9925954341888428,0.5431018471717834,0.14961686730384827,0.5501702427864075,-0.5373407006263733,-0.6475282311439514,0.8391981720924377,-0.24116387963294983,0.36409980058670044,-0.7129292488098145,-0.3866473436355591,0.9514000415802002,0.604376494884491,0.9539679288864136,0.5742226839065552,-0.1377238929271698,1.0116701126098633,0.5382494330406189,0.018653692677617073,-0.950506329536438,0.37910863757133484,-0.2702736258506775,0.1150968074798584,-0.21645143628120422,-0.049152638763189316,1.3308067321777344,-0.4332997798919678,0.47355133295059204,0.19117605686187744,0.9499326348304749,-0.11745765805244446,-0.18242669105529785,1.0840258598327637,0.18798764050006866,-0.0421765111386776,0.059957105666399,-0.01436171866953373,-0.27910488843917847,-0.5505373477935791,-0.29075291752815247,-0.07059982419013977,0.11850890517234802,1.1915884017944336,1.09621000289917,1.0296279191970825,0.44433754682540894,0.8361327648162842,0.47751301527023315,0.3598858714103699,1.2577528953552246,-0.21404385566711426,-0.6542421579360962,0.2174556404352188,0.7346364855766296,0.3592378795146942,0.04671004042029381,0.11765916645526886,-0.1602039635181427,-0.71868896484375,-0.278222918510437,-1.788137435913086,0.11754471063613892,0.24165064096450806,0.18891991674900055,-0.39956048130989075,0.06197093054652214,-0.297887921333313,0.5720477104187012,-0.42641955614089966,-1.1322414875030518,-0.2752135396003723,-1.23014497756958,-1.1866419315338135,0.8311539888381958,-1.725217580795288,-1.0087498426437378,0.1424986720085144,-0.8878304958343506,-0.06560760736465454,0.7288370132446289,-0.8571653366088867,-1.0759129524230957,0.5465291142463684,-0.8434581160545349,1.015968680381775,-0.521828293800354,1.583617091178894,0.24165885150432587,-1.5483453273773193,0.24885135889053345,0.9734039902687073,-1.125530481338501,-0.2649344503879547,-1.4921460151672363,-0.026677105575799942,-0.16928313672542572,0.13249094784259796,-0.22098948061466217,-0.8641436100006104,-1.0304967164993286,-0.8421048521995544,-0.15519356727600098,-0.3964288532733917,-1.4292762279510498,-0.40202102065086365,-0.8710755109786987,0.684625506401062,0.7857173085212708,-0.39449918270111084,1.778325080871582,-0.582144558429718,0.8928472995758057,-0.7710610628128052,0.1621301770210266,-0.4691157042980194,-0.6505041718482971,0.5726131200790405,0.7216930389404297,0.4887189567089081,0.8134211301803589,-0.21069112420082092,-0.17917513847351074,-1.2723408937454224,-0.9763878583908081,-0.17998187243938446,-0.9720398187637329,-0.615999162197113,-0.14534986019134521,-0.631567656993866,-0.028782369568943977,0.848457932472229,-0.7398171424865723,0.57231205701828,-1.4023009538650513,-0.2888330817222595,0.4423511028289795,-0.45583057403564453,1.1649237871170044,-0.344967246055603,-0.4698297381401062,-0.558023989200592,-0.017446892336010933,0.6768654584884644,-0.3721752464771271,0.17816194891929626,0.16785778105258942,1.0489544868469238,-0.17694823443889618,-1.413954257965088,0.33525681495666504,-0.6261577010154724,0.03936715051531792,-0.34789085388183594,0.13887599110603333,-0.19989991188049316,0.45535388588905334,0.11371143162250519,-0.9569416642189026,0.26781004667282104,0.11508618295192719,0.5615761280059814,-0.8584401607513428,-1.2079766988754272,1.4766228199005127,-1.0350568294525146,0.6074362993240356,0.36229124665260315,-0.4828133285045624,0.4151049256324768,0.2593778371810913,-0.4776575565338135,1.4808415174484253,1.2287650108337402,-0.5574846863746643,-1.1335417032241821,-0.3037320375442505,-0.997317373752594,1.058899164199829,-1.055631399154663,0.05193180963397026,-0.608745813369751,-0.24840834736824036,-0.3510591685771942,0.2220291942358017,0.38525906205177307,0.38588204979896545,-0.10380834341049194,-0.34764593839645386,1.2310184240341187,-0.460772842168808,-1.4152910709381104,-1.6687421798706055,0.7893710136413574,1.130051851272583,-0.5843745470046997,0.3054039478302002,-0.931708037853241,-1.1684231758117676,0.6365504264831543,-0.46336016058921814,0.17187799513339996,0.9119731783866882,0.09615238010883331,1.130130410194397,-0.41434445977211,-0.5747271776199341,-0.6108109951019287 -2950,0.6789954900741577,0.5298458337783813,0.80404132604599,0.1572844386100769,0.17029936611652374,0.5139802694320679,0.8457998037338257,-0.14629605412483215,-0.43687474727630615,0.7876362204551697,-1.0893672704696655,0.315270334482193,-0.12236785888671875,-0.9541239142417908,-0.541522204875946,0.481111079454422,-0.30077841877937317,1.2125437259674072,0.3734018802642822,1.1417417526245117,0.304574579000473,0.251473993062973,-0.7784281373023987,0.3859991133213043,0.671449601650238,-1.0667755603790283,-0.10808101296424866,-0.019807029515504837,0.5710599422454834,1.1185426712036133,1.0577831268310547,-0.10841259360313416,0.14364245533943176,0.33856433629989624,-0.37390685081481934,0.04654504358768463,0.45474350452423096,0.4575543999671936,0.4821329712867737,0.6415768265724182,0.7232749462127686,0.9771856069564819,0.5266702771186829,0.26727136969566345,0.5337386727333069,-0.5537722706794739,-0.663959801197052,0.8227666020393372,-0.22660614550113678,0.34766820073127747,-0.5154823660850525,-0.40307894349098206,0.9349684715270996,0.6067544221878052,0.937536358833313,0.5577911138534546,-0.15415547788143158,0.9827812314033508,0.6439770460128784,0.002222105860710144,-0.9669378995895386,0.36267703771591187,-0.3175831139087677,0.09866522252559662,-0.232883021235466,-0.0655842274427414,1.3143751621246338,-0.44973137974739075,0.5578911304473877,0.17474447190761566,0.9335010647773743,-0.13388924300670624,-0.19885827600955963,1.067594289779663,0.17155605554580688,-0.058608099818229675,0.043525516986846924,-0.03079330548644066,-0.15530052781105042,-0.6805797815322876,-0.22679394483566284,-0.08703140914440155,0.10207732021808624,1.175156831741333,1.0797784328460693,1.013196349143982,0.40382444858551025,0.8197011947631836,0.4801791310310364,0.3434542715549469,1.241321325302124,-0.767025351524353,-0.5514057874679565,0.3399154841899872,0.6740262508392334,0.41621270775794983,0.03027845360338688,0.4597482979297638,-0.34944435954093933,-1.032382845878601,-0.29465451836586,-1.8045690059661865,0.10111312568187714,0.22521905601024628,-0.16048097610473633,-0.4159920811653137,0.04553934186697006,-0.13822944462299347,0.5556161403656006,-0.44285115599632263,-0.7807790637016296,-0.47365114092826843,-1.2465765476226807,-0.8438543081283569,0.6483891010284424,-1.7416491508483887,-0.14723755419254303,0.12606708705425262,-0.9042620658874512,-0.8835954666137695,0.7124054431915283,-0.8735969066619873,-1.0923445224761963,0.7389938831329346,-0.8598896861076355,0.9995371103286743,-0.5382598638534546,1.5671855211257935,0.2252272665500641,-1.56477689743042,0.23241977393627167,0.7630468606948853,-1.1419620513916016,-0.2813660502433777,-0.2948276102542877,-0.04310869425535202,-0.1857147216796875,0.11605936288833618,-0.23742106556892395,-0.8805751800537109,-1.0469282865524292,-0.858536422252655,0.40490904450416565,-0.4128604531288147,-1.4457077980041504,-0.3241974115371704,0.3225308358669281,0.6681939363479614,0.7692857384681702,-0.4109307825565338,1.702589750289917,-0.5985761284828186,0.8764157295227051,-0.7874926328659058,0.14569859206676483,-0.6208452582359314,-0.5455363392829895,0.5561815500259399,0.5810094475746155,0.4722873568534851,0.805653989315033,0.8175612688064575,-0.19560672342777252,-1.288772463798523,-1.0448925495147705,-0.19641345739364624,-1.1401211023330688,-0.9925243854522705,-0.161781445145607,-0.6479992270469666,0.15626302361488342,0.9003210067749023,-0.7562487125396729,0.5558804869651794,-1.3902256488800049,-0.12420377135276794,0.4259195029735565,-0.6954672336578369,1.1484922170639038,-0.361398845911026,-0.4862613379955292,-0.5744555592536926,-0.35294613242149353,0.6604338884353638,-0.38860684633255005,0.16173036396503448,0.15142619609832764,1.0325229167938232,0.0473761111497879,-1.4303858280181885,-0.40699437260627747,-0.642589271068573,0.022935563698410988,-0.3643224537372589,0.12244440615177155,-0.0018515456467866898,0.43892228603363037,0.09727984666824341,-1.3770983219146729,-0.003801988437771797,0.0986545979976654,0.5451445579528809,-0.8748717308044434,-1.2244082689285278,1.442861795425415,-1.0514883995056152,0.5197166800498962,0.3458596467971802,-0.33640608191490173,0.27255335450172424,0.24294625222682953,-0.49408915638923645,1.391632318496704,1.3477014303207397,-0.5739162564277649,-1.1499732732772827,-0.32016363739967346,-1.0137490034103394,1.0424675941467285,-1.0720629692077637,0.03550022095441818,-0.6251773834228516,-0.26483994722366333,-0.3064250648021698,0.20559760928153992,0.3688274621963501,0.3694504499435425,-0.12023992836475372,-0.36407753825187683,1.2000762224197388,-0.47720444202423096,-0.8628119230270386,-1.685173749923706,0.7729394435882568,0.995629072189331,-0.6000317335128784,0.2889723479747772,-0.9481396079063416,-0.600685715675354,0.6201188564300537,-0.4797917604446411,-0.08995383977890015,0.8955416083335876,0.07972079515457153,1.1136988401412964,-0.43077605962753296,-0.5911587476730347,-0.6272425651550293 -2951,0.660781979560852,0.5116323232650757,0.629999577999115,0.15734952688217163,0.15208584070205688,0.50962895154953,0.8292734622955322,-0.431310772895813,-0.4550882577896118,0.769422709941864,-1.1075807809829712,-0.07553238421678543,-0.14058136940002441,-0.9723374247550964,-0.5597357153892517,0.5845144987106323,-0.5572783350944519,1.200398564338684,0.35518836975097656,1.123528242111206,0.3250460624694824,0.151643306016922,-0.7966416478157043,0.36778560280799866,0.7751576900482178,0.1520780324935913,-0.12629452347755432,-0.0380205474793911,0.5528464317321777,1.1003291606903076,1.0421026945114136,-0.12662610411643982,-0.14260971546173096,0.3203508257865906,-0.6574053764343262,0.02833152562379837,0.4012158215045929,0.43934088945388794,0.463919460773468,0.6233633160591125,0.7235274314880371,0.9870558977127075,0.5084567666053772,0.2490578591823578,0.5155251622200012,-0.5719857811927795,-0.6821733117103577,0.8045530915260315,-0.24481967091560364,0.3294546902179718,-0.5336958765983582,-0.36663591861724854,0.9498369693756104,0.5193820595741272,0.9193228483200073,0.49227166175842285,-0.17236900329589844,0.9645677208900452,0.6257635354995728,-0.015991412103176117,-0.9851514101028442,0.3018260896205902,-0.7045139074325562,0.08045170456171036,-0.8003661632537842,-0.08379774540662766,1.2961616516113281,-0.4679448902606964,0.539677619934082,0.04723121225833893,0.9152875542640686,-0.1521027684211731,-0.11363841593265533,1.0832685232162476,0.15334254503250122,0.09686293452978134,0.025311999022960663,-0.04900682345032692,-0.17351403832435608,-0.6987932920455933,-0.2450074553489685,-0.04363815486431122,0.060030579566955566,0.9586477279663086,1.0615649223327637,0.9949828386306763,0.3856109380722046,0.8014876842498779,0.4619656205177307,0.32524076104164124,1.2231078147888184,-0.7852388620376587,0.6651710271835327,0.411822646856308,0.6558127403259277,0.7677508592605591,0.012064935639500618,0.44153478741645813,-0.367657870054245,-1.0505963563919067,-0.31286802887916565,-1.8227825164794922,0.08289960771799088,0.20700553059577942,-0.178694486618042,-0.4342055916786194,0.0273258239030838,-0.15644297003746033,0.3438371419906616,-0.4610646665096283,-0.7989925742149353,-0.4918646514415741,-1.2647900581359863,-0.8620678186416626,0.416809618473053,-0.13248860836029053,-0.1654510796070099,0.12393621355295181,-0.8715838193893433,-0.9018089771270752,0.6941919326782227,-0.891810417175293,-0.9742099046707153,0.7207803726196289,-0.07358897477388382,0.8914443254470825,-0.5173917412757874,1.5489720106124878,0.20701375603675842,-1.5829904079437256,0.2142062485218048,0.7448333501815796,-1.1601755619049072,-0.015581764280796051,-0.9064204692840576,-0.06132221221923828,-0.20607367157936096,-0.24585452675819397,-0.2556345760822296,-0.32353663444519043,-0.5459306836128235,-0.8767499327659607,0.38669553399086,-0.43107396364212036,-1.463921308517456,-0.3424109220504761,-0.49795618653297424,0.6499804258346558,0.7510722279548645,-0.4291442930698395,1.6843762397766113,-0.8084052205085754,0.8582022190093994,-0.8057061433792114,0.12748506665229797,-0.44723236560821533,-0.5637498497962952,0.5379680395126343,0.7892297506332397,0.45407384634017944,0.7874404788017273,-0.014452226459980011,-0.21382024884223938,-1.3069859743118286,-1.0631060600280762,-0.2146269679069519,-1.1583346128463745,-1.0107378959655762,-0.17999497056007385,0.2542855143547058,-0.06524048000574112,0.8821074962615967,-0.7744622230529785,0.5376669764518738,-1.4084391593933105,-0.1424172818660736,0.22200500965118408,-0.7136807441711426,1.1302787065505981,-0.37961235642433167,-0.5044748783111572,-0.5926690697669983,-0.3711596429347992,0.6422203779220581,-0.4068203568458557,0.14351683855056763,0.13321268558502197,0.8736085295677185,-0.43706148862838745,-1.4485993385314941,0.25169429183006287,-0.6608027815818787,0.004722045734524727,-0.3825359642505646,0.10423088818788528,0.22184744477272034,-0.197124183177948,0.0072765052318573,-1.3953118324279785,-0.022015506401658058,0.22521087527275085,0.5269310474395752,-0.24190932512283325,-1.2426217794418335,1.4246482849121094,-1.069701910018921,0.5015031695365906,0.3276461362838745,-0.3546195924282074,0.20689743757247925,0.22473272681236267,-0.5123026967048645,1.3734188079833984,1.329487919807434,-0.5921297669410706,-1.1681867837905884,-0.3383771479129791,-1.031962513923645,1.0242540836334229,-1.0902764797210693,0.01728670299053192,-0.5680099129676819,-0.2729322016239166,-0.09688689559698105,0.18738409876823425,0.35061395168304443,0.3512369394302368,-0.13845345377922058,-0.3822910487651825,1.181862711906433,-0.4954179525375366,-0.8810254335403442,-1.7033872604370117,0.7547259330749512,0.9774155616760254,-0.6182452440261841,0.3756040632724762,-0.6580537557601929,-0.389404833316803,0.685978889465332,0.1885288953781128,-0.10816735774278641,0.9025830626487732,0.11691801995038986,1.0954853296279907,-0.4489895701408386,-0.6093722581863403,-0.7362440228462219 -2952,0.6213080883026123,0.4951937794685364,0.6135610342025757,0.08545035868883133,0.13564729690551758,0.4931904077529907,0.8128349184989929,-0.4477493166923523,-0.4715268015861511,0.7529841661453247,-1.1240192651748657,-0.039365626871585846,-0.5673226118087769,-0.9887759685516357,-0.576174259185791,0.568075954914093,-0.7584993839263916,1.1839600801467896,0.33874982595443726,1.1425737142562866,0.47218406200408936,0.1352047622203827,0.08143061399459839,0.35134705901145935,0.6179041862487793,-0.5437337756156921,-0.14273306727409363,-0.054459087550640106,0.5364078879356384,1.083890676498413,0.9575440287590027,0.19254997372627258,-0.15904825925827026,0.30391228199005127,0.4905325770378113,0.011892983689904213,0.3847772777080536,0.26333674788475037,0.4474809169769287,0.5818851590156555,0.6503021121025085,0.9706173539161682,0.554518461227417,0.23261931538581848,0.6166340112686157,-0.5884243249893188,-0.698611855506897,0.7898017168045044,-0.26125821471214294,0.3130161464214325,-0.5501344203948975,-0.38307446241378784,0.933398425579071,0.5029435157775879,0.902884304523468,0.47583311796188354,-0.5302383899688721,0.9481291770935059,0.49392491579055786,-0.032429955899715424,-0.9667669534683228,0.2853875458240509,-0.7209524512290955,0.15239688754081726,-0.8168047070503235,-0.10023628920316696,1.2797231674194336,-0.7027765512466431,0.5232390761375427,0.03079267032444477,0.8988490104675293,-0.1685413122177124,-0.13007695972919464,1.1845165491104126,0.13690400123596191,0.08042439073324203,0.008873457089066505,-0.06544536352157593,-0.18995258212089539,-0.7152318358421326,-0.2614459991455078,-0.060076698660850525,0.021292442455887794,1.0973095893859863,1.0462943315505981,0.978544294834137,0.3691723942756653,0.7850491404533386,0.4455270767211914,0.30880221724510193,1.3418147563934326,-0.801677405834198,0.6487324833869934,0.45872533321380615,0.40060973167419434,0.7513123154640198,0.3677544891834259,0.4250962436199188,-0.31533288955688477,-1.0670348405838013,-0.32930657267570496,-1.8392210006713867,0.06646106392145157,0.6101648807525635,-0.1951330304145813,-0.4506441354751587,0.010887281969189644,-0.697182834148407,0.3273985981941223,-0.3428497910499573,-0.8154311180114746,-0.508303165435791,-1.2812285423278809,-0.8785063624382019,0.6417357325553894,-0.14892715215682983,-0.1818896234035492,0.1074976697564125,-0.8100019693374634,-0.9182475209236145,0.6777533888816833,-1.1609398126602173,-0.7028643488883972,0.7043418288230896,-0.09002751857042313,0.8750057816505432,-0.8656610250473022,1.0811394453048706,0.19057521224021912,-1.1018214225769043,0.1977677047252655,0.7283948063850403,-1.1766140460968018,-0.3340298533439636,-0.9228590130805969,-0.07776075601577759,-0.22251221537590027,-0.2622930705547333,-0.2720731198787689,0.6408424377441406,-0.5623692274093628,-0.8931884765625,0.3702569901943207,-0.44751250743865967,-1.5247067213058472,-0.40982699394226074,-0.5143947005271912,0.6335418820381165,0.7346336841583252,-0.4455828368663788,1.6679377555847168,-0.8248437643051147,0.8417636752128601,0.012513162568211555,0.11104652285575867,-0.46367090940475464,-0.5801883935928345,0.521529495716095,0.7727912068367004,0.43763530254364014,0.771001935005188,-0.03089076839387417,-0.3791162967681885,-1.2433785200119019,-1.0795445442199707,-0.2310655117034912,-1.2678725719451904,-0.6856394410133362,-0.19643351435661316,0.2378469705581665,-0.08167902380228043,0.8656689524650574,-0.7909007668495178,0.22763779759407043,-1.424877643585205,-0.15885582566261292,0.20556646585464478,-0.7301192879676819,1.1138402223587036,-0.39605090022087097,-0.5209134221076965,-0.6091076135635376,-0.3875981867313385,0.6257818341255188,-0.423258900642395,0.12707829475402832,0.11677414178848267,0.996601402759552,-0.45350003242492676,-1.3201462030410767,0.4305064082145691,-0.6254600286483765,-0.01171649619936943,-1.046144962310791,-0.5839876532554626,0.20540890097618103,0.3049800395965576,-0.009162036702036858,-1.411750316619873,-0.038454048335552216,0.20877233147621155,0.5104925036430359,-0.25834786891937256,-1.259060263633728,1.3727015256881714,-1.0861403942108154,0.6517305374145508,0.3112075924873352,-0.3710581362247467,0.19045889377593994,-0.23502132296562195,-0.5287412405014038,1.356980323791504,1.3130494356155396,0.0830608606338501,-1.184625267982483,-0.2849482297897339,-1.0484009981155396,1.0078155994415283,-0.5818399786949158,0.000848161056637764,-0.3430771231651306,-0.28937074542045593,-0.11332543939352036,0.32717692852020264,0.3341754078865051,0.3347983956336975,-0.1548919975757599,-0.8710773587226868,1.1654242277145386,-0.5118564963340759,-0.8974639773368835,-1.7198257446289062,0.7382873892784119,0.9609770178794861,-0.17397397756576538,0.3591655194759369,-0.6744922995567322,-0.4058433771133423,0.6695403456687927,0.7239240407943726,0.12185704708099365,0.4729098975658417,0.10047947615385056,1.0790468454360962,-0.3927190601825714,-0.6258108019828796,-0.7526825666427612 -2953,0.6081295609474182,0.4820152819156647,0.6003825068473816,0.07227185368537903,0.23561528325080872,0.480011910200119,0.7883593440055847,-0.460927814245224,-0.4847052991390228,0.7398056387901306,-0.6146882176399231,0.37956684827804565,-0.580501139163971,-1.001954436302185,-0.48224806785583496,0.5548974275588989,-0.7716779112815857,1.1707816123962402,0.32557132840156555,1.1293952465057373,0.15480747818946838,0.12202625721693039,0.06825210899114609,0.33816856145858765,0.6047256588935852,-0.5569123029708862,-0.15591156482696533,-0.06763759255409241,0.47722601890563965,1.0885727405548096,0.9443655014038086,0.17937147617340088,-0.17222675681114197,0.29073378443717957,-0.23090091347694397,-0.001285521313548088,0.3715987801551819,0.25015825033187866,0.434302419424057,0.5443685054779053,0.6371235847473145,0.9574388265609741,0.5413399338722229,0.21944081783294678,0.5703413486480713,-0.7960719466209412,-0.7117903828620911,0.7766231894493103,-0.27443671226501465,0.2998376488685608,-0.5633129477500916,-0.39625295996665955,0.920219898223877,0.4897650182247162,0.7676776051521301,0.46265462040901184,-0.5434169173240662,0.9349506497383118,0.4563080072402954,-0.045608460903167725,-0.9799454808235168,0.2722090482711792,-0.7341309785842896,0.13921838998794556,-0.8299832344055176,-0.11341479420661926,1.2665446996688843,-0.7159550786018372,0.5100605487823486,-0.08009453862905502,0.8856704831123352,-0.1817198097705841,-0.1273038238286972,1.1713380813598633,0.12276645749807358,0.3366265594959259,-0.10949356853961945,-0.07862386852502823,-0.2031310796737671,-0.7284103631973267,-0.4335486590862274,-0.07325520366430283,0.008113937452435493,1.084131121635437,1.0331158638000488,0.9653657674789429,0.3559938967227936,0.7820873856544495,0.4323485791683197,0.2956237196922302,1.3286362886428833,-0.35208117961883545,0.6355539560317993,0.2627638280391693,0.38743123412132263,0.7381337881088257,0.3545759916305542,0.4119177460670471,-0.32851138710975647,-1.0802133083343506,0.44230979681015015,-1.852399468421936,0.04551834613084793,0.5969863533973694,-0.208311527967453,-0.4638226330280304,-0.002291223034262657,-0.7103613615036011,0.3142201006412506,-0.356028288602829,-0.8286096453666687,-0.5214816927909851,-1.2944070100784302,-0.891684889793396,0.6285572052001953,-0.0213896706700325,-0.1950681209564209,0.0943191647529602,-0.8231804966926575,-0.9201145768165588,0.6645748615264893,-1.1386572122573853,-0.7160428762435913,0.566864550113678,-0.10320602357387543,0.8618272542953491,-0.8788395524024963,1.0679609775543213,0.1773967146873474,-0.22158512473106384,0.1845892071723938,0.7152162790298462,-1.189792513847351,-0.03060159832239151,-0.9719609618186951,-0.09093926101922989,-0.35259127616882324,0.19890201091766357,-0.2852516174316406,0.6276639103889465,-0.5755477547645569,-0.9063670039176941,0.13371095061302185,-0.46069100499153137,-0.98926842212677,-0.42300549149513245,-0.6111964583396912,0.6203633546829224,0.7214551568031311,-0.8620923161506653,1.6547592878341675,-0.8146916627883911,0.833126962184906,-0.0006653424352407455,0.09786801785230637,-0.47684940695762634,-0.3430194854736328,0.5083509683609009,0.7596126794815063,0.24969562888145447,0.7578234076499939,-0.04406927525997162,-0.3922947943210602,-1.2565569877624512,-1.09272301197052,-0.24424400925636292,-1.159537434577942,-0.6988179683685303,-0.20961201190948486,0.2246684730052948,0.06561847031116486,0.8506389856338501,-0.8040792942047119,0.21445930004119873,-1.4380561113357544,-0.23367726802825928,0.19238796830177307,-0.743297815322876,1.1006617546081543,-0.29139411449432373,-0.5340919494628906,-0.6222861409187317,-0.446267306804657,0.6126033067703247,-0.4364373981952667,0.11389978975057602,0.10359563678503036,1.0165935754776,-0.04813752323389053,-1.333324670791626,0.4173279106616974,-0.6386385560035706,-0.02489500120282173,-1.0593234300613403,-0.5971661806106567,0.19223040342330933,0.2918015420436859,-0.02234054170548916,-1.4249287843704224,-0.05163255333900452,0.19559383392333984,0.4973140060901642,-0.27152636647224426,-1.2722387313842773,1.359523057937622,-1.310950756072998,0.6385520100593567,0.2980290949344635,-0.3842366337776184,0.48794040083885193,-0.22995975613594055,-0.5419197678565979,1.3438018560409546,1.5851569175720215,0.0698823556303978,-1.1978037357330322,-0.3038741946220398,-1.0615794658660889,1.0367681980133057,0.22493723034858704,-0.012330343946814537,-0.3562556207180023,-0.30254924297332764,-0.12650394439697266,-0.330625981092453,0.3209969103336334,0.34977975487709045,-0.1680704951286316,-0.8842558860778809,1.1740095615386963,-0.52503502368927,-0.9106425046920776,-1.7330042123794556,0.7251088619232178,1.009942650794983,-0.18715247511863708,0.3459870219230652,-0.6876708269119263,-0.419021874666214,0.6563618183135986,0.7107455134391785,0.10867854207754135,0.45973140001296997,0.08730097115039825,1.0658683776855469,-0.4058975577354431,-1.112161636352539,-0.744205892086029 -2954,0.6148592829704285,0.4887450337409973,0.6071122288703918,-0.22388571500778198,0.5409447550773621,0.5310017466545105,0.795089066028595,-0.45419806241989136,-0.39322376251220703,0.7465353608131409,-0.6079584956169128,0.3862966001033783,-0.5737714171409607,-0.9952247142791748,-0.4755183160305023,0.5616271495819092,-0.5263317227363586,1.1775113344192505,0.3323010802268982,1.1595630645751953,0.16153723001480103,0.12875600159168243,0.07498185336589813,0.2747346758842468,0.6114553809165955,-0.550182580947876,-0.1491818130016327,-0.060907844454050064,0.4839557707309723,1.0953024625778198,0.9510952234268188,0.1477707028388977,-0.16549700498580933,0.2974635362625122,-0.7267317771911621,0.005444226786494255,0.5752226114273071,0.2673994302749634,0.44103217124938965,0.5510982275009155,0.6438533067703247,0.9641685485839844,0.5480696558952332,-0.104736328125,0.5770710706710815,-0.7893422245979309,-0.5355863571166992,0.7833529114723206,-0.267706960439682,0.30656740069389343,-0.5565832257270813,-0.3895232081413269,0.9269496202468872,0.5038120746612549,0.7744073271751404,0.4693843722343445,-0.5366871953010559,0.941680371761322,0.46303775906562805,-0.03887871280312538,-0.9732157588005066,0.4209713935852051,-0.7274012565612793,0.1459481418132782,-0.8232535123825073,-0.10668504238128662,1.2936936616897583,-0.7092253565788269,0.5167902708053589,-0.07336479425430298,0.8924002051353455,0.05267870053648949,-0.12057407200336456,1.1780678033828735,0.12949620187282562,0.34335631132125854,-0.1266845166683197,-0.07189412415027618,-0.5033653974533081,-0.7216806411743164,-0.4268189072608948,-0.12072686851024628,0.014843685552477837,0.9620069861412048,1.1018900871276855,0.9720954895019531,0.3627236485481262,0.7888171076774597,0.43907833099365234,0.30235347151756287,1.153109073638916,-0.3453514277935028,-0.17173847556114197,0.2895980179309845,0.3941609859466553,0.7448635101318359,0.36130574345588684,0.8693372011184692,-0.32178163528442383,-1.5564680099487305,0.4490395486354828,-1.5204088687896729,0.052248094230890274,0.6037160754203796,-0.4101616144180298,-0.45709288120269775,0.004438525065779686,-0.7036316394805908,0.32094985246658325,-0.34929853677749634,-0.8218799233436584,-0.5147519707679749,-1.28767728805542,-0.8849551677703857,0.6352869272232056,-0.014659922569990158,-0.18833836913108826,0.10104891657829285,-0.8164507746696472,-0.9133848547935486,0.8077688813209534,-1.2217179536819458,-0.709313154220581,0.5735942721366882,-0.09647627174854279,0.945568323135376,-1.5631719827651978,1.106845736503601,0.18412646651268005,-0.10100619494915009,0.19131895899772644,0.7219460010528564,-1.1830627918243408,-0.023871850222349167,0.04050668701529503,-0.08420951664447784,-0.18199990689754486,0.20563176274299622,-0.278521865606308,0.40589165687561035,-0.6994112133979797,-0.8996372818946838,0.1404407024383545,-0.45396125316619873,-0.9825387001037598,-0.4267342686653137,-0.6044667363166809,0.6270930767059326,0.7153458595275879,-0.855362594127655,1.6614890098571777,-0.8079619407653809,0.8398566842079163,0.006064405664801598,0.10459776222705841,-0.4701196551322937,-0.33628973364830017,0.5150806903839111,0.7663424015045166,0.2564253807067871,0.8193594813346863,0.2480618804693222,-0.38556504249572754,-1.249827265739441,-1.0859932899475098,-0.23751425743103027,-0.6947808861732483,-0.69208824634552,-0.20288226008415222,0.23139822483062744,0.0723482221364975,0.8573687076568604,-0.7973495721817017,0.22118905186653137,-1.4313263893127441,-0.22694751620292664,0.5758603811264038,-0.7365680932998657,1.1073914766311646,-0.2846643626689911,-0.5273622274398804,-0.6155564188957214,-0.43953755497932434,0.619333028793335,-0.4297076463699341,-0.049292903393507004,0.11032538115978241,0.34999969601631165,-0.04140777513384819,-1.3265949487686157,0.42405766248703003,-0.6319088339805603,-0.01816525310277939,-1.05259370803833,-0.5904364585876465,0.19896015524864197,0.29853129386901855,-0.015610793605446815,-1.1836726665496826,-0.00765291228890419,0.20232358574867249,0.5040437579154968,-0.2647966146469116,-1.265509009361267,1.3662527799606323,-1.3042210340499878,0.6452817320823669,0.18369261920452118,-0.37750688195228577,-0.2100774645805359,-0.2232300043106079,-0.5351900458335876,1.5082484483718872,1.5918866395950317,0.07661210000514984,-1.191074013710022,-0.35120052099227905,-0.5460967421531677,1.043497920036316,0.23166698217391968,-0.10238203406333923,-0.3495258688926697,-0.16329409182071686,-0.11977419257164001,-0.5416406989097595,0.32772666215896606,0.3565095067024231,-0.16134074330329895,-0.8775261640548706,1.1807392835617065,-0.5183053016662598,-0.9039127826690674,-1.7621809244155884,0.7240692973136902,1.0166723728179932,-0.18042272329330444,0.3527167737483978,-1.0646682977676392,-0.41229212284088135,0.4044266641139984,0.7174752354621887,-0.3697640597820282,0.4664611518383026,0.04694254696369171,1.0725980997085571,-0.29920870065689087,-1.1054319143295288,-0.7374761700630188 -2955,0.6111679077148438,0.1703648865222931,0.6034208536148071,0.5186805725097656,0.06931963562965393,0.5273103713989258,0.7913976907730103,-0.4578894376754761,-0.2921278476715088,0.7428439855575562,-0.6116498708724976,0.11284846067428589,-0.5774627923965454,-0.9989160895347595,-0.47920969128608704,0.4606357216835022,-0.5300230979919434,1.1738200187683105,0.3286097049713135,1.1558717489242554,0.20440417528152466,0.12506462633609772,-0.052693624049425125,0.29183921217918396,0.6077640056610107,-0.9347477555274963,-0.008538257330656052,-0.06459921598434448,0.4802643954753876,1.0916111469268799,0.9474038481712341,0.144079327583313,-0.16918838024139404,0.2937721610069275,-0.7304231524467468,0.0017528547905385494,0.5715312361717224,0.2335899919271469,0.43734079599380493,0.5474068522453308,0.64016193151474,0.9789119958877563,0.5443782806396484,0.10756389796733856,0.5733796954154968,-0.7930335998535156,-0.5392777323722839,0.7796615362167358,-0.2713983356952667,0.3028760254383087,-0.560274600982666,-0.3932145833969116,0.9232582449913025,0.5292617082595825,0.7707159519195557,0.5008755326271057,-0.5403785705566406,0.9379889965057373,0.48786428570747375,-0.0425700843334198,-0.9769071340560913,0.41728001832962036,-0.731092631816864,0.1263999044895172,-0.43245530128479004,-0.0882190391421318,1.3018165826797485,-0.7129167318344116,0.5130988955497742,-0.0770561695098877,0.8887088298797607,0.04898732900619507,-0.12426544725894928,1.0742367506027222,0.1258048266172409,0.5312476754188538,0.00704150227829814,-0.0755854994058609,-0.5070567727088928,-0.7253720164299011,-0.25788742303848267,-0.124418243765831,0.011152314022183418,0.9583156108856201,1.1107041835784912,0.9684041142463684,0.3590322732925415,0.785125732421875,0.32587528228759766,0.29866209626197815,1.149417757987976,0.06384101510047913,-0.17542985081672668,0.2859066426753998,0.39046961069107056,0.7503755688667297,0.3576143682003021,0.8656458258628845,-0.32547301054000854,-1.5601593255996704,0.4650183320045471,-1.5241001844406128,0.048556722700595856,0.6144563555717468,-0.6183789968490601,-0.46078425645828247,0.0007471530698239803,-0.7073230147361755,0.31725847721099854,-0.35298991203308105,-0.6162493824958801,-0.5184433460235596,-1.2913686037063599,-0.5575762391090393,0.10556662082672119,-0.018351294100284576,-0.19202974438667297,0.09735754132270813,-0.8201421499252319,-0.5083059072494507,0.8040775060653687,-1.2254092693328857,-0.7130045294761658,0.5699028968811035,0.09060877561569214,0.7097063660621643,-1.5668632984161377,1.2103809118270874,0.18043509125709534,-0.1046975702047348,0.18762758374214172,0.7935529947280884,-1.1867541074752808,-0.027563221752643585,0.03681531548500061,0.08069680631160736,0.3400026559829712,0.2019403874874115,-0.2822132408618927,-0.07478663325309753,-0.7031025886535645,-0.9033286571502686,0.13674932718276978,-0.1244935393333435,-0.9862300753593445,-0.43042564392089844,-0.6081581115722656,-0.11473840475082397,0.7116544842720032,-0.8590539693832397,1.6577976942062378,-0.8116533160209656,0.8361653089523315,0.002373033668845892,-0.8828666806221008,-0.3711031675338745,0.36882397532463074,0.6092111468315125,0.7626510262489319,0.2527340054512024,0.8156681060791016,0.1726050078868866,-0.38925641775131226,-1.281661868095398,-0.7953820824623108,-0.241205632686615,-0.698472261428833,-0.6957796216011047,-0.04207649454474449,0.22770684957504272,0.06865684688091278,0.8536773324012756,-0.8010409474372864,0.21749767661094666,-1.435017704963684,-0.23063889145851135,0.5721690058708191,-0.7402594685554504,1.1037001609802246,-0.2883557379245758,-0.5513121485710144,-0.6192477941513062,-0.44322893023490906,0.6156416535377502,-0.39774349331855774,-0.05298427492380142,0.10663400590419769,0.34630832076072693,-0.25908035039901733,-0.9172192215919495,0.311935693025589,-0.635600209236145,-0.021856624633073807,-1.05628502368927,0.24871337413787842,0.19526877999305725,0.29483991861343384,-0.011483699083328247,-1.1873639822006226,-0.011344283819198608,0.19863221049308777,0.5003523826599121,-0.7090640664100647,-1.269200325012207,1.3625614643096924,-1.3079123497009277,0.6415903568267822,0.18000124394893646,-0.3811982572078705,0.011925477534532547,0.14478275179862976,-0.36387011408805847,1.1184828281402588,1.2603508234024048,0.07292072474956512,-1.194765329360962,-0.35489189624786377,-0.5497881174087524,1.039806604385376,-0.054097648710012436,0.5913040041923523,-0.3532172441482544,-0.16698546707630157,-0.12346556782722473,-0.5453320741653442,0.32403528690338135,0.3528181314468384,-0.16503211855888367,-1.0281223058700562,1.1770479679107666,-0.5219966769218445,-1.387922763824463,-1.7981716394424438,0.7203779220581055,1.0129810571670532,-0.18411409854888916,0.3490253984928131,-1.068359613418579,-0.41598349809646606,0.30963459610939026,0.024018827825784683,-0.3734554350376129,0.4627697765827179,0.04325117543339729,1.0689067840576172,-0.3029000759124756,-1.0783344507217407,-0.7411675453186035 -2956,0.6497231721878052,0.18811070919036865,0.6566896438598633,0.5364264249801636,0.08706545829772949,0.5450562238693237,0.8091435432434082,-0.5747851729393005,-0.2743820250034332,0.7605898380279541,-0.5939040184020996,0.13059428334236145,-0.5597169399261475,-0.9811702370643616,-0.4614638686180115,0.47838154435157776,-0.3424881398677826,1.1915658712387085,0.34635552763938904,1.0972837209701538,0.22214999794960022,0.14281044900417328,-0.056353479623794556,0.36111825704574585,0.6255098581314087,-0.5777620077133179,0.009207567200064659,-0.04685339331626892,0.49801021814346313,1.1264175176620483,0.9651497006416321,0.16182515025138855,-0.15144255757331848,0.31151798367500305,-0.7126772999763489,0.019498679786920547,0.5892770886421204,0.25133582949638367,0.4550866186618805,0.38434267044067383,0.6579077839851379,0.9966578483581543,0.5621241331100464,0.12530972063541412,0.5911255478858948,-0.7752877473831177,-0.521531879901886,0.7974073886871338,-0.255134254693985,0.3206218481063843,-0.6069955825805664,-0.37546876072883606,0.9957177639007568,0.46361708641052246,0.7884618043899536,0.6439201831817627,-0.5226327180862427,0.9557348489761353,0.5056101083755493,-0.02482425980269909,-0.9591612815856934,0.4350258409976959,-0.7133467793464661,0.14414572715759277,-0.4147094786167145,-0.07047321647405624,1.3456848859786987,-0.6951708793640137,0.5308447480201721,-0.059310346841812134,0.9596037268638611,0.06673315167427063,-0.10651962459087372,1.0919826030731201,0.14355064928531647,0.4941130578517914,0.024787327274680138,0.04749221354722977,-0.7583985328674316,-0.7076261639595032,-0.4648197591304779,-0.10667242109775543,0.02889813855290413,0.967312753200531,1.0357362031936646,0.9861499667167664,0.3665890693664551,0.8042353987693787,0.5473051071166992,-0.9497087001800537,1.590933084487915,0.08158683776855469,-0.3273317217826843,0.30365246534347534,-0.9944456815719604,0.7681214213371277,0.3753601908683777,0.6154675483703613,-0.307727187871933,-1.5424134731292725,-1.354967713356018,-2.396639347076416,0.06630254536867142,0.6322022080421448,-0.681685209274292,-0.4430384337902069,-0.32680225372314453,-0.41769206523895264,0.3350042998790741,-0.6374634504318237,-0.5985035300254822,-0.24069496989250183,-1.017044186592102,-0.5398303866386414,-0.051244303584098816,-0.0006054695695638657,-0.1742839217185974,0.11510336399078369,-0.802396297454834,-0.8563005924224854,0.8218233585357666,-1.2076634168624878,-0.6952586770057678,0.5876487493515015,0.1083545982837677,0.9219468832015991,-1.5491174459457397,1.2281267642974854,0.3004399240016937,-0.08695174753665924,0.20537340641021729,0.8246572017669678,-1.1690082550048828,-0.009817397221922874,0.05456113815307617,-1.4392261505126953,0.35774847865104675,0.21968621015548706,-0.26446741819381714,-0.05704081058502197,-0.6853567361831665,-0.6909417510032654,0.6493695378303528,0.4295893609523773,-0.9684842228889465,-0.8701416254043579,-0.5904122591018677,-0.09699258208274841,0.7294003367424011,-0.8413081169128418,1.7460565567016602,0.0020050127059221268,0.7975910902023315,0.02011885866522789,-0.7796003818511963,-0.03121611289680004,-0.5441755056381226,0.6724976301193237,0.653896152973175,0.27047982811927795,0.8334139585494995,0.19035083055496216,-0.3715105950832367,-1.263916015625,-0.7776362299919128,-0.22345981001853943,-0.6807264089584351,-0.6780337691307068,-0.02433067001402378,0.2454526722431183,0.08640266954898834,0.6837760210037231,-0.7832950949668884,0.23524349927902222,-1.4172718524932861,-0.4421593248844147,0.589914858341217,-0.45285239815711975,1.3212717771530151,-0.27060991525650024,-0.7776347398757935,-0.6015019416809082,-0.4254831075668335,0.5071728825569153,0.288047730922699,-0.16725265979766846,0.36355599761009216,0.3640541434288025,-0.24133452773094177,-0.6402216553688049,0.32968151569366455,-0.6178543567657471,-0.004110800102353096,-1.038539171218872,0.5556555986404419,0.25603610277175903,0.3125857412815094,0.006262125447392464,-1.1696181297302246,0.006401540711522102,0.24608927965164185,0.23401698470115662,-0.884864091873169,-1.251454472541809,1.3490138053894043,-1.3794938325881958,0.6593362092971802,0.25849077105522156,-0.3362779915332794,0.3165099024772644,0.39293262362480164,-0.23083192110061646,1.1362286806106567,1.2780966758728027,-0.26980552077293396,-1.177019476890564,-0.3371460735797882,-0.011396614834666252,1.057552456855774,-0.036351822316646576,-0.02131679467856884,-0.04228544235229492,-0.149239644408226,-0.10571974515914917,-0.5275862216949463,-0.4082994759082794,0.21187902987003326,-0.1472862958908081,-1.0103764533996582,1.1947938203811646,-0.5042508244514465,-0.31933584809303284,-1.780425786972046,0.7381237745285034,0.959084689617157,-0.1663682758808136,0.27097758650779724,-1.0506137609481812,-0.3982376754283905,0.4951898157596588,0.7920955419540405,-0.35570961236953735,0.48051559925079346,0.06099700182676315,0.9323391914367676,-0.2851542532444,-1.0605885982513428,-0.7234216928482056 -2957,0.6478329300880432,0.43688511848449707,0.6547994017601013,0.424864262342453,0.08517521619796753,0.5431659817695618,0.8072533011436462,-0.5766754150390625,-0.2484503537416458,0.7586995959281921,-0.9159486293792725,0.3512110710144043,-0.5616071820259094,-0.9830604791641235,-0.46335411071777344,0.4764913022518158,-0.3455892503261566,1.1896756887435913,0.3444652855396271,1.0953935384750366,0.2798384428024292,0.14092020690441132,-0.08493787795305252,0.47809863090515137,0.7107023596763611,-0.5796522498130798,0.00731732789427042,-0.048743631690740585,0.4084300696849823,1.1245273351669312,0.9632594585418701,-0.01705622300505638,-0.15333279967308044,0.3096277415752411,-0.7145675420761108,0.017608441412448883,0.5096536874771118,0.1538788378238678,0.45319637656211853,0.5585812330245972,0.656017541885376,0.9947676062583923,0.41332560777664185,-0.416593074798584,0.46799659729003906,-0.7771779894828796,-0.6991118788719177,0.7955171465873718,-0.25702449679374695,0.1449028104543686,-0.222956120967865,-0.2754348814487457,0.9938275218009949,0.5172396898269653,0.7865715622901917,0.6420299410820007,0.07659083604812622,0.9538446068763733,0.5037198662757874,-0.026714498177170753,-0.9610515236854553,0.43313559889793396,-0.715237021446228,0.1698886752128601,-0.41659972071647644,-0.0723634585738182,1.3437947034835815,-0.6970611214637756,0.5289545059204102,0.1377766877412796,0.9499368667602539,0.06484290957450867,-0.10840986669063568,1.090092420578003,0.1416604071855545,0.4922228157520294,0.022897088900208473,0.0456019751727581,-0.7602887749671936,-0.7095164060592651,-0.46671000123023987,-0.1085626631975174,0.027007900178432465,0.965422511100769,0.9483309388160706,0.9483287930488586,0.3646988272666931,0.7812566161155701,0.5454148650169373,-1.2282966375350952,1.3782178163528442,0.07969659566879272,-0.3292219638824463,0.3017622232437134,-0.9963359236717224,0.7662311792373657,0.3734699487686157,0.6135773062705994,-0.30961742997169495,-1.5443036556243896,-0.9702268242835999,-2.398529529571533,0.06441230326890945,0.6303119659423828,-0.683575451374054,-0.44492867588996887,-0.33001241087913513,-0.4195823073387146,0.33311405777931213,-0.6393536925315857,-0.6003937721252441,-0.2425852119922638,-1.0189343690872192,-0.5417206287384033,-0.05310361459851265,-0.0024957088753581047,-0.17617416381835938,0.11321312189102173,-0.804286539554596,-0.8581908345222473,0.8196242451667786,-0.5973513722419739,-0.6971489191055298,0.5857585072517395,0.10646435618400574,1.0672218799591064,-1.551007628440857,1.2262365818023682,0.29854968190193176,-0.0888419896364212,0.20348316431045532,0.7929206490516663,-1.1708984375,-0.5658355355262756,0.05267089977860451,-1.4411163330078125,0.3558582365512848,0.2177959680557251,0.7315086126327515,-0.05893104895949364,-0.4494510293006897,-0.6928319931030273,0.6474792957305908,-1.932803988456726,-0.9703744649887085,0.2173052430152893,-0.5923025012016296,-0.09888282418251038,0.7023645639419556,-0.5355027318000793,1.7125515937805176,-0.28495359420776367,0.7957008481025696,-0.5229378938674927,0.10073596239089966,-0.3005659878253937,-0.5460657477378845,0.6706073880195618,0.6307023763656616,0.010258915834128857,0.8315237164497375,0.1884605884552002,-0.3011443018913269,-1.1011829376220703,-0.7795264720916748,0.2352372705936432,-0.682616651058197,-0.7007462978363037,-0.026220908388495445,0.36346203088760376,0.08451242744922638,0.6818857789039612,-0.7851853370666504,0.23335325717926025,-1.4191620349884033,-0.44404956698417664,0.5880246162414551,-0.4547426402568817,1.319381594657898,-0.2725001573562622,-0.6870273947715759,-0.6033921837806702,-0.42737334966659546,0.7976452708244324,0.286157488822937,-0.16914290189743042,0.046900782734155655,0.3621639013290405,-0.24322476983070374,-0.6421118974685669,0.3277912735939026,-0.619744598865509,-0.016347678378224373,-1.0404293537139893,0.5537653565406799,-0.43263083696365356,0.2678894102573395,0.004371886141598225,-1.1715083122253418,0.3365122079849243,0.24419903755187988,0.23212674260139465,-1.0289638042449951,-1.2533446550369263,1.347123622894287,-1.381384015083313,0.5478509068489075,0.2566005289554596,-0.3381682336330414,0.1145830899477005,0.3910423815250397,-0.23272216320037842,1.1343384981155396,1.431839108467102,-0.2716957628726959,-1.2461214065551758,-0.33903631567955017,-0.013286854140460491,1.0556622743606567,-0.03824206069111824,-0.023207033053040504,-0.044175680726766586,-0.15112988650798798,-0.10760998725891113,0.18006205558776855,-0.7479206919670105,0.21577127277851105,-0.14917653799057007,-1.0744187831878662,1.1929036378860474,-0.5061410665512085,-0.3212260901927948,-1.782315969467163,0.5908440947532654,1.1860333681106567,-0.16825851798057556,0.13360416889190674,-1.0525039434432983,-0.40012791752815247,0.5816230773925781,0.7902052998542786,-0.18085303902626038,0.4786253571510315,0.05910676345229149,0.9304489493370056,-0.34931138157844543,-1.06247878074646,-0.7253119349479675 -2958,0.7120135426521301,0.501065731048584,0.7189800143241882,0.4890448749065399,0.14935582876205444,0.6073465943336487,0.8714339137077332,-0.5124948024749756,-0.1842697262763977,0.822880208492279,-0.8517680168151855,0.4153916835784912,-0.6349655389785767,-0.4778153896331787,-0.3991734981536865,0.5406719446182251,-0.2814086377620697,1.2538563013076782,0.408645898103714,1.2789415121078491,0.2214093804359436,0.20510083436965942,0.1908358335494995,0.5422792434692383,0.8827953934669495,-0.5154716372489929,0.07149794697761536,0.015436988323926926,0.4726106822490692,1.188707947731018,1.027440071105957,0.04712439700961113,-0.08915217965841293,0.373808354139328,-0.26269418001174927,0.0817890614271164,0.5738343000411987,0.2180594503879547,0.5173770189285278,0.6227618455886841,0.7984437346458435,1.058948278427124,0.47750622034072876,-0.35241246223449707,0.532177209854126,-1.0282965898513794,-0.6349312663078308,0.8972682952880859,-0.19284388422966003,0.28272196650505066,-0.09458111971616745,-0.3961900472640991,1.0580081939697266,0.5798966288566589,0.8507521748542786,0.649069607257843,-0.540625810623169,1.018025279045105,0.5679004788398743,0.03746612370014191,-0.8968709111213684,0.36557653546333313,-0.5993873476982117,0.18774721026420593,-0.3524191081523895,-0.010441415011882782,1.4079753160476685,-0.6328805088996887,0.5931351184844971,0.03919465094804764,1.0141174793243408,0.12902352213859558,-0.04422924667596817,1.1542730331420898,0.2058410346508026,0.5564034581184387,-0.015740446746349335,0.10978259146213531,-0.7448557615280151,-0.5647319555282593,-0.40252938866615295,-0.044382043182849884,-0.1471594274044037,1.0387357473373413,1.008069396018982,0.9690433144569397,0.42887943983078003,0.8578993082046509,0.6095954775810242,-1.1641160249710083,1.2735414505004883,0.14387720823287964,-0.2650413513183594,-0.026637308299541473,-0.9350565671920776,0.8582220673561096,0.43765056133270264,0.6777579188346863,-0.521274209022522,-1.4801230430603027,-0.6545534133911133,-2.3343489170074463,-0.2014966905117035,0.7837542295455933,-0.619394838809967,-0.5883650183677673,-0.2658317983150482,-0.3554016947746277,0.39729467034339905,-0.5751730799674988,-0.5362131595611572,-0.17840459942817688,-0.9547537565231323,-0.4775400161743164,0.013051532208919525,0.06168491020798683,-0.11199354380369186,0.17739373445510864,-0.740105926990509,-0.7940102219581604,0.524005115032196,-0.6302810311317444,-0.6329683065414429,0.5371080040931702,-2.0345520973205566,0.7915279269218445,-1.48682701587677,1.290417194366455,0.3627302944660187,-0.024661369621753693,0.26766377687454224,0.8571012616157532,-1.106717824935913,-0.5016549229621887,0.11685152351856232,-1.3769357204437256,0.4200388491153717,-0.23381352424621582,-0.249426007270813,0.005249571055173874,-0.3852704167366028,-0.6286513805389404,0.4122474193572998,-1.8686233758926392,-0.9061938524246216,0.2814858555793762,-1.0857151746749878,-0.034702204167842865,0.7665451765060425,-0.47132211923599243,1.7479126453399658,-0.22077298164367676,0.8598814606666565,-0.11165862530469894,0.16491657495498657,-0.11223163455724716,-0.4818851351737976,0.7347880005836487,0.8343544602394104,0.07443953305482864,0.8957043290138245,0.2526412010192871,-0.23696368932724,-1.9009281396865845,-0.7153458595275879,0.2994178831577301,-0.6184360384941101,-0.5073299407958984,0.037959709763526917,0.061919547617435455,-0.24204504489898682,0.7460663914680481,-0.7210047245025635,-0.2192380428314209,-1.3549814224243164,-0.4874582290649414,0.652205228805542,-0.6831750869750977,1.3835622072219849,-0.2083195447921753,-0.6119037866592407,-0.5392115712165833,-0.36319273710250854,0.8618258833885193,-0.12060972303152084,-0.10496228188276291,-0.48641538619995117,0.42634451389312744,-0.17904415726661682,-0.57793128490448,0.3919718861579895,-0.5307073593139648,0.04783294349908829,-1.0456918478012085,0.6179459691047668,-0.36845022439956665,0.3320700228214264,0.06855250895023346,-1.4235527515411377,0.40069282054901123,0.3083796501159668,0.29630735516548157,-1.280487298965454,-1.1891640424728394,1.411304235458374,-1.317203402519226,0.6673544049263,0.3207811415195465,-0.27398762106895447,0.1787637174129486,0.4552229940891266,-0.1685415506362915,1.04606032371521,1.496019721031189,-0.33725500106811523,-1.1819407939910889,-0.27485570311546326,0.10061580687761307,1.1198428869247437,-1.035752773284912,0.040973588824272156,0.020004939287900925,-0.08694926649332047,-0.04342936724424362,-1.0132344961166382,-0.6837400794029236,0.27995190024375916,-0.08499591797590256,-1.0102381706237793,1.157089114189148,-0.4419604539871216,-0.2570454776287079,-1.7181353569030762,0.5950242280960083,1.2502139806747437,-0.10407789796590805,0.19778478145599365,-2.07287859916687,-0.33594730496406555,0.645803689956665,0.8543859124183655,-1.381608009338379,0.5428059697151184,0.1232873797416687,0.9946295619010925,-0.2851307690143585,-1.36635160446167,-0.49755650758743286 -2959,0.6875608563423157,0.4897177815437317,0.6945273280143738,0.46459218859672546,0.12490314245223999,0.5828939080238342,0.8469812273979187,-0.53694748878479,-0.20872241258621216,0.7830232977867126,-0.876220703125,0.39093899726867676,-0.6510037183761597,0.19454628229141235,-0.37288898229599,0.5162192583084106,-0.33319973945617676,1.2294036149978638,0.38419321179389954,1.1527409553527832,0.19695669412612915,0.18064814805984497,0.16638314723968506,0.5178265571594238,0.858342707157135,-0.3287469744682312,0.0470452643930912,-0.009015694260597229,0.44815799593925476,1.1642552614212036,1.0029873847961426,-0.38056865334510803,-0.24252548813819885,0.34935566782951355,-0.2871468663215637,0.05733637884259224,0.5493816137313843,0.19360676407814026,0.4929243326187134,0.5983091592788696,0.773991048336029,1.0344955921173096,0.4530535340309143,-0.13696278631687164,0.6749100685119629,-1.0527492761611938,-0.6593839526176453,0.8728156089782715,-0.5396430492401123,0.2582692801952362,-0.1190337985754013,-0.4206427335739136,1.033555507659912,0.5554439425468445,0.827972412109375,0.6246169209480286,-0.11934852600097656,0.9421722292900085,0.5434477925300598,-0.10980376601219177,-0.9213235974311829,0.3411238491535187,-0.40767377614974976,0.24763259291648865,-0.376871794462204,-0.03489409759640694,1.3142365217208862,-0.6573331952095032,0.4849533438682556,0.014741968363523483,1.0458083152770996,0.10457083582878113,-0.06868192553520203,1.1298203468322754,0.18138834834098816,0.5319507718086243,0.079770028591156,0.08532990515232086,-0.7693084478378296,-0.5891846418380737,-0.4269820749759674,-0.06883472204208374,-0.17161211371421814,1.0142830610275269,0.9846117496490479,0.9621118903160095,0.4044267535209656,0.8334466218948364,0.5507252216339111,-1.1885687112808228,1.2490887641906738,0.11942452192306519,-0.28949403762817383,-0.05108999088406563,-0.9595092535018921,0.8337693810462952,0.4131978750228882,0.6533052325248718,-0.4542677700519562,-1.631018042564392,-0.6790060997009277,-2.0880815982818604,-0.22594937682151794,0.7593015432357788,-0.6438475251197815,-0.6128177046775818,-0.20636014640331268,-0.2883324921131134,0.3728419840335846,0.4395415186882019,-0.5606658458709717,-0.3826068341732025,-0.6592742204666138,-0.3672667145729065,0.06446009874343872,0.03723222762346268,-0.13644622266292572,0.1529410481452942,-0.7645586133003235,-0.30636608600616455,0.4995524287223816,-0.6547337174415588,0.15459483861923218,0.5126553177833557,-1.9855854511260986,0.76707524061203,-0.8748987913131714,1.2659645080566406,0.3382776081562042,-0.04911405220627785,0.24321109056472778,0.8326485753059387,-1.0772171020507812,-0.5261076092720032,-0.5413596630096436,0.1421576738357544,0.39558616280555725,-0.2582662105560303,-0.27387869358062744,-0.01920311152935028,-0.40972310304641724,-0.6531040668487549,0.5724599361419678,-0.13354504108428955,-0.930646538734436,-0.21680283546447754,-1.331404685974121,-0.05915488675236702,0.742092490196228,-0.4957748055458069,1.7234599590301514,0.008618656545877457,0.835428774356842,-0.1361113041639328,0.14046388864517212,-0.13668431341648102,-0.8373174667358398,0.7103353142738342,0.809901773929596,-0.2692350447177887,0.87125164270401,0.22818851470947266,-0.26141637563705444,-1.925380825996399,-0.7397985458374023,0.27496519684791565,-0.6428887248039246,-0.5317826271057129,0.013507027179002762,0.0374668650329113,-0.26649773120880127,0.7216137051582336,-0.7454574108123779,-0.24369072914123535,-1.3794341087341309,-0.5119109153747559,0.5567871332168579,-0.7076277732849121,1.3591095209121704,-0.23277223110198975,-0.6363564729690552,-0.5636642575263977,-0.387645423412323,0.29815006256103516,-0.1450624018907547,-0.15161585807800293,-0.5108680725097656,0.33914244174957275,-0.20349684357643127,-0.6023839712142944,0.6374719142913818,-0.5114421844482422,0.023380260914564133,-1.070144534111023,0.5934932827949524,-0.034567590802907944,0.30761733651161194,0.044099826365709305,-1.4480054378509521,0.24622735381126404,0.28392696380615234,0.2718546688556671,-1.3049399852752686,-1.2136167287826538,1.3868515491485596,-1.3416560888290405,0.6876075267791748,0.29632845520973206,-0.36437731981277466,-0.8293520212173462,0.43077030777931213,-0.19299423694610596,1.0216076374053955,1.4715670347213745,-0.3617076873779297,-1.2063934803009033,-0.2993083894252777,-0.2103908658027649,1.0953902006149292,-1.0602054595947266,0.016520906239748,-0.00444774329662323,-0.11140194535255432,0.21183571219444275,-0.44640082120895386,-0.708192765712738,0.2554992139339447,-0.10944859683513641,-1.0346908569335938,1.1942957639694214,-0.46641314029693604,-0.28149816393852234,-1.4741313457489014,0.5705715417861938,1.2257612943649292,-0.1285305768251419,0.1733320951461792,-2.2255709171295166,-0.36039999127388,0.6213510036468506,0.3981306850910187,-1.4060606956481934,0.518353283405304,0.09883469343185425,0.9701768755912781,-0.309583455324173,-1.345988154411316,-0.31979987025260925 -2960,0.6031203866004944,0.47987252473831177,0.7309108972549438,0.45474693179130554,0.11505788564682007,0.5730486512184143,0.8371359705924988,-0.54679274559021,-0.12454339861869812,0.9450504779815674,-0.8860659599304199,0.40030860900878906,-0.41307660937309265,0.18470102548599243,-0.3827342391014099,0.5063740015029907,-0.32998231053352356,1.2195583581924438,0.3743479549884796,1.1420589685440063,0.1682654321193695,0.10608674585819244,-0.04306967556476593,0.5079813003540039,0.8484974503517151,-0.3385922312736511,0.03720001131296158,-0.018860949203372,0.43831273913383484,1.1544100046157837,0.9842038750648499,-0.39041391015052795,-0.19890137016773224,0.18252409994602203,-0.29699212312698364,0.047491125762462616,0.5395363569259644,0.25302594900131226,0.48307907581329346,0.5884639024734497,0.7641457915306091,1.0589985847473145,0.47542887926101685,0.016093017533421516,0.665064811706543,-1.0625945329666138,-0.6692292094230652,0.8629703521728516,-0.5494883060455322,0.24842402338981628,-0.12887905538082123,-0.6769665479660034,0.9838042259216309,0.5455986857414246,0.8181271553039551,0.5037810802459717,-0.12919378280639648,0.9323269724845886,0.5336025357246399,0.2217179834842682,-0.9405431151390076,0.3913591504096985,-0.4175190329551697,0.23778733611106873,-0.3867170512676239,-0.04473935067653656,1.2348452806472778,-0.6671784520149231,0.4751080870628357,0.004896713420748711,1.0359630584716797,0.03589309751987457,-0.06060333549976349,1.1199750900268555,0.17154309153556824,0.5221055150032043,0.06992477178573608,-0.018641984090209007,-0.7791537046432495,-0.5990298986434937,-0.43682733178138733,-0.07867997884750366,-0.18145737051963806,1.004437804222107,0.9747664928436279,0.8784908652305603,0.44369155168533325,0.7996258735656738,0.5408799648284912,-1.1984139680862427,1.239243507385254,0.10957926511764526,-0.29933929443359375,-0.06093524396419525,-0.8583322763442993,0.8239241242408752,0.40335261821746826,0.6434599757194519,-0.4641130268573761,-1.640863299369812,-0.6888513565063477,-2.0979268550872803,-0.17772620916366577,0.7494562864303589,-0.6536927819252014,-0.6226629614830017,-0.19704075157642365,-0.2981777489185333,0.3629967272281647,0.429696261882782,-1.1331710815429688,-0.39245209097862244,0.6289122104644775,0.5118255019187927,0.0546148419380188,0.027386972680687904,-0.14629147946834564,-0.34527304768562317,-0.7744038701057434,-0.3162113428115845,0.48970717191696167,-0.6645789742469788,0.14474958181381226,0.3675674796104431,-1.9954307079315186,0.7572299838066101,-0.8847440481185913,1.2561192512512207,0.3284323513507843,-0.05895930528640747,0.23336583375930786,0.8228033185005188,-1.0870623588562012,-0.5359528660774231,-0.5512049198150635,0.13231241703033447,0.38574090600013733,-0.2681114673614502,-0.01249411515891552,0.35277122259140015,-0.41956835985183716,-0.6629493236541748,0.5626146793365479,-0.14339029788970947,-0.6156831979751587,-0.22664809226989746,-1.341249942779541,-0.06900013983249664,0.7322472333908081,-0.5056200623512268,1.7136147022247314,-0.4973413348197937,0.8255835175514221,-0.14595656096935272,0.1306186318397522,-0.14652957022190094,-0.8471627235412598,0.7004900574684143,0.800056517124176,0.245518296957016,0.8614063858985901,-0.13330820202827454,0.1055762767791748,-1.9352260828018188,-0.7496438026428223,0.2651199400424957,-0.6527339816093445,-0.6274899244308472,-0.07261575758457184,-0.09008443355560303,-0.2763429880142212,0.7117684483528137,-0.7553026676177979,-0.13616245985031128,-1.3892793655395508,-0.38526225090026855,0.1732635200023651,-0.717473030090332,1.162055253982544,-0.24261748790740967,-0.6462017297744751,-0.5735095143318176,-0.3974906802177429,0.28830480575561523,-0.15490765869617462,-0.16146111488342285,0.09912383556365967,0.32929718494415283,-0.2133421003818512,-0.6122292280197144,0.6276266574859619,-0.44264113903045654,0.01353500597178936,-1.1698837280273438,0.5836480259895325,-0.04441284388303757,0.297772079706192,-0.32282787561416626,-1.457850694656372,0.23638209700584412,0.2740817070007324,0.2620094120502472,-0.8462871313095093,-1.5360547304153442,1.3256984949111938,-1.2155225276947021,0.6777622699737549,0.4238108992576599,-0.38763177394866943,-0.8391972780227661,0.4209250509738922,-0.20283949375152588,1.0117623805999756,1.4617217779159546,-0.3715529441833496,-1.2162387371063232,-0.30915364623069763,-0.24612212181091309,1.0183883905410767,-1.0700507164001465,0.0066756512969732285,-0.014292998239398003,-0.12124720215797424,0.14214648306369781,-0.4562460780143738,-0.718038022518158,0.24565395712852478,0.28495389223098755,-1.0445361137390137,1.1844505071640015,-0.47625839710235596,-0.3497464656829834,-1.4839766025543213,0.5607262849807739,1.2159160375595093,-0.13837583363056183,0.25912052392959595,-2.105695962905884,-0.9364590644836426,0.6115057468414307,0.38828542828559875,0.02268815226852894,-0.0453227162361145,-0.07977312803268433,0.6561245918273926,-0.3194287121295929,-1.5890480279922485,-0.3296451270580292 -2961,0.5851132869720459,0.4618653953075409,0.7129037976264954,0.43673980236053467,0.0970507562160492,0.5550415515899658,0.8191288709640503,-0.6671903133392334,-0.142550528049469,0.9270433783531189,-0.9040730595588684,0.3823014795780182,-0.37531745433807373,0.16669389605522156,-0.4007413685321808,0.49110034108161926,-0.22086133062839508,1.2015511989593506,0.35634082555770874,1.124051809310913,0.15025830268859863,0.08807961642742157,-0.061076804995536804,0.48997417092323303,0.7917189598083496,-0.356599360704422,0.019192883744835854,-0.036868076771497726,0.4980088770389557,1.1364028453826904,0.9661967754364014,-0.7247787117958069,-0.2169084995985031,-0.20845051109790802,-0.17660607397556305,0.02948399819433689,0.2999247908592224,0.23501881957054138,0.4650719463825226,0.5704568028450012,0.7461386919021606,1.0409914255142212,0.4305555820465088,-0.4178439676761627,0.6470577120780945,-1.080601692199707,-0.294831246137619,0.8560452461242676,-0.5674954056739807,0.2304168939590454,-0.1468861848115921,-0.8823999166488647,0.9657971262931824,0.5275915861129761,0.8001200556755066,0.6075676679611206,-0.14720091223716736,0.9143198728561401,0.5155954360961914,0.20371085405349731,-0.963543176651001,0.4068230092525482,-0.43552616238594055,0.21978020668029785,-0.4047241806983948,-0.06274648010730743,1.2315702438354492,-0.6851855516433716,0.4571009576320648,-0.013110414147377014,1.0179558992385864,0.017885969951748848,-0.07861046493053436,1.1019679307937622,0.050264641642570496,0.5040984153747559,0.05191764235496521,-0.03664911165833473,-0.797160804271698,-0.6170369982719421,-0.6146209836006165,-0.09668710827827454,-0.19946449995040894,1.0487984418869019,0.9867520928382874,0.7931411862373352,0.4256844222545624,0.7816187739372253,0.5228728652000427,-0.8041456341743469,1.1667611598968506,0.09157213568687439,-0.3173464238643646,-0.07894237339496613,-0.8763393759727478,0.8059170246124268,0.5100921988487244,0.6254528760910034,-0.482120156288147,-1.6588704586029053,0.26758691668510437,-1.2004059553146362,-0.14901193976402283,0.7418078184127808,-0.6716998815536499,-1.0591166019439697,-0.21504788100719452,-0.3161848783493042,0.05620235204696655,0.4116891324520111,-1.151178240776062,-0.11219370365142822,0.610905110836029,0.49381837248802185,0.5469501614570618,0.00937984511256218,-0.5152753591537476,0.5770519375801086,-0.7924109697341919,-0.33421847224235535,0.4717000424861908,-0.6825860738754272,0.12674245238304138,0.34956035017967224,-2.0134377479553223,0.7392228841781616,-0.9027511477470398,1.2381120920181274,0.3104252219200134,-0.07696643471717834,0.05463224649429321,0.9539594054222107,-1.1050695180892944,-0.5322579145431519,-0.569212019443512,0.1143052875995636,0.36773377656936646,-0.28611859679222107,-0.030501242727041245,0.3347640931606293,-0.43757548928260803,-0.7477195858955383,0.5446075797080994,-1.158969759941101,-0.6336902976036072,-0.17322736978530884,-0.40287503600120544,0.5122727155685425,0.7142401337623596,-0.5236271619796753,1.64896559715271,-0.7438433170318604,0.8075764179229736,-0.16330784559249878,0.11261150240898132,0.04939626157283783,-0.8651698231697083,0.5355461239814758,0.7820494174957275,0.22751116752624512,0.9558893442153931,-0.06726741045713425,0.08756914734840393,-1.953233242034912,-0.968306303024292,0.5949602723121643,-0.691834032535553,-0.7206857800483704,-0.09062288701534271,-0.1080915629863739,-0.29435011744499207,0.6789023876190186,-1.2270861864089966,-0.15416958928108215,-1.407286524772644,-0.40326938033103943,0.2332724630832672,-0.5636663436889648,1.2729744911193848,-0.26062461733818054,-0.6642088294029236,-0.5915166139602661,0.25340595841407776,0.6483171582221985,-0.1729147881269455,-0.17946824431419373,-0.10287053883075714,0.31129005551338196,-0.23134922981262207,-0.6302363276481628,0.5005320906639099,-0.4606482684612274,-0.018254809081554413,-0.3048690855503082,0.565640926361084,-0.06241997331380844,0.41391608119010925,-0.38407063484191895,-1.6138375997543335,0.21837496757507324,0.25607457756996155,0.24400228261947632,-0.8642942309379578,-1.5540618896484375,1.4716846942901611,-1.2335296869277954,0.5780507922172546,0.6645427346229553,-0.4056389033794403,-0.9366282224655151,-0.0077604930847883224,-0.22084662318229675,0.9937552809715271,1.4437146186828613,-0.3323849141597748,-1.2342458963394165,-0.3271607756614685,-0.016055865213274956,1.0003812313079834,-0.7686488032341003,-0.011331476271152496,0.08476222306489944,-0.13925433158874512,0.12413935363292694,-0.7689219117164612,-0.7360451221466064,0.2276468276977539,0.2669467628002167,-1.062543272972107,1.144350290298462,-0.49426552653312683,-0.3677535951137543,-1.5019837617874146,0.5427191853523254,1.197908878326416,-0.1563829630613327,0.24111339449882507,-2.1237030029296875,-0.9544661641120911,0.6140903830528259,0.3702782988548279,-0.14536473155021667,-0.0511859655380249,-0.0977802574634552,0.676118791103363,-0.33743584156036377,-1.6070551872253418,-0.34765225648880005 -2962,0.5989004969596863,0.4756525754928589,0.48386380076408386,0.45052698254585266,0.11083793640136719,0.5688287615776062,0.8329160809516907,-0.653403103351593,-0.2804330289363861,0.9408305883407593,-0.890285849571228,0.48296669125556946,-0.36153027415275574,-0.7573614716529846,-0.3869541883468628,0.5048875212669373,-0.4198690950870514,1.2699545621871948,0.37012800574302673,1.1378389596939087,0.16404548287391663,0.14998862147331238,-0.04728962108492851,0.503761351108551,0.80550616979599,-0.342812180519104,0.032980065792798996,-0.023080892860889435,0.5117960572242737,1.150189995765686,0.9799839854240417,-0.7109915018081665,-0.9824632406234741,-0.19466333091259003,0.34549638628959656,-0.09873203188180923,0.3137119710445404,0.24880599975585938,0.4788591265678406,0.5842440128326416,0.759925901889801,1.017025113105774,0.47900834679603577,-0.35823938250541687,0.6608449220657349,-1.0668145418167114,-0.3986149728298187,0.8389824032783508,-0.5537081956863403,0.2442040741443634,-0.1330990046262741,-0.8686127066612244,0.8856509327888489,0.5413787961006165,0.813907265663147,0.621354877948761,-0.13341373205184937,0.9281070828437805,0.4649496376514435,0.2174980342388153,-0.9497559666633606,0.4206101894378662,-0.5898549556732178,0.18919925391674042,-0.3909370005130768,-0.04895929619669914,1.2453573942184448,-1.137974500656128,0.5210089087486267,-0.038613248616456985,1.031743049621582,0.03167315199971199,-0.06482328474521637,1.1157550811767578,0.06405182182788849,0.5178856253623962,0.0657048225402832,-0.13795529305934906,-0.7833735942840576,-0.6293399333953857,-0.602919340133667,-0.2238999903202057,-0.18567731976509094,1.0625855922698975,1.0515978336334229,0.8069283962249756,0.43947160243988037,0.7954059839248657,0.5358882546424866,-0.7903584241867065,1.1805483102798462,0.04302279278635979,-0.30355924367904663,-0.06515519320964813,-0.5949171185493469,0.8197042346000671,0.5238794088363647,0.6392400860786438,-0.468332976102829,-0.7077932953834534,0.12253542244434357,-1.1866188049316406,0.30277782678604126,0.7555950284004211,-0.6579126715660095,-1.0453294515609741,-0.20126070082187653,-0.3023976981639862,0.06998953223228455,0.4254763126373291,-1.1373910903930664,-0.5925692319869995,0.6246923208236694,0.5076055526733398,0.5607373714447021,0.02316702902317047,-0.5014881491661072,0.590839147567749,-0.7786237597465515,-0.32043129205703735,0.12205290794372559,-0.6687988638877869,0.14052963256835938,0.36334753036499023,-1.9996505975723267,0.753010094165802,-0.5926204323768616,1.251899242401123,0.3242124021053314,-0.06317925453186035,0.0684194266796112,0.9677466154098511,-1.0912823677062988,0.16860011219978333,-0.5554248094558716,0.1280924677848816,0.38152095675468445,-0.2723314166069031,0.08777780830860138,0.34855127334594727,-0.42378830909729004,-0.733932375907898,0.572342038154602,-1.1451826095581055,-0.6199030876159668,-0.15944018959999084,-0.38908785581588745,0.07969120144844055,0.6102287769317627,-0.5098399519920349,1.6627527475357056,-0.73005610704422,0.9351292252540588,-0.1495206654071808,0.12639868259429932,0.06318344175815582,-0.8513826131820679,0.5493333339691162,0.6714031100273132,0.23604658246040344,0.9696765542030334,0.557659387588501,0.10135632753372192,-1.848803997039795,-0.9545190930366516,0.6087474822998047,-0.6780468225479126,-0.6601542830467224,-0.07683570683002472,-0.09430438280105591,-0.2805629372596741,0.7251100540161133,-1.213299036026001,-0.14038240909576416,-2.043564796447754,-0.38948220014572144,0.4616311490535736,-0.5498791337013245,1.2616525888442993,-0.24683743715286255,-0.6504216194152832,-1.138062596321106,0.26719313859939575,0.6621043682098389,-0.1591276079416275,-0.6760633587837219,-0.9949274659156799,0.32507723569869995,-0.21756204962730408,-0.6164491176605225,0.5143193006515503,-0.4468610882759094,-0.004467626102268696,-0.8291211724281311,0.7223078012466431,-0.04863278940320015,0.42770326137542725,-0.37028345465660095,-1.600050449371338,0.23216214776039124,0.470231294631958,0.6071600317955017,-0.8505070209503174,-1.540274739265442,1.4854718446731567,-0.6404638886451721,0.5483511686325073,0.6783299446105957,-1.1260693073272705,-0.9228410124778748,-0.14604178071022034,-0.20705944299697876,1.0075424909591675,1.457501769065857,-0.3185977339744568,-1.220458745956421,-0.3133735954761505,-0.5516841411590576,1.014168381690979,-0.75486159324646,0.0024557067081332207,0.09854940325021744,-0.12546715140342712,0.13792653381824493,-0.7551347017288208,-0.02088620886206627,0.2414340078830719,0.23564653098583221,-1.0487561225891113,1.1581374406814575,-0.32642802596092224,-0.3539664149284363,-1.488196611404419,0.5565063953399658,1.2116960287094116,-0.1425957828760147,0.25490057468414307,-2.1099157333374023,-0.9406789541244507,0.6278775930404663,0.3840654790401459,-0.13157755136489868,0.2803448438644409,-0.22932562232017517,0.6899060010910034,-0.4751764237880707,-1.5932680368423462,-0.33386507630348206 -2963,0.5991379618644714,0.704471230506897,0.4841012954711914,0.4507644772529602,0.11107543110847473,0.5690662264823914,0.8149354457855225,-0.4733911156654358,-0.28019553422927856,0.9410680532455444,-0.568297266960144,0.4049128592014313,-0.3612927794456482,-0.7571240067481995,-0.38671669363975525,0.5051249861717224,-0.41963160037994385,1.2150448560714722,0.3703655004501343,1.1380764245986938,0.16428297758102417,0.22558407485485077,-0.04705213010311127,0.5039988160133362,0.8057436347007751,-0.2581756114959717,0.03321755677461624,-0.3985699713230133,0.5120335221290588,1.1504274606704712,0.9802214503288269,-0.7107540369033813,-0.982225775718689,-0.19442583620548248,0.3457338809967041,-0.09849453717470169,0.31394946575164795,0.24904349446296692,0.4790966212749481,0.5844814777374268,0.7859740853309631,1.017262578010559,0.4792458415031433,-0.3580018877983093,0.66108238697052,-1.0665770769119263,-0.38608255982398987,0.839219868183136,-0.13150426745414734,0.24444156885147095,-0.13286150991916656,-0.4821920096874237,0.885888397693634,0.5220335721969604,0.8141447305679321,0.4617341160774231,-0.13317623734474182,0.9283445477485657,0.502561092376709,0.21773552894592285,-0.9495185017585754,0.42084768414497375,-0.4738585352897644,0.18943674862384796,-0.39069950580596924,-0.0487218052148819,1.24559485912323,-0.4949427545070648,0.5212463736534119,-0.03837575763463974,1.0319805145263672,-0.24336941540241241,-0.06458579003810883,1.115992546081543,0.06428931653499603,0.5181230902671814,-0.03688972815871239,-0.13771779835224152,-0.7831361293792725,-0.5944614410400391,-0.6026818752288818,-0.22366249561309814,-0.1854398250579834,1.0628230571746826,0.9853001236915588,0.7146772742271423,0.32416123151779175,0.8113361597061157,0.5361257195472717,-0.7901209592819214,1.1807857751846313,0.04326028376817703,-0.3033217489719391,-0.06491769850254059,-0.8329111933708191,0.8199416995048523,0.5241168737411499,0.639477550983429,-0.46809548139572144,-0.7075558304786682,0.12277291715145111,-1.3643535375595093,0.24422794580459595,0.7558324933052063,-0.6576752066612244,-1.045091986656189,-0.31873059272766113,-0.5309240818023682,0.03556445240974426,0.42571380734443665,-1.1371536254882812,-0.5923317670822144,0.38413694500923157,-0.2918195426464081,0.5609748363494873,0.023404521867632866,-0.501250684261322,0.4740765690803528,-0.7783862948417664,-0.3201937973499298,0.12229040265083313,-0.6685613989830017,-0.08770830929279327,0.5324394106864929,-1.9994131326675415,0.7532475590705872,-0.5923829674720764,1.2521367073059082,0.32444989681243896,0.0640757828950882,0.06865692138671875,0.9679840803146362,-1.0910449028015137,0.16883760690689087,0.03783616051077843,0.12832996249198914,0.381758451461792,-0.27209392189979553,0.44518837332725525,0.3487887680530548,-0.4235508143901825,-0.8684005737304688,-0.2501302659511566,-1.1449451446533203,-0.6890751719474792,-0.20831924676895142,-0.3888503611087799,0.0799286961555481,0.5741784572601318,-0.5096024870872498,1.6629902124404907,-0.7298186421394348,0.935366690158844,0.10262486338615417,0.12663617730140686,0.06342093646526337,-0.8511451482772827,0.5495707988739014,0.8244132995605469,-0.7365200519561768,0.9699140191078186,-0.07513710856437683,0.10159382224082947,-1.8485665321350098,-0.8098423480987549,0.6089849472045898,-0.0023961388505995274,-0.6599168181419373,-0.010778682306408882,-0.09406688809394836,-0.2721354365348816,0.8052905201911926,-1.2130615711212158,-0.14473870396614075,-2.0433273315429688,-0.3892447054386139,0.46186864376068115,-0.5496416687965393,1.2618900537490845,-0.246599942445755,-0.650184154510498,-1.1378251314163208,0.2674306333065033,0.662341833114624,-0.15889011323451996,-0.6758258938789368,-0.45808467268943787,0.3253147304058075,-0.21732455492019653,-1.3655292987823486,0.5145567655563354,-0.4466235935688019,-0.004230133723467588,-0.828883707523346,0.7225452661514282,-0.048395298421382904,0.4279407560825348,-0.3700459599494934,-1.5998129844665527,0.23239964246749878,0.47046878933906555,0.6073974967002869,-0.8502695560455322,-1.5400372743606567,1.485709309577942,-0.5836554765701294,0.6229791641235352,0.6785674095153809,-1.1258318424224854,-0.5703191757202148,0.2290775179862976,-0.20682194828987122,1.0077799558639526,1.457739233970642,-0.31836023926734924,-1.2202212810516357,-0.44403669238090515,-0.4841426908969879,1.0392001867294312,-0.7546241283416748,0.002693199086934328,0.09878689795732498,-0.12522965669631958,0.13816402852535248,-0.7548972368240356,-0.020648716017603874,0.24167150259017944,0.23588402569293976,-1.0485186576843262,1.1583749055862427,-0.3261905312538147,-0.35372892022132874,-1.546357274055481,0.556743860244751,1.2119334936141968,-0.14235828816890717,0.019139764830470085,-2.109678268432617,0.07755795121192932,0.6281150579452515,-0.3066801428794861,-0.13134005665779114,0.28058233857154846,-0.22908812761306763,0.7970556020736694,-0.47493892908096313,-1.2807836532592773,-0.3336275815963745 -2964,0.6039902567863464,0.5370582342147827,0.7440215349197388,0.17449864745140076,0.11592772603034973,0.5739185214042664,0.8197877407073975,-0.4685388207435608,-0.599226713180542,0.712065577507019,-0.563444972038269,0.4097651541233063,-0.3564404845237732,-0.6692222356796265,-0.38186439871788025,0.5344327092170715,-0.41477930545806885,1.2198971509933472,0.5235614776611328,1.1429287195205688,0.14492279291152954,0.23043636977672577,-0.04219983145594597,0.5088511109352112,0.8105959296226501,-0.5597963333129883,0.0298741664737463,-0.3937176764011383,0.3732737600803375,1.0632399320602417,0.9850737452507019,-0.7059017419815063,-0.977373480796814,-0.18957354128360748,0.29416507482528687,-0.0936422348022461,0.4393733739852905,0.32700881361961365,0.4839489161968231,0.6186458468437195,0.7908263802528381,0.9979201555252075,0.49398842453956604,-0.3531495928764343,0.5234277248382568,-1.54274320602417,-0.38123026490211487,0.7638760805130005,-0.12665197253227234,0.24929386377334595,-0.12800921499729156,-0.4773397147655487,0.890740692615509,0.5268858671188354,0.7662831544876099,0.4665864109992981,-0.3085271716117859,0.9331968426704407,0.507413387298584,-0.05456560477614403,-0.9446662068367004,0.42569997906684875,-0.4690062403678894,0.19428904354572296,-0.38584721088409424,-0.0438695065677166,1.2637522220611572,-0.4900904595851898,0.556345522403717,-0.03352345898747444,0.9949336051940918,-0.08296988904476166,-0.1394016295671463,1.120844841003418,0.409729540348053,0.4628405272960663,0.09226524829864502,-0.13286550343036652,-0.7782838344573975,-0.5896091461181641,-0.5296558737754822,-0.21881020069122314,-0.25240206718444824,0.9721226692199707,1.0902599096298218,0.7195295691490173,0.32901352643966675,0.8161884546279907,0.5409780144691467,-1.406477451324463,1.4029653072357178,0.04811258241534233,-1.1219137907028198,-0.20046104490756989,-0.8280588984489441,0.5061582326889038,0.5289691686630249,0.644329845905304,-0.46324318647384644,-0.7027035355567932,0.1276252120733261,-1.3595012426376343,0.24908024072647095,0.7606847882270813,-0.6528229117393494,-1.040239691734314,-0.31387829780578613,-0.5260717868804932,0.04041675105690956,0.7089015245437622,-1.1323013305664062,-0.5874794721603394,0.38898923993110657,-0.2869672477245331,0.5658271312713623,0.028256820514798164,-0.496398389339447,0.4789288640022278,-0.7735339999198914,-0.3153415024280548,0.12714269757270813,-0.6637091040611267,-0.08285601437091827,0.5372917056083679,-1.9945608377456665,0.7580998539924622,-0.5875306725502014,1.3631603717803955,0.32930219173431396,0.0689280778169632,0.07350921630859375,0.9728363752365112,-0.27798527479171753,-0.2987701892852783,0.042688459157943726,0.13318225741386414,0.386610746383667,-0.26724162697792053,0.45004066824913025,0.3536410629749298,-0.4186985194683075,-0.8635482788085938,-0.24527797102928162,-0.14002299308776855,-0.6842228770256042,-0.20346695184707642,-0.3839980661869049,0.0847809910774231,0.5790307521820068,-1.0963383913040161,1.6678425073623657,-0.7249663472175598,0.940218985080719,-0.9194822311401367,0.581573486328125,0.13702061772346497,-0.8462928533554077,0.5763733983039856,0.8292655944824219,-0.7316677570343018,0.9747663140296936,-0.07028481364250183,0.10644611716270447,-2.0584967136383057,-0.8049900531768799,0.6138372421264648,0.002456159796565771,-0.6550645232200623,-0.005926383659243584,-0.08921459317207336,-0.2672831416130066,0.8101428151130676,-1.2082092761993408,0.49318620562553406,-2.0384750366210938,-0.3843924105167389,0.46672093868255615,-0.5428217053413391,1.2667423486709595,-0.24174764752388,-0.645331859588623,-1.1329728364944458,-0.6076724529266357,0.667194128036499,-0.15403781831264496,-0.6709735989570618,-0.7828025817871094,0.3301670253276825,-0.060183193534612656,-1.3606770038604736,0.5194090604782104,-0.4417712986469269,0.00062216492369771,-0.824031412601471,0.39049169421195984,-0.043542999774217606,0.6049984693527222,-0.3651936650276184,-1.5949606895446777,0.23725193738937378,0.6100456118583679,0.6122497916221619,-0.8454172611236572,-1.5351849794387817,1.490561604499817,-0.5788031816482544,0.6278314590454102,0.6834197044372559,-1.1209795475006104,-0.5654668807983398,0.706048309803009,-0.20196965336799622,1.0126322507858276,1.3545160293579102,-0.31350794434547424,-0.04270803555846214,-0.5335640907287598,-0.4682694673538208,1.0440524816513062,-0.7497718334197998,0.0075454977340996265,0.10363920032978058,-0.12037736177444458,0.06378988921642303,-0.7500449419021606,-0.015796417370438576,0.24652379751205444,0.24073632061481476,-1.3555099964141846,1.1632272005081177,0.23290908336639404,-0.34887662529945374,-1.541504979133606,0.584752082824707,1.2167857885360718,-0.13750599324703217,0.023992063477635384,-1.6328445672988892,0.08241024613380432,0.5308123826980591,-0.3018278479576111,-0.12648776173591614,0.572140097618103,-0.305962473154068,0.7656386494636536,-0.4878558814525604,-1.2759313583374023,-0.3287752866744995 -2965,0.5999400019645691,0.5514333248138428,0.6350529193878174,0.05820181593298912,0.13030284643173218,0.5882936120033264,0.8341628313064575,-0.5970417857170105,-0.5848516225814819,0.9416038393974304,-0.549069881439209,0.5522677898406982,-0.34206536412239075,-1.0719300508499146,-0.3674892783164978,0.6243979930877686,-0.4004041850566864,1.2342722415924072,0.5379365682601929,1.157303810119629,0.27894172072410583,0.24481149017810822,-0.02782471477985382,0.5232262015342712,0.675632655620575,-0.5454212427139282,0.15081793069839478,-0.5996825695037842,0.38764888048171997,1.0776150226593018,0.907004714012146,-0.5517728328704834,-0.6143940687179565,-0.17519842088222504,0.3085401952266693,-0.07926711440086365,0.4919290542602539,0.4386977255344391,0.49832403659820557,0.7337287664413452,0.7833489775657654,1.0830987691879272,0.5083635449409485,-0.20809301733970642,0.6818779110908508,-0.9040098786354065,-0.3668551445007324,0.8037915229797363,-0.11227685213088989,0.2636689841747284,-0.11363409459590912,-0.46296459436416626,0.9051157832145691,0.5435677766799927,0.889183759689331,0.31114640831947327,-0.29415205121040344,0.9475719332695007,0.5482877492904663,-0.24034380912780762,-0.9302911162376404,0.4273841381072998,-0.45463111996650696,0.2086641639471054,-0.07252684235572815,-0.02949438989162445,1.2781273126602173,-0.9194296598434448,0.5707206130027771,-0.019148342311382294,1.045749306678772,-0.06859476864337921,-0.12502650916576385,1.135219931602478,0.4241046607494354,0.45610547065734863,0.3135662376880646,0.18823035061359406,-0.7639087438583374,-0.575234055519104,-0.5152807831764221,-0.2044350802898407,-0.2380269467830658,0.9864977598190308,1.1046350002288818,0.7339046597480774,0.3433886468410492,0.8305635452270508,0.5553531050682068,-0.8408840298652649,1.4173403978347778,0.06248769909143448,-1.1075387001037598,-0.18608592450618744,-0.813683807849884,0.8350090384483337,0.10641413927078247,0.658704936504364,-0.448868066072464,-0.6883284449577332,0.14200033247470856,-1.3451261520385742,0.4386325776576996,0.7750598788261414,-0.6384478211402893,-1.025864601135254,-1.0802592039108276,-0.5116966962814331,0.05479186773300171,-0.04758391156792641,-1.1179262399673462,-0.10339415073394775,0.403364360332489,-0.27259212732315063,0.5802022218704224,0.04263193905353546,-0.4820232689380646,0.6433010697364807,-0.7591589093208313,-0.30096638202667236,0.14151781797409058,-1.0468777418136597,-0.06848089396953583,0.551666796207428,-1.9801857471466064,0.7724749445915222,-0.5731555819511414,1.3775354623794556,0.3436773121356964,0.08330319821834564,0.0878843367099762,1.045169472694397,-0.2636101543903351,-0.2843950688838959,0.05706357583403587,0.14755737781524658,0.025370266288518906,-0.2528665065765381,-1.1106083393096924,0.36801618337631226,-0.23406805098056793,-0.8491731882095337,-0.3744680881500244,-0.1256478726863861,-0.6698477864265442,-0.4798453450202942,-0.36962294578552246,0.09915611147880554,0.5934058427810669,-0.24553433060646057,1.6822175979614258,-0.8619461059570312,0.7360713481903076,-0.7301436066627502,0.5959485769271851,0.1513957381248474,-0.8319177627563477,0.5820174217224121,0.8436406850814819,-0.7172926664352417,0.9891414046287537,-0.23829272389411926,0.08915659785270691,-1.5739513635635376,-0.7847375869750977,0.6282123327255249,0.016831276938319206,-0.6406894326210022,0.008448733016848564,-0.2540980577468872,0.4556482136249542,0.8245179057121277,-1.1938341856002808,0.5075613260269165,-1.8371226787567139,-0.05337974801659584,0.4810960590839386,0.2070780098438263,1.180259108543396,-0.22737252712249756,-0.630956768989563,-1.1185977458953857,-0.5932973623275757,-0.04047510400414467,-0.1396626979112625,-0.6565985083580017,0.34509220719337463,0.48952141404151917,-0.04580807685852051,-1.3463019132614136,0.5337841510772705,-0.42739617824554443,0.01499728113412857,-0.8096563220024109,0.4048668146133423,-0.029167883098125458,0.3551352322101593,-0.35081854462623596,-1.5805855989456177,0.20074275135993958,0.624420702457428,0.5894460678100586,-0.5917343497276306,-1.5208098888397217,1.630505084991455,-0.5644280910491943,0.6422065496444702,0.16269293427467346,-1.1066044569015503,-0.5510917901992798,-0.2718961536884308,-0.18759453296661377,1.0048401355743408,1.3467769622802734,-0.2991328239440918,-1.2297271490097046,-0.5191890001296997,-1.303308129310608,1.0584275722503662,-0.7353967428207397,0.021920613944530487,0.11801432073116302,-0.10600224137306213,0.07816500961780548,-0.7356698513031006,0.26214832067489624,0.2608989179134369,-0.2070690244436264,-0.6894516348838806,1.1776022911071777,0.2472842037677765,-0.7976585030555725,-1.2465566396713257,0.6559056639671326,0.7856717109680176,-0.12313087284564972,0.03836718201637268,-1.618469476699829,0.09678536653518677,0.5451874732971191,-0.28745272755622864,-0.11211264133453369,0.5865151882171631,-0.6830503940582275,0.7800137400627136,-0.6215012073516846,-1.2615562677383423,-1.0159629583358765 -2966,0.6057080626487732,0.5145840644836426,0.6408209800720215,0.0024681990034878254,0.13607089221477509,0.5940616726875305,0.8399308919906616,-0.5912737250328064,-0.5790835618972778,0.9473719000816345,-0.7677017450332642,0.5580358505249023,-0.33629730343818665,-1.0661619901657104,-0.3617212176322937,0.6066133379936218,-0.3946361243724823,1.2400403022766113,0.543704628944397,1.163071870803833,0.28470978140830994,0.04484039917588234,-0.022056665271520615,0.5289942622184753,0.681400716304779,-0.5396531820297241,-0.1254984587430954,-0.5939145088195801,0.314628541469574,1.0833830833435059,0.9158644676208496,-0.499228298664093,-0.8963695764541626,-0.16943037509918213,0.3143082559108734,-0.3852991759777069,0.497697114944458,0.4444657862186432,0.5040920972824097,0.6892083287239075,0.7891170382499695,1.0888668298721313,0.5141316056251526,-0.2023249715566635,0.6876459717750549,-1.585984706878662,-0.5558208227157593,0.8095595836639404,-0.10650879889726639,0.2694370448589325,-0.10786604136228561,-0.45719653367996216,1.0111000537872314,0.5132339596748352,0.8949518203735352,0.31691446900367737,-0.09771742671728134,0.9533399939537048,0.5540558099746704,-0.06400052458047867,-0.9119836688041687,0.4331521987915039,-0.44886305928230286,0.21443220973014832,-0.06675878912210464,-0.023726340383291245,1.2838953733444214,-0.9136615991592407,0.5764886736869812,-0.013380292803049088,1.051517367362976,-0.0628267154097557,-0.11925845593214035,1.1409879922866821,0.4298727214336395,0.46187353134155273,0.19946040213108063,0.08242016285657883,-0.8283650875091553,-0.5694659948348999,-0.5398395657539368,-0.1986670345067978,-0.08986366540193558,0.9922658205032349,1.110403060913086,0.7570953965187073,0.3491567075252533,0.8363316059112549,0.5611211657524109,-0.8351159691810608,1.423108458518982,0.06825575232505798,-1.0794316530227661,-0.18031787872314453,0.5096837878227234,0.8407770991325378,0.3837035894393921,0.6644729971885681,-0.4431000053882599,-0.682560384273529,0.14776837825775146,-1.3393580913543701,-0.32654377818107605,0.7808279395103455,-0.6326797604560852,-1.0200965404510498,-1.0744911432266235,-0.505928635597229,0.029904892668128014,-0.3967401683330536,-1.112158179283142,0.13031022250652313,0.4091324210166931,-0.26682406663894653,0.8301146030426025,-1.0198793411254883,-0.4762552082538605,0.44961783289909363,-1.321119785308838,-0.29519832134246826,0.6627566814422607,-0.6914486885070801,-0.06271284073591232,0.5574348568916321,-1.8082585334777832,0.9320857524871826,-0.5673875212669373,1.3833035230636597,0.5636569261550903,0.08907125145196915,0.0936523899435997,1.0458062887191772,-0.257842093706131,-0.2786270081996918,0.06283162534236908,0.1533254235982895,0.031138315796852112,-0.24709846079349518,-1.1048402786254883,0.3244105279445648,-0.22830000519752502,-0.10505480319261551,-1.2010138034820557,-0.1198798194527626,-0.6640797257423401,-0.3460601568222046,-0.2997802495956421,0.10492416471242905,0.599173903465271,-0.23976628482341766,1.6879856586456299,-0.8561780452728271,0.7418394088745117,-0.8159641027450562,0.6017166376113892,0.15716378390789032,-0.8261497020721436,0.5877854824066162,0.849408745765686,-0.7115246057510376,0.9949094653129578,-0.23252467811107635,0.09492465108633041,-1.6988016366958618,-0.7789695262908936,0.633980393409729,0.022599326446652412,-0.613106369972229,0.01421678252518177,-0.2483300119638443,0.4614162743091583,0.8302859663963318,-1.365729808807373,0.5133293867111206,-1.7092517614364624,-0.4460640847682953,0.4868641197681427,0.2128460556268692,1.1424530744552612,-0.22160448133945465,-0.6251887083053589,-1.1128296852111816,-0.5617796182632446,-0.03470705449581146,-0.1338946521282196,-0.6508304476737976,0.35086026787757874,0.6015236377716064,-0.0400400273501873,-1.3405338525772095,0.5395522117614746,-0.42162811756134033,0.020765330642461777,-0.8038882613182068,0.27742284536361694,-0.02339983358979225,0.40468013286590576,-0.34505048394203186,-1.5748175382614136,0.20651079714298248,0.6301887631416321,0.5403703451156616,-0.8531426191329956,-1.5150418281555176,1.6362731456756592,-0.5586600303649902,0.6479746103286743,0.16846098005771637,-1.1008363962173462,-0.5453237295150757,0.5395392179489136,-0.18182648718357086,1.010608196258545,1.805234432220459,-0.2933647632598877,-1.2239590883255005,-0.4380126893520355,-1.2975400686264038,1.0641956329345703,-0.7296286821365356,0.10577654093503952,0.12378237396478653,-0.10023418813943863,0.08393306285142899,-0.7299017906188965,-0.8794534802436829,0.266666978597641,-0.2013009786605835,-0.6836835741996765,1.1833703517913818,0.22843247652053833,-0.7918904423713684,-0.6744405031204224,0.6424024701118469,0.9072457551956177,0.25890326499938965,0.04413523152470589,-1.612701416015625,0.10255341976881027,0.5509555339813232,-0.28168466687202454,-0.10634458810091019,-0.04344756528735161,-0.6772823333740234,0.7774429321289062,-0.6086406707763672,-0.7499591112136841,-1.0101948976516724 -2967,0.6172292232513428,0.5261052250862122,0.6523421406745911,0.013989372178912163,0.3468886613845825,0.6089650392532349,0.8331785202026367,-0.5797525644302368,-0.5675624012947083,0.9588930606842041,-1.069743037223816,0.5695570111274719,-0.32477614283561707,-0.7792631387710571,-0.3502000570297241,0.6181344985961914,-0.3831149637699127,1.2515615224838257,0.49062857031822205,1.1745930910110474,0.2962309420108795,0.056361570954322815,0.0350692942738533,0.5405154228210449,0.5055863261222839,-0.250812828540802,-0.11397728323936462,-0.5823933482170105,0.6396304368972778,1.0949043035507202,0.9273856282234192,-0.48770713806152344,-0.884848415851593,-0.15790919959545135,0.325829416513443,-0.6264820694923401,0.5092182755470276,0.45813292264938354,0.5156132578849792,0.4061880111694336,0.8006381988525391,1.1003880500793457,0.5256527662277222,-0.10399007797241211,0.6991671323776245,-1.5744634866714478,-0.5442996621131897,0.838363766670227,-0.09498762339353561,0.2809582054615021,-0.22194643318653107,-0.4456753730773926,1.0226212739944458,0.5247551202774048,0.9064729809761047,0.3956303000450134,-0.08619625121355057,0.9648611545562744,0.56557697057724,-0.7510420680046082,-0.9004625082015991,0.4446733593940735,-0.4193248450756073,0.2259533852338791,-0.5816560387611389,-0.111570805311203,1.2954165935516357,-0.9021404385566711,0.5880098342895508,-0.0018591200932860374,1.0630385875701904,0.26728782057762146,-0.17855286598205566,1.1614702939987183,0.4413938820362091,0.4733946919441223,0.2109815776348114,0.0939413383603096,-0.8168439269065857,-0.5579448342323303,-0.5283184051513672,-0.18714585900306702,-0.3317531645298004,1.0037870407104492,1.1219242811203003,0.7686165571212769,0.3606778681278229,0.8478527665138245,0.5726423263549805,-0.8235948085784912,1.4346296787261963,0.07977692782878876,-1.0679104328155518,-0.16879670321941376,0.521204948425293,0.8522982597351074,0.39522475004196167,0.6759941577911377,-0.4315788447856903,0.024258267134428024,-0.4816826581954956,-1.3278368711471558,-0.31502261757850647,0.792349100112915,-0.3010939061641693,-1.1988507509231567,-1.1751368045806885,-0.4944074749946594,0.04142606630921364,-0.026316482573747635,-1.1006369590759277,0.1418313980102539,0.4206535816192627,-0.5287562608718872,0.8900859355926514,-1.1946508884429932,-0.4647340476512909,0.4611389935016632,-1.3095985651016235,-0.9501721262931824,0.6742778420448303,-0.6799275279045105,-0.13037751615047455,0.5689560174942017,-1.5081959962844849,0.9436069130897522,-0.5558663606643677,1.394824743270874,-0.096441850066185,0.10059242695569992,0.10517356544733047,1.0573275089263916,-0.2463209182024002,-0.27578163146972656,0.07435280084609985,0.16484659910202026,0.04265948757529259,-0.2355772852897644,-0.05389409139752388,0.3359316885471344,-0.21677882969379425,-0.09353362768888474,-1.1894925832748413,-0.4198683500289917,-0.6525585651397705,-0.334538996219635,-0.2882590889930725,0.11644534021615982,0.6106950640678406,-0.2282451093196869,1.6995068788528442,-0.5410559773445129,0.7533605694770813,-0.8044429421424866,0.6132377982139587,0.17316637933254242,-0.7451338171958923,0.5993066430091858,0.8609299063682556,-1.1815555095672607,1.0064306259155273,-0.22100350260734558,-0.4493836462497711,-1.6872804164886475,-0.767448365688324,0.7247469425201416,0.03412050008773804,-0.6015852093696594,0.025737956166267395,-0.23680883646011353,0.4729374349117279,0.7516166567802429,-1.2172743082046509,-0.2567954659461975,-1.697730541229248,-0.4345429241657257,0.4983852803707123,0.31641387939453125,1.1539742946624756,-0.21008330583572388,-0.5405598282814026,-0.7230948805809021,-0.042836952954530716,-0.023185882717370987,-0.12237347662448883,-0.639309287071228,-0.3366147577762604,-0.7713598608970642,0.12776952981948853,-1.3290126323699951,0.6823871731758118,-0.41010695695877075,0.03228650242090225,-0.7923671007156372,0.2889440059661865,-0.011878660880029202,0.7267804145812988,-0.3335293233394623,-1.5632963180541992,0.21803197264671326,0.6417099237442017,0.5518915057182312,-1.0811419486999512,-1.6892164945602417,1.6477943658828735,-0.5471388697624207,0.7918692827224731,0.17998215556144714,-1.0893151760101318,0.015519571490585804,-0.017766166478395462,-0.11179866641759872,1.1405094861984253,1.2816181182861328,-0.2818436026573181,-1.2124378681182861,-0.4795123338699341,-1.2860188484191895,1.0757168531417847,-0.5835557579994202,0.1172977164387703,0.1353035420179367,-0.2743571102619171,0.09545423835515976,-0.7183806300163269,-0.8679323196411133,0.27818813920021057,-0.18977980315685272,-0.6721624135971069,1.1948915719985962,0.2399536520242691,-0.3668750822544098,-0.6629193425178528,0.6539236307144165,0.9187669157981873,0.27042442560195923,0.05565640330314636,-1.6011801958084106,0.11407459527254105,0.5624766945838928,-0.27016350626945496,-0.09482341259717941,-0.37110626697540283,0.1700342446565628,0.7889640927314758,-0.4249735474586487,-0.7384379506111145,-0.7518935799598694 -2968,0.7175832986831665,0.5503697395324707,0.6766066551208496,0.038253869861364365,0.3711531460285187,0.6332295536994934,0.9620814919471741,-0.5554880499839783,-1.2733131647109985,0.7337387800216675,-1.8652435541152954,0.5938215255737305,-0.3005116581916809,-0.7549986243247986,-0.32593557238578796,0.4837033450603485,-0.07636232674121857,1.2758259773254395,0.5148930549621582,1.1988575458526611,0.3204954266548157,-0.10328125953674316,0.05933379381895065,0.4265006482601166,0.5298508405685425,-0.22654832899570465,-0.08971278369426727,-0.558128833770752,0.6638949513435364,1.1154495477676392,1.103737235069275,-0.4634426534175873,-0.8605839014053345,-0.133644700050354,0.35009390115737915,-0.6022175550460815,0.5334827899932861,0.48693111538887024,-0.1629839688539505,0.5203561782836914,0.8380351662635803,1.1246525049209595,0.5499172806739807,-0.07972557842731476,0.7234316468238831,-1.2487196922302246,-0.5200351476669312,0.8626282811164856,-0.07072312384843826,0.19965258240699768,-0.19768193364143372,-0.40180090069770813,1.082991123199463,0.5490196347236633,0.9307374954223633,0.21333427727222443,0.45937344431877136,1.1247773170471191,0.5898414850234985,-0.7267775535583496,-0.8761979937553406,0.46893784403800964,-0.39506036043167114,0.25021788477897644,-0.5573915243148804,-0.08730630576610565,1.3196810483932495,-0.7530734539031982,0.6122743487358093,0.02240537852048874,1.0873030424118042,0.11140339076519012,-0.1542883664369583,1.185734748840332,0.5062147378921509,0.49765917658805847,0.23524607717990875,0.11820583790540695,-0.7925794124603271,-0.5336803197860718,-0.5040538907051086,-0.16288135945796967,-0.30748867988586426,1.028051495552063,0.988105297088623,0.7928810715675354,0.38494235277175903,0.9656134843826294,0.21635447442531586,-0.7993302941322327,0.8730537295341492,0.05849263817071915,-1.043645977973938,-0.1445322036743164,0.5454694628715515,0.876562774181366,0.4194892346858978,0.7002586722373962,-0.40731436014175415,-0.871748685836792,-0.45741817355155945,-1.0361523628234863,0.08642904460430145,0.8229165077209473,-0.27682942152023315,-1.174586296081543,-1.2292629480361938,-0.7673488259315491,0.06569056212902069,-1.0241435766220093,-1.070173978805542,0.16609589755535126,0.44491806626319885,-0.5044917464256287,0.9143504500389099,-1.1703864336013794,-0.6520246863365173,0.48540347814559937,-0.9519765973091125,-0.9259076118469238,0.630017101764679,-0.655663013458252,-0.5879020690917969,0.1882491558790207,-1.483931541442871,0.9678714275360107,-1.2228041887283325,1.4190891981124878,-0.07217735052108765,0.12485692650079727,0.12943805754184723,1.0815919637680054,-0.22205641865730286,-0.2515171468257904,0.0986173003911972,0.18911109864711761,0.06692398339509964,-0.21131278574466705,-0.029629593715071678,0.36019617319107056,-1.1481431722640991,-0.06926912814378738,-1.1652281284332275,-0.39560386538505554,-1.2295273542404175,-0.31027451157569885,-0.26399460434913635,0.14070983231067657,0.6349595785140991,-0.831351101398468,1.723771333694458,-0.5167914628982544,0.7776250839233398,-0.780178427696228,0.6375023126602173,0.19743087887763977,-0.44967198371887207,0.6235711574554443,0.916427731513977,-1.157291054725647,1.0306950807571411,-0.19673900306224823,-0.42511916160583496,-1.3422614336013794,-0.34583404660224915,0.7490114569664001,0.05838499963283539,-0.5773206949234009,0.050002455711364746,-0.21254433691501617,-0.019825803115963936,0.5092892050743103,-1.193009853363037,-0.23253096640110016,-1.0208903551101685,-0.2800872027873993,0.5226497650146484,0.3406783640384674,1.1782387495040894,-0.2687039375305176,-0.516295313835144,-0.6988303661346436,-0.018572455272078514,0.001078614965081215,-0.09810897707939148,-0.6676638126373291,-0.3123502731323242,-0.9129981398582458,0.15203402936458588,-1.1807879209518433,0.7066516876220703,-0.3858424723148346,0.0565510019659996,-0.7681025862693787,0.3132084906101227,0.012385836802423,0.6769381761550903,-0.3092648386955261,-1.5390318632125854,0.2422964721918106,0.6659744381904602,0.5761560201644897,-1.0568774938583374,-0.6157380938529968,1.6720588207244873,-0.5228743553161621,0.8746979832649231,-0.23454518616199493,-1.065050721168518,-0.24904923141002655,0.00649833120405674,-0.18904946744441986,1.164773941040039,1.6738086938858032,-0.39429208636283875,-1.4774597883224487,-0.4552478492259979,-0.6196405291557312,1.0999813079833984,-0.5592912435531616,0.14156220853328705,0.15956804156303406,-0.25009262561798096,0.11971873790025711,-0.6941161155700684,-0.75723797082901,0.30245262384414673,-0.16551530361175537,-0.6478978991508484,1.2060203552246094,0.26421815156936646,-0.3786054849624634,-0.4767124354839325,0.663939356803894,0.9430314302444458,0.2946889102458954,0.07992090284824371,-1.4532885551452637,0.1383390873670578,0.5030456185340881,-0.2458990067243576,-0.07055891305208206,-0.3468417823314667,0.34382614493370056,0.8132286071777344,-0.4007090628147125,-0.714173436164856,-0.7276290655136108 -2969,0.6356623768806458,0.40194982290267944,0.6747839450836182,0.036431148648262024,0.17361430823802948,0.631406843662262,0.9602587819099426,-0.5573107600212097,-0.3860069513320923,0.731916069984436,-1.8670662641525269,0.6332302689552307,-0.30233436822891235,-0.75682133436203,-0.3277582824230194,0.48188063502311707,-0.0781850516796112,1.274003267288208,0.5130703449249268,1.1970348358154297,0.36943623423576355,0.10310636460781097,-0.05863345041871071,0.5037165284156799,0.528028130531311,-0.2283710539340973,0.21811366081237793,-0.5599515438079834,0.6620722413063049,1.1136268377304077,1.1019145250320435,-0.4652653634548187,-0.8624066114425659,-0.13546742498874664,0.3482711911201477,-0.604040265083313,0.5316600799560547,0.4851084053516388,-0.16480669379234314,0.51853346824646,0.8362124562263489,1.122829794883728,0.5042136907577515,-0.0815483033657074,0.7216089367866516,-1.250542402267456,-0.6170494556427002,0.8608055710792542,-0.0725458487868309,0.08385784178972244,-0.10823770612478256,-0.4036236107349396,1.0811684131622314,0.5471969246864319,0.9289147853851318,0.2115115523338318,-0.3111434280872345,1.1229546070098877,0.5880187749862671,-0.728600263595581,-0.9066123962402344,0.4671151340007782,-0.32426100969314575,0.2483951598405838,-0.5592142343521118,-0.08912903070449829,1.2930430173873901,-0.7548961639404297,0.5718294382095337,0.08604872971773148,1.0854803323745728,0.08876297622919083,-0.15611109137535095,1.1839120388031006,0.6168098449707031,0.495836466550827,0.2367524951696396,0.11638311296701431,-0.899921715259552,-0.5355030298233032,-0.5058766007423401,0.22908353805541992,-0.3093113899230957,1.0673696994781494,0.9862825870513916,0.866348385810852,0.3831196427345276,0.963790774345398,0.21453174948692322,-0.8011530041694641,0.8712310194969177,0.056669916957616806,-1.2536972761154175,-0.14635492861270905,0.4529879689216614,0.8747400641441345,0.4176665246486664,0.4597591161727905,-0.4034311771392822,-0.8735713958740234,-0.4592408835887909,-1.10693359375,0.5228808522224426,0.8210937976837158,-0.2786521315574646,-1.1764090061187744,-0.4741833209991455,-0.7691715359687805,0.06386783719062805,-0.4561600089073181,-0.8446254134178162,0.16427317261695862,0.019412564113736153,-0.5063144564628601,0.9125277400016785,-1.1722091436386108,-0.6538473963737488,0.4835807681083679,-0.953799307346344,-0.9277303218841553,0.6281943917274475,-0.6574857234954834,-0.5897247791290283,0.20447185635566711,-1.4857542514801025,0.9660487174987793,-1.224626898765564,0.9006436467170715,-0.11576983332633972,0.12303420156240463,0.1276153326034546,1.079769253730774,-0.2238791435956955,-0.25333985686302185,0.09679457545280457,0.18728837370872498,0.065101258456707,-0.2131355106830597,1.069563627243042,0.3583734631538391,-1.1499658823013306,-0.2994595468044281,-1.9286620616912842,-0.397426575422287,-1.231350064277649,-0.3120972216129303,-0.2658173143863678,0.938040018081665,0.6146992444992065,-0.8331738114356995,1.8293918371200562,-0.5186141729354858,0.7758023738861084,-0.7820011377334595,0.6356796026229858,0.4192199409008026,-0.4514946937561035,0.6217484474182129,0.9146050214767456,-1.1591137647628784,0.9871314764022827,-0.19856172800064087,-0.4269418716430664,-1.3440841436386108,-0.3476567566394806,0.7471887469291687,0.05656227841973305,-0.4365035891532898,0.048179734498262405,-0.7661991715431213,-0.2849646806716919,0.2168632298707962,-1.1948325634002686,-0.2343536913394928,-0.908189058303833,-0.28190991282463074,0.520827054977417,0.33885565400123596,1.176416039466858,-0.006101978477090597,-0.5361448526382446,-0.700653076171875,-0.020395178347826004,-0.05402803793549538,-0.09993170201778412,-0.6694865226745605,-0.580048680305481,-0.9148208498954773,0.15021130442619324,-1.1826106309890747,0.7048289775848389,-0.38766518235206604,0.05472828075289726,-0.7699252963066101,0.31138578057289124,0.010563114657998085,0.6751154661178589,-0.31108754873275757,-1.540854573249817,0.24047374725341797,0.6641517281532288,0.5743333101272583,-1.0587002038955688,-0.6175608038902283,1.6702361106872559,0.30640673637390137,0.8728752732276917,-0.23636791110038757,-1.0668734312057495,-0.07809537649154663,0.004675608593970537,-0.43871569633483887,0.8556421995162964,1.5769052505493164,-0.3961147964000702,-0.8604590892791748,-0.45707055926322937,-0.6214632391929626,1.098158597946167,-0.5611139535903931,0.1397394835948944,0.11315133422613144,-0.2519153356552124,0.11789601296186447,-0.4759135842323303,-0.7590606808662415,0.3006299138069153,-0.558491051197052,-0.6497206091880798,1.204197645187378,-0.23669452965259552,-1.2071549892425537,-0.7342252731323242,0.6621166467666626,1.018784761428833,0.29286620020866394,0.07809817790985107,-1.4551112651824951,0.13651636242866516,0.5012229084968567,-0.24772173166275024,-0.0723816379904747,-0.20466578006744385,0.3420034348964691,0.5084586143493652,-0.40253177285194397,-0.6997345089912415,-0.7294517755508423 -2970,0.6129356026649475,0.29658135771751404,0.6520571708679199,0.013704357668757439,0.15088751912117004,0.6275113224983215,0.9375320076942444,-0.5073910355567932,-0.4087337553501129,0.7091892957687378,-1.889793038368225,0.6105034947395325,-0.325061172246933,-1.0105009078979492,-0.35048508644104004,0.45915383100509644,-0.10091184079647064,1.2512764930725098,0.49034354090690613,1.1743080615997314,0.31634294986724854,0.08037957549095154,-0.08136024326086044,0.4809897243976593,0.5053013563156128,-0.25915437936782837,0.0868343934416771,-0.5826783180236816,0.4660395681858063,1.0909000635147095,1.0791877508163452,-0.30959823727607727,-0.7420080304145813,-0.15819421410560608,0.3255443871021271,-0.31040188670158386,0.5089333057403564,0.46238160133361816,0.27873122692108154,0.49580666422843933,0.8134856820106506,1.0689740180969238,0.48148688673973083,-0.10427509248256683,0.6988821625709534,-0.7677620053291321,-0.6397762298583984,0.8380787968635559,-0.09527263790369034,0.06113105267286301,-0.1309645026922226,-0.4263504147529602,1.0584416389465332,0.5244701504707336,0.9061880111694336,0.18878476321697235,-0.08709189295768738,1.1002278327941895,0.5347667932510376,-0.7513270378112793,-0.9293391704559326,0.44438832998275757,-0.444964736700058,0.22566837072372437,-0.5819410085678101,-0.11185581982135773,1.270316243171692,-0.4149208068847656,0.6065331101417542,0.06332194060087204,1.0627535581588745,0.06603618711233139,-0.39474543929100037,1.1611852645874023,0.5940830707550049,0.5748122930526733,0.21402570605278015,0.09365632385015488,-0.9226484894752502,-0.5582298040390015,-0.6052573919296265,0.20635674893856049,-0.33203819394111633,1.0446429252624512,1.0764715671539307,0.8436216115951538,0.36039283871650696,0.9859737157821655,0.19180496037006378,-0.8238797783851624,0.8485042452812195,0.03394312411546707,-1.2764240503311157,-0.16908171772956848,0.43026116490364075,0.8520132899284363,0.39493972063064575,0.4370323121547699,-0.42615798115730286,-0.8962981700897217,-0.6244926452636719,-1.1296603679656982,0.5001540780067444,0.7983670234680176,-0.30137893557548523,-0.7348488569259644,-0.08364449441432953,-0.7918983101844788,0.041141048073768616,0.20267926156520844,-0.8673521876335144,0.14154638350009918,-0.0033142268657684326,-0.3068360388278961,0.8505191206932068,-1.194935917854309,-0.676574170589447,0.4608539640903473,-0.6321560144424438,-0.9504570960998535,0.6054676175117493,-0.5681624412536621,-0.6124515533447266,0.18174506723880768,-1.5084810256958008,0.943321943283081,-1.272258996963501,0.8779168725013733,-0.13849662244319916,0.1003074124455452,0.10488854348659515,1.0570424795150757,0.2772696316242218,-0.2690524458885193,0.07406778633594513,0.16456158459186554,0.042374469339847565,-0.23586229979991913,1.0120973587036133,0.34875568747520447,-1.1726926565170288,-0.32218635082244873,-1.7824881076812744,-0.27919819951057434,-1.2540768384933472,-0.3348240256309509,-0.1136372983455658,0.9153132438659668,0.4455347955226898,-0.8559005856513977,1.806665062904358,-0.5413409471511841,0.7407485842704773,-0.8047279119491577,0.6182742714881897,0.396493136882782,-0.47422149777412415,0.5990216732025146,0.8918782472610474,-1.1818405389785767,0.9064000248908997,-0.2212885171175003,-0.12420357763767242,-0.4962540566921234,-0.3703835606575012,0.7244619727134705,0.03383548557758331,-0.4592303931713104,0.02545294351875782,-0.8201911449432373,-0.882500946521759,0.08881953358650208,-1.2175593376159668,-0.2570804953575134,-0.9309158325195312,-0.30463671684265137,0.49810025095939636,0.23924358189105988,1.1536892652511597,0.06009231507778168,-0.5588716268539429,-0.7941557765007019,0.09545977413654327,-0.07675483077764511,-0.12265849113464355,-0.6922132968902588,-1.4231295585632324,0.36087802052497864,0.1274845153093338,-1.205337405204773,0.579561710357666,-0.41039198637008667,-0.021345635876059532,-0.7926520705223083,0.2886589765548706,-0.0121636763215065,0.6523886919021606,0.21821312606334686,-1.5635813474655151,0.21774695813655853,0.5464708209037781,0.5516065359115601,-1.081426978111267,-0.6402875781059265,1.6475093364715576,0.12116041779518127,0.8501484990119934,-0.2590947151184082,-1.0896002054214478,-0.10082216560840607,-0.018051182851195335,-0.4614425003528595,0.8329154253005981,1.5510989427566528,-0.6683566570281982,-0.883185863494873,-0.47979736328125,-0.4030184745788574,1.0691696405410767,-0.5838407278060913,0.4228551983833313,-0.1299651563167572,-0.27464213967323303,0.11313937604427338,-0.49864038825035095,-0.7817874550819397,0.27790310978889465,-0.5812178254127502,-0.6724473834037781,1.1814708709716797,-0.23845386505126953,-1.229881763458252,-0.7569520473480225,0.6393898725509644,0.9960579872131348,0.2701393961906433,0.04858909547328949,-1.4778380393981934,0.11378957331180573,0.47849610447883606,-0.2704485356807709,-0.09510842710733414,-0.22739256918430328,0.3192766308784485,0.4857318103313446,-0.4252585768699646,-0.7224612832069397,-0.7521785497665405 -2971,0.6112842559814453,0.33256974816322327,0.6504058241844177,0.012052986770868301,0.14923614263534546,0.6258599758148193,0.8785492181777954,-0.5090423822402954,-0.5771709084510803,0.7107377648353577,-1.3224003314971924,0.4483296573162079,-0.32671254873275757,-1.321984052658081,-0.3521364629268646,0.45750245451927185,-0.10256320983171463,1.2496250867843628,0.48869216442108154,1.1726566553115845,0.48813900351524353,0.07872820645570755,-0.08301161229610443,0.4793383479118347,0.5036500096321106,0.10201994329690933,0.0851830244064331,-0.5843296647071838,0.4643881916999817,1.0892486572265625,1.0775363445281982,-0.31124961376190186,-0.7606849670410156,-0.15984559059143066,0.3238930106163025,-0.31205326318740845,0.5072819590568542,0.4607302248477936,0.27707985043525696,0.49415528774261475,0.8118343353271484,1.0673226118087769,0.47983551025390625,-0.10592646151781082,0.8015146255493164,-0.926395833492279,-0.4768536388874054,0.8667357563972473,-0.5793662667274475,-0.037887685000896454,-0.11885794997215271,-0.4280017912387848,1.0567902326583862,0.5151582360267639,0.9045366644859314,0.3047671318054199,-0.08874326199293137,1.0985764265060425,0.5331154465675354,-0.18423566222190857,-0.9309905171394348,0.442736953496933,-0.44661611318588257,0.22401699423789978,-0.5835923552513123,-0.11350718885660172,1.268664836883545,-0.4165721833705902,0.604881763458252,0.06167057156562805,1.0439836978912354,0.0643848180770874,-0.3084758222103119,1.1595338582992554,0.5924317240715027,0.5731609463691711,0.21237432956695557,0.09200495481491089,-0.9242998361587524,-0.6067665219306946,-0.6069087386131287,0.2047053724527359,-0.3336895704269409,1.0429915189743042,0.9867771863937378,0.8419702649116516,0.3587414622306824,0.9404486417770386,0.5819939374923706,-0.8255311250686646,1.5244098901748657,0.032291755080223083,-1.2780754566192627,-0.17073309421539307,0.42860978841781616,0.8503619432449341,0.07784605771303177,0.4353809356689453,-0.42780935764312744,-0.8979495167732239,-0.8785342574119568,-1.1313117742538452,0.4985027015209198,0.7967156767845154,-0.4099383056163788,-0.8035991787910461,-0.08529586344957352,-1.3835561275482178,0.03948967903852463,0.07525376230478287,-1.1896498203277588,0.1398950070142746,0.33372458815574646,-0.3084874153137207,0.6592482924461365,-1.196587324142456,-0.9619067907333374,0.5924690365791321,-0.633807361125946,-0.26692405343055725,0.6038162708282471,-0.5698137879371643,-0.6141029000282288,0.1800936907529831,-0.9199641346931458,0.9416705965995789,-0.2168315351009369,0.8762655258178711,-0.14014799892902374,0.09865604341030121,0.10323717445135117,1.0553910732269287,0.2756182551383972,-0.02042689360678196,0.07241641730070114,0.16291020810604095,0.04072310030460358,-0.2375136762857437,1.0104459524154663,0.3471043109893799,-1.1743440628051758,-0.3238377273082733,-1.7841395139694214,-0.2808495759963989,-1.2557282447814941,-0.3364754021167755,-0.08495551347732544,0.9136618971824646,0.44388341903686523,-0.8575519323348999,1.805013656616211,-0.8412044644355774,0.748611330986023,-0.8063792586326599,0.38482001423835754,0.3948417603969574,-0.47587287425994873,0.5973703265190125,0.6591776013374329,-1.1834919452667236,0.8565708994865417,-0.5723000764846802,-0.9212697148323059,-0.497905433177948,-0.3720349371433258,0.7228106260299683,0.032184116542339325,-0.460881769657135,0.023801572620868683,-0.8218424916267395,-0.2606208026409149,0.08716816455125809,-1.2192107439041138,-0.258731871843338,-0.2469022572040558,-0.7378044724464417,0.4964488744735718,0.2647622525691986,1.1520378589630127,-0.13168181478977203,-0.5605229735374451,-0.7958071231842041,-0.4028901159763336,0.3124984800815582,-0.12430986016988754,-0.693864643573761,-1.7468245029449463,0.35922664403915405,0.12583313882350922,-1.20698881149292,0.5779103636741638,-0.41204336285591125,-0.09738650918006897,-0.7427537441253662,-0.38068798184394836,-0.013815047219395638,0.6842031478881836,0.21656174957752228,-1.565232753753662,0.21609558165073395,0.5448194742202759,0.8673005700111389,-1.083078384399414,-0.6419389247894287,1.4423917531967163,-0.16747674345970154,0.7489200234413147,-0.4427194893360138,-1.4548641443252563,0.23621775209903717,-0.019702553749084473,-0.4630938768386841,0.831264078617096,1.5494475364685059,-0.6700080037117004,-0.8848372101783752,-0.40729111433029175,-0.404669851064682,1.0675182342529297,-0.5854920744895935,0.4212038218975067,-0.1316165328025818,-0.2762935161590576,0.17319810390472412,-0.5002917647361755,-0.7834388017654419,0.27625173330307007,-0.6416023373603821,-0.45951417088508606,1.1798194646835327,-0.2221868634223938,-1.231533169746399,-0.7586033940315247,0.6845425963401794,1.0865398645401,0.2684880197048187,0.0469377264380455,-1.2928608655929565,-0.012463966384530067,0.4768447279930115,-0.27209991216659546,-0.09675979614257812,-0.22904394567012787,0.341631144285202,0.6689357161521912,-0.4269099533557892,-0.7241126298904419,-0.7538298964500427 -2972,0.6448915600776672,0.3185543715953827,0.6363904476165771,0.24280022084712982,0.13522078096866608,0.6118445992469788,0.8645338416099548,-0.523057758808136,-0.35217463970184326,0.6967223882675171,-1.3364156484603882,0.4343142807483673,-0.38861578702926636,-1.3359993696212769,-0.3661518394947052,0.4434870779514313,-0.38957828283309937,1.235609769821167,0.47467678785324097,1.094261884689331,0.47412362694740295,0.06471283733844757,-0.5581037402153015,0.46532297134399414,0.48963463306427,0.08800457417964935,0.07116765528917313,-0.5286659002304077,0.4503728151321411,1.0752333402633667,1.0635210275650024,-0.32526499032974243,-0.7747003436088562,-0.17386095225811005,0.3098776340484619,-0.326068639755249,0.49326658248901367,0.446714848279953,0.2630644738674164,0.48013991117477417,0.7066282629966736,1.053307294845581,0.5079145431518555,-0.1199418306350708,0.7874992489814758,-0.9404112100601196,-0.49086901545524597,0.8527203798294067,-0.5933816432952881,-0.05190305411815643,-0.1328733116388321,-0.44201716780662537,1.0427749156951904,0.5011428594589233,0.8905212879180908,0.29075175523757935,-0.10275863111019135,1.0845611095428467,0.479094535112381,-0.19825102388858795,-0.9450058937072754,0.5985937714576721,-0.6995240449905396,0.2288687378168106,-0.5976077318191528,-0.1275225579738617,1.1622247695922852,-0.4305875599384308,0.3431188464164734,0.04765520244836807,1.0299683809280396,0.05036944895982742,-0.24891716241836548,1.1455185413360596,0.5784163475036621,0.5591455698013306,0.19835896790027618,0.07798958569765091,-0.938315212726593,-0.5262410640716553,-0.6209241151809692,0.19069001078605652,-0.4232635200023651,1.0289762020111084,0.9727618098258972,0.827954888343811,0.3447260856628418,0.926433265209198,0.56797856092453,-0.8395465016365051,1.4570367336273193,0.018276387825608253,-1.2920907735824585,-0.18474845588207245,0.4145944118499756,0.47060978412628174,0.5713076591491699,0.42136555910110474,-0.43265169858932495,-0.9119648933410645,-0.963683545589447,-0.8480766415596008,0.4844873249530792,0.7827003002166748,-0.42395368218421936,-0.8176145553588867,0.25432145595550537,-1.3975714445114136,0.14417697489261627,0.06123839318752289,-1.2036651372909546,0.12587964534759521,0.3197092115879059,-0.3225027918815613,0.8490961194038391,-1.2106026411056519,-0.4740634560585022,0.9507437348365784,-0.6478227376937866,-0.2809394299983978,0.5898008942604065,-0.5951039791107178,-0.6281182765960693,0.1660783290863037,-0.9339795112609863,0.9276552200317383,-0.35803449153900146,0.9996377825737,-0.15416336059570312,0.08464067429304123,0.08922180533409119,1.041375756263733,0.26160287857055664,0.2046307623386383,0.05840104818344116,0.14889484643936157,0.026707733049988747,-0.2515290379524231,-1.0904784202575684,0.3330889344215393,-0.9198080897331238,-0.3378531038761139,-0.835644006729126,-0.2948649525642395,-1.26974356174469,-0.3504907786846161,-0.09897088259458542,0.899646520614624,0.42986804246902466,-0.005512645468115807,1.7017356157302856,-0.855219841003418,0.7345959544181824,-0.8203946352005005,0.37080463767051697,0.3808263838291168,-0.4898882508277893,0.5833549499511719,0.6451622247695923,-1.1975072622299194,0.8890292644500732,-0.5863154530525208,-0.9352850914001465,-0.33191126585006714,-0.3860503137111664,0.7087952494621277,0.018168749287724495,-0.24518023431301117,0.009786205366253853,-0.8358578681945801,-0.2746361792087555,0.060824908316135406,-1.1661394834518433,-0.2727472484111786,-0.26091763377189636,-0.7518198490142822,0.4824334979057312,0.25074687600135803,1.336126446723938,-0.4884105920791626,-0.5745383501052856,-0.8098224997520447,-0.4169054925441742,0.29848310351371765,-0.13832522928714752,-0.7078800201416016,-0.24315135180950165,0.3452112674713135,0.01816471852362156,-1.2210041284561157,-0.06650029867887497,-0.42605873942375183,-0.531126081943512,-0.7567691206932068,-0.39470335841178894,-0.027830414474010468,0.670187771320343,0.2025463879108429,-1.579248070716858,0.20208021998405457,0.5705428719520569,0.8532851934432983,-1.0970937013626099,-0.6559543013572693,1.4283764362335205,-0.18149210512638092,0.7050377130508423,-0.21414253115653992,-1.4688794612884521,0.2222023904323578,-0.03371792286634445,-0.47710925340652466,0.8172487020492554,1.4888213872909546,-0.684023380279541,-0.8988525867462158,-0.4213064908981323,-0.4352335035800934,1.0316500663757324,-0.530068576335907,0.40718844532966614,-0.14563189446926117,-0.2903088927268982,0.15918274223804474,-0.5143071413040161,-0.7426235675811768,0.2622363567352295,-0.6556177139282227,-0.47352954745292664,1.165804147720337,-0.23620222508907318,-1.2455484867095947,0.5222221612930298,0.6705272197723389,1.056350827217102,0.2220177799463272,-0.17614345252513885,-1.3068761825561523,-0.026479333639144897,0.4628293514251709,-0.28611528873443604,-0.1107751652598381,-0.24305930733680725,0.32761576771736145,0.6607732176780701,-0.44092532992362976,-0.7381280064582825,-0.7678452730178833 -2973,0.6500459313392639,0.323708713054657,0.6415448188781738,0.0024241236969828606,0.14037512242794037,0.6222040057182312,0.8696882128715515,-0.5179033875465393,-0.34702029824256897,0.7018767595291138,-1.3312612771987915,0.4394686222076416,-0.38346144556999207,-1.3308449983596802,-0.3609974980354309,0.4659252464771271,-0.24772852659225464,1.2521802186965942,0.47983112931251526,1.0994162559509277,0.5156980752944946,0.06986717879772186,-0.5529493689537048,0.2736217975616455,0.4947889745235443,0.09315891563892365,0.13919402658939362,-0.523511528968811,0.4555271565914154,1.0803877115249634,1.1684619188308716,-0.32011064887046814,-0.7695459723472595,-0.16870661079883575,0.43934908509254456,0.04798484221100807,0.49842092394828796,0.4518691897392273,0.2623670995235443,0.5853495597839355,0.7117826342582703,1.0584616661071777,0.5130689144134521,-0.11478748917579651,0.7926536202430725,-0.935256838798523,-0.8337479829788208,0.8578747510910034,-0.5882272720336914,0.05127410963177681,0.020801279693841934,-0.4368628263473511,1.047929286956787,0.50629723072052,0.8956756591796875,0.29590609669685364,-0.09760428965091705,1.0897154808044434,0.4842488765716553,-0.19309668242931366,-0.9398515224456787,0.5930581092834473,-1.4506618976593018,0.2754451036453247,-0.5924533605575562,-0.1223682165145874,1.1673791408538818,-0.4254332184791565,0.5319865942001343,-0.08514904230833054,0.9667679667472839,-0.5400649309158325,-0.2437628209590912,1.1506729125976562,0.5464218854904175,0.5642999410629272,0.20351330935955048,0.0831439271569252,-0.9331608414649963,-0.5638609528541565,-0.36740967631340027,0.1958443522453308,-0.4181091785430908,1.034130573272705,0.9779161810874939,0.8331092596054077,0.3498804271221161,0.9315876364707947,0.4520703852176666,-0.8343921303749084,1.462191104888916,0.023430731147527695,-0.9654337167739868,-0.23387476801872253,-0.6276803016662598,0.47576412558555603,0.1665116548538208,0.42651990056037903,-0.42749735713005066,-0.9068105220794678,-1.2175276279449463,-0.8429222702980042,0.4896416664123535,0.7878546714782715,-0.41879934072494507,-1.0709055662155151,0.25947579741477966,-0.768815279006958,0.14933131635189056,0.06639273464679718,-0.8463820219039917,0.1310339868068695,-0.48077183961868286,0.056517038494348526,0.8542504906654358,-1.2054482698440552,-0.4689091145992279,0.9631131291389465,-0.6426683664321899,-0.27578508853912354,0.5949552655220032,-0.5899496078491211,-0.6229639053344727,0.171232670545578,-0.9288251399993896,0.932809591293335,-0.39231136441230774,1.0541340112686157,-0.14900901913642883,0.08979501575231552,0.09437614679336548,1.0465301275253296,0.26675722002983093,-0.26074397563934326,0.06355538964271545,-0.1949709951877594,-0.037358615547418594,-0.2463746964931488,0.2824011743068695,0.3382432758808136,-0.9146537184715271,-0.3326987624168396,-0.8304896354675293,-0.2897106111049652,-1.2363604307174683,-0.3453364372253418,0.19891926646232605,0.9048008918762207,0.43502238392829895,-0.00035830121487379074,1.7068899869918823,-0.5898059606552124,0.739750325679779,-0.8152402639389038,0.37595897912979126,-0.26895588636398315,-1.1222211122512817,0.5885093212127686,0.650316596031189,-1.1923528909683228,0.8941836357116699,-0.5811610817909241,-0.4498201012611389,-0.32675692439079285,-0.3808959722518921,0.5135960578918457,0.023323092609643936,-0.27990347146987915,0.014940549619495869,-0.8307034969329834,-0.2694818377494812,0.0659792497754097,-1.1609851121902466,-0.2675929069519043,-0.25576329231262207,-0.7466654777526855,0.4875878393650055,0.3248746693134308,1.3293495178222656,-0.4832562506198883,-0.5031324028968811,-1.092621088027954,-0.4117511510848999,0.30363744497299194,-0.13317088782787323,-0.6766419410705566,-0.23799701035022736,0.08699747920036316,0.023319061845541,-1.215849757194519,0.06585968285799026,-0.030360933393239975,-0.6997936367988586,-0.7516147494316101,-0.38954901695251465,-0.022676069289445877,0.9432264566421509,0.2077007293701172,-1.5740936994552612,0.029822681099176407,0.514613151550293,0.858439564704895,-0.5425880551338196,-0.6507999300956726,1.4335308074951172,-0.17633776366710663,0.710192084312439,-0.17208732664585114,-1.9946677684783936,-0.7071565389633179,-0.02856357768177986,0.04715517535805702,0.822403073310852,1.173912763595581,-0.7745032906532288,-0.8936982154846191,-0.41615214943885803,-0.4300791621208191,1.0343117713928223,-0.5249142050743103,0.41234278678894043,-0.14047755300998688,-0.2851545512676239,0.21340161561965942,-0.5091527700424194,-0.7374691963195801,0.2673906981945038,-0.650463342666626,-0.37798893451690674,1.1709585189819336,-0.2310478836297989,-0.8508767485618591,0.5273765325546265,0.7293426990509033,1.0615051984786987,0.2271721214056015,0.8079909086227417,-1.3017218112945557,-0.021324988454580307,0.4679836928844452,-0.28096094727516174,-0.10562082380056381,-0.23790496587753296,0.16364902257919312,0.6659275889396667,-0.2777917683124542,-0.7329736351966858,-0.7626909017562866 -2974,0.6567586660385132,0.33042144775390625,0.6482575535774231,0.009136843495070934,0.013453111052513123,0.6289167404174805,0.8703562021255493,-0.51119065284729,-0.3403075933456421,0.708589494228363,-1.324548602104187,0.4551928639411926,-0.3767487406730652,-0.9760509133338928,-0.35428476333618164,0.47263795137405396,-0.24101580679416656,1.2743799686431885,0.48654383420944214,1.1061289310455322,0.5224108099937439,0.07657989859580994,-0.7915944457054138,0.2803345322608948,0.5015016794204712,0.09987163543701172,0.1459067463874817,-0.5167987942695618,0.4622398614883423,1.0871003866195679,1.175174593925476,-0.31339794397354126,-0.7628332376480103,-0.16199389100074768,0.530570924282074,0.054697562009096146,0.5051336288452148,0.45858192443847656,0.2690798044204712,0.592978835105896,0.7184953689575195,1.0908125638961792,0.5197816491127014,-0.10807476937770844,0.6064944863319397,-0.9285441040992737,-0.8270352482795715,0.8012927174568176,-0.5815145373344421,0.09141197800636292,0.027513999491930008,-0.6286546587944031,0.9821426868438721,0.5130099654197693,0.9023883938789368,0.3350673317909241,-0.09089156985282898,1.0964281558990479,0.49096161127090454,-0.18638396263122559,-0.9331387877464294,0.5997708439826965,-1.467970848083496,0.282157838344574,-0.1962135285139084,-0.11565549671649933,1.1740918159484863,-0.4187204837799072,0.39057743549346924,-0.07843632251024246,0.9734807014465332,-1.0275921821594238,-0.2370501011610031,1.2209831476211548,0.5608720779418945,0.7132077813148499,0.21022602915763855,0.08985664695501328,-0.9264481067657471,-0.5571482181549072,-0.41182637214660645,0.2804147005081177,-0.41139644384384155,1.0408432483673096,0.9876342415809631,0.839821994304657,0.4086456894874573,0.8874873518943787,0.6420469284057617,-0.8276793956756592,1.4689037799835205,-0.18292517960071564,-0.9587209820747375,-0.22716204822063446,-0.6209675669670105,0.4824768304824829,0.07352404296398163,0.4332326054573059,-0.4207846522331238,-0.9221576452255249,-1.2108149528503418,-0.8362095355987549,0.4963544011116028,0.641197919845581,-0.4120866060256958,-1.0641928911209106,0.26618850231170654,-0.7621025443077087,0.15604403614997864,0.07310545444488525,-1.4008889198303223,0.13774670660495758,-0.4740591049194336,0.0632297545671463,0.8609632253646851,-1.1987355947494507,-0.6649553179740906,0.9698258638381958,-0.24233700335025787,-0.26907235383987427,0.6016680002212524,-0.5832368731498718,-0.6162511706352234,0.17794539034366608,-0.9221124053001404,0.895843505859375,-0.38559865951538086,1.196549415588379,-0.14229629933834076,0.0965077355504036,0.10108886659145355,1.053242802619934,0.2734699249267578,-0.254031240940094,0.1135936751961708,-0.18825827538967133,-0.03064589574933052,-0.23966197669506073,0.2891138792037964,0.3449559807777405,-0.463482141494751,-0.32598602771759033,-0.82377690076828,-0.28299790620803833,-1.2296477556228638,0.032896265387535095,0.20563198626041412,0.708741307258606,0.44173508882522583,0.9657815098762512,1.7136026620864868,-1.3120466470718384,0.7464630603790283,-0.8085275292396545,0.3826717138290405,-0.2622431516647339,-0.9351438879966736,0.5952220559120178,0.6570293307304382,-0.6684162616729736,0.9008963704109192,-0.5744483470916748,-0.44310736656188965,-0.32004421949386597,-0.3741832375526428,0.3738090395927429,-0.0015938133001327515,-0.6387796998023987,0.021653268486261368,-0.8239907622337341,-0.26276910305023193,0.07269196957349777,-1.154272437095642,-0.5037673711776733,-0.249050572514534,-0.7399527430534363,0.4943005442619324,0.09671942889690399,1.3360621929168701,-0.282997727394104,-0.49641966819763184,-1.0859084129333496,-0.40503841638565063,0.1389332264661789,-0.12645816802978516,-0.6699292063713074,-0.5584756135940552,0.09371019899845123,0.030031781643629074,-1.2091370820999146,0.07257240265607834,-0.0236482135951519,-0.5833107829093933,-0.7449020147323608,-0.3828362822532654,0.02062375470995903,0.7897748351097107,0.21441344916820526,-1.5673810243606567,0.03653540089726448,0.5213258862495422,0.7345784902572632,-0.5358753204345703,-0.6440871953964233,1.4402434825897217,-0.16962504386901855,0.7169048190116882,-0.16537460684776306,-1.987955093383789,-0.7004438042640686,-0.021850857883691788,0.053867895156145096,0.8291158080101013,1.4318912029266357,-0.7677905559539795,-0.8869854807853699,-0.40943944454193115,-0.4233664274215698,1.0410244464874268,-1.283879041671753,0.4190555214881897,-0.1337648332118988,-0.278441846370697,0.2201143354177475,-0.5024400353431702,-1.2694387435913086,0.27410340309143066,-0.6437506079673767,-0.37127619981765747,1.078381061553955,-0.22433516383171082,-0.8130769729614258,0.5340892672538757,0.833416223526001,1.0682178735733032,0.23388484120368958,0.814703643321991,-1.4565047025680542,-0.014612268656492233,0.9703110456466675,-0.27424824237823486,-0.09890810400247574,-0.09992372989654541,0.1703617423772812,0.5298239588737488,-0.27107906341552734,-0.8250188231468201,-0.7559781670570374 -2975,0.6329882740974426,0.32633206248283386,0.6441681385040283,0.0050474489107728004,0.009363716468214989,0.6248273253440857,0.8662667870521545,-0.6741554737091064,-0.3443969786167145,0.7045000791549683,-1.328637957572937,0.45110347867012024,-0.3808381259441376,-0.6680301427841187,-0.29599425196647644,0.46854856610298157,-0.24510520696640015,1.2198740243911743,0.53682541847229,1.1020395755767822,0.3886561989784241,0.07249050587415695,-0.7956838607788086,0.2762451469898224,0.4974122941493988,0.11576420068740845,-0.41593626141548157,-0.5208882093429565,0.4581504762172699,1.0597288608551025,1.1838974952697754,-0.31748732924461365,-0.766922652721405,-0.16608329117298126,0.7428383231163025,0.05060816556215286,0.5010442137718201,0.6080994009971619,0.2649904191493988,0.5888894200325012,0.7144059538841248,1.0867232084274292,0.5156922340393066,-0.11216416209936142,0.8158923387527466,-0.9326335191726685,-0.7448259592056274,0.7972033023834229,-0.5856039524078369,-0.08472589403390884,0.023424604907631874,-0.6327440738677979,0.9780532717704773,0.609152615070343,0.898298978805542,0.3309779465198517,0.352030873298645,1.126949429512024,0.5487410426139832,-0.19047336280345917,-0.9372282028198242,0.5005364418029785,-1.2433738708496094,0.2780684530735016,-0.20030292868614197,-0.098289854824543,1.1700024604797363,-0.4228098690509796,0.31815966963768005,-0.13970482349395752,0.9693912863731384,-1.0316815376281738,-0.2411395013332367,1.2168937921524048,0.5567826628684998,0.7091183662414551,0.20613662898540497,0.08576725423336029,-0.9305375218391418,-0.5728710889816284,-0.41591575741767883,0.2763253152370453,-0.41548582911491394,1.0367538928985596,0.9835448265075684,0.8357325792312622,0.4045563042163849,0.8833979368209839,0.6379575133323669,-0.831768810749054,1.4648144245147705,0.06501872092485428,-0.39116039872169495,-0.23125144839286804,-0.6250569820404053,0.4783874452114105,0.06943465024232864,0.4683876633644104,-0.42487403750419617,-0.9262470602989197,-1.2149043083190918,-0.8402989506721497,0.4922650158405304,0.7433550953865051,-0.4161759912967682,-1.0682822465896606,0.26209911704063416,-0.7661919593811035,-0.06975816935300827,-0.778282880783081,-1.4049782752990723,0.133657306432724,-0.478148490190506,0.05914036184549332,0.8568738102912903,-1.2028249502182007,-0.6690447330474854,0.965736448764801,-0.24642640352249146,-0.27316173911094666,0.5975785851478577,-0.48571088910102844,-0.6203405857086182,0.1738559901714325,-0.9262018203735352,0.8917540907859802,-0.5248181223869324,1.1677601337432861,-0.14638569951057434,0.2297181636095047,0.09699947386980057,0.8951708078384399,0.2693805396556854,-0.2581206262111664,0.39131054282188416,-0.1923476755619049,-0.034735292196273804,-0.2437513768672943,0.285024493932724,0.3408665955066681,-0.46757152676582336,-0.3300754129886627,-0.8278663158416748,-0.6156641840934753,-1.2337371110916138,0.2623799741268158,0.20154258608818054,0.7046518921852112,0.43764570355415344,0.6267985701560974,1.7095133066177368,-1.3161360025405884,0.7423736453056335,-1.0655958652496338,0.37858232855796814,0.20252658426761627,-0.9392333030700684,0.591132640838623,0.6487236022949219,-0.6725056767463684,0.8968069553375244,-0.602448582649231,-0.46273717284202576,-0.32413360476493835,-0.3782726228237152,0.36971965432167053,-0.005683207884430885,-0.6428691148757935,0.017563873901963234,-0.8280801773071289,-0.2668584883213043,-0.02428525872528553,-1.158361792564392,-0.7459211945533752,-0.2531399726867676,-0.744042158126831,0.5131435990333557,0.09263003617525101,1.3319728374481201,-0.2870871126651764,-0.5005090832710266,-1.0899977684020996,-0.409127801656723,0.2476349025964737,-0.13054756820201874,-0.6740186214447021,-0.56256502866745,-0.01162356324493885,0.02594238705933094,-0.6248144507408142,0.06848300993442535,-0.027737608179450035,-0.49361222982406616,-0.7489914298057556,-0.38692566752433777,0.09557753056287766,0.7856854200363159,0.21032404899597168,-1.5714703798294067,0.0324460044503212,0.299466997385025,0.7304890751838684,-0.5399647355079651,-0.6481766104698181,1.4361541271209717,-0.0590246245265007,0.7128154039382935,-0.16946400701999664,-1.992044448852539,-0.6397162079811096,1.0613243579864502,0.04977849870920181,0.8250263929367065,1.4278018474578857,-0.7718799710273743,-0.8910748958587646,-0.41352882981300354,-0.4274558126926422,1.0369350910186768,-1.287968397140503,-0.3660552203655243,-0.13785423338413239,-0.2825312316417694,0.21602493524551392,-0.5065294504165649,-1.2735280990600586,0.2700140178203583,-0.6478400230407715,-0.37536558508872986,1.074291706085205,-0.2284245640039444,-0.7384800314903259,0.529999852180481,0.7846490144729614,1.0641285181045532,0.229795441031456,0.8106142282485962,-1.6646313667297363,-0.09790045768022537,0.9662216305732727,-0.27833762764930725,-0.10299749672412872,-0.1040131226181984,0.1662723422050476,0.525734543800354,-0.27516844868659973,-0.8291082382202148,-0.7600675821304321 -2976,0.6541749238967896,0.3475187122821808,0.2783128619194031,0.02623409405350685,-0.018262354657053947,0.6460139751434326,0.8874534368515015,-0.6529688239097595,-0.5696583390235901,0.7256867289543152,-1.3074513673782349,0.47229012846946716,-0.4920956492424011,-0.6468434929847717,-0.2748076021671295,0.4897352159023285,-0.14248794317245483,1.23990797996521,0.558012068271637,1.1232261657714844,0.48283708095550537,0.09367714822292328,-0.7744972109794617,0.2974317967891693,0.5185989141464233,0.13695085048675537,0.12405695766210556,-0.4997015595436096,0.4793371260166168,1.0809154510498047,1.141950249671936,-0.2963006794452667,-0.7457360029220581,-0.14489664137363434,0.7640249729156494,0.07179480791091919,0.522230863571167,0.6292860507965088,0.37873196601867676,0.6100760698318481,0.7355926036834717,1.1079097986221313,0.5368788838386536,-0.09097751975059509,0.8370789885520935,-0.9114468693733215,-0.5749513506889343,0.8183899521827698,-0.56441730260849,-0.06353925168514252,0.04461124911904335,-0.6115574240684509,0.9992399215698242,0.6303392648696899,0.9194856286048889,0.3521645963191986,0.37321752309799194,1.1048164367675781,0.5760542750358582,-0.507533073425293,-0.9160415530204773,0.5217230916023254,-1.2221872806549072,0.20393231511116028,-0.17700381577014923,-0.15499347448349,1.2232365608215332,-0.4016232192516327,0.339346319437027,-0.11851818114519119,1.0742547512054443,-1.0104949474334717,-0.21995285153388977,1.2012336254119873,0.5779693126678467,0.6360079646110535,0.2273232787847519,0.10695389658212662,-0.8195556402206421,-0.5516844391822815,-0.3947291076183319,-0.4579329788684845,-0.394299179315567,1.2372325658798218,1.0047314167022705,0.8569192290306091,0.24319538474082947,0.9575403928756714,0.631775975227356,-0.810582160949707,1.4860010147094727,0.0862053632736206,-0.369973748922348,-0.21006479859352112,-0.6038703322410583,0.6784495711326599,-0.7421358227729797,0.4895743131637573,-0.40368738770484924,-0.9050604104995728,-0.07780737429857254,-0.8191123008728027,0.5134516358375549,0.764541745185852,-0.5208428502082825,-1.173699140548706,0.2832857668399811,-0.3393535614013672,-0.04857152700424194,-0.7570962309837341,-1.3752392530441284,0.15484395623207092,-0.45696184039115906,-0.39022478461265564,0.8780604600906372,-1.1816383600234985,-0.6478580832481384,0.8927797079086304,-0.04573909193277359,-1.0411715507507324,0.6187652349472046,-0.4645242393016815,-0.5991539359092712,0.20294873416423798,-0.8261892795562744,0.9129407405853271,-0.5036314725875854,1.3619353771209717,-0.12519904971122742,0.25090479850769043,-0.10755468159914017,0.8496807813644409,0.0679633840918541,-0.23693397641181946,0.4124971926212311,-0.17116102576255798,-0.013548647984862328,-0.2225647270679474,0.3062111437320709,0.362053245306015,-0.44638487696647644,-0.3088887631893158,-0.8066796660423279,-0.5944775342941284,-0.7791423201560974,0.2835666239261627,0.22272923588752747,0.7258385419845581,0.45883235335350037,-0.869688868522644,1.730699896812439,-0.8668099045753479,0.8749443888664246,-1.0444092750549316,-0.3987453877925873,0.1478055715560913,-0.9180466532707214,0.61231929063797,0.6699102520942688,-0.6513190269470215,0.9148970246315002,-0.581261932849884,-0.44155052304267883,-0.30294695496559143,-0.5074586272239685,0.39090630412101746,0.01550343632698059,-0.6216824650764465,0.03875051811337471,-0.806893527507782,-0.2456718385219574,-0.003098614513874054,-1.13717520236969,-0.5666746497154236,-0.23195332288742065,-0.7228555083274841,0.5343302488327026,0.07680366933345795,1.3531594276428223,-0.2783423662185669,-0.6019376516342163,-0.8275148272514343,-0.3879411518573761,0.7432183027267456,-0.10936092585325241,-0.6528319716453552,-0.541378378868103,0.009563080966472626,0.047129031270742416,-0.4561479091644287,0.08966965228319168,-0.006550963968038559,-0.47242558002471924,-0.7278047800064087,-0.36573901772499084,0.11676417291164398,0.7729610800743103,0.2315106987953186,-1.5502837896347046,0.16978487372398376,0.32065364718437195,0.7445875406265259,-0.7398524880409241,-0.6269899606704712,1.4573407173156738,-0.037837982177734375,0.7340020537376404,-1.172419548034668,-1.970857858657837,-0.6185295581817627,1.0825109481811523,0.07096514105796814,0.8462130427360535,1.448988437652588,-0.7506933212280273,-0.8698882460594177,-0.5456814765930176,-0.4062691628932953,1.058121681213379,-1.2667818069458008,-0.34486857056617737,-0.11666759103536606,-0.2613445818424225,0.16982245445251465,-1.1522985696792603,-1.2523415088653564,0.2912006676197052,-0.6266533732414246,-0.35417893528938293,1.0954782962799072,-0.20723791420459747,-0.665646493434906,0.5511865019798279,0.5966054201126099,1.0853151082992554,0.2509820759296417,0.8891516327857971,-1.6434447765350342,-0.07671381533145905,0.9874082803726196,-0.2571509778499603,-0.38215482234954834,-0.08282648026943207,0.16840018332004547,0.4692404568195343,-0.2539817988872528,-0.8079215884208679,-0.7388809323310852 -2977,0.7157426476478577,0.3581738770008087,0.288968026638031,0.036889269948005676,-0.007607177831232548,0.6566691398620605,0.8981086015701294,-0.6423136591911316,-0.5590031743049622,0.8040859699249268,-1.296796202659607,0.4829452931880951,-0.3486083745956421,-0.34498703479766846,-0.2384413778781891,0.5003904104232788,-0.36537599563598633,1.3281683921813965,0.6277318000793457,1.1338813304901123,0.4934922456741333,0.24947111308574677,-0.27388402819633484,0.3278929889202118,0.5292540788650513,-0.3652258515357971,0.1347121298313141,-0.4890463948249817,0.48999229073524475,1.0915706157684326,1.186890959739685,-0.2856455147266388,-0.7350808382034302,-0.13424146175384521,0.7746801376342773,-0.01667751744389534,0.5328860282897949,0.6399412155151367,0.5231146812438965,0.6207312345504761,0.7462477684020996,1.1185649633407593,0.5218586325645447,-0.08032234013080597,0.8477341532707214,-0.5830002427101135,-0.5642961859703064,0.8057818412780762,-0.5537621378898621,-0.013402360491454601,0.08535770326852798,-0.3001745343208313,1.0098950862884521,0.6409944295883179,0.9301407933235168,0.3683702349662781,0.3838726878166199,1.115471601486206,0.5867094397544861,-0.49687790870666504,-0.9053863883018494,0.3627052903175354,-1.2115321159362793,0.2145874947309494,-0.1663486361503601,-0.14433829486370087,1.2338917255401611,-0.39096805453300476,0.3500014841556549,-0.10786300152540207,1.0849099159240723,-0.9998397827148438,-0.1866440325975418,1.2118887901306152,0.5886244773864746,0.6466631293296814,0.23797845840454102,0.11760907620191574,-0.7108970284461975,-0.5410292744636536,-0.384073942899704,-0.44727781414985657,-0.4619362950325012,1.065352201461792,1.0153865814208984,0.8675743937492371,0.14893436431884766,0.9681955575942993,0.6424311399459839,-0.7999269962310791,1.4966561794281006,0.09686054289340973,-0.3593185842037201,-0.199409618973732,-0.5932151675224304,0.6891047358512878,-0.7314806580543518,0.31488221883773804,-0.20507726073265076,-0.8944052457809448,-0.4703982472419739,-0.6726133823394775,0.5241068005561829,0.77519690990448,-0.2763878107070923,-1.1630439758300781,0.3885822296142578,-0.32869839668273926,-0.03791635110974312,-0.7464410662651062,-1.3645840883255005,0.3014104962348938,-0.44630667567253113,-1.8610897064208984,0.8887156248092651,-1.18999445438385,-0.6372029185295105,0.9034348726272583,-0.035083916038274765,-1.0305163860321045,0.6294203996658325,-0.6987463235855103,-0.5884987711906433,0.2136039137840271,-0.8155341148376465,0.9235959053039551,-0.4929763078689575,1.3725905418395996,-0.1145438700914383,0.31057503819465637,-0.09689950197935104,0.8603359460830688,0.6482658982276917,-0.22627879679203033,0.423152357339859,-0.16050584614276886,-0.002893471159040928,-0.21190954744815826,0.31686630845069885,0.37270841002464294,-0.4357297122478485,-0.6121454238891602,-0.7960245013237,-0.5838223695755005,-0.7684871554374695,-0.12383271753787994,0.2333844155073166,0.736493706703186,0.4694875180721283,-0.8590337038040161,1.741355061531067,-0.8235116004943848,0.8438765406608582,-1.0337541103363037,-0.38809022307395935,0.2605757713317871,-1.0178043842315674,0.6229744553565979,0.6805654168128967,-0.6406638622283936,0.9255521893501282,-0.5706067681312561,-0.4308953583240509,-0.28288790583610535,-0.4968034625053406,0.4015614688396454,0.026158612221479416,-0.6110273003578186,0.049405694007873535,-0.48398345708847046,-0.23501665890216827,-0.09835794568061829,-1.126520037651062,0.1301138550043106,-0.22129814326763153,-0.7122003436088562,0.5449854135513306,0.08745884895324707,1.1350775957107544,-0.26768720149993896,-0.5912824869155884,-0.8168596625328064,-1.657962679862976,0.9928512573242188,-0.09870574623346329,-0.8164911270141602,-0.5298412442207336,0.02021825686097145,0.05778420716524124,-0.4454927444458008,0.1003248319029808,-0.6743414402008057,-0.032433975487947464,-0.7171496152877808,-0.8381781578063965,0.1274193525314331,0.7836162447929382,0.24216587841510773,-1.5396286249160767,0.13903479278087616,0.3313088119029999,0.7007153034210205,-0.7291973233222961,-0.6120527982711792,1.483846664428711,0.0022460268810391426,0.7446572184562683,-0.07388590276241302,-1.2478797435760498,-0.6078743934631348,1.0931661128997803,-0.784619927406311,0.8568682074546814,1.4596436023712158,-1.4140987396240234,-0.8592330813407898,-0.5350263118743896,-0.39561399817466736,1.000535249710083,-1.2561266422271729,-0.33421340584754944,-0.10601241141557693,-0.016562480479478836,0.18047763407230377,-1.2178239822387695,-0.9428211450576782,0.30185583233833313,-0.6159982085227966,-0.343523770570755,1.1061334609985352,-0.19658273458480835,-0.6549913287162781,0.5618416666984558,0.6072605848312378,0.9932164549827576,0.26163724064826965,0.7089465856552124,-1.6327896118164062,-0.06605863571166992,0.9980634450912476,-0.0720326155424118,-1.5186433792114258,-0.07217130064964294,0.1790553629398346,0.43093961477279663,-0.24332661926746368,-0.79726642370224,-0.6192601323127747 -2978,0.6677231192588806,0.31015437841415405,0.24094852805137634,-0.512444019317627,0.29869696497917175,0.6086496114730835,0.8500890731811523,-0.6903331875801086,-0.0565590038895607,0.7191896438598633,-1.344815731048584,0.43492579460144043,-0.4491548240184784,-0.3930065333843231,-0.28646087646484375,0.4710685908794403,-0.7447535991668701,1.2801488637924194,0.4417891502380371,1.0858618021011353,0.3092169463634491,0.2014515995979309,-0.3219035267829895,0.1611253023147583,0.4812345802783966,-0.4132453501224518,0.08669262379407883,0.12011035531759262,0.4419727921485901,1.0435510873794556,1.138871431350708,-0.33366501331329346,-1.04410719871521,-0.12735983729362488,0.7266606092453003,-0.0646970272064209,0.48486652970314026,0.5919216871261597,0.4750951826572418,0.5962299704551697,0.8869105577468872,1.0705454349517822,0.47383913397789,-0.12834185361862183,0.9443261623382568,-0.6310197710990906,-0.6123157143592834,0.7577623128890991,-0.6017816662788391,-0.061421867460012436,0.037338197231292725,-0.34819403290748596,0.9618755578994751,0.5929749011993408,0.8821212649345398,0.28690043091773987,0.3358531892299652,1.067452073097229,0.55386883020401,-0.24814364314079285,-0.9534059166908264,0.512081503868103,-1.2595516443252563,0.11131108552217484,-0.32740578055381775,-0.19235780835151672,1.1808239221572876,-0.4389875531196594,0.30198198556900024,0.31138888001441956,1.0042383670806885,-0.9508067965507507,-0.23466354608535767,1.1638692617416382,0.5406049489974976,0.5986436009407043,0.18995895981788635,0.06958957016468048,-0.9395580291748047,-0.5890488028526306,-0.43209344148635864,-0.49529731273651123,-0.5099558234214783,1.017332673072815,0.9673670530319214,0.81955486536026,0.1009148582816124,0.9201760292053223,0.5944116115570068,-0.8479465246200562,1.4486366510391235,0.45530906319618225,-0.40733808279037476,-0.1769472062587738,-0.6412346959114075,0.23494288325309753,-0.7795001864433289,0.2668627202510834,-0.2530967593193054,-0.9424247741699219,0.3237169682979584,-0.7206329107284546,0.4760873019695282,0.7271773815155029,-0.32440730929374695,-1.227310061454773,-0.3566959798336029,-0.3767178952693939,-0.08593586087226868,-0.7944605946540833,-1.1004000902175903,0.25339099764823914,-0.4943261742591858,-1.3609246015548706,0.8406960964202881,0.002411983907222748,-0.6852224469184875,0.8554153442382812,-0.38640204071998596,-0.39526572823524475,0.5814008712768555,-0.6133508086204529,-0.6365182995796204,0.16558441519737244,-0.8635536432266235,0.875576376914978,0.29071852564811707,1.3245710134506226,-0.16256338357925415,0.2625555396080017,-0.1449190080165863,0.8123164176940918,0.6002463698387146,-0.18887338042259216,0.37513285875320435,-0.20852535963058472,-0.05091297626495361,-0.2599290609359741,0.2688468098640442,0.3246889114379883,-0.0755336657166481,-0.8101378679275513,-0.844044029712677,-0.5450040102005005,-0.8165066838264465,-0.1718522310256958,0.2404145896434784,0.7568543553352356,0.42146801948547363,-0.19099655747413635,1.6933355331420898,-0.67481529712677,0.7977785468101501,-1.0817736387252808,-0.436109721660614,0.21255627274513245,-1.0658239126205444,0.5749549269676208,0.6325458884239197,-0.6886833906173706,0.8775326609611511,-0.6186262965202332,-0.47891485691070557,-0.4302673637866974,-0.08313337713479996,0.3535419702529907,-0.021860893815755844,-0.6590468287467957,0.0013861879706382751,-0.5320029854774475,0.3142862617969513,-0.14637744426727295,-1.2349166870117188,0.08209434896707535,-0.2693176567554474,-0.7602198719978333,0.05324807018041611,0.11898743361234665,1.0870580673217773,-0.5215033888816833,-0.6393020153045654,-0.8648791909217834,-1.6177375316619873,0.9448317289352417,-0.14672525227069855,-0.8115618228912354,-0.5778607726097107,-0.02780124917626381,0.009764701128005981,-0.49351224303245544,0.052305325865745544,-0.7223609685897827,-0.13507390022277832,0.012662194669246674,0.7209502458572388,0.07939984649419785,0.7292172312736511,0.19414636492729187,-1.5876481533050537,0.0910152867436409,0.2832893133163452,0.6526957750320435,-0.7772168517112732,-0.6600723266601562,1.4291470050811768,-0.047309037297964096,0.6966376900672913,-0.12190540879964828,0.05079462379217148,-0.17882108688354492,1.0451465845108032,-0.1654745638370514,0.8088486790657043,1.4116240739822388,-1.4832559823989868,-0.9072526097297668,-0.6059572696685791,-0.443633496761322,1.0026687383651733,-0.7894498109817505,-0.3822329044342041,-1.0682158470153809,-0.0645819902420044,-0.010677464306354523,-0.7835720181465149,-0.9011045098304749,0.3794333040714264,-0.6640177369117737,-0.39154326915740967,1.058113932609558,-0.13922876119613647,-0.7030108571052551,0.5138221383094788,0.5592410564422607,0.9451969265937805,0.213617742061615,0.6609270572662354,-1.6808091402053833,-0.11407814174890518,0.9500439167022705,-0.12005212157964706,-1.0922584533691406,-0.1201908066868782,0.13103586435317993,0.38292011618614197,-0.29134613275527954,-1.1384198665618896,-0.6672796607017517 -2979,0.6951756477355957,0.2918109893798828,0.2233286052942276,-0.5300639271736145,0.2810770273208618,0.591029703617096,0.8934462070465088,-0.7079530954360962,-0.07417893409729004,0.7552596926689148,-1.3624356985092163,0.4173058569431305,-0.46677476167678833,-0.2629355490207672,-0.3040808141231537,0.45344865322113037,-0.13287772238254547,1.262528896331787,0.4241692125797272,1.068241834640503,0.39891910552978516,0.14394089579582214,-0.33952346444129944,0.14350537955760956,0.46361464262008667,-0.4308652877807617,0.06907269358634949,0.10249042510986328,0.42435285449028015,1.0114809274673462,1.1212514638900757,-0.3512849509716034,-0.319566935300827,-0.14497976005077362,0.7090407013893127,-0.08231695741415024,0.4672465920448303,0.5743017792701721,0.6968693733215332,0.5786100625991821,0.7615923285484314,1.05292546749115,0.4562191963195801,0.00888335146009922,0.9267062544822693,-0.6486396789550781,-0.5068742036819458,0.6634390354156494,-0.4960978031158447,-0.07904179394245148,0.019718268886208534,-0.3658139705657959,0.9442556500434875,0.5753549933433533,0.8645013570785522,0.26928049325942993,0.3182332515716553,1.0498321056365967,0.5362489223480225,-0.2657635807991028,-0.971025824546814,0.4944615662097931,-1.2808136940002441,0.16696922481060028,-0.3450257182121277,-0.07709922641515732,1.1632039546966553,-0.45660749077796936,0.2843620479106903,-0.12453147023916245,0.9866184592247009,-0.9684267044067383,-0.2522834837436676,1.1462492942810059,0.5144606232643127,0.5810236930847168,0.1723390370607376,0.05196963995695114,-0.7860183119773865,-0.6066687107086182,-0.4497133791446686,0.15357725322246552,-0.5275757312774658,0.9997127652168274,0.9497471451759338,0.872785210609436,0.08329492807388306,0.9025561213493347,0.5767917037010193,-0.8655664324760437,1.5368189811706543,0.4376891255378723,-1.2618733644485474,-0.31234756112098694,-0.658854603767395,0.2173229604959488,-0.4809023141860962,0.24924279749393463,-0.27071669697761536,-0.9600446820259094,-0.09052687138319016,-0.9227070212364197,0.45846736431121826,0.7095574736595154,-0.3420272469520569,-1.2449300289154053,-0.37431591749191284,0.5414578318595886,-0.10355579107999802,-0.8120805025100708,-1.1180200576782227,0.2357710748910904,-0.5119460821151733,-2.003225326538086,0.8230761885643005,-0.015207944437861443,-0.7028423547744751,0.8377954363822937,-0.7023786306381226,-0.4128856658935547,0.5637809634208679,-0.6309707164764404,-0.6541382074356079,0.35458049178123474,-0.9627981781959534,0.6140114665031433,0.27309858798980713,1.3069510459899902,-0.1801833063364029,0.24493561685085297,-0.16253893077373505,0.9249365925788879,-0.3631512224674225,-0.8414849638938904,0.3575129210948944,-0.22614528238773346,-0.06853290647268295,-0.27754899859428406,0.25122687220573425,0.30706897377967834,-0.09315359592437744,-0.8277577757835388,-0.8616639375686646,-0.006887039169669151,-0.8341265916824341,-0.18947215378284454,0.22279466688632965,0.739234447479248,0.684917151927948,1.1190931797027588,1.6757155656814575,-0.6924352049827576,0.5670986771583557,-1.099393606185913,-0.45372965931892395,0.1949363499879837,-0.6177147030830383,0.5573350191116333,0.6149259805679321,-0.925366222858429,0.8599127531051636,-0.6362462043762207,-0.4965347945690155,-0.4478873014450073,-0.1007533073425293,0.3359220325946808,-0.039480820298194885,0.00036869384348392487,-0.016233740374445915,-0.5496228933334351,0.29666632413864136,-0.41950109601020813,-1.252536654472351,-0.09484751522541046,-0.2869375944137573,-0.7778397798538208,0.03562813997268677,0.08831524848937988,1.069438099861145,-0.185750350356102,-0.656921923160553,-0.882499098777771,-1.6353574991226196,0.9272118210792542,-0.1643451750278473,-0.8291817307472229,-0.5954806804656982,-0.13335728645324707,-0.007855227217078209,-0.5111321806907654,0.034685395658016205,-0.7399808764457703,-0.15269382297992706,-0.004957733675837517,0.634192168712616,0.061779916286468506,0.7115973234176636,0.17652644217014313,-1.605268120765686,0.07339535653591156,0.2656693756580353,0.6350758671760559,-0.7948367595672607,0.3002801835536957,1.2058714628219604,-0.06492896378040314,0.7033730149269104,-0.13952533900737762,0.03317469358444214,-0.19644100964069366,1.027526617050171,-0.18309448659420013,0.7912287712097168,1.7066179513931274,-0.5725624561309814,-0.9248725175857544,-0.7439846396446228,-0.46125343441963196,0.9475940465927124,-0.807069718837738,-0.39985284209251404,-0.08276756852865219,-0.08220192044973373,-0.028297392651438713,-0.8011919260025024,-0.8656437397003174,0.36181336641311646,-1.2540031671524048,-0.7934358716011047,1.0404939651489258,-0.15684868395328522,-0.7206307649612427,0.4962022006511688,0.7760242223739624,0.927577018737793,-0.4936411678791046,0.6433071494102478,-1.6984291076660156,-0.13169807195663452,0.8822804689407349,-0.1376720517873764,-1.0588419437408447,-0.13781073689460754,0.11341593414545059,0.36530017852783203,-0.3089660704135895,-1.156039834022522,-0.6848995685577393 -2980,0.713417649269104,0.3100529909133911,0.08566627651453018,-0.053110040724277496,-0.04441974312067032,0.6092717051506042,0.9116882085800171,-0.6897110939025879,-0.055936940014362335,0.7735016942024231,-1.344193696975708,0.4355478584766388,-0.44853276014328003,-0.2446935474872589,-0.2858388125896454,0.474963515996933,0.22554896771907806,1.2807708978652954,0.4424112141132355,1.0864838361740112,0.41716110706329346,0.16218289732933044,-0.32128146290779114,0.4031471610069275,0.5997837781906128,-0.4126232862472534,0.08731468766927719,0.12073241919279099,0.40486422181129456,1.0297229290008545,1.139493465423584,-0.13917966187000275,-0.3013249337673187,-0.12673775851726532,0.4446530342102051,-0.06407496333122253,0.4854885935783386,0.37233966588974,-0.08355868607759476,0.5968520641326904,0.7390268445014954,1.0711674690246582,0.4744611978530884,0.027125347405672073,0.9449482560157776,-0.6303976774215698,-0.4886322021484375,0.6816810369491577,-0.9952949285507202,-0.06079979985952377,0.03796026483178139,-0.3475719690322876,0.9838940501213074,0.5935969948768616,0.8827433586120605,0.32377034425735474,0.4879394769668579,1.068074107170105,0.5544909238815308,-0.24752157926559448,-0.9527838230133057,0.512703537940979,-1.2625716924667358,0.10437358170747757,-0.3267837166786194,-0.058857232332229614,1.0777039527893066,-0.43836548924446106,0.3026040494441986,-0.10628947615623474,1.0048604011535645,-0.95018470287323,-0.2340414822101593,1.2040554285049438,0.532702624797821,0.6241825819015503,0.1167965680360794,0.07021163403987885,-0.7677763104438782,-0.6108784079551697,-0.4314713776111603,0.17181925475597382,-0.5414003729820251,1.0202298164367676,0.9679891467094421,0.8910272121429443,0.10153692215681076,1.0056811571121216,0.5950337052345276,-0.8473244309425354,1.2632311582565308,0.9002399444580078,-1.243631362915039,-0.29410555958747864,-0.6406126022338867,0.2355649620294571,-0.4626603126525879,0.26748478412628174,-0.25247469544410706,-0.9418026804924011,-0.28932201862335205,-0.3856326937675476,0.47670936584472656,0.7277994751930237,-0.3237852454185486,-1.226688027381897,-0.35607391595840454,-1.3609462976455688,-0.08531379699707031,-0.902251660823822,-1.0997780561447144,0.2540130615234375,-0.49370408058166504,-1.797763705253601,0.9049226641654968,-0.4498600363731384,-0.6846003532409668,0.856037437915802,-0.6841366291046143,-0.3946436643600464,0.4000653326511383,-0.9503045082092285,-1.1450918912887573,0.34665465354919434,-0.4383859634399414,0.6322534680366516,0.29134058952331543,1.1861463785171509,-0.1619413048028946,0.2631776034832001,0.2634908854961395,0.8477839231491089,-0.617548942565918,-1.2629224061965942,0.3757549226284027,-0.20790328085422516,-0.05029091238975525,-0.25930699706077576,0.26946887373924255,0.32531097531318665,-0.07491160184144974,-1.0009685754776,-0.3420202136039734,0.011354956775903702,-0.8158845901489258,-0.17123015224933624,0.24103666841983795,0.7574764490127563,0.7031591534614563,1.137335181236267,1.752760648727417,-0.6741932034492493,0.5218738317489624,-1.0811516046524048,-0.43548765778541565,-0.2998862862586975,-0.59947270154953,0.5755770206451416,0.6125873923301697,-0.9071242213249207,0.635741651058197,-0.6180042028427124,-0.4782927930355072,-0.429645299911499,-0.012384755536913872,0.3541640341281891,-0.6757400035858154,-0.29618939757347107,0.09396427124738693,0.5914051532745361,0.31490832567214966,-0.40125909447669983,-1.2342946529388428,-0.07660552114248276,-0.268695592880249,-0.7595977783203125,0.05387013405561447,0.10655724257230759,1.6540582180023193,-0.1675083488225937,-0.6386799216270447,-0.740288496017456,-1.6171154975891113,0.9454538226127625,-0.37117987871170044,-0.9387187957763672,-0.5772386789321899,-0.16296951472759247,0.3280443251132965,-0.4928901791572571,0.05292738974094391,-0.17901158332824707,-0.13445182144641876,-1.1414837837219238,0.6524341702461243,0.08002191036939621,0.7298393249511719,0.19476844370365143,-1.5870261192321777,0.09163735061883926,0.2839113771915436,0.6533178687095642,-0.7765947580337524,-0.4031393826007843,1.339564561843872,-0.04668696969747543,0.7216150164604187,-0.12128334492444992,0.05141668766736984,-0.17819900810718536,-0.05497778207063675,-0.5336840748786926,0.8094707727432251,1.7248599529266357,-0.5543204545974731,-0.9066305160522461,-0.7257426381111145,-0.44301143288612366,0.9658360481262207,-0.7888277173042297,-0.21264685690402985,-0.06452557444572449,-0.06395992636680603,-0.01005539670586586,-0.7829499244689941,-0.10247565060853958,0.3896939754486084,-1.2357611656188965,-0.6500951647758484,1.0014568567276,-0.13860668241977692,-0.7023887634277344,0.5144441723823547,0.8109596371650696,0.9458190202713013,-1.1103821992874146,0.6615491509437561,-0.6481417417526245,-0.11345607787370682,1.0655983686447144,-0.1194300577044487,-1.0405999422073364,-0.11956874281167984,0.1316579282283783,0.38354218006134033,-0.2907240688800812,-1.1377978324890137,-0.666657567024231 -2981,0.6399033665657043,0.2640605568885803,0.17728611826896667,-0.42616623640060425,-0.05575577914714813,0.597935676574707,0.9003521800041199,-0.7010471224784851,-0.18248945474624634,0.7621656656265259,-0.8735722899436951,0.4119943678379059,-0.17471352219581604,-0.25602957606315613,-0.2971748411655426,0.46362748742103577,0.07142841070890427,1.240935206413269,0.5709196329116821,1.0751477479934692,0.40582507848739624,-0.09317789226770401,-0.33261749148368835,0.3918111324310303,0.5884477496147156,-0.42395931482315063,0.07597865164279938,0.10939638316631317,0.4275711476802826,1.0183868408203125,1.0196588039398193,-0.15051569044589996,-0.12882301211357117,-0.13807378709316254,0.43331700563430786,-0.07541099935770035,0.4741525650024414,0.412036269903183,0.5298530459403992,0.5855160355567932,0.7276908159255981,1.0598313808441162,0.5511621832847595,0.01578931324183941,0.9336122274398804,-0.641733705997467,-0.4999682307243347,0.6703450083732605,-1.0066310167312622,-0.07213583588600159,0.026624230667948723,-0.3589079976081848,0.9060397744178772,0.5822609663009644,0.9445182085037231,0.33549585938453674,0.3081985116004944,1.056738018989563,0.5996174812316895,-0.2588576078414917,-0.9641198515892029,0.3508543074131012,-1.2739077806472778,0.09303754568099976,-0.3381197452545166,-0.04230891913175583,1.0482183694839478,-0.4497015178203583,0.4176846146583557,-0.11762551218271255,1.0193402767181396,-0.9615207314491272,-0.24537751078605652,1.1927193403244019,0.5987513065338135,0.6013731956481934,0.1423337757587433,0.05887559801340103,-0.7791123390197754,-0.6222144365310669,-0.4428074061870575,0.397128701210022,-0.5801469683647156,1.0088937282562256,0.9566531181335449,0.8796911835670471,0.09020088613033295,0.9943451285362244,0.5836976766586304,-0.8586604595184326,1.2518950700759888,0.8889039158821106,-1.254967451095581,-0.2919544279575348,-0.6205980181694031,0.22422893345355988,-0.4739963412284851,0.2561487555503845,-0.35754328966140747,-0.9531387090682983,-0.30065804719924927,-0.48685938119888306,0.46537333726882935,0.7164634466171265,-0.3351212739944458,-1.238024115562439,-0.36740994453430176,-1.3722823858261108,0.05659114569425583,-0.9135876893997192,-1.1111141443252563,0.24267703294754028,-0.5050401091575623,-1.809099793434143,0.8935866355895996,-0.46119606494903564,-0.695936381816864,0.8447014093399048,-0.509842038154602,-0.4059796929359436,0.3887293040752411,-0.9616405367851257,-0.9870915412902832,0.443016916513443,-0.5282365083694458,0.9982646107673645,0.36482328176498413,1.1748102903366089,-0.1732773333787918,0.25184157490730286,0.2521548569202423,0.9399136900901794,-0.6288849711418152,-1.0379483699798584,0.31065601110458374,-0.21923930943012238,-0.06162694841623306,-1.0086300373077393,0.25813284516334534,0.31397494673728943,-0.08624763786792755,-1.0487921237945557,-0.3533562421798706,1.8922612071037292e-05,-0.827220618724823,-0.18256618082523346,0.22970063984394073,0.7461404204368591,0.6918231248855591,1.125999093055725,1.741424560546875,-0.6855292320251465,0.5105378031730652,-1.0924876928329468,0.07891406863927841,0.3067244291305542,-0.6108087301254272,0.5642409920692444,0.6012513637542725,-0.8350714445114136,0.6244056224822998,-0.6293402314186096,-0.4896288216114044,-0.44098132848739624,0.3404255509376526,0.34282800555229187,-0.19551581144332886,-0.3075254261493683,0.08262823522090912,0.34314265847206116,0.30357229709625244,-0.41259512305259705,-1.2456307411193848,-0.08794155716896057,-0.28003162145614624,-0.7709338068962097,0.04253409802913666,0.09522120654582977,1.6427221298217773,-0.1788443773984909,-0.6500159502029419,-0.7516245245933533,-1.6284515857696533,0.9341177940368652,-0.38251590728759766,-0.9500548243522644,-0.5885747075080872,-0.17430554330348969,0.3167082965373993,-0.5042262077331543,0.041591353714466095,-0.35554611682891846,-0.14578785002231598,-1.2266231775283813,0.641098141670227,0.0686858743429184,0.7185032963752747,0.22926563024520874,-1.5983622074127197,0.08030131459236145,0.27257534861564636,0.641981840133667,-0.7879307866096497,-0.4144754111766815,1.32822847366333,-0.05802300572395325,0.7038651704788208,-0.7285811901092529,0.04008065164089203,-0.18953503668308258,-0.06631381809711456,-0.5450201034545898,0.7981347441673279,1.7038624286651611,-0.44786757230758667,-0.9179665446281433,-0.7370786666870117,-0.4543474614620209,0.9545000195503235,-0.800163745880127,-0.22398288547992706,-0.0758616104722023,0.11532796174287796,-0.021391430869698524,-0.33905690908432007,-0.8970841765403748,0.3783579468727112,-1.2470972537994385,-0.6614311933517456,1.0822404623031616,-0.14994271099567413,-0.7137247920036316,0.5031081438064575,0.7996236085891724,1.245246171951294,-1.141058087348938,0.6502131223678589,-0.6594777703285217,-0.12479211390018463,1.0542622804641724,-0.1307660937309265,-1.0848673582077026,-0.3569008409976959,0.12032189220190048,0.3722061514854431,-0.3020600974559784,-0.9787427186965942,-0.6779935956001282 -2982,0.6428079605102539,0.2669651508331299,0.18019069731235504,-0.4232616424560547,-0.05285119265317917,0.6008402705192566,0.9032567739486694,-0.7593328356742859,-0.17958487570285797,0.7650702595710754,-0.8706676959991455,0.41489896178245544,-1.066763162612915,-0.25312498211860657,-0.3987143635749817,0.4665320813655853,0.07433299720287323,1.2438397407531738,0.5738242268562317,1.078052282333374,0.3024654984474182,-0.09027330577373505,-0.3297128975391388,0.39471572637557983,0.5913523435592651,-0.4210547208786011,0.07888323813676834,0.11230096966028214,0.16551069915294647,1.0134949684143066,1.0225633382797241,-0.1476111114025116,-0.1259184330701828,-0.4869961738586426,0.7109095454216003,-0.07250641286373138,0.47705715894699097,0.4543274939060211,-0.04813433438539505,0.296978622674942,0.7305954098701477,1.0350509881973267,0.5540667772293091,0.018693897873163223,0.9100146293640137,-0.6388291120529175,-0.23999251425266266,0.6732496023178101,-1.0037264823913574,-0.06923124939203262,0.029528815299272537,-0.35600340366363525,0.9089443683624268,0.5851655602455139,0.6166723370552063,0.4423311650753021,0.31110310554504395,1.0596425533294678,0.4780893921852112,-0.25595301389694214,-0.9794631004333496,0.40869981050491333,-1.034766674041748,0.09594213217496872,0.24939070641994476,-0.039404332637786865,1.0511229038238525,-0.4467969238758087,0.4205892086029053,-0.11472092568874359,1.0222448110580444,-0.9586161375045776,-0.2479424625635147,1.1956238746643066,0.5933603644371033,0.6042777895927429,0.18654599785804749,0.061780184507369995,-0.7762077450752258,-0.6193098425865173,-0.3252532482147217,0.40003329515457153,-0.577242374420166,1.0117982625961304,0.9595577120780945,0.8825957775115967,0.09310547262430191,0.9972497224807739,0.5866022706031799,-0.8557558655738831,1.2547996044158936,0.8918085098266602,-1.2520629167556763,-0.28904983401298523,-0.6176934242248535,0.22713351249694824,0.9942449331283569,0.1500931978225708,-0.3546386957168579,-0.9502341151237488,-0.2977534532546997,-0.4839547872543335,0.4682779312133789,0.719368040561676,-0.33221668004989624,-1.2351195812225342,-0.3645053505897522,-1.369377851486206,0.05949573218822479,-0.9106830954551697,-1.1082096099853516,0.24558161199092865,-0.5021355152130127,-1.8061952590942383,0.9457858800888062,-0.4582914710044861,-0.6930317878723145,0.8476060032844543,-0.5069374442100525,-0.40307509899139404,0.39163389801979065,-0.9587359428405762,-1.4697612524032593,0.44592151045799255,-0.5253319144248962,0.7436357736587524,0.31317710876464844,1.1777148246765137,-0.17037275433540344,0.2547461688518524,0.25505945086479187,0.942818284034729,-0.417638897895813,-0.4532408118247986,0.3135606050491333,-0.216334730386734,-0.0587223619222641,-1.0057255029678345,0.2610374391078949,0.33940619230270386,-0.0008601110894232988,-1.0458875894546509,-0.35045164823532104,0.0029235079418867826,-0.8243160247802734,-0.1420692652463913,0.2326052188873291,0.778210461139679,0.6947277188301086,1.1289036273956299,1.7443290948867798,-0.6899164915084839,0.5134423971176147,-1.089583158493042,0.08181865513324738,0.30962902307510376,-0.6079041361808777,0.567145586013794,0.604155957698822,-0.832166850566864,0.7980796694755554,-0.6264356374740601,-0.48672422766685486,-0.40254759788513184,0.3087581694126129,0.34573259949684143,-0.1926112323999405,-0.15042448043823242,0.08553282171487808,-0.3555556833744049,0.04070281237363815,-0.4096905291080475,-1.24272620677948,-0.9896889328956604,-0.2771270275115967,-0.7680292129516602,-0.017478743568062782,0.09812579303979874,1.4402694702148438,-0.7510349154472351,-0.6615410447120667,-1.0110269784927368,-0.8114891052246094,0.9370223879814148,-0.3796113133430481,-0.9471502304077148,-0.5856701135635376,0.10690201073884964,-0.21257267892360687,-0.5013216137886047,0.04449594020843506,-0.3526415228843689,-0.02463223971426487,-0.6849616169929504,0.5824537873268127,0.07159046083688736,0.7214078903198242,0.2321702092885971,-1.595457673072815,0.08320590108633041,0.5723270773887634,0.6448864340782166,-0.7850261926651001,-0.4869232475757599,1.3311330080032349,-0.02099194936454296,0.5985758304595947,-0.5195580720901489,0.20775794982910156,-0.1866304576396942,-0.0634092316031456,-1.30184006690979,0.8010393381118774,1.706766963005066,-0.3869006037712097,-1.0230488777160645,-0.7341740727424622,-0.4514428675174713,0.957404613494873,-0.8905641436576843,-0.2210783064365387,-0.07295702397823334,0.0045301830396056175,-0.01848684623837471,-0.3361523151397705,-0.8941795825958252,0.40430134534835815,-1.2441927194595337,-0.6653269529342651,1.1410152912139893,-0.01659623719751835,-0.710820198059082,0.4772370457649231,0.8025282025337219,1.2481507062911987,-1.2615671157836914,0.6531177163124084,-0.6565731763839722,-0.12188752740621567,1.0571668148040771,-0.12786151468753815,-0.23324115574359894,-0.35399624705314636,0.12322647869586945,0.7003158330917358,-0.29915550351142883,-0.9758381247520447,-0.6750890016555786 -2983,0.6967138648033142,0.2776026129722595,0.19082815945148468,-0.41262418031692505,-0.04221373051404953,0.6114777326583862,0.8847588896751404,-0.7486953735351562,-0.16894741356372833,0.7757077217102051,-0.8600302338600159,0.4255364239215851,-1.0561256408691406,-0.24248751997947693,-0.38807690143585205,0.5439260601997375,0.08497045934200287,1.2746152877807617,0.5844616889953613,1.1135209798812866,0.36817795038223267,-0.07963584363460541,-0.5636507868766785,0.4036911129951477,0.6019898056983948,-0.17331230640411377,0.08952070027589798,-0.03261455148458481,0.10414540022611618,1.024132490158081,1.0332008600234985,-0.25672823190689087,-0.11528097093105316,-0.47635871171951294,0.259958952665329,-0.061868950724601746,0.4876946210861206,0.48751187324523926,-0.03749687224626541,0.4245626926422119,0.7412328720092773,1.045688509941101,0.5647042393684387,0.029331360012292862,0.5101673603057861,-0.6281916499137878,-0.22935505211353302,0.6838870644569397,-0.7285410761833191,-0.058593787252902985,-0.16342033445835114,0.3277888298034668,0.8234049081802368,0.5955575108528137,0.7281112670898438,0.3756025731563568,0.3217405676841736,0.9133814573287964,0.4887268543243408,-0.2453155517578125,-0.96882563829422,0.41933727264404297,-1.0241291522979736,0.24873316287994385,0.23190222680568695,-0.028766870498657227,1.061760425567627,-0.4361594617366791,0.4312266707420349,-0.10408346354961395,1.0328823328018188,-0.947978675365448,-0.330013632774353,1.206261396408081,0.5619924664497375,0.6149152517318726,0.19718345999717712,0.07241764664649963,-0.6021476984024048,-0.5353408455848694,-0.24275776743888855,0.41067075729370117,-0.5666049122810364,1.0224357843399048,0.9701951742172241,0.8932332396507263,0.10374293476343155,1.0078872442245483,0.5972397327423096,-0.8451184034347534,1.1184656620025635,0.25850552320480347,-2.233881711959839,-0.2784123718738556,-0.6070559620857239,0.23777097463607788,1.0048824548721313,0.4791624844074249,-0.34400123357772827,-0.9395966529846191,-0.28711599111557007,-0.33909156918525696,0.47891539335250854,0.7300055027008057,-0.3215792179107666,-1.2244820594787598,-0.35386788845062256,-1.3587403297424316,0.6776667833328247,-0.8070763349533081,-1.1132678985595703,0.2562190890312195,-0.49149805307388306,-1.7955577373504639,0.9564233422279358,-0.44765400886535645,-0.6823943257331848,0.858243465423584,-0.49629998207092285,-1.0916495323181152,0.4022713601589203,-0.9480984807014465,-1.4591237306594849,0.4565589725971222,-0.5146944522857666,0.7542732357978821,0.3238145709037781,1.188352346420288,-0.1597352921962738,0.15713652968406677,0.2656969130039215,0.9534557461738586,-0.40700143575668335,-0.22716520726680756,0.45926621556282043,-0.20569726824760437,-0.04808489978313446,-0.9950880408287048,0.27167490124702454,0.3500436544418335,0.009777352213859558,-1.0352500677108765,-0.3398141860961914,0.01356097124516964,-0.6911464333534241,-0.14404061436653137,0.24324268102645874,0.47145047783851624,0.7053651809692383,0.4662879705429077,1.7549666166305542,-0.6792790293693542,0.5240798592567444,-1.0789456367492676,0.09245611727237701,0.3202664852142334,-0.597266674041748,0.5777830481529236,0.6147934198379517,0.3079270124435425,0.8087171316146851,-0.6157981753349304,-0.4760867655277252,-0.2756211459636688,0.31939563155174255,0.35637006163597107,0.3079564571380615,-0.13978701829910278,0.020469598472118378,-0.34491822123527527,0.05134027451276779,-0.39905306696891785,-1.2320886850357056,-0.9790514707565308,-0.26648956537246704,-1.034464716911316,-0.006841280497610569,0.25990647077560425,1.4509069919586182,-0.7403974533081055,-0.650903582572937,-1.0003894567489624,-0.8008516430854797,0.9476598501205444,-0.47243231534957886,-0.9365127682685852,-0.575032651424408,0.11753947287797928,-0.20193521678447723,-0.4906841516494751,0.0551334023475647,-0.561828076839447,-0.013994776643812656,-0.6743241548538208,0.5930912494659424,0.082227922976017,0.5044955015182495,0.24280767142772675,-1.5848201513290405,0.09384336322546005,0.4845787584781647,0.6555238962173462,-0.7743887305259705,-0.47628578543663025,1.3417705297470093,-0.010354486294090748,0.6092132925987244,-0.5089206099510193,0.2183954119682312,0.0842113196849823,-0.05277176946401596,-1.1832199096679688,0.7762861847877502,1.7174044847488403,-0.3762631416320801,-1.01241135597229,-0.6273115873336792,-0.4408054053783417,0.9680420756340027,-0.8799266815185547,-0.21044084429740906,-0.0623195618391037,0.01516764611005783,-0.007849383167922497,-1.044184684753418,-0.8835421204566956,0.4149388074874878,-0.7539791464805603,-0.6546894907951355,1.1516528129577637,-0.005958774127066135,-1.290954828262329,0.48787450790405273,1.0901933908462524,1.2587882280349731,-1.250929594039917,-0.20532995462417603,-0.6225621700286865,-0.4216448664665222,1.0678043365478516,-0.11722405254840851,-0.7690611481666565,0.057234883308410645,0.13386394083499908,0.7133389711380005,-0.2885180413722992,-0.965200662612915,-0.664451539516449 -2984,0.6959298849105835,0.2768186628818512,0.19004420936107635,-0.3907129466533661,-0.042997684329748154,0.6106937527656555,0.8839749097824097,-0.749479353427887,-0.16973136365413666,0.7749237418174744,-1.205163836479187,0.4349778890609741,-0.9859527945518494,-0.37208154797554016,-0.3503756523132324,0.5431420803070068,0.08418650180101395,1.2738313674926758,0.5836777091026306,1.1127370595932007,0.36739400029182434,-0.08041980117559433,-0.5644347667694092,0.4029071629047394,0.6912851929664612,-0.1740962564945221,0.08873674273490906,-0.108974389731884,0.10336144268512726,1.0233485698699951,1.0805792808532715,-0.2575121819972992,-0.11606492847204208,0.1903291642665863,0.8336047530174255,-0.06265290826559067,0.4869106709957123,0.48672792315483093,-0.3213699758052826,0.4237787425518036,0.7404488921165466,1.0449045896530151,0.5283119082450867,0.02854740433394909,0.47316357493400574,-0.6289756298065186,-0.23013900220394135,0.683103084564209,-0.9778381586074829,-0.05937774106860161,-0.16420428454875946,0.32700487971305847,0.8368260860443115,0.594773530960083,0.7279936671257019,0.3748186230659485,0.32095661759376526,0.9125974774360657,0.4879429042339325,-0.19219928979873657,-0.9696096181869507,0.41855332255363464,-1.0249130725860596,0.24794921278953552,0.23111827671527863,-0.029550826177001,1.060976505279541,-0.4369434118270874,0.4304427206516266,-0.10486742109060287,1.032098412513733,-0.9487626552581787,-0.33079758286476135,1.2054774761199951,0.6576852798461914,0.5788424611091614,0.1963995099067688,0.07163368910551071,-0.6029316782951355,-0.5361248254776001,-0.23020081222057343,-0.12414512783288956,-0.5673888921737671,1.0216518640518188,0.9694111943244934,1.0371102094650269,-0.14895284175872803,0.8876157999038696,0.5964557528495789,-0.21417489647865295,1.403555154800415,0.07916592806577682,-2.234665632247925,-0.2791963219642639,-0.6078399419784546,0.23698702454566956,1.0040985345840454,0.4783785343170166,-0.3447851836681366,-0.9403806328773499,-0.2878999412059784,-0.3398755192756653,0.6152892112731934,0.729221522808075,-0.057801876217126846,-1.2252659797668457,-0.3546518385410309,-1.236434817314148,0.676882803440094,-1.190224528312683,-1.1140518188476562,0.25543513894081116,-0.4922820031642914,-1.7963416576385498,0.9556393623352051,-0.44843795895576477,-0.6831783056259155,0.8574594855308533,-0.4970839321613312,-1.0924334526062012,0.40148741006851196,-0.5779820680618286,-1.4599076509475708,0.45577502250671387,-0.5154784321784973,0.7534892559051514,0.32303062081336975,1.1875684261322021,-0.16051924228668213,0.15635257959365845,0.2649129629135132,0.9526717662811279,-1.3053622245788574,-0.1357659101486206,0.4584822654724121,-0.2064812183380127,-0.048868853598833084,-1.456347942352295,0.2708909511566162,0.34925970435142517,0.00899339746683836,-1.0360339879989624,-0.34059813618659973,-0.7411733865737915,-1.5827797651290894,-0.1448245644569397,0.24245873093605042,0.4706665277481079,0.7045812010765076,0.3768073618412018,1.7725082635879517,-0.680063009262085,0.4794634282588959,-1.0797295570373535,-0.6138402223587036,0.1256648749113083,-0.5980506539344788,0.5769990682601929,0.614009439945221,0.34483602643013,0.8079331517219543,-0.6165821552276611,-0.580610990524292,-0.27640509605407715,0.31861168146133423,0.35558611154556274,0.3071725070476532,-0.1405709683895111,0.019685642793774605,-0.3457021713256836,0.16168832778930664,-0.5085790753364563,-1.2328726053237915,-1.269466757774353,-0.26727351546287537,-0.5623908638954163,0.15497276186943054,0.2591225206851959,1.1902198791503906,-0.6192861199378967,-0.6516875624656677,-1.0011733770370483,-0.8016356229782104,0.9468758702278137,-0.4732162654399872,-0.9372967481613159,-0.5758166313171387,0.14981910586357117,-0.20271916687488556,-0.6208190321922302,0.054349448531866074,-0.6073686480522156,0.027531059458851814,-0.6751081347465515,0.5923072695732117,0.08144396543502808,0.5037115216255188,0.24202372133731842,-1.5856040716171265,0.09305940568447113,0.48379480838775635,0.6547399163246155,-0.2258777916431427,-0.4770697355270386,1.3914004564285278,-0.05939330905675888,0.6673821806907654,-0.50970458984375,0.21761146187782288,0.08342736214399338,1.0104340314865112,-1.1447101831436157,0.7755022048950195,1.78864324092865,-0.1027541533112526,-0.20550313591957092,-0.6280955672264099,-0.44158935546875,0.967258095741272,-0.8807106614112854,-0.21122479438781738,-0.06310351938009262,-0.010344834066927433,-0.008633337914943695,-1.044968605041504,-0.8843261003494263,0.41415485739707947,-0.6082929968833923,-0.6554734706878662,1.135219693183899,-0.0006049081566743553,-1.291738748550415,0.6278641223907471,1.0894094705581665,1.2580043077468872,-1.251713514328003,-0.20611390471458435,-0.6233461499214172,-0.42242881655693054,1.109442114830017,-0.11800801008939743,-0.8650318384170532,0.05645092949271202,0.13307999074459076,0.7125549912452698,-0.2893019914627075,-0.9659846425056458,-0.6652355194091797 -2985,0.6915062665939331,0.2723950147628784,-0.041165150701999664,-0.18874722719192505,-0.047421324998140335,0.5815969109535217,0.8795512914657593,-0.7539029717445374,-0.17415501177310944,0.770500123500824,-1.2095874547958374,0.2996115982532501,-0.29352816939353943,-0.37650519609451294,-0.22748474776744843,0.5387184619903564,0.12350279837846756,1.3353990316390991,0.47414103150367737,1.0946693420410156,0.36297035217285156,-0.08484344184398651,-0.5688583850860596,0.3984835147857666,0.7105101943016052,-0.17851990461349487,0.08431310206651688,-0.11339803040027618,0.09893780201673508,1.0189249515533447,1.076155662536621,-0.31515803933143616,-0.12048856914043427,0.18590551614761353,0.8291811347007751,-0.26983842253685,0.4824870228767395,0.48230427503585815,-0.23798546195030212,0.4193550944328308,0.7671345472335815,1.0404809713363647,0.5904704332351685,0.02412376180291176,0.2870523929595947,-0.633399248123169,-0.23456265032291412,0.6651341319084167,-0.7476418018341064,-0.15214550495147705,-0.16862793266773224,0.3225812315940857,0.8324024677276611,0.5903499126434326,0.7235700488090515,0.33127012848854065,0.28903457522392273,0.9081738591194153,0.48448100686073303,-0.3523589074611664,-0.9740332365036011,0.41412967443466187,-1.02933669090271,0.24352556467056274,0.22669462859630585,-0.03397446870803833,1.0565528869628906,-0.5577858686447144,0.4943924844264984,-0.10929106175899506,1.0276747941970825,-0.783480703830719,-0.19049857556819916,1.2010538578033447,0.653261661529541,0.574418842792511,-0.11232318729162216,0.06721004843711853,-0.6073552966117859,-0.5405484437942505,-0.2346244603395462,-0.12856876850128174,-0.5718125104904175,1.0172282457351685,1.0435820817947388,1.0653095245361328,-0.1533764898777008,0.9948242902755737,0.5920321345329285,-0.21859854459762573,1.3991315364837646,0.07474228739738464,-1.0299956798553467,-0.045386336743831635,-0.612263560295105,0.23256337642669678,0.999674916267395,0.4739548861980438,-0.3492088317871094,-0.9448042511940002,-0.29232358932495117,-0.34429916739463806,1.0551687479019165,0.7247979044914246,-0.24061086773872375,-1.229689598083496,-0.35907548666000366,-1.7563486099243164,0.6724591851234436,-1.1946481466293335,-1.1184754371643066,0.2510114908218384,-0.49670565128326416,-1.8007652759552002,0.9512157440185547,-1.1304898262023926,-0.6876019239425659,0.8530358672142029,-0.34966400265693665,-1.0968570709228516,0.3970637619495392,-0.582405686378479,-1.4643312692642212,0.4872569143772125,-0.008106493391096592,0.749065637588501,0.318606972694397,1.1831448078155518,-0.1649428904056549,0.15192893147468567,-0.04572995752096176,1.0784631967544556,-0.9196292161941528,-0.4223160147666931,0.45405861735343933,-0.21090486645698547,-0.053292494267225266,-1.2267158031463623,0.26646730303764343,0.3448360562324524,-0.07969611138105392,-1.0404576063156128,-0.3450217843055725,-1.0012131929397583,-1.5872033834457397,0.2431495189666748,0.23803508281707764,0.46624287962913513,0.8849200010299683,-0.9734444618225098,1.7212101221084595,-0.6844866275787354,0.4750397801399231,-0.9469802379608154,-0.5896413922309875,0.12124123424291611,-0.6024742722511292,0.5725754499435425,0.6095858216285706,-0.8935534954071045,0.803509533405304,-0.6210057735443115,-0.5850346088409424,-0.2808287441730499,0.31418803334236145,0.35116246342658997,0.3027488589286804,-0.1449946165084839,0.015262001194059849,-0.35012581944465637,0.16614174842834473,-0.5130026936531067,-1.1358494758605957,-1.2738903760910034,-0.27169716358184814,-0.5668144822120667,0.5826374292373657,0.25469887256622314,1.1857962608337402,-0.6237097382545471,-0.6561111807823181,-1.0055969953536987,-0.8060592412948608,0.9424522519111633,-0.47763991355895996,-0.7514047026634216,-0.5802402496337891,0.1453954577445984,-0.20714281499385834,-0.6038117408752441,0.015645213425159454,-0.611792266368866,0.023107416927814484,-0.6795317530632019,0.5878836512565613,0.0770203247666359,0.499287873506546,0.23760007321834564,-1.5900276899337769,0.08863576501607895,0.47937116026878357,0.6503162980079651,-0.6120785474777222,-0.48149338364601135,1.3479046821594238,0.3417763411998749,0.662958562374115,-0.5141282081604004,-0.7972513437271118,0.0790037214756012,0.4830157458782196,-1.1491338014602661,1.0659713745117188,1.7842196226119995,-0.3261094391345978,-0.5056332349777222,-0.6325191855430603,-0.4460130035877228,0.9628344774246216,-0.8851342797279358,-0.21564844250679016,-0.0675271600484848,-0.014768475666642189,-0.013056979514658451,-0.43735793232917786,-0.7195942401885986,0.3201632797718048,-0.6127166152000427,-0.4708402156829834,1.1307960748672485,-0.0050285495817661285,-1.2961623668670654,0.6234405040740967,1.0849858522415161,1.2535806894302368,-1.2561371326446533,0.29221516847610474,-0.6277697682380676,-0.1720389723777771,1.0108203887939453,-0.12243165075778961,0.15831300616264343,-0.2512432634830475,0.12865634262561798,0.7081313729286194,-0.2937256395816803,-0.9331469535827637,-0.4988722503185272 -2986,0.6752464175224304,0.25613516569137573,-0.05742499977350235,-0.40737688541412354,0.4174986481666565,0.5753933191299438,0.8632914423942566,-0.77016282081604,-0.19041486084461212,0.7542402744293213,-1.2258473634719849,0.20863336324691772,-0.3097880184650421,-0.3927650451660156,-0.2437445968389511,0.5224586129188538,-0.04537633806467056,1.3191391229629517,0.4578811824321747,1.0784094333648682,0.3467105031013489,-0.1011032909154892,-0.7332598567008972,0.3822236657142639,0.6942503452301025,-0.19477975368499756,0.06805325299501419,-0.12965787947177887,0.08267795294523239,1.0026650428771973,1.1359658241271973,-0.3904174566268921,-0.13674841821193695,0.16964566707611084,0.7017205357551575,-0.28609827160835266,0.8681071400642395,0.46604442596435547,-0.2699958086013794,0.4030952453613281,0.7508746981620789,0.9142770767211914,0.509741485118866,0.007863910868763924,0.27079254388809204,-0.6496590971946716,-0.250822514295578,0.6488742828369141,-0.26619523763656616,-0.16840535402297974,-0.1915857046842575,0.306321382522583,0.9399968385696411,0.4818878769874573,0.7073101997375488,0.4007664620876312,0.24878302216529846,0.7354450225830078,0.3716467618942261,-0.36861875653266907,-0.9902930855751038,0.3978698253631592,-1.0455965995788574,0.2251541167497635,0.21043477952480316,-0.050234317779541016,1.0962027311325073,-0.574045717716217,0.4781326353549957,-0.12555091083049774,1.011414885520935,-0.7997405529022217,-0.20675842463970184,1.1847939491271973,0.6370018124580383,0.2340775728225708,-0.12858304381370544,0.050950199365615845,-0.6236151456832886,-0.5568082928657532,-0.2508843243122101,-0.14482861757278442,-0.5880723595619202,0.9939708113670349,0.9223084449768066,1.058856725692749,-0.1696363389492035,0.978564441204071,0.5757722854614258,-0.2545113265514374,1.3910682201385498,-0.38359716534614563,-1.0462555885314941,0.02189589850604534,-0.6285234093666077,0.2163035273551941,0.9834150671958923,0.4835662245750427,-0.36546868085861206,-0.9610641002655029,-0.30858343839645386,-0.36055901646614075,1.038908839225769,0.7085380554199219,-0.25687071681022644,-1.1331976652145386,-0.37533533573150635,-1.7726085186004639,0.6561993360519409,-1.210908055305481,-1.134735345840454,0.2347516417503357,-0.5129655003547668,-1.8170251846313477,0.8959597945213318,-1.14674973487854,-0.7038617730140686,0.8367760181427002,-0.36592385172843933,-1.113116979598999,0.3808039128780365,-0.679053008556366,-1.2031102180480957,0.47099706530570984,-0.024366345256567,0.8122795224189758,0.3023471236228943,1.1668848991394043,-0.1812027394771576,0.13566908240318298,-0.06198980659246445,1.062203288078308,-1.0786569118499756,0.03378227353096008,0.43779876828193665,-0.22716471552848816,-0.06955234706401825,-0.7362702488899231,0.25020745396614075,0.3285762071609497,-0.09595596045255661,-1.0567175149917603,-0.3612816333770752,-1.0174731016159058,-1.542570948600769,0.1936110407114029,0.22177523374557495,0.2296743541955948,0.8686601519584656,-0.9897043108940125,1.704950213432312,-0.700746476650238,0.4587799310684204,-0.9101467132568359,-0.6059012413024902,0.08846067637205124,-0.6187341213226318,0.5563156008720398,0.5933259725570679,-1.2065454721450806,0.7872496843338013,-0.6372656226158142,-0.6012944579124451,-0.2970885932445526,0.29792818427085876,0.3349026143550873,0.28648900985717773,-0.16125446557998657,-0.000997849740087986,-0.36638566851615906,0.14988189935684204,-0.5292625427246094,-1.1521093845367432,-1.2901502847671509,-0.28795701265335083,-0.5830743312835693,0.566377580165863,0.23843902349472046,1.2373234033584595,-0.10302770137786865,-0.6723710298538208,-0.8903926014900208,-0.4613604247570038,0.9261924028396606,-0.49389976263046265,-0.7676645517349243,-0.5965000987052917,-0.38720935583114624,0.07903285324573517,-0.6200715899467468,0.06401129812002182,-0.676112711429596,0.006847565993666649,-0.33178672194480896,0.5716238021850586,0.09057840704917908,0.48302802443504333,0.22134022414684296,-0.06537789106369019,0.07237591594457626,0.3388324975967407,0.6340564489364624,-0.03024888224899769,-0.49775323271751404,1.3316447734832764,0.3255164921283722,0.6466987133026123,-0.5303880572319031,-0.8135111927986145,0.06274387240409851,0.4667558968067169,-0.8690792918205261,1.0497114658355713,1.767959713935852,-0.34236928820610046,-0.5218930840492249,-0.648779034614563,-0.46227285265922546,0.9924625754356384,-0.9013941287994385,-0.23190829157829285,0.1807163804769516,-0.031028326600790024,-0.02931683138012886,-0.45361778140068054,-0.7358540892601013,0.3039034307003021,-0.6289764642715454,-0.4871000647544861,1.031387209892273,-0.021288400515913963,-1.312422275543213,0.607180655002594,1.1472320556640625,1.0875240564346313,-1.2723970413208008,-0.2704111933708191,-0.20683005452156067,-0.24023926258087158,0.9945605397224426,-0.1386914998292923,0.14205315709114075,-0.21408049762248993,0.1123964935541153,0.6918715238571167,-0.309985488653183,-0.9494068026542664,-0.5151321291923523 -2987,0.6731553077697754,0.2540440559387207,0.21775855123996735,-0.49254271388053894,0.41540753841400146,0.5733022093772888,0.8519664406776428,-0.7722539305686951,-0.19250598549842834,0.6965572237968445,-0.6070958971977234,0.2065422385931015,-0.6244165301322937,-0.39485615491867065,-0.2121979296207428,0.5203675031661987,-0.04746745899319649,1.3170479536056519,0.45579007267951965,1.0763182640075684,0.34461939334869385,-0.10319440811872482,-1.0200177431106567,0.34697964787483215,0.6921592354774475,-0.19687087833881378,0.06596213579177856,-0.1317490041255951,0.08058683574199677,1.0005738735198975,1.1338746547698975,-0.2610945701599121,-0.08749497681856155,0.16755454242229462,0.6996294260025024,-0.2881893813610077,0.8660160303115845,0.46395331621170044,-0.2720869183540344,0.4010041356086731,0.7475252151489258,0.9121859669685364,0.5076503753662109,0.16802343726158142,0.5644134879112244,-0.6517502069473267,-0.1839376986026764,0.646783173084259,-0.2682863473892212,-0.17049647867679596,-0.25905388593673706,0.304230272769928,0.9379057288169861,0.561794638633728,0.7052190899848938,0.3986753523349762,0.24669189751148224,0.880741536617279,0.36955565214157104,-0.3707098662853241,-0.9923841953277588,0.4643384516239166,-1.0476877689361572,0.14263391494750977,0.20834365487098694,-0.05232543870806694,1.080573320388794,-0.8620423078536987,0.4326561689376831,-0.22808681428432465,1.0093237161636353,-1.0707976818084717,-0.20884954929351807,1.1827027797698975,0.6349107027053833,0.4546627998352051,-0.13067416846752167,0.006700681522488594,-0.5466890335083008,-0.5588994026184082,-0.2529754340648651,-0.14691974222660065,-0.5901634693145752,0.9918797016143799,0.8435378670692444,1.0567655563354492,-0.17172746360301971,0.976473331451416,0.24385671317577362,-0.2566024363040924,1.38897705078125,-0.38568827509880066,-1.1870366334915161,0.2785089612007141,-0.6020227074623108,0.21421240270137787,0.9813239574432373,0.4814751148223877,-0.3675597906112671,-0.963155210018158,-0.0551178865134716,-0.3626501262187958,1.0368176698684692,0.56413334608078,-0.10147040337324142,-1.2324937582015991,-0.3774264454841614,-1.7746996879577637,0.5418545603752136,-1.2129992246627808,-0.5585907697677612,0.23266051709651947,-0.33503299951553345,-1.8191163539886475,0.8938686847686768,-1.1488409042358398,-0.7059528827667236,0.8346849083900452,-0.36801496148109436,-1.1152081489562988,0.37871280312538147,-0.681144118309021,-1.2052013874053955,0.4689059555530548,-0.026457464322447777,0.8101884126663208,0.30025601387023926,0.5533002614974976,-0.16045454144477844,0.13357795774936676,-0.06408092379570007,1.0391103029251099,-1.0807480812072754,0.03169115260243416,0.18413756787776947,-0.22925584018230438,-0.07164346426725388,-0.7383613586425781,0.24811632931232452,0.3264850974082947,-0.09804707765579224,-1.05880868434906,-0.3633727431297302,-1.0195642709732056,-1.5446621179580688,0.19151991605758667,0.21968410909175873,0.13495375216007233,0.8665690422058105,-0.9917954206466675,1.6596342325210571,-0.007130691781640053,0.4566888213157654,-0.912237823009491,-0.7681979537010193,0.08636955916881561,-0.6208252310752869,0.5542244911193848,0.5912348628044128,-1.2086366415023804,0.7851585745811462,-0.6393567323684692,-0.6033855676651001,-0.29917970299720764,-0.09340415149927139,0.33281150460243225,0.2843979001045227,-0.35912513732910156,-0.003088969038799405,-0.3684767782688141,0.14779077470302582,-0.1371111124753952,-1.154200553894043,-1.2922414541244507,-0.2594511806964874,-0.5851654410362244,0.564286470413208,0.23634789884090424,1.255950689315796,0.12696444988250732,-0.6744621396064758,-1.288686752319336,-0.4634515345096588,0.5991083979606628,-0.4959908723831177,-0.8871417045593262,0.03565095737576485,0.3307315707206726,0.10757317394018173,-0.5443577170372009,0.5267065167427063,-0.678203821182251,0.4937729835510254,-0.333877831697464,0.5695326924324036,0.08848728984594345,0.4809369146823883,0.21924909949302673,-0.06746900826692581,0.07028479874134064,0.3367413878440857,0.6319653391838074,0.5255994200706482,-0.49984434247016907,1.3812761306762695,0.32342538237571716,0.6446076035499573,0.1319998949766159,-0.8156023025512695,-0.9209004044532776,0.4646647870540619,-0.8711704015731812,1.0476202964782715,1.7942370176315308,-0.3444603979587555,-0.5239841938018799,-0.650870144367218,-0.5697649121284485,0.9903714656829834,-0.9034852385520935,-0.4460420608520508,-0.3469371795654297,-0.03311944752931595,-0.031407952308654785,-0.45570889115333557,-0.7379451990127563,0.2813836932182312,-0.6762247085571289,-0.4891911745071411,1.020179033279419,-0.02337951958179474,-1.3145134449005127,0.605089545249939,1.0738617181777954,1.0854328870773315,-1.2744882106781006,-0.2725023031234741,-0.4794071614742279,-0.25449782609939575,1.1738243103027344,-0.14078262448310852,0.13996203243732452,-0.21617162227630615,-1.1044267416000366,0.6897804141044617,-0.312076598405838,-0.7808167338371277,-0.5172232389450073 -2988,0.6764508485794067,0.25733959674835205,-0.07987173646688461,-0.3227245807647705,-0.1111908033490181,0.5765977501869202,0.8552619814872742,-0.7689583897590637,-0.189210444688797,0.6998527646064758,-0.603800356388092,0.20983777940273285,-0.6211209893226624,-0.41501694917678833,-0.20890238881111145,0.5236630439758301,-0.09211619943380356,1.3203434944152832,0.459085613489151,1.1084719896316528,0.3479149341583252,-0.09989887475967407,-1.0167222023010254,0.3502751886844635,0.728085458278656,-0.19357533752918243,0.06925766915082932,-0.12845346331596375,0.08388236910104752,1.0038694143295288,1.1371701955795288,-0.25779902935028076,-0.0841994434595108,0.17085008323192596,0.13615262508392334,-0.58316969871521,0.8693115711212158,0.3835464119911194,-0.2687913775444031,0.38410335779190063,0.7508207559585571,0.9154815077781677,0.5109459161758423,0.17131897807121277,0.5677090287208557,-0.6484546661376953,-0.014303049072623253,0.6500787138938904,-0.26499080657958984,-0.1672009378671646,-0.796460747718811,0.01725330390036106,0.8940196633338928,0.5650901794433594,0.7085146307945251,0.40197089314460754,0.2499874383211136,0.8735981583595276,0.3606778383255005,-0.36741432547569275,-0.9890886545181274,0.467633992433548,-1.0443922281265259,0.1459294557571411,0.2116391956806183,-0.04902990534901619,1.0839701890945435,-0.2660854458808899,0.5011164546012878,-0.2247912734746933,1.0126192569732666,-1.0675021409988403,-0.20555400848388672,1.1859983205795288,0.6186233162879944,0.48833614587783813,-0.12737862765789032,0.009996216744184494,-0.5433934926986694,-0.5556038618087769,-0.24967989325523376,-0.1436242014169693,-0.5868679285049438,1.0548579692840576,0.8468334078788757,1.0600610971450806,-0.1613382250070572,0.9797688722610474,0.24715225398540497,-0.8718868494033813,1.3922725915908813,-0.26660558581352234,-1.1837410926818848,0.28180450201034546,-0.5987271666526794,0.9988195896148682,0.9846194982528687,0.48477065563201904,-0.36426424980163574,-0.9598596692085266,-0.05182235315442085,-0.27456456422805786,0.922655463218689,0.5674288868904114,-0.09817487001419067,-1.2291982173919678,-0.7554997205734253,-1.7714041471481323,0.45557111501693726,-1.2097036838531494,-0.5552952289581299,0.23595605790615082,-0.7668154239654541,-1.8158208131790161,0.5691032409667969,-1.1455453634262085,-0.7026573419570923,0.8379804491996765,-0.364719420671463,-0.5157333016395569,0.3820083439350128,-0.6778485774993896,-1.2019058465957642,0.47220149636268616,0.06121738255023956,0.40537264943122864,-0.9327832460403442,1.0039585828781128,-0.1571590006351471,0.1368734985589981,-0.06078539043664932,1.0424058437347412,-0.8036593198776245,-0.23655487596988678,0.6719009280204773,-0.22596029937267303,-0.06834793090820312,-0.7350658178329468,0.2514118552207947,0.329780638217926,-0.09475154429674149,-1.0555131435394287,-0.3600772023200989,-1.0162687301635742,-1.5413665771484375,0.19481545686721802,0.22297964990139008,0.4124643802642822,0.8698645830154419,-0.9884998798370361,1.6629297733306885,-0.0038351567927747965,0.45998436212539673,-0.9089422821998596,-0.7649024128913879,0.08966509252786636,-0.6175296902656555,0.5575200319290161,0.5945304036140442,-1.205341100692749,0.7397380471229553,-0.6360611915588379,-0.6000900268554688,-0.2958841621875763,-0.09010861814022064,0.3361070454120636,0.269442081451416,-0.3558295965194702,0.0002065659500658512,-0.36518123745918274,0.15108631551265717,-0.13381557166576385,-1.1509050130844116,-1.2889459133148193,-0.5227903127670288,-0.581869900226593,0.5688530206680298,0.23964343965053558,1.2592462301254272,0.13025999069213867,-0.6711665987968445,-0.9840590953826904,-0.3089172840118408,-0.4342731833457947,-0.49269533157348633,-0.8838461637496948,0.0389464907348156,0.33402711153030396,0.29565829038619995,-0.5410621762275696,0.5300020575523376,-0.6749082803726196,0.4468382000923157,-0.33058229088783264,0.5728282332420349,0.0917828232049942,0.9456377625465393,0.054001398384571075,0.42150068283081055,0.07358033210039139,0.34003692865371704,0.6352608799934387,-0.4115360975265503,-0.4965488016605377,1.3845716714859009,0.3267209231853485,0.6214433312416077,0.13529543578624725,-0.8123067617416382,-0.9176048636436462,0.46796032786369324,-0.8678748607635498,1.0509158372879028,1.797532558441162,-0.6875479221343994,-1.3339296579360962,-0.6475746035575867,-0.5664693713188171,0.9936670064926147,0.7973279356956482,-0.44274652004241943,-0.34364163875579834,0.5139832496643066,-0.028112417086958885,-0.4524133503437042,-0.734649658203125,0.42738375067710876,-0.6729291677474976,-0.48589563369750977,1.0232793092727661,-0.02008398436009884,-1.3112179040908813,0.6083850860595703,0.9169418811798096,1.1138596534729004,-1.2711926698684692,-0.2692067623138428,-0.470171719789505,-0.2512022852897644,1.1771198511123657,-0.13748708367347717,0.14325757324695587,-0.2128760814666748,0.44274866580963135,0.8499023914337158,-0.30878105759620667,-1.0344387292861938,-0.513927698135376 -2989,0.6777014136314392,0.25859013199806213,-0.09843866527080536,-0.3214740455150604,-0.06332028657197952,0.5778483152389526,0.8144329786300659,-0.7677078247070312,-0.1650596708059311,0.7230646014213562,-0.6025497913360596,0.21108832955360413,-1.0112640857696533,-0.41376641392707825,-0.5142572522163391,0.5249136090278625,-0.043684303760528564,1.321593999862671,0.45831939578056335,1.1097224950790405,0.42297884821891785,-0.0986483246088028,-0.7496412396430969,0.3515257239341736,0.7293360233306885,-0.19232478737831116,0.07050821930170059,-0.12720291316509247,0.08855777978897095,1.009915828704834,1.0969507694244385,-0.2565484941005707,-0.08294889330863953,-0.026602059602737427,0.1706116646528244,0.19065849483013153,0.8705621361732483,0.38479694724082947,-0.33744367957115173,0.3853538930416107,0.7520713210105896,0.8797985911369324,0.4547838270664215,-0.35528093576431274,0.5689595937728882,-0.5545427203178406,-0.013052498921751976,0.6513292789459229,-0.26374027132987976,-0.16595038771629333,-0.7952101826667786,0.018503854051232338,0.8639236092567444,0.5663407444953918,0.7097651958465576,0.4032214283943176,0.25123798847198486,0.8748487234115601,0.3754074275493622,-0.36616379022598267,-0.987838089466095,0.3191947042942047,-1.0431417226791382,0.1471800059080124,0.21288974583148956,-0.04527286812663078,1.0852206945419312,-0.2648349106311798,0.35284334421157837,-0.22354072332382202,1.0138697624206543,-1.0662516355514526,-0.20430345833301544,1.15108060836792,0.6198738813400269,0.4895866811275482,-0.12612807750701904,0.011246766895055771,-0.5753049850463867,-0.5543532967567444,-0.3055647611618042,-0.14237365126609802,-0.5856173634529114,1.0561084747314453,1.0175350904464722,1.0613116025924683,-0.1600876748561859,0.9810194373130798,0.24840280413627625,-1.298221230506897,1.393523097038269,-0.26535505056381226,-1.182490587234497,0.28305503726005554,0.37008777260780334,0.19678477942943573,0.9858700633049011,0.6222301125526428,-0.3898932635784149,-0.9586091041564941,-0.2097516655921936,-0.2733140289783478,0.9239060282707214,0.5686794519424438,-0.0969243198633194,-1.22794771194458,-0.7542491555213928,-1.7701536417007446,0.39141884446144104,-1.2084531784057617,-0.6297985911369324,0.06427258253097534,-0.25100818276405334,-2.1715495586395264,0.5703538060188293,-1.1442948579788208,-0.7014067769050598,0.839231014251709,-0.40059202909469604,-0.9274541735649109,0.3832588791847229,-0.6765980124473572,-0.9275355935096741,0.47345203161239624,0.06246793270111084,0.4066231846809387,-0.9315326809883118,1.141316294670105,-0.9456698298454285,0.22970616817474365,-0.059534840285778046,1.043656349182129,-0.6526256799697876,-0.2353043258190155,0.791534960269928,-0.22470974922180176,0.2816444933414459,-1.0569977760314941,0.25266239047050476,0.3310311734676361,-0.09350099414587021,-1.1253139972686768,-0.3588266670703888,-1.0150182247161865,-1.5401160717010498,0.1960660070180893,0.22423020005226135,0.4137149155139923,0.7780928015708923,-0.1753961592912674,1.5323946475982666,-0.002584607107564807,0.4612348973751068,-0.9076917171478271,-0.7636518478393555,0.09091564267873764,-0.3334902822971344,0.5587705969810486,0.6018592715263367,-1.2040905952453613,0.7409886121749878,-0.6584635376930237,-1.0005635023117065,-0.2946336269378662,-0.08885806798934937,0.3373575806617737,0.2706926167011261,-0.35457906126976013,0.0014571156352758408,0.2884172797203064,0.15233686566352844,-0.13256502151489258,-1.149654507637024,-1.2737650871276855,-0.5215397477149963,-0.5806193351745605,0.5701035857200623,0.24089398980140686,1.260496735572815,0.13151054084300995,-0.669916033744812,-0.5718429684638977,-0.30766674876213074,-0.4330226480960846,-0.47997936606407166,-0.8825955986976624,0.040197040885686874,0.33527764678001404,0.29690882563591003,-0.5398116111755371,0.6355614066123962,-0.6736577153205872,0.44808873534202576,-0.32933175563812256,0.5740787982940674,0.09303337335586548,0.9468883275985718,-0.08150254935026169,0.42275121808052063,0.07483088225126266,0.3412874639034271,0.6365114450454712,-0.8287912607192993,-0.49529826641082764,1.4561446905136108,0.3279714584350586,0.6226938962936401,0.13654598593711853,-0.99791020154953,-0.9163542985916138,0.5659642815589905,-0.9825868606567383,1.0521663427352905,1.7410955429077148,-0.6862973570823669,-1.3326791524887085,-0.5799483060836792,-0.5652188062667847,0.9949175715446472,-0.640760064125061,0.19034968316555023,0.3199194371700287,0.4154300391674042,-0.02686186693608761,-0.45116281509399414,-0.7333990931510925,0.37461623549461365,-0.6716786026954651,-0.4846450984477997,1.0346075296401978,-0.018833434209227562,-1.3099673986434937,0.6839832663536072,0.918192446231842,1.115110158920288,-1.2699421644210815,-0.2679562270641327,-0.4689211845397949,-0.24995173513889313,1.0930628776550293,-0.1362365335226059,0.14450812339782715,-0.21162553131580353,0.44399920105934143,0.942550539970398,-0.3075305223464966,-0.5292372107505798,-0.5126771330833435 -2990,0.6758793592453003,0.2567680776119232,-0.24291877448558807,-0.32329609990119934,-0.00435304269194603,0.6647364497184753,0.812610924243927,-0.8343464732170105,-0.16688172519207,0.7212425470352173,-1.8679695129394531,0.10999472439289093,-1.0130860805511475,-0.37584513425827026,-0.516079306602478,0.5230915546417236,-0.09647766500711441,1.2568142414093018,0.45649734139442444,1.1079005002975464,0.42115679383277893,-0.10047037154436111,-0.7514632940292358,0.34970366954803467,0.7275139689445496,-0.19414684176445007,0.06868617236614227,-0.47630178928375244,0.08673573285341263,1.0080938339233398,1.0060796737670898,-0.2583705484867096,-0.15834307670593262,-0.028424110263586044,0.16878961026668549,0.18883644044399261,0.8294293880462646,0.38297489285469055,-0.33926573395729065,0.1989818960428238,0.7502492666244507,0.9697652459144592,0.4529617726802826,-0.35710299015045166,0.5671375393867493,-0.5563647747039795,-0.014874549582600594,0.6940014958381653,-0.2655623257160187,-0.16777244210243225,-0.7317185401916504,0.01668180339038372,0.8621015548706055,0.5645186901092529,0.650105357170105,0.4013993740081787,0.24351119995117188,0.8730266690254211,0.37358537316322327,-0.3679858446121216,-0.9896601438522339,0.3173726499080658,-1.0449637174606323,0.14535795152187347,0.21106769144535065,-0.0470949187874794,1.083398699760437,-0.2666569650173187,0.35102128982543945,0.26997682452201843,0.960071325302124,-1.0680736303329468,-0.11334359645843506,1.1492586135864258,0.6180518269538879,0.4877646267414093,-0.12795013189315796,0.009424716234207153,-0.5771270394325256,-0.5561753511428833,-0.4069211483001709,-0.14419570565223694,-0.5874394178390503,1.0542864799499512,1.015713095664978,1.0594896078109741,-0.16190972924232483,0.9791973829269409,0.24658074975013733,-1.906184434890747,1.391701102256775,-0.16826003789901733,-0.6673343777656555,0.2812329828739166,0.36826571822166443,0.19496272504329681,0.9840480089187622,0.6204080581665039,-0.39171531796455383,-0.9604311585426331,-0.21157371997833252,-0.2751360833644867,0.9220839738845825,0.5668573975563049,-0.09874636679887772,-1.2297697067260742,-0.353214293718338,-1.7719756364822388,0.3895967900753021,-1.2102751731872559,-0.6316206455230713,0.6453797817230225,-0.2538997530937195,-1.9909470081329346,0.5685317516326904,0.514221727848053,-0.7032288312911987,0.7692991495132446,-0.4312722980976105,-1.53397798538208,-0.3556966185569763,0.40680503845214844,-0.929357647895813,0.4716299772262573,-0.6914826035499573,0.4048011302947998,-0.9333547353744507,0.9054038524627686,-0.9474918842315674,0.22788411378860474,0.22549301385879517,1.0418343544006348,-0.6668985486030579,-0.13628056645393372,0.7897129058837891,-0.22653180360794067,0.279822438955307,-0.8306263089179993,0.25084033608436584,0.3292091190814972,-0.09532304108142853,-1.127135992050171,-0.3606487214565277,-1.0168402194976807,-1.541938066482544,0.383192777633667,0.22240814566612244,0.4118928611278534,0.7762707471847534,-0.1772182136774063,1.5305726528167725,-0.004406657535582781,0.4594128429889679,-0.9095137715339661,-0.995704174041748,0.22022640705108643,-0.08396559208631516,0.5569485425949097,0.6000372171401978,-1.2059125900268555,0.7391665577888489,-0.6602855920791626,-1.0023854970932007,-0.2964556813240051,-0.09068011492490768,0.33553552627563477,0.2929621934890747,-0.5383245944976807,-0.00036493490915745497,0.2865952253341675,0.15051481127738953,-0.1343870759010315,-0.6276364326477051,-1.2755870819091797,-0.5233618021011353,-0.06502275913953781,0.35729819536209106,0.23907193541526794,1.2586747407913208,0.013908442109823227,-0.6717380881309509,-0.5736650228500366,-0.6850664019584656,0.010493967682123184,0.07671896368265152,-0.8844176530838013,0.03837499022483826,-0.18722429871559143,0.03550127521157265,-0.541633665561676,0.4492245018482208,-0.6754797697067261,0.44626668095588684,-0.3311538100242615,0.6600984930992126,0.09121132642030716,0.4401358366012573,-0.08332459628582001,0.4209291636943817,0.07300883531570435,0.3394654095172882,0.6346893906593323,-0.20590579509735107,-0.49712032079696655,1.4543226957321167,0.3261494040489197,0.6208718419075012,0.13472393155097961,-0.999732255935669,-0.9181763529777527,0.5641422271728516,-0.9844089150428772,1.0503443479537964,1.7392735481262207,-0.6881194114685059,-1.3345011472702026,-0.5817703604698181,-0.5670408606529236,0.9930955171585083,-0.6425821185112,-0.1371590942144394,0.31809738278388977,0.41360798478126526,-0.028683917596936226,-0.45298486948013306,-0.5595250129699707,0.37279418110847473,-0.673500657081604,-0.4864671528339386,1.0327855348587036,-0.02065548487007618,-1.3117893934249878,0.6821612119674683,1.038134217262268,1.113288164138794,-1.2717641592025757,-0.2697782814502716,-0.47074323892593384,-0.25177377462387085,1.17024564743042,-0.1380585879087448,0.14268606901168823,-0.21344758570194244,-0.3449505865573883,0.9134156107902527,-0.3093525767326355,-0.5310592651367188,-0.5144991874694824 -2991,0.6536092162132263,0.06313635408878326,-0.36042851209640503,-0.05180136859416962,-0.019015291705727577,0.6365635991096497,0.790340781211853,-0.8566166162490845,-0.18915188312530518,0.6989724040031433,-1.8902397155761719,0.08772456645965576,-1.0353562831878662,-0.39811527729034424,-0.538349449634552,0.5008214116096497,0.2689620852470398,1.234544038772583,0.4342271685600281,1.0856302976608276,0.29709380865097046,-0.12274052947759628,-0.7737334370613098,0.3274335265159607,0.7052438259124756,-0.21641699969768524,0.046416014432907104,-0.4985719323158264,0.2897335886955261,0.9648829698562622,0.9838095307350159,0.07318846881389618,-0.18061323463916779,-0.05069426819682121,0.14651945233345032,0.16656628251075745,0.8071592450141907,0.3607047200202942,-0.361535906791687,0.3377554416656494,0.7279791235923767,0.9474951028823853,0.5374629497528076,-0.37937313318252563,0.5123814344406128,-0.5786349177360535,-0.03714470565319061,0.6717313528060913,-0.28783249855041504,-0.19004260003566742,-0.8092301487922668,-0.005588354542851448,0.8618850111961365,0.542248547077179,0.627835214138031,0.4413052797317505,0.2212410420179367,0.7532421350479126,0.3513152003288269,-1.2016925811767578,-1.0119303464889526,0.29510247707366943,-1.067233920097351,0.5758615732192993,0.18879753351211548,-0.1439974308013916,1.0611284971237183,-0.3006848096847534,0.4205952286720276,0.24770666658878326,0.93780118227005,-1.1474237442016602,-0.16344553232192993,1.126988410949707,0.595781683921814,-0.007688477635383606,-0.15022028982639313,-0.012845441699028015,-0.5993971824645996,-0.6376758217811584,-0.4291912913322449,-0.35908252000808716,-0.6097095608711243,1.0320162773132324,0.993442952632904,1.0372194051742554,-0.1800498068332672,0.9837036728858948,0.22431059181690216,0.2935088276863098,1.1154217720031738,-0.1905301958322525,-0.6896045207977295,0.25896281003952026,0.34599554538726807,-0.24825578927993774,0.9617778658866882,0.4513503909111023,-0.5868003368377686,-0.8438827395439148,-0.09650301933288574,-0.29740625619888306,0.8998138308525085,0.544587254524231,-0.2998560070991516,-1.252039909362793,-0.1866161972284317,-0.6754465699195862,0.44448280334472656,-1.2325453758239746,-0.6538907885551453,0.6231096386909485,-0.27616989612579346,-0.9172512888908386,0.5462616086006165,0.491951584815979,-0.7254989743232727,0.7470290064811707,-0.45354247093200684,-1.5562481880187988,-0.3779667615890503,0.3717802166938782,-0.9648240804672241,0.44935983419418335,-0.7137527465820312,0.5803390741348267,-0.9556248784065247,0.8831337094306946,-0.7316063046455383,0.20561395585536957,0.14263886213302612,1.019564151763916,-0.6891686916351318,0.6284732222557068,0.7674427628517151,0.16736926138401031,0.25755226612091064,-0.8528964519500732,-0.3180240988731384,0.30693894624710083,-0.1175931990146637,-1.1494061946868896,-0.3829188942909241,-1.0391104221343994,-1.5642082691192627,0.360922634601593,0.20013798773288727,0.38962268829345703,0.7540006041526794,-0.19948837161064148,1.5430811643600464,-0.026676815003156662,0.43714267015457153,-1.406072735786438,0.011848613619804382,0.19795624911785126,-0.4258509874343872,0.5346783995628357,0.5777670741081238,-1.2281827926635742,0.7606581449508667,-0.6825557351112366,-1.5703785419464111,-0.3187258243560791,-0.11295027285814285,-0.048174455761909485,0.27069205045700073,-0.5605947375297546,-0.022635092958807945,0.06312406063079834,0.12824465334415436,-0.28326481580734253,-0.6732812523841858,-0.7915747165679932,-0.5456319451332092,-0.08729291707277298,0.5377839207649231,0.21680177748203278,1.0387264490127563,-0.008361715823411942,-0.702142596244812,-0.5959351658821106,-0.7073365449905396,-0.011776190251111984,0.05444880574941635,-0.9066877961158752,0.01610483229160309,0.23896680772304535,0.013231117278337479,-0.298708438873291,0.36935955286026,-0.6977499127388,0.4239965081214905,-0.35342395305633545,0.6378283500671387,0.06894116848707199,0.41786569356918335,-0.10559475421905518,0.39865899085998535,0.05073867738246918,0.3977753520011902,0.6124192476272583,-0.3942275643348694,-0.5193904638290405,1.432052493095398,0.3038792610168457,0.5986016988754272,0.11245377361774445,-1.0220024585723877,-1.1241827011108398,0.5418720841407776,-1.0066790580749512,1.0280741453170776,1.717003345489502,-0.7103895545005798,-1.3567713499069214,-0.6040405035018921,-0.5893110036849976,0.9581812620162964,-0.6648522615432739,-0.15942925214767456,0.2958272099494934,0.3913378119468689,-0.050954073667526245,-0.47525501251220703,0.010433360934257507,0.35052400827407837,-0.695770800113678,-0.4050530791282654,1.0105153322219849,-0.0429256409406662,-1.3340595960617065,0.6598910689353943,1.0158640146255493,1.0910179615020752,-1.2940343618392944,-0.13962550461292267,-0.507875382900238,-0.2740439176559448,1.1479754447937012,-0.16032874584197998,0.12041591107845306,-0.2357177436351776,-0.36722075939178467,0.8911454677581787,-0.2946930527687073,-0.5533294081687927,-0.5367693305015564 -2992,0.6370471715927124,0.04657430946826935,-0.37699055671691895,-0.06836341321468353,-0.035577334463596344,0.6200015544891357,0.7737787365913391,-0.8731786608695984,0.1537715196609497,0.6824103593826294,-1.6976838111877441,0.13801231980323792,-1.2726348638534546,-0.41467732191085815,-0.4369795322418213,0.48425936698913574,0.2524000406265259,1.2053475379943848,0.41766512393951416,1.0690683126449585,0.28053176403045654,-0.1393025666475296,-0.7902954816818237,0.26351872086524963,0.6886817812919617,-0.23297904431819916,0.15386591851711273,-1.2121926546096802,0.2731715440750122,0.9984826445579529,0.9980834126472473,0.05662642419338226,-0.1971752792596817,-0.06725630909204483,-0.2189766764640808,0.15000423789024353,0.6823850274085999,0.37002772092819214,-0.35741421580314636,0.2925628423690796,0.7114170789718628,0.9309330582618713,0.5209009051322937,-0.39593517780303955,0.4958193898200989,-0.9987978339195251,0.08640430867671967,0.6551693081855774,-0.30439454317092896,-0.20660464465618134,-0.7346777319908142,-0.1162540465593338,0.8140416741371155,0.4745243191719055,0.6428917646408081,0.4247432351112366,0.2046789973974228,0.7366800904273987,0.35985180735588074,-1.218254566192627,-1.0284923315048218,0.3107479512691498,-1.0837959051132202,0.5592995285987854,-0.12156835198402405,-0.31579598784446716,1.0813697576522827,-0.31724685430526733,0.40403318405151367,0.23114462196826935,0.9212391376495361,-1.1639857292175293,-0.16556543111801147,1.110426425933838,0.5792196393013,-0.024250520393252373,-0.16678233444690704,-0.029407484456896782,-0.8386600613594055,-0.6542378664016724,-0.4457533359527588,-0.3756445646286011,-0.24188631772994995,1.0154542922973633,0.9768809080123901,1.0161912441253662,-0.19661185145378113,0.9671416282653809,1.1303504705429077,0.2769467830657959,1.4418054819107056,-0.20709224045276642,-0.40806683897972107,0.24240076541900635,0.32943350076675415,-0.26481783390045166,0.9452158212661743,0.4347883462905884,-0.6033623814582825,-0.9149660468101501,-0.11306506395339966,-0.38476505875587463,0.6085691452026367,0.41943803429603577,-0.6551676988601685,-1.268601894378662,-0.20317824184894562,-0.6720441579818726,0.42792075872421265,-1.2491073608398438,-0.6704528331756592,-0.6587680578231812,-0.2927319407463074,-0.9338133335113525,0.5296995639801025,0.4753895401954651,-0.8100564479827881,0.7304669618606567,-0.47010451555252075,-1.572810173034668,-0.3945288062095642,0.20735090970993042,-0.981386125087738,0.43279778957366943,-0.7303147912025452,0.5637770295143127,-0.9721869230270386,0.8665716648101807,-0.7481683492660522,0.18905191123485565,0.1260768175125122,1.0030021667480469,-0.7057307362556458,0.6119111776351929,0.7508807182312012,0.1508072167634964,0.24099022150039673,-0.19523239135742188,-0.33458614349365234,-0.20926329493522644,0.552097737789154,-1.1659681797027588,0.17444640398025513,-1.0556724071502686,-1.5807702541351318,0.3443605899810791,0.017333390191197395,0.3730606436729431,0.7374385595321655,-0.3376351594924927,1.5265191793441772,-0.04323885589838028,0.4205806255340576,-0.6997476816177368,-0.0047134291380643845,0.18139420449733734,-0.4424130320549011,0.5181163549423218,0.5612050294876099,-1.2447447776794434,0.7440961003303528,-0.6991177797317505,-1.5869405269622803,-0.6891183257102966,-0.18610882759094238,-0.0647365003824234,0.28386884927749634,-0.5771567821502686,-0.03919713571667671,0.046562016010284424,0.11168260872364044,-0.29982686042785645,-0.6898432970046997,-0.8081367611885071,-0.5621939897537231,-0.1038549616932869,0.5212218761444092,0.20023973286151886,1.0221644639968872,-0.056782066822052,-0.7187046408653259,-0.6124972105026245,-0.7238985896110535,0.676910400390625,0.037886761128902435,-0.9232498407363892,0.1348210871219635,0.22240476310253143,0.2613256871700287,-0.31527048349380493,0.3527975082397461,-0.714311957359314,0.40743446350097656,-0.13499507308006287,0.6212663054466248,0.052379123866558075,0.9144200086593628,-0.12215679883956909,0.38209694623947144,0.03417663276195526,0.38121330738067627,0.5958572030067444,-0.4107896089553833,-0.5359525084495544,1.43247652053833,0.2873172163963318,0.4984024167060852,0.09589172899723053,-1.0385644435882568,0.9688243269920349,0.5643007159233093,-1.0232410430908203,1.0115121603012085,1.7004413604736328,-0.7269515991210938,-1.3733333349227905,-0.620602548122406,-0.5913087725639343,0.8691185116767883,-0.6814143061637878,0.24477273225784302,0.283809095621109,0.374775767326355,0.13628101348876953,-0.49181705713272095,-0.0061286818236112595,0.35733562707901,-0.7123328447341919,-0.6435161232948303,1.0087151527404785,0.15141525864601135,-1.0845527648925781,0.6433290243148804,0.9993019700050354,1.0407246351242065,-1.3105963468551636,-0.15618754923343658,-0.416534960269928,-0.5127795338630676,1.131413459777832,-0.1768907904624939,0.10385386645793915,-0.25227978825569153,-0.3837828040122986,0.5567938685417175,-0.3112550973892212,-0.5495105981826782,-0.5533313751220703 -2993,0.6480730175971985,0.10293608903884888,-0.36596471071243286,-0.05733756721019745,0.22321435809135437,0.6310274004936218,0.7848045825958252,-0.6613723039627075,0.1647973656654358,0.6934362053871155,-1.6866579055786133,0.149038165807724,-1.2616090774536133,-0.2189396321773529,-0.24509137868881226,0.4952852129936218,-0.07305797934532166,1.3093311786651611,0.42869096994400024,1.183058500289917,0.2915576100349426,-0.12827672064304352,-0.7792696356773376,0.2745445668697357,0.8543822765350342,-0.22195319831371307,0.16489176452159882,-1.2011668682098389,0.2841973900794983,1.009508490562439,1.0091092586517334,0.06765227019786835,-0.18614943325519562,0.16689637303352356,-0.20795083045959473,0.38264578580856323,0.6934108734130859,0.3810535669326782,-0.3463883697986603,0.6377169489860535,0.8132728338241577,1.0324890613555908,0.5319267511367798,-0.38490933179855347,0.506845235824585,-0.9877719879150391,0.09743015468120575,0.7511688470840454,-0.6944703459739685,-0.19557879865169525,-0.7236518859863281,-0.10522820055484772,0.8185940384864807,0.4788203835487366,0.6234143376350403,0.43576738238334656,0.21570484340190887,0.7477059364318848,0.4243994951248169,-0.711063027381897,-1.0174665451049805,0.32177379727363586,-1.072770118713379,0.5703253746032715,-0.11054250597953796,-0.3047701418399811,1.192307949066162,-0.30622100830078125,0.41505903005599976,0.24217046797275543,0.9322649836540222,-1.1529598236083984,-0.1545395851135254,1.1214523315429688,0.5902454853057861,-0.013224674388766289,-0.15575648844242096,-0.013860326260328293,-0.8995325565338135,-0.6432120203971863,-0.4347274899482727,-0.364618718624115,-0.4488590657711029,1.0264801979064941,0.9879067540168762,1.027217149734497,-0.7027559876441956,1.0133416652679443,1.141376256942749,-0.17070046067237854,1.4528312683105469,-0.19606639444828033,-0.397040992975235,0.25342661142349243,0.34045934677124023,-0.2537919878959656,0.9562416672706604,0.44581419229507446,-0.5923365354537964,0.12949824333190918,-0.10203921794891357,-0.37373921275138855,0.6138878464698792,0.43046388030052185,-0.6441418528556824,-1.2575759887695312,-0.19215239584445953,-0.6610183119773865,0.44803839921951294,-1.238081455230713,-0.6594269871711731,-0.6477422118186951,-0.2817060947418213,-0.9227874875068665,0.5407254099845886,0.48641538619995117,-0.799030601978302,0.7414928078651428,-0.45907866954803467,-1.9299774169921875,-0.5432302951812744,0.2183767557144165,0.32254552841186523,0.372555136680603,-0.9582122564315796,0.5748028755187988,-1.0647938251495361,0.8132488131523132,-0.7371425032615662,0.20007775723934174,0.1371026635169983,1.0577888488769531,-0.6947048902511597,0.622937023639679,-0.40142518281936646,0.16183306276798248,-0.7647831439971924,-0.1842065453529358,-0.32356029748916626,-0.9910324215888977,-0.9284839630126953,-1.154942274093628,0.1854722499847412,-1.0446465015411377,-1.569744348526001,0.3553864359855652,0.02835923619568348,0.3840864896774292,0.7358525395393372,-0.08911018073558807,1.542067527770996,-0.032213009893894196,0.46895426511764526,-1.633458137512207,0.0063124168664216995,-0.4353466033935547,-0.6880068182945251,0.5291422009468079,0.572230875492096,-1.2337188720703125,0.7551219463348389,-0.6880919337272644,-1.5759146213531494,-0.6780924797058105,-0.05344254523515701,-0.05371065437793732,0.2948946952819824,-0.5661309361457825,0.09839677810668945,0.05758786201477051,0.12270845472812653,-0.28880101442337036,-0.9081761240959167,-0.797110915184021,-0.5511681437492371,-0.09282911568880081,0.5322477221488953,0.21126557886600494,1.0331902503967285,0.32969942688941956,-0.7811824083328247,-0.15194547176361084,-0.7128727436065674,0.6879362463951111,0.04891260713338852,-0.9122239947319031,0.14584693312644958,0.23343060910701752,0.41499000787734985,-0.30424463748931885,0.3638233542442322,-0.7032861113548279,0.41846030950546265,-0.1795623004436493,0.6322921514511108,0.06340496987104416,0.3972337245941162,-0.11113095283508301,0.3931227922439575,-0.34218209981918335,0.7293604016304016,0.6068830490112305,-0.3997637629508972,-0.1925230324268341,1.443502426147461,0.22952190041542053,0.5094282627105713,0.10691757500171661,-1.027538537979126,0.9616574645042419,0.5753265619277954,-0.9472178816795349,1.0225379467010498,1.7114672660827637,-0.1860647201538086,-1.3623075485229492,-0.6095767021179199,-0.5802829265594482,0.8787616491317749,-0.6703884601593018,0.2557985782623291,0.2948349416255951,0.3568820655345917,0.14730685949325562,-0.48079121112823486,0.0048971641808748245,0.3683614730834961,-0.3499789535999298,-0.851222574710846,1.0571706295013428,-0.2553010582923889,-1.0735268592834473,0.6543548703193665,1.117725133895874,1.0517504215240479,-1.2995705604553223,-0.1451617032289505,-0.4055091142654419,-0.5017536878585815,1.142439365386963,-0.1658649444580078,0.11487971246242523,-0.24125394225120544,-0.08201882243156433,0.5678197145462036,-0.41722533106803894,-0.6331800818443298,-0.5423055291175842 -2994,0.6503229141235352,0.027767017483711243,-0.3637148141860962,-0.055087678134441376,-0.19096943736076355,0.6332772970199585,0.7521805763244629,-0.787582278251648,0.16704726219177246,0.6956861019134521,-1.6844080686569214,-0.005793741904199123,-1.5273329019546509,-0.21668973565101624,-0.24284148216247559,0.4975351095199585,-0.07080809026956558,1.311581015586853,0.4309408664703369,1.1853083372116089,0.2938075065612793,-0.12602682411670685,-1.222122311592102,0.2767944633960724,0.8566321730613708,-0.6528463363647461,0.16714166104793549,-0.8202406764030457,0.2520976662635803,1.0117583274841309,1.0113590955734253,0.06990215927362442,-0.18389953672885895,0.16914626955986023,-0.20570093393325806,0.3848956823348999,0.6956607699394226,0.3833034634590149,-0.3441384732723236,0.6399668455123901,0.8155227303504944,1.0347388982772827,0.467498242855072,-0.3826594352722168,0.5090951323509216,-0.9855220913887024,-0.526199996471405,0.7534187436103821,-0.6922204494476318,-0.18375340104103088,-0.7812498807907104,-0.10297831147909164,0.8208439350128174,0.48107028007507324,0.625664234161377,0.39657843112945557,0.28347814083099365,0.9062185883522034,0.4184321463108063,-0.2822929620742798,-1.0194876194000244,0.2963537871837616,-1.070520281791687,0.5578497052192688,-0.10829261690378189,-0.3025202453136444,1.194557785987854,-0.3039711117744446,0.4173089265823364,0.2444203644990921,0.9518209099769592,-0.502417266368866,-0.15228968858718872,1.1237021684646606,0.5415990948677063,-0.010974784381687641,-0.1535065919160843,-0.011610436253249645,-0.8256921768188477,-0.7441551685333252,-0.330868124961853,-0.5672679543495178,-0.44660916924476624,1.028730034828186,0.9901566505432129,1.029466986656189,-0.7005060911178589,0.9271114468574524,1.143626093864441,-0.0914110317826271,1.4550811052322388,-0.19381649792194366,-0.3947910964488983,0.2556765079498291,0.3427092432975769,-0.2515420913696289,0.9584915637969971,0.44806408882141113,-0.5900866389274597,0.13174813985824585,-0.0997893288731575,-0.3714893162250519,0.6161377429962158,0.4327137768268585,-0.154708594083786,-1.2553261518478394,-0.18990249931812286,-0.6587684154510498,0.4502882957458496,0.3922765851020813,-0.6571770906448364,-1.3959158658981323,-0.2794561982154846,-0.43581318855285645,0.5429753065109253,0.48866528272628784,-0.348776638507843,0.6092897653579712,-0.456828773021698,-1.3095613718032837,-0.5409803986549377,-0.2789364457130432,-0.08637622743844986,0.4775649607181549,-0.8895527124404907,0.7740207314491272,-1.0625439882278442,0.8154987096786499,-0.7348926067352295,-0.062236808240413666,0.13935256004333496,1.060038685798645,-0.5684777498245239,0.6251869201660156,-0.3991752862930298,0.16408295929431915,-0.7625332474708557,-1.1176751852035522,-0.3213104009628296,-1.4047154188156128,-0.9262340664863586,-1.152692437171936,-0.3045784831047058,-0.6633021235466003,-1.567494511604309,0.35763633251190186,0.07505447417497635,0.38633638620376587,0.7381024360656738,-0.086860291659832,1.544317364692688,-0.2325090765953064,0.47120416164398193,-1.2947595119476318,0.002893174299970269,-0.433096706867218,-0.8849452137947083,0.5313920974731445,0.5744807720184326,-1.2314690351486206,0.7573718428611755,-0.5871954560279846,-1.5736647844314575,-0.6758425831794739,-0.05119265615940094,0.06511922180652618,0.2971445918083191,-0.5638810396194458,0.10064666718244553,0.24466384947299957,0.1249583438038826,-0.2865511178970337,-0.9059262275695801,-0.7948610186576843,-0.5489182472229004,-0.09057922661304474,0.5344976186752319,0.2135154753923416,1.0354400873184204,-0.6367574334144592,-0.7573148608207703,-0.14969557523727417,-0.7106228470802307,0.6901861429214478,0.30112525820732117,-0.9099740982055664,0.14809682965278625,0.2356805056333542,0.4172399044036865,-0.3019947409629822,0.36607325077056885,-0.4017466604709625,0.5405387878417969,-0.17731240391731262,0.6345420479774475,0.06565485894680023,0.3994836211204529,-0.10888106375932693,0.5245600938796997,-0.05776331573724747,0.7316102981567383,0.5341963768005371,-0.39751386642456055,-0.19027313590049744,1.4457522630691528,0.5353233218193054,0.40684419870376587,0.10916746407747269,-0.07644505053758621,-1.0148617029190063,0.5775764584541321,-0.9449679851531982,1.0247877836227417,1.7137171030044556,-0.18381482362747192,-1.3600577116012573,-0.601452112197876,-0.6089107990264893,0.8810115456581116,-0.6681385636329651,0.25804847478866577,0.29708483815193176,0.35913196206092834,-0.08619142323732376,-0.4785413146018982,0.007147054187953472,0.37061136960983276,-0.34772905707359314,-0.8489726781845093,1.0594204664230347,-0.25305116176605225,-1.0712770223617554,0.6566047668457031,1.119974970817566,1.111458420753479,-0.78354811668396,-0.14291180670261383,-0.4032592177391052,-0.4995037913322449,1.223280906677246,-0.19021032750606537,0.37670642137527466,-0.3112156391143799,-0.07976893335580826,0.5700696110725403,-0.4161672294139862,-0.6309301853179932,-0.5400556325912476 -2995,0.6912513375282288,0.028485987335443497,-0.09001480042934418,-0.05436870828270912,-0.1902504712343216,0.6191782355308533,0.8384943604469299,-0.7647067904472351,0.16776622831821442,0.6964050531387329,-1.6836891174316406,-0.005074772518128157,-1.5266139507293701,-0.21597076952457428,-0.43252262473106384,0.49825409054756165,-0.190499946475029,1.3122999668121338,0.43165984749794006,1.1860272884368896,0.29452648758888245,-0.1253078579902649,-1.2221806049346924,0.39502617716789246,0.8573511242866516,-0.6521273851394653,0.16786062717437744,-0.8195217251777649,0.25281664729118347,1.0124772787094116,0.9572108387947083,-0.14957965910434723,-0.183180570602417,0.16986523568630219,-0.2049819678068161,0.38561466336250305,0.6963797211647034,0.4234246015548706,-0.34341949224472046,0.6124073266983032,0.7519862651824951,1.0760929584503174,0.4165787696838379,-0.38194045424461365,0.5098140835762024,-0.5800710916519165,-0.5254810452461243,0.7541376948356628,-0.6915014982223511,-0.18303443491458893,-0.03016839548945427,-0.10225934535264969,0.8215628862380981,0.4751923978328705,0.6263831853866577,0.3972974121570587,0.2841971218585968,0.9069375395774841,0.42364370822906494,-0.28157398104667664,-0.9798315763473511,0.31978777050971985,-1.0698013305664062,0.5585686564445496,0.011489104479551315,-0.2622497081756592,1.1952767372131348,-0.30325213074684143,0.4180279076099396,0.24513933062553406,0.95253986120224,-1.0501002073287964,-0.15157072246074677,1.1244211196899414,0.5423180460929871,0.42528870701789856,-0.15278762578964233,0.08794688433408737,-0.8249732255935669,-0.7434362173080444,-0.3651529848575592,-0.5665490031242371,-0.4458901882171631,1.0120820999145508,1.1559877395629883,1.0301859378814697,-0.028589468449354172,1.0804483890533447,1.1585829257965088,-0.09069206565618515,1.4558000564575195,-0.29576000571250916,-0.770258903503418,0.25639548897743225,0.34342822432518005,-0.25082311034202576,0.9592105150222778,0.4487830698490143,-0.589367687702179,0.1324671059846878,-0.09907036274671555,-0.37077033519744873,0.6168566942214966,0.43343275785446167,-0.3120972812175751,-1.1305208206176758,-0.1891835331916809,-0.8700941205024719,0.45100727677345276,0.39299556612968445,-0.6564581394195557,-1.3951969146728516,-0.27873721718788147,-0.4350942075252533,0.543694257736206,0.489384263753891,-0.34805765748023987,0.7702957391738892,-0.45610979199409485,-1.1081794500350952,-0.540261447429657,-0.27821746468544006,-0.0856572613120079,0.47828394174575806,-0.23413048684597015,0.774739682674408,-1.0618250370025635,1.4093009233474731,-0.7341736555099487,-0.06151783838868141,0.14007152616977692,1.0607576370239258,-0.5677587985992432,0.6259058713912964,-0.39845630526542664,0.1648019254207611,-0.761814296245575,-0.7285875082015991,-0.32059141993522644,-0.7048202753067017,-0.9255151152610779,-1.2174540758132935,-0.4537203907966614,-1.3817743062973022,-1.2908092737197876,0.2627153992652893,0.0757734403014183,0.387055367231369,0.7388213872909546,0.21047909557819366,1.5450363159179688,-0.23179011046886444,0.4719231426715851,-1.294040560722351,-0.8025927543640137,-0.43237772583961487,-1.5739548206329346,0.5321110486984253,0.5821571946144104,-1.2307500839233398,0.7580907940864563,-0.5864765048027039,-1.5729458332061768,-0.6751236319541931,-0.050473686307668686,0.06583818793296814,0.29786357283592224,-0.563162088394165,0.171982541680336,-0.33812257647514343,0.12567731738090515,-0.1665181666612625,-0.9174628257751465,-0.7941420674324036,-0.9880701303482056,-0.08986026048660278,0.5352165699005127,0.21423444151878357,1.0361590385437012,-0.6360384821891785,-0.611274242401123,0.26446419954299927,-1.117523431777954,0.9974164962768555,-0.0753546804189682,-0.9092551469802856,0.1488157957792282,-0.06498295068740845,0.4179588854312897,-0.30127575993537903,0.366792231798172,-0.4010276794433594,0.5149730443954468,-0.3879529535770416,0.6352609992027283,0.06637382507324219,0.40020260214805603,-0.10816209763288498,0.5252790451049805,-0.4197559058666229,0.732329249382019,0.5349153280258179,-0.3967948853969574,-0.18955416977405548,1.4464712142944336,0.2748222351074219,0.407563179731369,0.10988643020391464,0.3587368130683899,-0.8849245309829712,1.008139729499817,-0.9442490339279175,1.0255067348480225,1.7144360542297363,-0.18309585750102997,-0.8839001655578613,-0.6007331609725952,-0.6081918478012085,0.9377809762954712,-0.6674196124076843,-0.024113278836011887,0.2978038191795349,0.3598509430885315,-0.0854724571108818,-0.47782233357429504,0.007866024039685726,0.3640551269054413,-0.34701007604599,-0.8482537269592285,1.0601394176483154,-0.2523321807384491,-1.0705580711364746,-0.16325049102306366,1.1206939220428467,1.1121773719787598,-0.7828291654586792,-0.14219284057617188,-0.4025402367115021,-0.06809251010417938,1.2239998579025269,-0.1894913613796234,0.3774254024028778,-0.671951413154602,-1.020354151725769,0.570788562297821,-0.41544824838638306,-0.6302112340927124,-0.5393366813659668 -2996,0.677839457988739,0.015074096620082855,-0.10342669486999512,-0.06778059899806976,-0.20366236567497253,0.6057663559913635,0.8250824809074402,-0.7781186699867249,0.15435433387756348,0.703647792339325,-1.6971009969711304,-0.018486663699150085,-0.9696854948997498,-0.22938266396522522,-0.4459345042705536,0.6492820978164673,-0.20391184091567993,1.298888087272644,0.4182479679584503,1.1726154088974,0.2811146080493927,-0.13871975243091583,-1.2355924844741821,0.3816142976284027,0.8439392447471619,-0.15177179872989655,0.1544487327337265,-0.8329336047172546,0.23940475285053253,1.022690773010254,0.9437989592552185,-0.16299155354499817,0.7083563804626465,-0.47766417264938354,-0.15941551327705383,0.3722027838230133,0.6829678416252136,0.41001272201538086,-0.3955289125442505,0.5989954471588135,0.7385743856430054,1.0626810789108276,0.40316689014434814,-0.3953523337841034,0.6044468283653259,-0.5934829711914062,-0.538892924785614,0.7407258152961731,-0.7049133777618408,-0.19644632935523987,-0.04358028620481491,-0.11567123234272003,0.8353157639503479,0.46178051829338074,0.612971305847168,0.38388553261756897,0.27078524231910706,0.5831506252288818,0.4102318286895752,-0.2949858605861664,-0.9267402291297913,0.37222981452941895,-1.083213210105896,0.7181344032287598,-0.0019227862358093262,-0.3107006549835205,1.181864857673645,-0.4105309247970581,0.40461602807044983,0.23804281651973724,0.9391279816627502,-1.0635120868682861,-0.1649826169013977,1.0939263105392456,0.5289061665534973,0.4118768274784088,-0.16619952023029327,0.07453499734401703,-0.5057227611541748,-0.7568480968475342,-0.37856486439704895,-0.5799608826637268,-0.3596917390823364,0.998670220375061,1.1425758600234985,0.9811572432518005,-0.04200135916471481,0.9792535305023193,1.2370012998580933,-0.042534518986940384,1.4423881769180298,-0.3091718852519989,-0.7836707830429077,0.2429835945367813,-0.037975918501615524,-0.2642349898815155,0.9457986354827881,0.26605546474456787,-0.520384669303894,0.11905521154403687,-0.11248224973678589,-0.3841822147369385,0.6034448146820068,0.4200208783149719,-0.3255091607570648,-1.1439327001571655,-0.20259542763233185,-0.2066679745912552,0.437595397233963,0.3795836865901947,-0.7453420162200928,-1.4086087942123413,-0.2921490967273712,0.42697635293006897,0.036019761115312576,0.2592529058456421,-0.3614695370197296,0.7568838596343994,-0.5094197988510132,-0.698699414730072,-0.5536733269691467,-0.2916293442249298,-0.09906914830207825,0.4648720622062683,-0.2475423812866211,0.7613278031349182,-0.3435589075088501,1.3958890438079834,-0.7475855350494385,-0.07492972910404205,0.12665963172912598,1.047345757484436,-0.5811706781387329,0.6124939918518066,-0.4118681848049164,-0.9193048477172852,-0.7752261757850647,-0.7419993877410889,-0.3340032994747162,-0.7182321548461914,-0.487424373626709,-0.780102014541626,-0.1628579944372177,-1.4050917625427246,-1.3042211532592773,0.24930350482463837,0.05038601532578468,0.3736434876918793,0.804988443851471,0.19706720113754272,1.531624436378479,-0.24520200490951538,0.45851126313209534,-1.3074524402618408,-0.8886858224868774,-0.4457896053791046,-1.2528738975524902,0.6828991174697876,0.5687453150749207,-1.2441619634628296,0.7446789145469666,-0.5998883843421936,-1.5863577127456665,-0.6885355114936829,-0.06388557702302933,0.0524262972176075,0.2844516932964325,-0.5765739679336548,0.15857064723968506,-0.3515344560146332,0.11226542294025421,0.13181465864181519,-0.9308747053146362,-0.6270798444747925,-1.0014820098876953,0.552524745464325,0.24177224934101105,0.20082254707813263,1.0227471590042114,-0.6494503617286682,-0.6246861219406128,0.2510523200035095,-1.1309353113174438,0.9840046167373657,0.43742239475250244,-0.7124426960945129,0.13540390133857727,-0.07839484512805939,0.4045470058917999,-0.3146876394748688,0.35338035225868225,-0.4144395589828491,0.5983864665031433,-0.40136483311653137,-0.4187166094779968,0.052961934357881546,0.3867907226085663,-0.12157398462295532,0.5118671655654907,-0.43316778540611267,0.7189173698425293,0.5215034484863281,-0.41020676493644714,-0.20296606421470642,1.3085750341415405,0.26141035556793213,0.3941513001918793,0.0964745432138443,0.34532493352890015,-0.8983364105224609,0.9947278499603271,-1.0994093418121338,1.0120948553085327,1.7010241746902466,-0.1965077519416809,-0.8973120450973511,-0.614145040512085,-0.6216037273406982,0.9243690967559814,-0.6808314919471741,-0.03752516955137253,0.28439193964004517,0.34643906354904175,-0.09888434410095215,-0.4912342131137848,-0.005545866675674915,0.35064324736595154,-0.36042195558547974,-0.5809565782546997,1.0467275381088257,-0.26574406027793884,-1.0839699506759644,-0.1766623854637146,1.107282042503357,0.7599872350692749,-0.9122704267501831,-0.15560473501682281,-0.4159521162509918,-0.08150440454483032,1.210587978363037,-0.321444571018219,-0.19147644937038422,-0.6853632926940918,-1.0337660312652588,0.5573766827583313,-0.7955963015556335,-0.6436231136322021,-0.4880431592464447 -2997,0.6749851703643799,0.02330888994038105,-0.10628100484609604,-0.07063490897417068,-0.20651668310165405,0.6029120683670044,0.822228193283081,-0.780972957611084,-0.03814896196126938,0.7007935047149658,-1.5865294933319092,-0.021340975537896156,-0.8668501377105713,-0.17883485555648804,-0.4487888216972351,0.6464278101921082,-0.22760048508644104,1.2960337400436401,0.3438106179237366,1.169761061668396,0.2782602906227112,-0.14157406985759735,-1.238446831703186,0.3212472200393677,0.8410849571228027,-0.15462611615657806,0.15159441530704498,-0.6054109334945679,0.236550435423851,1.01983642578125,0.9605032205581665,-0.1658458709716797,0.04641322046518326,-0.48051849007606506,-0.16226983070373535,0.3693484663963318,0.5404337048530579,0.40715840458869934,-0.4470137357711792,0.5626602172851562,0.7357200980186462,1.0598267316818237,0.4003125727176666,0.2300494909286499,0.6015925407409668,-0.5963372588157654,-0.5417472124099731,0.7611220479011536,-0.4674724042415619,-0.1993006467819214,0.24525856971740723,-0.11852554231882095,0.8324614763259888,0.4589262008666992,0.6101170182228088,0.38103121519088745,0.26793092489242554,0.8769933581352234,0.4073775112628937,-0.2978401780128479,-0.8980094790458679,0.3693754971027374,-1.0860675573349,0.7152801156044006,-0.26667964458465576,-0.313554972410202,1.1946821212768555,-0.4133852422237396,0.4017617106437683,0.23518849909305573,0.9159594178199768,-1.06636643409729,-0.16783693432807922,1.0910719633102417,0.5260518789291382,0.4634069800376892,-0.015934700146317482,0.07168068736791611,-0.5085770487785339,-0.7597023844718933,-0.38141918182373047,-0.5828151702880859,-0.36254605650901794,0.9958159327507019,1.1216050386428833,0.9783029556274414,-0.044855669140815735,0.9763992428779602,1.2341469526290894,-0.045388828963041306,1.4395338296890259,-0.3120262026786804,-0.4704264998435974,0.2401292771100998,-0.040830228477716446,-0.267089307308197,0.942944347858429,0.26320114731788635,-0.5232389569282532,-0.28702348470687866,-0.4372456967830658,-0.38703653216362,0.6005905270576477,0.4171665608882904,-0.32836347818374634,-1.1467870473861694,0.2803806960582733,-0.2095222920179367,0.36457359790802,0.3767293691635132,-0.7481963038444519,-0.6901002526283264,-0.29500341415405273,-0.9116799235343933,0.033165451139211655,0.25639858841896057,-0.9622406363487244,0.7540295720100403,-0.4813973903656006,-0.7015537023544312,-0.6255385875701904,-0.29448366165161133,-0.10192345827817917,0.3732636272907257,-0.2503966987133026,0.7107298970222473,-0.3464132249355316,1.3930346965789795,-0.7504398226737976,-0.07778403908014297,0.12380532175302505,1.0444914102554321,-0.2762019634246826,0.6096397042274475,-0.4147225022315979,-0.10166462510824203,-0.7780804634094238,-0.6333766579627991,-0.3368576169013977,-0.7210864424705505,-0.054555974900722504,-0.8135744333267212,-0.16571231186389923,-1.4079461097717285,-1.3070755004882812,0.3060675263404846,0.04753170534968376,0.37078917026519775,0.8021341562271118,0.1942128837108612,1.528770089149475,-0.2480563223361969,0.4477231800556183,-1.3103067874908447,0.1790185272693634,-0.44864392280578613,-0.44332155585289,0.22831052541732788,0.5658910274505615,-1.2470163106918335,0.7418246269226074,-0.6027426719665527,-1.8779898881912231,-0.691389799118042,-0.06673988699913025,0.04957198724150658,0.281597375869751,-0.5794282555580139,0.19938132166862488,0.4655017852783203,0.10941111296415329,-0.023903900757431984,-0.9337289929389954,-0.1115541085600853,-1.0043363571166992,0.5496704578399658,0.23891793191432953,0.1979682296514511,1.0198928117752075,-0.6523046493530273,-0.6275404095649719,0.248198002576828,-1.1337896585464478,0.9811503291130066,0.4345680773258209,-0.7152969837188721,0.13254958391189575,-0.08124915510416031,0.4016926884651184,-0.3175419569015503,0.1263558715581894,-0.41729387640953064,0.5955321788787842,-0.7764425277709961,-0.42157092690467834,0.050107624381780624,0.38393640518188477,-0.12442829459905624,0.6420615911483765,-0.4360221028327942,0.7160630822181702,0.518649160861969,-0.41306108236312866,-0.8433822989463806,1.3057206869125366,-0.08237921446561813,0.39129698276519775,0.09362023323774338,0.34247061610221863,-0.9011906981468201,0.991873562335968,-0.8841267228126526,1.1548482179641724,1.5480438470840454,-0.19936206936836243,-0.9001663327217102,-0.6169993281364441,-0.6244580149650574,0.9269130229949951,-0.6836857795715332,-0.43511876463890076,0.28153762221336365,0.34358474612236023,-0.10173865407705307,-0.4940885305404663,-0.008400178514420986,0.34778892993927,-0.5506672263145447,-0.5838108658790588,1.0438731908798218,0.04267776757478714,-1.0868242979049683,-0.4126444458961487,1.104427695274353,0.7571329474449158,-0.9151247143745422,-0.15845905244350433,-0.21940691769123077,-0.681800127029419,1.2077336311340332,-0.047484420239925385,-0.19433076679706573,-0.6882175803184509,-1.0366203784942627,0.08640608936548233,-0.7984505891799927,-0.6464774012565613,-0.9023305773735046 -2998,0.6922173500061035,0.04054104536771774,-0.16324806213378906,-0.04796793311834335,-0.1892845332622528,0.6082229018211365,0.8394603729248047,-0.7637407779693604,-0.020916804671287537,0.7180256843566895,-1.5692973136901855,-0.004108818247914314,-0.8496179580688477,-0.1616027057170868,-0.43155667185783386,0.6636599898338318,-0.2103683352470398,1.3132659196853638,0.3457995653152466,1.1869932413101196,0.2954924404621124,-0.12434191256761551,-1.2212146520614624,0.3079794943332672,0.8935741782188416,-0.13739395141601562,0.166756272315979,-0.4162503778934479,0.20104199647903442,1.0370686054229736,0.9777354001998901,-0.14861372113227844,0.0636453777551651,-0.5212557911872864,-0.1450376808643341,0.38658061623573303,0.5576658844947815,0.5009582042694092,-0.5178593397140503,0.5798923969268799,0.7529522776603699,1.0308759212493896,0.39879751205444336,0.24728164076805115,0.19458377361297607,-0.5791050791740417,-0.5245150327682495,0.7783542275428772,-0.45024025440216064,-0.23502987623214722,0.26249071955680847,-0.047993242740631104,0.8496936559677124,0.5802760720252991,0.6273491978645325,0.3982633650302887,0.2600269913673401,0.894225537776947,0.4246096611022949,-0.40114957094192505,-0.9348036050796509,0.38660764694213867,-1.0688353776931763,0.7325122952461243,-0.16747668385505676,-0.2963228225708008,1.211914300918579,-0.3961530923843384,0.2678631842136383,0.2643117606639862,0.8717743158340454,-1.0491342544555664,-0.15060478448867798,1.1083041429519653,0.5432840585708618,0.48063912987709045,-0.023672044277191162,0.08891284465789795,-0.7155966758728027,-0.7424702048301697,-0.3641870319843292,-0.5655829906463623,-0.3453139066696167,1.1256914138793945,1.138837218284607,0.995535135269165,-0.027623511850833893,0.9936314225196838,1.1404262781143188,-0.10360211879014969,1.3645473718643188,-0.2947940528392792,-0.45319435000419617,0.25736144185066223,-0.023598071187734604,-0.24985715746879578,0.9601765275001526,0.2804332971572876,-0.5060067772865295,-0.2697913348674774,-0.42001354694366455,-0.36980438232421875,0.3747504651546478,0.4539550840854645,-0.9808254241943359,-1.1295548677444458,0.29761284589767456,-0.19229012727737427,0.38180574774742126,0.0869186595082283,-0.7309641242027283,-0.6728680729866028,-0.2777712643146515,-0.8944477438926697,0.0503976084291935,0.2736307382583618,-0.6059567928314209,0.7712617516517639,-0.3410507142543793,-0.6843215227127075,-0.6083064079284668,-0.24447819590568542,-0.4075975716114044,0.4055790901184082,-0.04509652405977249,1.011157512664795,-0.32918107509613037,0.9588449597358704,-0.733207643032074,-0.06055188179016113,0.010623365640640259,1.0617235898971558,-0.09887198358774185,0.6268718838691711,-0.39749035239219666,-0.08443246781826019,-0.7608482837677002,-0.6161444783210754,-0.31962546706199646,-0.7038542628288269,-0.1716909408569336,-0.7963422536849976,-0.1484801471233368,-1.3907139301300049,-1.2898433208465576,0.32329967617988586,0.0647638589143753,0.057559527456760406,0.8193663358688354,0.21144503355026245,1.5460022687911987,-0.23082417249679565,0.46495532989501953,-0.6412109136581421,0.19625067710876465,-0.4314117729663849,-0.7662737965583801,0.24554267525672913,0.5831232070922852,-1.2297841310501099,0.6568291783332825,-0.5855104923248291,-1.8607577085494995,-0.6741576194763184,-0.31205984950065613,0.06680414080619812,0.2988295257091522,-0.5621960759162903,0.21661347150802612,0.48273393511772156,-0.10375545918941498,-0.08367044478654861,-0.9164968132972717,-0.09432195127010345,-0.9871041774749756,0.5669026374816895,0.14559274911880493,0.21520039439201355,1.3363689184188843,-0.6350724697113037,-0.8123027086257935,0.32906031608581543,-1.1165574789047241,0.6253052949905396,0.24561461806297302,-0.6980648040771484,0.149781733751297,-0.06401699781417847,0.41892483830451965,-0.30030980706214905,0.22351139783859253,-0.4000617265701294,0.6127643585205078,-0.7592103481292725,-0.4043387770652771,0.06733977794647217,0.401168555021286,-0.21745526790618896,0.6592937707901001,0.5960574746131897,0.7332952618598938,0.5358813405036926,-0.3958289325237274,-0.14548340439796448,1.3846266269683838,-0.06514705717563629,0.408529132604599,0.11085239052772522,0.3597027659416199,-0.8777855634689331,-0.10024448484182358,-0.866894543170929,1.172080397605896,1.565276026725769,0.0025878027081489563,-0.8829341530799866,-0.6070842742919922,-0.7122145891189575,0.9267638921737671,-0.6664535999298096,-0.4178866147994995,0.2987697720527649,0.3608168959617615,-0.03756142780184746,-0.47685638070106506,-0.2950536906719208,0.3505488336086273,-0.533435046672821,-0.6729850172996521,1.0611053705215454,0.05990992486476898,-1.6761101484298706,-0.7100585699081421,1.1216598749160767,0.7743651270866394,-0.8978925347328186,-0.1412268877029419,-0.20217475295066833,-0.6645679473876953,1.3777434825897217,-0.030252262949943542,-0.1770986020565033,-0.6709854006767273,-1.345749855041504,0.10363824665546417,-0.781218409538269,-0.6292452216148376,-0.885098397731781 -2999,0.6871426105499268,0.035466279834508896,-0.1683228313922882,-0.0530426986515522,-0.20533505082130432,0.6031481623649597,0.8440050482749939,-0.7688155174255371,-0.17794722318649292,0.7129509449005127,-1.5743720531463623,-0.0291261225938797,-0.8546926975250244,-0.16667747497558594,-0.436631441116333,0.6963896751403809,-0.4760579764842987,1.308191180229187,0.2841305732727051,1.1819185018539429,0.33581340312957764,-0.00554038118571043,-1.2262893915176392,0.30290472507476807,0.8884994387626648,-0.14638547599315643,0.09865853190422058,-0.421325147151947,0.19596722722053528,1.0319938659667969,0.9726606607437134,-0.1536884903907776,0.05857061222195625,-0.5263305306434631,-0.11325709521770477,0.3815058469772339,0.5525911450386047,0.49588343501091003,-0.522934079170227,0.5001427531242371,0.7478775382041931,1.025801181793213,0.3937227427959442,0.242206871509552,0.18950900435447693,-0.5841798186302185,-0.5295897722244263,0.7732794880867004,-0.4553150236606598,-0.19191591441631317,0.08755473047494888,-0.05306800827383995,0.8446189165115356,0.5752013325691223,0.7670968174934387,0.39318859577178955,0.1339702606201172,0.907989501953125,0.3855000436306,-0.7656995058059692,-0.9223155975341797,0.3815328776836395,-1.073910117149353,0.7274375557899475,-0.22430163621902466,-0.3013975918292999,1.2068395614624023,-0.4012278616428375,0.19855014979839325,0.25923699140548706,0.9053041338920593,-1.1053575277328491,-0.15567955374717712,1.149943232536316,0.5382093191146851,0.4755643606185913,0.0073049115017056465,0.1539892554283142,-0.7206714153289795,-0.7796037197113037,-0.36926180124282837,-0.5706577301025391,-0.3247426748275757,1.0868374109268188,1.1764260530471802,0.9904603958129883,-0.03269827738404274,0.9944674968719482,1.1144417524337769,-1.4854704141616821,1.359472632408142,-0.2998688220977783,-0.4582691192626953,0.22843220829963684,-0.02867283672094345,-0.2549319267272949,0.7653687000274658,0.27535852789878845,-0.5110815167427063,-0.27486610412597656,-0.4250883162021637,-0.3748791515827179,0.6363794803619385,0.44888031482696533,-0.8209314346313477,-1.1346296072006226,0.8557897210121155,-0.5115002989768982,0.3767309784889221,-0.3374522626399994,-0.736038863658905,-0.6779428124427795,-0.435323566198349,-0.8129103779792786,0.04532284289598465,0.26855596899986267,-0.6110315322875977,0.6353119611740112,-0.7597137689590454,-0.11147709935903549,-0.6133811473846436,-0.279603511095047,-0.41267234086990356,0.40050432085990906,-0.05017128959298134,1.0060827732086182,-0.3342558443546295,0.9537702202796936,-0.7382823824882507,-0.06562664359807968,0.005548601038753986,1.056648850440979,-0.37732529640197754,1.4697250127792358,-0.4025651216506958,-0.23957407474517822,-0.765923023223877,-0.6212192177772522,-0.3247002363204956,-0.7089290022850037,-0.17676571011543274,-0.8014169931411743,-0.15355491638183594,-1.8055951595306396,-1.2949180603027344,0.3182249069213867,0.14958447217941284,0.05248476192355156,0.8142915964126587,0.2063702642917633,1.540927529335022,-0.2358989417552948,0.4598805606365204,-0.6462856531143188,0.1911759078502655,-0.43648654222488403,-0.4165964424610138,0.17937539517879486,0.5103424191474915,-2.1308631896972656,0.6517544388771057,-0.5905852317810059,-1.8658324480056763,-0.6792323589324951,-0.3171346187591553,0.024697858840227127,0.2937547564506531,-0.644059419631958,0.21153870224952698,1.0653587579727173,-0.10883022099733353,-0.08874520659446716,-0.9215715527534485,-0.099396713078022,-0.9921789169311523,0.5618278980255127,0.27212414145469666,0.2101256251335144,1.3312941789627075,-0.6401472091674805,-0.8173774480819702,0.3239855468273163,-1.1216322183609009,0.2849788963794708,0.24053984880447388,-0.7031395435333252,0.14470696449279785,-0.06909175962209702,0.4138500690460205,-0.3053845763206482,-0.05128973349928856,0.4577277600765228,0.607689619064331,-0.7642850875854492,-0.40941354632377625,0.06226501241326332,0.7165912389755249,-0.2639892101287842,0.7217495441436768,0.5909827351570129,0.728220522403717,0.5308066010475159,-0.18064258992671967,-0.15055817365646362,1.379551887512207,-0.07022181898355484,0.3927571177482605,0.20899228751659393,0.3546279966831207,-0.8828603029251099,1.2984083890914917,-0.8719692826271057,1.1670056581497192,1.5602012872695923,-0.002486961893737316,-0.8880088925361633,-0.6517733335494995,-0.7172893285751343,0.9216891527175903,-0.6715283393859863,-0.42296138405799866,0.29369500279426575,0.35574212670326233,0.07898401468992233,-0.4819311499595642,-0.31727293133735657,0.255084365606308,-0.5385097861289978,-0.5926644206047058,1.0560306310653687,0.054835159331560135,-1.6811848878860474,-0.33614829182624817,1.1165851354599,0.8912588357925415,-0.9029672741889954,-0.14630165696144104,-0.20724952220916748,-0.6696426868438721,1.372668743133545,0.25622162222862244,-0.06921765208244324,-0.7990601658821106,-1.0729985237121582,0.09856348484754562,-0.7862931489944458,-0.6343199610710144,-0.8901731371879578 -3000,0.7315270900726318,0.35812780261039734,-0.16491062939167023,-0.04963049292564392,-0.20192284882068634,0.538485050201416,0.8474172353744507,-0.937859058380127,0.05454707518219948,0.7163631319999695,-1.392370581626892,-0.02571391873061657,-1.1449192762374878,-0.16326527297496796,-0.43321922421455383,0.6739342212677002,-0.47264575958251953,1.247525930404663,0.1844148486852646,1.1853307485580444,0.3392256200313568,-0.0021281768567860126,-1.2235006093978882,0.30631694197654724,0.8919116258621216,-0.14297327399253845,0.1785111278295517,-0.41791293025016785,0.4261454939842224,1.0354061126708984,0.9760728478431702,-0.1502762883901596,0.06198281794786453,-0.5229183435440063,-0.10984489321708679,0.38491806387901306,0.5560033321380615,0.4817037284374237,-0.5195218920707703,0.46110299229621887,0.7512897253036499,1.0292134284973145,0.3971349596977234,-0.4017387926578522,0.44918763637542725,-0.5807676315307617,-0.38455650210380554,0.8146929144859314,-0.4519028067588806,-0.1154545322060585,0.09096693247556686,-0.04965580254793167,0.8480311036109924,0.575183629989624,0.5616392493247986,0.4474889934062958,0.13738246262073517,0.9114016890525818,0.38891226053237915,-0.7622873187065125,-0.9189034104347229,0.3849450945854187,-1.0704978704452515,0.3665752410888672,-0.22088943421840668,-0.29798537492752075,1.1390380859375,-0.2800182104110718,0.3917418420314789,0.26264920830726624,0.9146807193756104,-1.1019452810287476,-0.18747618794441223,1.1104953289031982,0.04628913477063179,0.22619645297527313,0.15245647728443146,0.1574014574289322,-0.7172592282295227,-0.7761915326118469,-0.4323654770851135,0.020515279844403267,-0.3213304579257965,1.0902496576309204,1.1798382997512817,0.9938725829124451,0.21446745097637177,0.997879683971405,1.1178539991378784,-1.4820581674575806,1.3628848791122437,-0.29645660519599915,-0.2604752480983734,0.23184441030025482,-0.02526063285768032,-0.25151970982551575,-0.05356166884303093,0.3275708258152008,-0.5076693296432495,-0.2714538872241974,-0.8197040557861328,-0.3714669346809387,0.6397916674613953,0.4522925317287445,-0.8175192475318909,-1.346796989440918,0.8592019081115723,-0.3415449559688568,0.3801431953907013,-0.3340400457382202,0.0473448820412159,0.3931833803653717,-0.4319113492965698,0.2255779653787613,0.04873504862189293,0.27196818590164185,-0.6076193451881409,0.638724148273468,-0.7563015818595886,-0.10806489735841751,-1.124619722366333,-0.7125983834266663,-0.9512447714805603,0.40391653776168823,-0.04675908386707306,1.0094950199127197,-0.33084362745285034,0.9571824073791504,-0.734870195388794,-0.0622144378721714,0.008960805833339691,1.0600610971450806,-0.37391307950019836,1.4731372594833374,-0.14201916754245758,-0.23616187274456024,-0.7625108361244202,-0.7650685906410217,-0.32128801941871643,-0.3292870819568634,-0.17335350811481476,-0.7980048060417175,-0.15014271438121796,-1.802182912826538,-1.2915058135986328,0.3422277271747589,0.23233790695667267,0.21868963539600372,0.5349625945091248,0.2097824662923813,1.519594430923462,-0.23248673975467682,0.46329277753829956,-0.6428734660148621,0.7327268719673157,-0.43307432532310486,-0.4131842255592346,0.18278759717941284,0.5137546062469482,-2.127450942993164,0.6551666259765625,-0.9975045323371887,-1.8624202013015747,-0.6758201718330383,-0.3137224018573761,0.028110062703490257,-0.939712405204773,-0.6406472325325012,0.21495090425014496,0.35619398951530457,-0.10541801899671555,-0.24111990630626678,-0.9181593656539917,-0.09598451107740402,-1.0527528524398804,-0.07770197093486786,0.27553635835647583,0.21353782713413239,1.334706425666809,-0.6367350220680237,-0.8139652609825134,0.32739776372909546,-1.1182199716567993,0.28839111328125,0.02960248477756977,-0.6997273564338684,0.1673946976661682,-0.06567955762147903,0.29718685150146484,-0.301972359418869,-0.11402137577533722,0.461139976978302,0.4907606840133667,-0.7608729004859924,-0.40600132942199707,0.0656772181391716,0.7200034260749817,-0.260576993227005,0.7251617312431335,0.5943949222564697,0.4146032929420471,0.5342187881469727,-0.17723038792610168,-0.14714597165584564,1.3829641342163086,0.40287870168685913,0.3961693346500397,0.21240448951721191,0.3580402135848999,-0.8794481158256531,0.6683250665664673,-0.8685570955276489,1.1704179048538208,1.5636135339736938,0.0009252424351871014,-0.8845967054367065,-0.576458215713501,-0.7138771414756775,0.9251013398170471,-0.6681161522865295,-0.3361062705516815,0.2971072196960449,0.5919520258903503,0.08239621669054031,-0.47851893305778503,-0.3138607144355774,0.25849658250808716,-0.535097599029541,-0.589252233505249,1.0594428777694702,0.058247365057468414,-1.1252634525299072,-0.332736074924469,1.4276785850524902,0.8946710228919983,-0.31492331624031067,-0.14288945496082306,-0.2038373202085495,-0.6662304997444153,1.3760809898376465,0.2596338391304016,-0.06580545008182526,-1.3000109195709229,-1.0695862770080566,0.6885719895362854,-0.6242744326591492,-0.6309077739715576,-0.886760950088501 diff --git a/example/start/outputs/logs/parameter_convergence/xi_mean.csv b/example/start/outputs/logs/parameter_convergence/xi_mean.csv deleted file mode 100644 index 201ca8137..000000000 --- a/example/start/outputs/logs/parameter_convergence/xi_mean.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,0.0 -50,0.0 -100,0.0 -150,0.0 -200,0.0 -250,0.0 -300,0.0 -350,0.0 -400,0.0 -450,0.0 -500,0.0 -550,0.0 -600,0.0 -650,0.0 -700,0.0 -750,0.0 -800,0.0 -850,0.0 -900,0.0 -950,0.0 -1000,0.0 -1050,0.0 -1100,0.0 -1150,0.0 -1200,0.0 -1250,0.0 -1300,0.0 -1350,0.0 -1400,0.0 -1450,0.0 -1500,0.0 -1550,0.0 -1600,0.0 -1650,0.0 -1700,0.0 -1750,0.0 -1800,0.0 -1850,0.0 -1900,0.0 -1950,0.0 -2000,0.0 -2050,0.0 -2100,0.0 -2150,0.0 -2200,0.0 -2250,0.0 -2300,0.0 -2350,0.0 -2400,0.0 -2450,0.0 -2500,0.0 -2550,0.0 -2600,0.0 -2650,0.0 -2700,0.0 -2750,0.0 -2800,0.0 -2850,0.0 -2900,0.0 -2950,0.0 -3000,0.0 diff --git a/example/start/outputs/logs/parameter_convergence/xi_std.csv b/example/start/outputs/logs/parameter_convergence/xi_std.csv deleted file mode 100644 index dbe11de68..000000000 --- a/example/start/outputs/logs/parameter_convergence/xi_std.csv +++ /dev/null @@ -1,61 +0,0 @@ -1,0.5316407680511475 -50,0.6573570966720581 -100,0.7191250324249268 -150,0.7050017714500427 -200,0.7287378907203674 -250,0.7575219869613647 -300,0.8008019328117371 -350,0.7476502060890198 -400,0.7496116161346436 -450,0.7359742522239685 -500,0.7410893440246582 -550,0.7219238877296448 -600,0.6739524602890015 -650,0.6305970549583435 -700,0.7839922904968262 -750,0.740571141242981 -800,0.7651519179344177 -850,0.712298572063446 -900,0.8356644511222839 -950,0.6988402009010315 -1000,0.7789285182952881 -1050,0.7135040760040283 -1100,0.7188432812690735 -1150,0.7675415277481079 -1200,0.6421335935592651 -1250,0.6573946475982666 -1300,0.6819576025009155 -1350,0.6655958294868469 -1400,0.7018378376960754 -1450,0.7365750670433044 -1500,0.7159343957901001 -1550,0.7012536525726318 -1600,0.7010703086853027 -1650,0.6577529907226562 -1700,0.741906464099884 -1750,0.7468437552452087 -1800,0.7162902355194092 -1850,0.7284320592880249 -1900,0.6741443872451782 -1950,0.7128024101257324 -2000,0.6954969167709351 -2050,0.6618611216545105 -2100,0.7191834449768066 -2150,0.6852836012840271 -2200,0.700037956237793 -2250,0.7828048467636108 -2300,0.7286759614944458 -2350,0.7171236872673035 -2400,0.7652601003646851 -2450,0.750883936882019 -2500,0.7017929553985596 -2550,0.8262275457382202 -2600,0.7681365013122559 -2650,0.6307173371315002 -2700,0.6621679663658142 -2750,0.7097137570381165 -2800,0.7033050060272217 -2850,0.7293950319290161 -2900,0.7261940836906433 -2950,0.7163896560668945 -3000,0.7054909467697144 diff --git a/example/start/outputs/model_parameters.json b/example/start/outputs/model_parameters.json deleted file mode 100644 index c5df89307..000000000 --- a/example/start/outputs/model_parameters.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "leaspy_version": "1.2.1rc1", - "name": "logistic", - "features": [ - "Feature 1", - "Feature 2", - "Feature 3", - "Feature 4" - ], - "dimension": 4, - "source_dimension": 2, - "noise_model": { - "name": "gaussian-diagonal", - "scale": [ - 0.07424536347389221, - 0.04837438091635704, - 0.08233640342950821, - 0.07684528082609177 - ] - }, - "parameters": { - "g": [ - -0.035903580486774445, - 2.9895029067993164, - 2.455995798110962, - 1.8869861364364624 - ], - "v0": [ - -3.3233938217163086, - -4.126061916351318, - -4.114415645599365, - -3.9727160930633545 - ], - "betas": [ - [ - 0.057215407490730286, - 0.09361007809638977 - ], - [ - 0.03731274604797363, - 0.004822447430342436 - ], - [ - 0.061814554035663605, - -0.010769529268145561 - ] - ], - "tau_mean": 80.34884643554688, - "tau_std": 7.6457200050354, - "xi_mean": 0.0, - "xi_std": 0.7054909467697144, - "sources_mean": 0.0, - "sources_std": 1.0, - "mixing_matrix": [ - [ - -0.07631143182516098, - -0.08544891327619553 - ], - [ - -0.00807197205722332, - 0.02050524204969406 - ], - [ - 0.011360290460288525, - -0.024237534031271935 - ], - [ - 0.04969138279557228, - -0.024344317615032196 - ] - ] - } -} \ No newline at end of file diff --git a/example/start/starter.ipynb b/example/start/starter.ipynb deleted file mode 100644 index 2a1cc56f1..000000000 --- a/example/start/starter.ipynb +++ /dev/null @@ -1,711 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Imports" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "import sys\n", - "\n", - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "import pandas as pd\n", - "\n", - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We do not recommand to run the notebook from within the Leaspy repo (to prevent it from interfering with Leaspy git versioning).\n", - "Therefore, copy paste the start folder elsewhere, and replace the `project_path` with the path to the leaspy folder." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# these 2 lines are not needed if you installed leaspy with pip\n", - "leaspy_path = os.path.join(os.getcwd(), \"..\", \"..\")\n", - "sys.path.append(leaspy_path)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from leaspy import AlgorithmSettings, Data, IndividualParameters, Leaspy, __watermark__\n", - "\n", - "# Watermark trace with all packages versions\n", - "__watermark__" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Step 1. Data\n", - "\n", - "You have to store your data into a `Data` object.\n", - "\n", - "### Option #1\n", - "You can load your data directly from a csv file, whose rows corresponds to subject visits, each column being a feature - except for the `ID` and `TIME` column. This result in multiple rows per subject. The input format has therefore to follow the following rules:\n", - "- A column named `ID`: corresponds to the subject indices\n", - "- A columns named `TIME`: corresponds to the subject's age at the corresponding visit\n", - "- One column per feature\n", - "- Each row is a visit, therefore the concatenation of the subject ID, the patient age at which the corresponding visit occured, and then the feature values.\n", - "\n", - "Here is an example :\n", - "\n", - "| ID | TIME | Feature 1 | Feature 2 | Feature 3 | Feature 4\n", - "| --- | --- | --- | --- | --- | --- |\n", - "| 309 | 70.4 | 25 | 0.12 | -0.19 | 3 |\n", - "| 309 | 73.4 | 10 | 0.13 | NaN | 1.3 |\n", - "| 309 | 75.7 | 24.3 | 0.0 | -0.44 | 0.8 |\n", - "| 40 | 60.1 | 5 | NaN | -0.12 | 2.3 |\n", - "| 40 | 62.5 | 23.4 | 0.8 | -0.142 | 0.94 |\n", - "| 918 | 88 | 9.3 | 0.9 | -0.3 | 0.23 |\n", - "| 918 | 92.3 | 33 | 0.88 | -0.423 | NaN |\n", - "| 918 | 95.3 | 34 | 0.58 | -0.523 | 0.34 |\n", - "\n", - "You can find additional example in the `inputs` folder: `data.csv` and `data_univariate.csv`\n", - "\n", - "You probably noticed that there are NaN: do not worry, Leaspy can handle them ;)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "data = Data.from_csv_file(os.path.join(\"inputs\", \"data_normalized.csv\"))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Option #2\n", - "\n", - "However, there are chances that your csv files contains data that either you don't want or that don't fit the model you are going to use. For instance, to build a logistic curve model, you need data that are normalized between 0 and 1 and that are increasing with time. Moreover, to calibrate the progression model, **we highly recommend to keep subjects that have been seen at least two times**. \n", - "\n", - "For that reason, you can load your data from a dataframe that you have preprocessed with pandas methods.\n", - "\n", - "Let's seen an example where:\n", - "- Feature 1 is increasing through time and is between 0 and 1: nothing to do\n", - "- Feature 2 is increasing through time and is between 0 and 100: need to normalize between 0 and 1\n", - "- Feature 3 is decreasing through time and is between 0 and 1: need to revert the temporal progression to be increasing\n", - "- Feature 4 is decreasing through time and is between 60 and 0: need to revert and to normalize between 0 and 1" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "df = pd.read_csv(os.path.join(\"inputs\", \"data.csv\"))\n", - "\n", - "# —— Feature 1\n", - "df[\"Feature 1\"] = df[\"Feature 1\"]\n", - "\n", - "# —— Feature 2\n", - "df[\"Feature 2\"] = df[\"Feature 2\"] / 100\n", - "\n", - "# —— Feature 3\n", - "df[\"Feature 3\"] = -df[\"Feature 3\"] + 1\n", - "\n", - "# —— Feature 4\n", - "df[\"Feature 4\"] = -df[\"Feature 4\"] / 60 + 1\n", - "\n", - "# —— Let's select patient with at least two visits\n", - "df = df.set_index([\"ID\", \"TIME\"])\n", - "indices = [idx for idx in df.index.unique(\"ID\") if df.loc[idx].shape[0] >= 2]\n", - "df = df[df.index.get_level_values(0).isin(indices)]\n", - "\n", - "# —— Store the data into a Data object\n", - "data = Data.from_dataframe(df)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**Remark & Tip:** while some data have natural minimum and maximum values (inducing ceiling and floor effects), other don't have natural bounds. In that case, normalize as best as you can so that you don't have values (current or future) higher than 1 or lower than 0. You can check that with `Feature 4` that does not reach maximum values or `Feature 1` that starts above minimum value" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "fts_min_max = df.agg([\"min\", \"max\"])\n", - "\n", - "assert (fts_min_max.loc[\"min\"] >= 0).all()\n", - "assert (fts_min_max.loc[\"max\"] <= 1).all()\n", - "\n", - "pd.options.display.float_format = \"{:.2f}\".format\n", - "fts_min_max" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Step 2. Settings\n", - "\n", - "To run any algorithm, you need to specify the settings of the related algorithm thanks to the `AlgorithmSettings` object. \n", - "\n", - "### Option #1\n", - "\n", - "To ease Leaspy's usage for new users, we specified default values for each algorithm. Therefore, the name of the algorithm used is enough to run it. The one you need to fit your progression model is `mcmc_saem`. Let's see an example:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "algo_settings = AlgorithmSettings(\n", - " \"mcmc_saem\",\n", - " n_iter=3000, # n_iter defines the number of iterations\n", - " progress_bar=True,\n", - ") # To display a nice progression bar during calibration" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you want to store the different logs of the model during the iterations, you can use the following method with the path of the folder where the logs will be stored" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "algo_settings.set_logs(\n", - " path=\"outputs/logs\", # Creates a logs file ; if existing, ask if rewrite it\n", - " save_periodicity=50, # Saves the values in csv files every N iterations\n", - " console_print_periodicity=100, # Displays logs in the console/terminal every N iterations, or None\n", - " plot_periodicity=1000, # Generates the convergence plots every N iterations\n", - " overwrite_logs_folder=True, # if True and the logs folder already exists, it entirely overwrites it\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Step 3. Fit model\n", - "\n", - "Now that you have your data and your settings, you can run the model. You first need to choose the type of progression shape you want to give to your data. You can either choose logistic or linear (soon exponential) with the possibility to enforce a \"parallelism\" between the features. The dedicated names are :\n", - "\n", - "`logistic`, `logistic_parallel`, `linear` and `linear_parallel`. You can also call the `univariate` model which is a single logistic function that you can run on the `input/data_univariate.csv`.\n", - "\n", - "Note : the model might rely on hyperparameters that you can define as shown below. There are optional. The most important one is the `source_dimension`. To be short, if you consider `N` features, these can be reordered as not everyone follows the same relative ordering of events. However, all reordering are not likely to exist, and there are some common patterns within a population. Therefore, the `source_dimension` is in a way a subspace that defines the degrees of freedom that you have to reorder you sequence of events. Still not clear? That's fine. It's related to the `space-shifts` in papers described in the repo. But don't worry if you didn't get it yet. Make it equal to somewhat higher than the log/square-root of the number of features." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "leaspy = Leaspy(\n", - " \"logistic\",\n", - " source_dimension=2, # Optional\n", - " noise_model=\"gaussian_diagonal\", # Optional: To get a noise estimate per feature keep it this way (default)\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Congrats! You are now ready to run the model" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "leaspy.fit(data, settings=algo_settings)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Did it run well?\n", - "\n", - "Before assuming that the model is estimated, you have to check that the convergence went went. For that, you can look the at the convergence during the iterations. To do so, you can explore the `logs` folder that shows the model convergence during the iterations. The first thing to look at is probably the `plots/convergence_1.pdf` and `plots/convergence_2.pdf` files : a run has had enough iterations to converge if the last 20 or even 30% of the iterations were stable for all the parameters. If not, you should provably rerun it with more iterations. " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from IPython.display import IFrame\n", - "\n", - "IFrame(\"./outputs/logs/plots/convergence_1.pdf\", width=990, height=670)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Then, you can check out the parameters of the model that are stored here : " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "leaspy.model.parameters" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "They are probably not straightfoward for now. The most important one is probably `noise_std`. It corresponds to the standard deviation of the error for a given feature. The smallest, the better - up to the lower bound which is the intrinsic noise in the data. Let's display it:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "noise = leaspy.model.parameters[\"noise_std\"]\n", - "features = leaspy.model.features\n", - "\n", - "print(\"Standard deviation of the residual noise for feature:\")\n", - "for n, f in zip(noise, features):\n", - " print(f\"- {f}: {n:.2%}\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**Remark:** Usually, cognitive measurements have an intrinsic error (computed on test-retest exams) between 5 and 10%.\n", - "\n", - "### Save and load the model\n", - "\n", - "There are many reasons why one might want to save the output parameters of the model. To do so, just do: " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "leaspy.save(\"outputs/model_parameters.json\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Later, you can load the model if needed." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "leaspy = Leaspy.load(\"outputs/model_parameters.json\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Display the average model\n", - "\n", - "Now that we have sufficient evidence that the model has converged, let's output what the average progression look like! \n", - "\n", - "First, let's detail a bit what we are going to represent. We are going to display a trajectory: it corresponds to the temporal progression of the biomarkers. There is not only one trajectory for a cohort, as each subject has his or her own specific trajectory, meaning his or her disease progression. Each of these individual trajectories are rely on individual parameters that are subject-specific. We will see what this individual parameters a bit later, do not worry. For now, let's stick to the \"average\" trajectory.\n", - "\n", - "So what does the average trajectory corresponds to? The average trajectory corresponds to a \"virtual\" patient whose individual parameters are the average individual parameters. And these averages are already estimated during the calibration.\n", - "\n", - "So let's get these average individual parameters and store them in the `IndividualParameters` object that stores a collection of individual parameter, for many subjects. Here, it is used for only one subject, called `average`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# —— Get the average individual parameters\n", - "mean_xi = leaspy.model.parameters[\"xi_mean\"].numpy()\n", - "mean_tau = leaspy.model.parameters[\"tau_mean\"].numpy()\n", - "mean_source = leaspy.model.parameters[\"sources_mean\"].numpy().tolist()\n", - "number_of_sources = leaspy.model.source_dimension\n", - "mean_sources = [mean_source] * number_of_sources\n", - "\n", - "# —— Store the average individual parameters in a dedicated object\n", - "average_parameters = {\"xi\": mean_xi, \"tau\": mean_tau, \"sources\": mean_sources}\n", - "\n", - "ip_average = IndividualParameters()\n", - "ip_average.add_individual_parameters(\"average\", average_parameters)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The second very important function - after `leaspy.fit()` - is `leaspy.estimate`. Given some individual parameters and timepoints, the function estimates the values of the biomarkers at the given timepoints which derive from the individual trajectory encoded thanks to the individual parameters.\n", - "\n", - "You can check out the documentation and run it : " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "?leaspy.estimate" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "timepoints = np.linspace(55, 105, 100)\n", - "values = leaspy.estimate({\"average\": timepoints}, ip_average)\n", - "\n", - "\n", - "def plot_trajectory(\n", - " timepoints,\n", - " reconstruction,\n", - " observations=None,\n", - " *,\n", - " xlabel=\"Reparametrized age\",\n", - " ylabel=\"Normalized feature value\",\n", - "):\n", - " if observations is not None:\n", - " ages = observations.index.values\n", - "\n", - " plt.figure(figsize=(10, 5))\n", - " plt.ylim(0, 1)\n", - " colors = [\"#003f5c\", \"#7a5195\", \"#ef5675\", \"#ffa600\"]\n", - "\n", - " for c, name, val in zip(colors, leaspy.model.features, reconstruction.T):\n", - " plt.plot(timepoints, val, label=name, c=c, linewidth=3)\n", - " if observations is not None:\n", - " plt.plot(\n", - " ages,\n", - " observations[name],\n", - " c=c,\n", - " marker=\"o\",\n", - " markersize=12,\n", - " linewidth=1,\n", - " linestyle=\":\",\n", - " )\n", - "\n", - " plt.xlim(min(timepoints), max(timepoints))\n", - " plt.xlabel(xlabel)\n", - " plt.ylabel(ylabel)\n", - " plt.grid()\n", - " plt.legend()\n", - " plt.show()\n", - "\n", - "\n", - "plot_trajectory(timepoints, values[\"average\"])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Step 4. Personalize the model to individual data" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The personalization procedure allows to estimate the individual parameters that allows to modify the average progression to individual observations. The variations from the average trajectory to the individual one are encoded within three individual parameters : \n", - "- $\\alpha_i = \\exp(\\xi_i)$ : the acceleration factor, that modulates the speed of progression : $\\alpha_i > 1$ means faster, $\\alpha_i < 1$ means slower than the average progression\n", - "- $\\tau_i$ : the time shift which delays the progression in a given number of years. It has to be compared to `tau_mean` $ = \\bar{\\tau} $ which is in the model parameters above. In fact, $ \\tau_i \\sim N( \\bar{\\tau}, \\sigma_{\\tau}^2)$ , so $\\tau_i > \\bar{\\tau}$ means that the patient has a disease that starts later than average, while $\\tau_i < \\bar{\\tau}$ means that the patient has a disease that starts earlier than average\n", - "- $w_i = (w_1, ..., w_N)$ ($N$ being the size of the feature space) : the space-shift which might, for a given individual, change the ordering of the conversion of the different features, compared to the mean trajectory.\n", - "\n", - "In a nutshell, the $k$-th feature at the $j$-th visit of subject $i$, which occurs at time $t_{ij}$ writes: \n", - "\n", - "$$y_{ijk} = f_\\theta ( w_{ik}+ \\exp(\\xi_i) * (t_{ij} - \\tau_i) ) + \\epsilon_{ijk}$$\n", - "\n", - "This writing is not exactly correct but helps understand the role of each individual parameters.\n", - "\n", - "**[ Advanced ]** Remember the `sources`, or the `source_dimension`? Well, $w_i$ is not estimated directly, but rather thanks to a Independant Component Analysis, such that $w_i = A s_i$ where $s_i$ is of size $N_s$ = `source_dimension`. See associated papers for further details.\n", - "\n", - "Now, let's estimate these individual parameters. The procedure relies on the `scipy_minimize` algorithm that you have to define (or to load from an appropriate json file) : " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Option 1\n", - "settings_personalization = AlgorithmSettings(\"scipy_minimize\", use_jacobian=True)\n", - "\n", - "# Option 2\n", - "settings_personalization = AlgorithmSettings.load(\n", - " \"inputs/algorithm_settings_personalization.json\"\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here is the third most important function of leaspy : `leaspy.personalize`. It estimates the individual parameters for the data you provide:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "?leaspy.personalize" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "ip = leaspy.personalize(data, settings_personalization)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note here that you can personalize your model on patients that have only one visit! You don't have to use the same `data` as previously. Especially, you can here personalize your model with patients that have only one visit.\n", - "\n", - "Once the personalization is done, you can check the different functions that the `IndividualParameters` provides (you can load and save them, transform them to dataframes, etc) : " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "?ip" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now, let's see what you can do with the individual parameters.\n", - "\n", - "# Step 5. Impute missing values & predict individual trajectories\n", - "\n", - "The individual parameters entirely defines the individual trajectory, and thus, the biomarker values at any time. So you can reconstruct the individual biomarkers at different ages. \n", - "\n", - "You can reconstruct your observations at seen ages, i.e. at visits that have been used to personalize the model. There are two reasons you might want to do that:\n", - "- see how well the model fitted individual data\n", - "- impute missing values: as Leaspy handles missing values, it can then reconstruct them (note that this reconstruction will be noiseless)\n", - "\n", - "To do so, let's first retrieve the observations of subject '1634-S2-1' in the initial dataset. You can also get his/her individual parameters as shown here:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "subject_id = \"1634-S2-1\"\n", - "observations = df.loc[subject_id]\n", - "print(f\"Seen ages: {observations.index.values}\")\n", - "print(ip[subject_id])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now, as done with the average trajectory, let's estimate the trajectory for this patient.\n", - "\n", - "**Remark**: The `estimate` first argument is a dictionary, so that you can estimate the trajectory of multiple individuals simultaneously (as long as the individual parameters of all your queried patients are in `ip`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "timepoints = np.linspace(77, 85, 100)\n", - "reconstruction = leaspy.estimate({subject_id: timepoints}, ip)\n", - "\n", - "plot_trajectory(timepoints, reconstruction[subject_id], observations, xlabel=\"Age\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "From this plot, we clearly see that the estimations at late ages, above 82 years old are clearly prediction. To estimate the quality of the prediction, you can hide some future visits in the calibration and personalization procedure, then estimate the values at these visits and see how good it performs by comparing the predicting value compared to the hidden one." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Step 6. Further Analysis\n", - "\n", - "Besides prediction, the individual parameters are interesting in the sense that they provide meaningful and interesting insights about the disease progression. For that reasons, these individual parameters can be correlated to other cofactors. Let's seen an example.\n", - "\n", - "Let's consider that you have a covariate `Cofactor 1` that encodes a genetic status: 1 if a specific mutation is present, 0 otherwise. Now, let's see if this mutation has an effect on the disease progression: " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# —— Convert individual parameters to dataframe\n", - "df_ip = ip.to_dataframe()\n", - "\n", - "# —— Merge with cofactors\n", - "cofactor = pd.read_csv(\"inputs/cofactor.csv\", index_col=[\"ID\"])\n", - "df_ip = df_ip.join(cofactor)\n", - "\n", - "# —— Separate the individual parameters with respect to the cofactor\n", - "carriers = df_ip[df_ip[\"Cofactor 1\"] == 0.0]\n", - "non_carriers = df_ip[df_ip[\"Cofactor 1\"] == 1.0]\n", - "\n", - "\n", - "def plot_histo(title, ft, bins_nb=10):\n", - " # compute bins (same for 2 carriers & non-carriers)\n", - " _, bins = np.histogram(df_ip[ft], bins=bins_nb)\n", - "\n", - " plt.title(title)\n", - " plt.hist(carriers[ft], density=True, bins=bins, edgecolor=\"white\", label=\"Carriers\")\n", - " plt.hist(\n", - " non_carriers[ft],\n", - " density=True,\n", - " bins=bins,\n", - " alpha=0.6,\n", - " edgecolor=\"white\",\n", - " label=\"Non carriers\",\n", - " )\n", - " plt.legend()\n", - " plt.show()\n", - "\n", - "\n", - "# —— Plot the time shifts in carriers and non-carriers\n", - "plot_histo(\"Time shift histogram\", \"tau\")\n", - "\n", - "# —— Plot the acceleration factor in carriers and non-carriers\n", - "plot_histo(\"Log-Acceleration factor histogram\", \"xi\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It seems that the mutation has an effect on the disease onset, but not on its pace. Let's verify it with a statistical test" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from scipy import stats\n", - "\n", - "# —— Student t-test (under the asumption of a gaussian distribution only)\n", - "print(stats.ttest_ind(carriers[\"tau\"], non_carriers[\"tau\"]))\n", - "print(stats.ttest_ind(carriers[\"xi\"], non_carriers[\"xi\"]))\n", - "\n", - "# —— Mann-withney t-test\n", - "print(stats.mannwhitneyu(carriers[\"tau\"], non_carriers[\"tau\"]))\n", - "print(stats.mannwhitneyu(carriers[\"xi\"], non_carriers[\"xi\"]))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It is now clear that the mutation has an effect on the disease onset, but not on its pace.\n", - "\n", - "\n", - "\n", - "# The end of this Notebook. But the beginning of your explorations.\n", - "\n", - "You've now seen most of the applications that you can run with Leaspy. There are many more to discover based on your experimental settings and analysis. But it's time for you to try it on your own and to enjoy the package.\n", - "\n", - "Have fun! " - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.12" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/examples/GALLERY_HEADER.rst b/examples/GALLERY_HEADER.rst index 1e0f0e469..2a0e7f4c3 100644 --- a/examples/GALLERY_HEADER.rst +++ b/examples/GALLERY_HEADER.rst @@ -1,4 +1,4 @@ -Example gallery for Leaspy -========================== +Examples gallery +=============== This is a gallery of examples of how to use Leaspy to conduct various kind of analysis. diff --git a/examples/plot_quickstart.py b/examples/plot_01_quickstart.py similarity index 84% rename from examples/plot_quickstart.py rename to examples/plot_01_quickstart.py index fb6cec23b..b3df2a4c4 100644 --- a/examples/plot_quickstart.py +++ b/examples/plot_01_quickstart.py @@ -75,7 +75,3 @@ # # 1. See the [User Guide](../user_guide.md) and full API documentation. # 2. Explore additional [examples](./index.rst). -# 3. Visit the [Disease Progression Modelling](https://disease-progression-modelling.github.io/) website, -# which provides a [mathematical introduction](https://disease-progression-modelling.github.io/pages/models/disease_course_mapping.html) -# and [tutorials](https://disease-progression-modelling.github.io/pages/notebooks/disease_course_mapping/disease_course_mapping.html) -# for earlier versions such as v1.5. diff --git a/examples/plot_parkinson_example.py b/examples/plot_02_parkinson_example.py similarity index 100% rename from examples/plot_parkinson_example.py rename to examples/plot_02_parkinson_example.py diff --git a/examples/plot_joint.py b/examples/plot_03_joint.py similarity index 100% rename from examples/plot_joint.py rename to examples/plot_03_joint.py diff --git a/examples/plot_mixture.py b/examples/plot_04_mixture.py similarity index 100% rename from examples/plot_mixture.py rename to examples/plot_04_mixture.py diff --git a/examples/plot_simulate.py b/examples/plot_05_simulate.py similarity index 100% rename from examples/plot_simulate.py rename to examples/plot_05_simulate.py diff --git a/poetry.lock b/poetry.lock index fc9e0bc00..71e7c5e03 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,5 +1,24 @@ # This file is automatically @generated by Poetry 2.1.1 and should not be changed by hand. +[[package]] +name = "accessible-pygments" +version = "0.0.5" +description = "A collection of accessible pygments styles" +optional = false +python-versions = ">=3.9" +groups = ["docs"] +files = [ + {file = "accessible_pygments-0.0.5-py3-none-any.whl", hash = "sha256:88ae3211e68a1d0b011504b2ffc1691feafce124b845bd072ab6f9f66f34d4b7"}, + {file = "accessible_pygments-0.0.5.tar.gz", hash = "sha256:40918d3e6a2b619ad424cb91e556bd3bd8865443d9f22f1dcdf79e33c8046872"}, +] + +[package.dependencies] +pygments = ">=1.5" + +[package.extras] +dev = ["pillow", "pkginfo (>=1.10)", "playwright", "pre-commit", "setuptools", "twine (>=5.0)"] +tests = ["hypothesis", "pytest"] + [[package]] name = "alabaster" version = "0.7.16" @@ -125,6 +144,29 @@ files = [ [package.extras] dev = ["backports.zoneinfo ; python_version < \"3.9\"", "freezegun (>=1.0,<2.0)", "jinja2 (>=3.0)", "pytest (>=6.0)", "pytest-cov", "pytz", "setuptools", "tzdata ; sys_platform == \"win32\""] +[[package]] +name = "beautifulsoup4" +version = "4.14.2" +description = "Screen-scraping library" +optional = false +python-versions = ">=3.7.0" +groups = ["docs"] +files = [ + {file = "beautifulsoup4-4.14.2-py3-none-any.whl", hash = "sha256:5ef6fa3a8cbece8488d66985560f97ed091e22bbc4e9c2338508a9d5de6d4515"}, + {file = "beautifulsoup4-4.14.2.tar.gz", hash = "sha256:2a98ab9f944a11acee9cc848508ec28d9228abfd522ef0fad6a02a72e0ded69e"}, +] + +[package.dependencies] +soupsieve = ">1.2" +typing-extensions = ">=4.0.0" + +[package.extras] +cchardet = ["cchardet"] +chardet = ["chardet"] +charset-normalizer = ["charset-normalizer"] +html5lib = ["html5lib"] +lxml = ["lxml"] + [[package]] name = "certifi" version = "2025.4.26" @@ -2749,6 +2791,34 @@ files = [ {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, ] +[[package]] +name = "pydata-sphinx-theme" +version = "0.16.1" +description = "Bootstrap-based Sphinx theme from the PyData community" +optional = false +python-versions = ">=3.9" +groups = ["docs"] +files = [ + {file = "pydata_sphinx_theme-0.16.1-py3-none-any.whl", hash = "sha256:225331e8ac4b32682c18fcac5a57a6f717c4e632cea5dd0e247b55155faeccde"}, + {file = "pydata_sphinx_theme-0.16.1.tar.gz", hash = "sha256:a08b7f0b7f70387219dc659bff0893a7554d5eb39b59d3b8ef37b8401b7642d7"}, +] + +[package.dependencies] +accessible-pygments = "*" +Babel = "*" +beautifulsoup4 = "*" +docutils = "!=0.17.0" +pygments = ">=2.7" +sphinx = ">=6.1" +typing-extensions = "*" + +[package.extras] +a11y = ["pytest-playwright"] +dev = ["pandoc", "pre-commit", "pydata-sphinx-theme[doc,test]", "pyyaml", "sphinx-theme-builder[cli]", "tox"] +doc = ["ablog (>=0.11.8)", "colorama", "graphviz", "ipykernel", "ipyleaflet", "ipywidgets", "jupyter_sphinx", "jupyterlite-sphinx", "linkify-it-py", "matplotlib", "myst-parser", "nbsphinx", "numpy", "numpydoc", "pandas", "plotly", "rich", "sphinx-autoapi (>=3.0.0)", "sphinx-copybutton", "sphinx-design", "sphinx-favicon (>=1.0.1)", "sphinx-sitemap", "sphinx-togglebutton", "sphinxcontrib-youtube (>=1.4.1)", "sphinxext-rediraffe", "xarray"] +i18n = ["Babel", "jinja2"] +test = ["pytest", "pytest-cov", "pytest-regressions", "sphinx[test]"] + [[package]] name = "pygments" version = "2.19.1" @@ -3433,6 +3503,18 @@ files = [ {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"}, ] +[[package]] +name = "soupsieve" +version = "2.8" +description = "A modern CSS selector implementation for Beautiful Soup." +optional = false +python-versions = ">=3.9" +groups = ["docs"] +files = [ + {file = "soupsieve-2.8-py3-none-any.whl", hash = "sha256:0cc76456a30e20f5d7f2e14a98a4ae2ee4e5abdc7c5ea0aafe795f344bc7984c"}, + {file = "soupsieve-2.8.tar.gz", hash = "sha256:e2dd4a40a628cb5f28f6d4b0db8800b8f581b65bb380b97de22ba5ca8d72572f"}, +] + [[package]] name = "sphinx" version = "7.4.7" @@ -4274,4 +4356,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" python-versions = ">=3.9,<=3.13" -content-hash = "dded7e9f869644ef5a44547c68609a5cd990a4ccec437bd43a8b9ec9ce57b97f" +content-hash = "04344c60e681098d672f73d8795863330ec059e0d794efa5a287bedf095a5d17" diff --git a/pyproject.toml b/pyproject.toml index 9c09d077b..fb4c228ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,6 +71,7 @@ sphinx_theme = ">=1.0" sphinx-autoapi = "*" myst-nb = "*" sphinxcontrib-bibtex = "*" +pydata-sphinx-theme = "^0.16.1" [tool.ruff] target-version = "py39" From 30b53e100c3396674c007552eb7b73e54dceec49 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 26 Nov 2025 17:15:04 +0100 Subject: [PATCH 06/24] Docs: Migrate to Furo theme and improve gallery layout - Switch Sphinx theme to 'furo': cleaner interface - CSS Improvements: - Force white background on logos for visibility in dark mode. - Refactor example gallery to a simple bulleted list. - Add responsive styling for Pandas DataFrames (scrollable, dark mode colors). - JS: Disable hover tooltips on gallery links. - Makefile: Fix syntax error and improve doc build rule. - Dependencies: Update poetry.lock and pyproject.toml. --- Makefile | 4 ++ docs/_static/custom.css | 61 +++++++++++++++++++++++- docs/_static/custom.js | 3 ++ docs/conf.py | 3 +- docs/sg_execution_times.rst | 18 +++---- examples/plot_01_quickstart.py | 8 +++- examples/plot_02_parkinson_example.py | 5 ++ examples/plot_03_joint.py | 4 ++ examples/plot_04_mixture.py | 7 +++ examples/plot_05_simulate.py | 5 +- poetry.lock | 67 +++++++++++++++++++++------ pyproject.toml | 1 + 12 files changed, 157 insertions(+), 29 deletions(-) diff --git a/Makefile b/Makefile index 151a96831..903f89c6c 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,10 @@ clean.doc: @$(RM) -rf docs/auto_examples/ @$(RM) -rf docs/sg_execution_times.rst +.PHONY: doc-quick +doc-quick: install.doc + @$(SPHINX) -b html docs/ docs/_build/html + .PHONY: clean.py clean.py: @find . -name __pycache__ -exec $(RM) -r {} + diff --git a/docs/_static/custom.css b/docs/_static/custom.css index e5645e0a5..5792b63d0 100644 --- a/docs/_static/custom.css +++ b/docs/_static/custom.css @@ -3,4 +3,63 @@ } .sphx-glr-thumbcontainer .xref.std.std-ref { display: none; -} \ No newline at end of file +} + +/* Hide images in the gallery */ +.sphx-glr-thumbcontainer img { + display: none !important; +} + +/* Reset container height to fit text only */ +.sphx-glr-thumbcontainer { + min-height: auto !important; + height: auto !important; +} + +/* Set background as white for the sidebar logo and the Leaspy logo in index */ +.sidebar-logo, img[src*="leaspy_logo.png"] { + background-color: white; + padding: 5px; /* Adds some space around the logo */ + border-radius: 4px; /* Optional: Rounds the corners of the background */ +} + +/* Pandas DataFrame styling for Furo */ +table.dataframe { + border: none !important; + border-collapse: collapse; + border-spacing: 0; + margin-bottom: 1em; + width: auto; + overflow-x: auto; + display: block; /* Makes it scrollable if wide */ +} + +table.dataframe thead { + border-bottom: 1px solid var(--color-border-primary); + vertical-align: bottom; +} + +table.dataframe tr, table.dataframe th, table.dataframe td { + text-align: right; + vertical-align: middle; + padding: 0.5em 0.5em; + line-height: normal; + white-space: normal; + max-width: none; + border: none; + color: var(--color-foreground-primary); /* Fix dark mode text */ +} + +table.dataframe th { + font-weight: bold; + background: var(--color-background-secondary); /* Header background */ +} + +table.dataframe tbody tr:nth-child(odd) { + background: var(--color-background-secondary); /* Zebra striping */ +} + +table.dataframe tbody tr:hover { + background: var(--color-background-hover); /* Hover effect */ +} + diff --git a/docs/_static/custom.js b/docs/_static/custom.js index 0febaaf58..103057d7e 100644 --- a/docs/_static/custom.js +++ b/docs/_static/custom.js @@ -19,5 +19,8 @@ document.addEventListener("DOMContentLoaded", function() { // Change cursor to pointer el.style.cursor = 'pointer'; } + + // Remove the tooltip attribute to prevent the description from popping up + el.removeAttribute('tooltip'); }); }); \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index df984314e..f0030561b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -141,7 +141,8 @@ def find_var(varname: str, *py_file_paths): # html_theme = 'alabaster' # html_theme = 'sphinx-theme' -html_theme = "pydata_sphinx_theme" +# html_theme = "pydata_sphinx_theme" +html_theme = "furo" add_function_parentheses = True diff --git a/docs/sg_execution_times.rst b/docs/sg_execution_times.rst index 23ad02ae1..018b76da9 100644 --- a/docs/sg_execution_times.rst +++ b/docs/sg_execution_times.rst @@ -6,7 +6,7 @@ Computation times ================= -**00:36.810** total execution time for 5 files **from all galleries**: +**00:08.619** total execution time for 5 files **from all galleries**: .. container:: @@ -32,18 +32,18 @@ Computation times * - Example - Time - Mem (MB) - * - :ref:`sphx_glr_auto_examples_plot_01_quickstart.py` (``../examples/plot_01_quickstart.py``) - - 00:20.917 - - 0.0 * - :ref:`sphx_glr_auto_examples_plot_05_simulate.py` (``../examples/plot_05_simulate.py``) - - 00:05.703 + - 00:08.619 - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_04_mixture.py` (``../examples/plot_04_mixture.py``) - - 00:04.900 + * - :ref:`sphx_glr_auto_examples_plot_01_quickstart.py` (``../examples/plot_01_quickstart.py``) + - 00:00.000 - 0.0 * - :ref:`sphx_glr_auto_examples_plot_02_parkinson_example.py` (``../examples/plot_02_parkinson_example.py``) - - 00:04.716 + - 00:00.000 - 0.0 * - :ref:`sphx_glr_auto_examples_plot_03_joint.py` (``../examples/plot_03_joint.py``) - - 00:00.574 + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_auto_examples_plot_04_mixture.py` (``../examples/plot_04_mixture.py``) + - 00:00.000 - 0.0 diff --git a/examples/plot_01_quickstart.py b/examples/plot_01_quickstart.py index b3df2a4c4..a3f2c9bc7 100644 --- a/examples/plot_01_quickstart.py +++ b/examples/plot_01_quickstart.py @@ -69,9 +69,13 @@ ) print(individual_parameters.to_dataframe()) - # %% -# To go further; +# We have seen how to fit a model and personalize it to individuals. +# Leaspy also provides various plotting functions to visualize the results. +# Let's go to the next [section](./plot_02_parkinson_example) to see how to plot +# the group-average trajectory and the individual trajectories using the Parkinson's disease dataset. +# %% +# To go further: # # 1. See the [User Guide](../user_guide.md) and full API documentation. # 2. Explore additional [examples](./index.rst). diff --git a/examples/plot_02_parkinson_example.py b/examples/plot_02_parkinson_example.py index f32a3b1ab..8b150446c 100644 --- a/examples/plot_02_parkinson_example.py +++ b/examples/plot_02_parkinson_example.py @@ -127,3 +127,8 @@ ) ax.set_xlim(45, 120) plt.show() + +# %% +# This concludes the Parkinson's disease progression modeling example using Leaspy. +# Leaspy is also capable of handling various other types of models, as the Joint Models, +# which will be explored in the [next section](./plot_03_joint). \ No newline at end of file diff --git a/examples/plot_03_joint.py b/examples/plot_03_joint.py index 2a436fb7d..526fdb378 100644 --- a/examples/plot_03_joint.py +++ b/examples/plot_03_joint.py @@ -56,3 +56,7 @@ # %% # The Joint Model includes specific parameters such as `log_rho_mean` and `zeta_mean`. print(model.parameters) + +# %% +# We have seend how to fit a Joint Model using Leaspy. It also provides other models as the +# [Mixture Model](./plot_04_mixture) that can be explored in the next examples. \ No newline at end of file diff --git a/examples/plot_04_mixture.py b/examples/plot_04_mixture.py index ddaa730aa..7cb64a003 100644 --- a/examples/plot_04_mixture.py +++ b/examples/plot_04_mixture.py @@ -295,3 +295,10 @@ def get_ip(df_leaspy, model): plt.suptitle("Population progression", fontsize=18) plt.tight_layout() plt.show() + +# %% +# This concludes the Mixture Model example using Leaspy. We can also use these fit models to +# simulate new data according to the estimated parameters. This can be useful for +# validating the model, for generating synthetic datasets for further analysis or for +# generate a trajectory for a new individual given specific parameters. Let's check this +# in the [next example](./plot_05_simulate.py). diff --git a/examples/plot_05_simulate.py b/examples/plot_05_simulate.py index a9ae3ef59..6ba32858a 100644 --- a/examples/plot_05_simulate.py +++ b/examples/plot_05_simulate.py @@ -91,4 +91,7 @@ # %% # The simulated longitudinal dataset is displayed below. -print(df_sim) +df_sim.head(10) + +# %% +# This concludes the simulation example using Leaspy. Stay tuned for more examples on model fitting and analysis! \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index 71e7c5e03..5e09a08b3 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.1.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand. [[package]] name = "accessible-pygments" @@ -501,7 +501,7 @@ description = "Python library for calculating contours of 2D quadrilateral grids optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\"" +markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" files = [ {file = "contourpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba38e3f9f330af820c4b27ceb4b9c7feee5fe0493ea53a8720f4792667465934"}, {file = "contourpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc41ba0714aa2968d1f8674ec97504a8f7e334f48eeacebcaa6256213acb0989"}, @@ -931,6 +931,25 @@ test-downstream = ["aiobotocore (>=2.5.4,<3.0.0)", "dask[dataframe,test]", "moto test-full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "cloudpickle", "dask", "distributed", "dropbox", "dropboxdrivefs", "fastparquet", "fusepy", "gcsfs", "jinja2", "kerchunk", "libarchive-c", "lz4", "notebook", "numpy", "ocifs", "pandas", "panel", "paramiko", "pyarrow", "pyarrow (>=1)", "pyftpdlib", "pygit2", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "python-snappy", "requests", "smbprotocol", "tqdm", "urllib3", "zarr", "zstandard"] tqdm = ["tqdm"] +[[package]] +name = "furo" +version = "2025.9.25" +description = "A clean customisable Sphinx documentation theme." +optional = false +python-versions = ">=3.8" +groups = ["docs"] +files = [ + {file = "furo-2025.9.25-py3-none-any.whl", hash = "sha256:2937f68e823b8e37b410c972c371bc2b1d88026709534927158e0cb3fac95afe"}, + {file = "furo-2025.9.25.tar.gz", hash = "sha256:3eac05582768fdbbc2bdfa1cdbcdd5d33cfc8b4bd2051729ff4e026a1d7e0a98"}, +] + +[package.dependencies] +accessible-pygments = ">=0.0.5" +beautifulsoup4 = "*" +pygments = ">=2.7" +sphinx = ">=6.0,<9.0" +sphinx-basic-ng = ">=1.0.0.beta2" + [[package]] name = "greenlet" version = "3.2.1" @@ -1039,7 +1058,7 @@ files = [ {file = "importlib_metadata-8.7.0-py3-none-any.whl", hash = "sha256:e5dd1551894c77868a30651cef00984d50e1002d06942a7101d34870c5f02afd"}, {file = "importlib_metadata-8.7.0.tar.gz", hash = "sha256:d13b81ad223b890aa16c5471f2ac3056cf76c5f10f82d6f9292f0b415f389000"}, ] -markers = {dev = "python_version < \"3.10\""} +markers = {dev = "python_version == \"3.9\""} [package.dependencies] zipp = ">=3.20" @@ -1060,7 +1079,7 @@ description = "Read resources from Python packages" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version < \"3.10\"" +markers = "python_version == \"3.9\"" files = [ {file = "importlib_resources-6.5.2-py3-none-any.whl", hash = "sha256:789cfdc3ed28c78b67a06acb8126751ced69a3d5f79c095a98298cd8a760ccec"}, {file = "importlib_resources-6.5.2.tar.gz", hash = "sha256:185f87adef5bcc288449d98fb4fba07cea78bc036455dd44c5fc4a2fe78fed2c"}, @@ -1181,7 +1200,7 @@ description = "IPython: Productive Interactive Computing" optional = false python-versions = ">=3.11" groups = ["docs"] -markers = "python_version >= \"3.11\"" +markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" files = [ {file = "ipython-9.2.0-py3-none-any.whl", hash = "sha256:fef5e33c4a1ae0759e0bba5917c9db4eb8c53fee917b6a526bd973e1ca5159f6"}, {file = "ipython-9.2.0.tar.gz", hash = "sha256:62a9373dbc12f28f9feaf4700d052195bf89806279fc8ca11f3f54017d04751b"}, @@ -1215,7 +1234,7 @@ description = "Defines a variety of Pygments lexers for highlighting IPython cod optional = false python-versions = ">=3.8" groups = ["docs"] -markers = "python_version >= \"3.11\"" +markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" files = [ {file = "ipython_pygments_lexers-1.1.1-py3-none-any.whl", hash = "sha256:a9462224a505ade19a605f71f8fa63c2048833ce50abc86768a0d81d876dc81c"}, {file = "ipython_pygments_lexers-1.1.1.tar.gz", hash = "sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81"}, @@ -1516,7 +1535,7 @@ description = "A fast implementation of the Cassowary constraint solver" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\"" +markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" files = [ {file = "kiwisolver-1.4.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:88c6f252f6816a73b1f8c904f7bbe02fd67c09a69f7cb8a0eecdbf5ce78e63db"}, {file = "kiwisolver-1.4.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c72941acb7b67138f35b879bbe85be0f6c6a70cab78fe3ef6db9c024d9223e5b"}, @@ -1803,7 +1822,7 @@ description = "Python plotting package" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\"" +markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" files = [ {file = "matplotlib-3.10.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:ff2ae14910be903f4a24afdbb6d7d3a6c44da210fc7d42790b87aeac92238a16"}, {file = "matplotlib-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0721a3fd3d5756ed593220a8b86808a36c5031fce489adb5b31ee6dbb47dd5b2"}, @@ -1984,7 +2003,7 @@ description = "An extended [CommonMark](https://spec.commonmark.org/) compliant optional = false python-versions = ">=3.10" groups = ["docs"] -markers = "python_version >= \"3.11\"" +markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" files = [ {file = "myst_parser-4.0.1-py3-none-any.whl", hash = "sha256:9134e88959ec3b5780aedf8a99680ea242869d012e8821db3126d427edc9c95d"}, {file = "myst_parser-4.0.1.tar.gz", hash = "sha256:5cfea715e4f3574138aecbf7d54132296bfd72bb614d31168f48c477a830a7c4"}, @@ -2089,7 +2108,7 @@ description = "Python package for creating and manipulating graphs and networks" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\"" +markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" files = [ {file = "networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f"}, {file = "networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1"}, @@ -3399,7 +3418,7 @@ description = "Fundamental algorithms for scientific computing in Python" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\"" +markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" files = [ {file = "scipy-1.15.2-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a2ec871edaa863e8213ea5df811cd600734f6400b4af272e1c011e69401218e9"}, {file = "scipy-1.15.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:6f223753c6ea76983af380787611ae1291e3ceb23917393079dcc746ba60cfb5"}, @@ -3468,7 +3487,7 @@ files = [ {file = "setuptools-80.3.1-py3-none-any.whl", hash = "sha256:ea8e00d7992054c4c592aeb892f6ad51fe1b4d90cc6947cc45c45717c40ec537"}, {file = "setuptools-80.3.1.tar.gz", hash = "sha256:31e2c58dbb67c99c289f51c16d899afedae292b978f8051efaf6262d8212f927"}, ] -markers = {main = "platform_system == \"Linux\" and platform_machine == \"x86_64\" or python_version >= \"3.12\"", docs = "python_version >= \"3.12\""} +markers = {main = "platform_system == \"Linux\" and platform_machine == \"x86_64\" or python_version == \"3.12\" or python_full_version == \"3.13.0\"", docs = "python_version == \"3.12\" or python_full_version == \"3.13.0\""} [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "ruff (>=0.8.0) ; sys_platform != \"cygwin\""] @@ -3594,6 +3613,24 @@ docs = ["furo (>=2024.1.29)"] numpy = ["nptyping (>=2.5)"] testing = ["covdefaults (>=2.3)", "coverage (>=7.4.4)", "defusedxml (>=0.7.1)", "diff-cover (>=9)", "pytest (>=8.1.1)", "pytest-cov (>=5)", "sphobjinv (>=2.3.1)", "typing-extensions (>=4.11)"] +[[package]] +name = "sphinx-basic-ng" +version = "1.0.0b2" +description = "A modern skeleton for Sphinx themes." +optional = false +python-versions = ">=3.7" +groups = ["docs"] +files = [ + {file = "sphinx_basic_ng-1.0.0b2-py3-none-any.whl", hash = "sha256:eb09aedbabfb650607e9b4b68c9d240b90b1e1be221d6ad71d61c52e29f7932b"}, + {file = "sphinx_basic_ng-1.0.0b2.tar.gz", hash = "sha256:9ec55a47c90c8c002b5960c57492ec3021f5193cb26cebc2dc4ea226848651c9"}, +] + +[package.dependencies] +sphinx = ">=4.0" + +[package.extras] +docs = ["furo", "ipython", "myst-parser", "sphinx-copybutton", "sphinx-inline-tabs"] + [[package]] name = "sphinx-gallery" version = "0.19.0" @@ -3964,7 +4001,7 @@ description = "A list of Python Standard Libraries (2.7 through 3.13)." optional = false python-versions = ">=3.9" groups = ["docs"] -markers = "python_version < \"3.10\"" +markers = "python_version == \"3.9\"" files = [ {file = "stdlib_list-0.11.1-py3-none-any.whl", hash = "sha256:9029ea5e3dfde8cd4294cfd4d1797be56a67fc4693c606181730148c3fd1da29"}, {file = "stdlib_list-0.11.1.tar.gz", hash = "sha256:95ebd1d73da9333bba03ccc097f5bac05e3aa03e6822a0c0290f87e1047f1857"}, @@ -4343,7 +4380,7 @@ files = [ {file = "zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931"}, {file = "zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4"}, ] -markers = {main = "python_version < \"3.10\"", dev = "python_version < \"3.10\""} +markers = {main = "python_version == \"3.9\"", dev = "python_version == \"3.9\""} [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""] @@ -4356,4 +4393,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" python-versions = ">=3.9,<=3.13" -content-hash = "04344c60e681098d672f73d8795863330ec059e0d794efa5a287bedf095a5d17" +content-hash = "b449dfd70b9e2fb9cb29b3a7f11f0c1507964198f1af79138e65c6efde5af990" diff --git a/pyproject.toml b/pyproject.toml index fb4c228ed..be6e2294d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,6 +72,7 @@ sphinx-autoapi = "*" myst-nb = "*" sphinxcontrib-bibtex = "*" pydata-sphinx-theme = "^0.16.1" +furo = "^2025.9.25" [tool.ruff] target-version = "py39" From eba36bf675ffde2a2af6cd126763790042900415 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 1 Dec 2025 14:27:38 +0100 Subject: [PATCH 07/24] Adding code.view: it allows to watch the source code. Improve API reference styling for Sphinx docs Enhanced class and method separation with distinct vertical lines and highlight blocks Swapped primary and secondary colors for indentation and highlighting Reduced and tightened spacing between parameters, attributes, and returns for clarity Removed third-level indentation and unnecessary/old CSS rules Improved visibility and differentiation of important API sections Added bullet markers for parameter names Fixed alignment of vertical lines and highlight blocks for class/method headers Cleaned up and consolidated CSS for maintainability --- docs/_static/custom.css | 133 +++++++++++++++++++++++++++++++++++++++- docs/conf.py | 1 + 2 files changed, 132 insertions(+), 2 deletions(-) diff --git a/docs/_static/custom.css b/docs/_static/custom.css index 5792b63d0..a471469b7 100644 --- a/docs/_static/custom.css +++ b/docs/_static/custom.css @@ -7,7 +7,7 @@ /* Hide images in the gallery */ .sphx-glr-thumbcontainer img { - display: none !important; +display: none !important; } /* Reset container height to fit text only */ @@ -20,7 +20,7 @@ .sidebar-logo, img[src*="leaspy_logo.png"] { background-color: white; padding: 5px; /* Adds some space around the logo */ - border-radius: 4px; /* Optional: Rounds the corners of the background */ + border-radius: 4px; /* Rounds the corners of the background */ } /* Pandas DataFrame styling for Furo */ @@ -63,3 +63,132 @@ table.dataframe tbody tr:hover { background: var(--color-background-hover); /* Hover effect */ } +/* --- API Reference Styling --- */ + +/* 1. Class Separation (Big) */ +dl.py.class { + margin-bottom: 4rem !important; + padding-bottom: 2rem; + border-bottom: 2px solid var(--color-border-primary); /* Stronger separator */ +} + +/* 2. Method/Function Separation (Small) */ +dl.py.method, dl.py.function { + margin-bottom: 2rem !important; + padding-bottom: 1rem; + border-bottom: 1px solid var(--color-border-secondary); /* Lighter separator */ +} + +/* Remove the border from the last method to avoid double borders with the class end */ +dl.py.class > dd > dl.py.method:last-child { + border-bottom: none; + margin-bottom: 0 !important; + padding-bottom: 0; +} + +/* 3. Signature Highlighting - Split for differentiation */ + +/* Class Header (Level 1) */ +dl.py.class > dt { + background-color: var(--color-background-secondary); + padding: 0.8rem; + border-radius: 4px; + margin-top: 1.5rem; + font-weight: bold; + border-left: 5px solid var(--color-brand-primary); /* Brand Color (Blue) */ + display: block; + text-indent: 0 !important; + margin-left: 0 !important; + width: 100%; + box-sizing: border-box; +} + +/* Method/Function Header (Level 2) */ +dl.py.function > dt, +dl.py.method > dt { + background-color: var(--color-background-secondary); + padding: 0.6rem; + border-radius: 4px; + margin-top: 1.0rem; + font-weight: bold; + border-left: 3px solid var(--color-foreground-primary); /* Darkest/Thickest (Black/Dark Grey) */ + display: block; + text-indent: 0 !important; + margin-left: 0 !important; + width: 100%; + box-sizing: border-box; +} + +/* 4. Indentation and Vertical Lines */ + +/* Level 1: Class Body (Darkest Line, aligned left) */ +dl.py.class > dd { + margin-left: 0 !important; /* Move line to the left edge */ + padding-left: 1.5rem; /* Keep content indented */ + border-left: 4px solid var(--color-brand-primary); /* Brand Color (Blue) */ +} + +/* Level 2: Method/Function Body (Brand Color Line) */ +dl.py.method > dd, +dl.py.function > dd { + margin-left: 0 !important; /* Move line to the left edge */ + padding-left: 1.5rem; + border-left: 2px solid var(--color-foreground-primary); +} + +/* 5. Styling for Parameters, Returns, Attributes (Field Lists) */ +/* Removed Level 3 indentation/borders as requested, keeping only tight spacing */ + +/* The Headers (e.g. "Parameters", "Returns") - Simple bold, no box */ +dl.field-list > dt { + font-weight: bold; + font-size: 1.0em; + color: var(--color-foreground-primary); + margin-top: 1.0rem; + margin-bottom: 0.5rem; + padding: 0; + border: none; + background: none; +} + +/* Field Lists Content - No vertical line, just simple indentation */ +dl.field-list > dd { + margin-left: 0 !important; + padding-left: 1.0rem; + border-left: none; /* Removed the third level line */ +} + +/* The Items (e.g. parameter names like "settings", "name") */ +dl.field-list > dd > dl > dt { + background-color: transparent !important; + padding: 0 !important; + margin-top: 0.0rem !important; /* Zero margin */ + margin-bottom: 0.0rem !important; + font-weight: bold; + border: none !important; + color: var(--color-foreground-primary); + font-family: var(--font-stack-monospace); + line-height: 1.2; +} + +/* The Descriptions (e.g. "Name of the algorithm.") */ +dl.field-list > dd > dl > dd { + margin-top: 0.0rem !important; + margin-bottom: 0.1rem !important; /* Extremely tight */ + margin-left: 1.0rem !important; +} + +/* Remove default margins from paragraphs inside descriptions to fix spacing */ +dl.field-list > dd > dl > dd > p { + margin-top: 0 !important; + margin-bottom: 0.0rem !important; /* Zero margin */ + line-height: 1.3; +} + +/* Add a small bullet or marker to parameter names to make them distinct */ +dl.field-list > dd > dl > dt::before { + content: "•"; + color: var(--color-foreground-muted); + margin-right: 0.5rem; + font-weight: normal; +} diff --git a/docs/conf.py b/docs/conf.py index f0030561b..f6502fe3a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,6 +49,7 @@ def find_var(varname: str, *py_file_paths): "sphinx_gallery.gen_gallery", "myst_nb", "sphinxcontrib.bibtex", + "sphinx.ext.viewcode", ] bibtex_bibfiles = ["references.bib"] From 680020d5dc6328247db20fccdb350c69a3ed222a Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 4 Dec 2025 13:57:45 +0100 Subject: [PATCH 08/24] Fix warnings, update examples and improve logging - Suppress deprecation warnings in . - Update calls in examples to use - Fix warnings, update examples and improve logging - Fix initialization in plot_03_joint.py by adding . - Silence seed setting log and improve duration formatting precision in . - Update execution times: now we show 2 decimals to the second. --- docs/sg_execution_times.rst | 16 ++++++++-------- examples/plot_01_quickstart.py | 2 +- examples/plot_02_parkinson_example.py | 2 +- examples/plot_03_joint.py | 2 +- src/leaspy/algo/algo_with_device.py | 9 +++++++-- src/leaspy/algo/base.py | 4 ++-- 6 files changed, 20 insertions(+), 15 deletions(-) diff --git a/docs/sg_execution_times.rst b/docs/sg_execution_times.rst index 018b76da9..d61d0c74c 100644 --- a/docs/sg_execution_times.rst +++ b/docs/sg_execution_times.rst @@ -6,7 +6,7 @@ Computation times ================= -**00:08.619** total execution time for 5 files **from all galleries**: +**00:08.804** total execution time for 5 files **from all galleries**: .. container:: @@ -32,18 +32,18 @@ Computation times * - Example - Time - Mem (MB) - * - :ref:`sphx_glr_auto_examples_plot_05_simulate.py` (``../examples/plot_05_simulate.py``) - - 00:08.619 - - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_01_quickstart.py` (``../examples/plot_01_quickstart.py``) - - 00:00.000 - - 0.0 * - :ref:`sphx_glr_auto_examples_plot_02_parkinson_example.py` (``../examples/plot_02_parkinson_example.py``) - - 00:00.000 + - 00:08.118 - 0.0 * - :ref:`sphx_glr_auto_examples_plot_03_joint.py` (``../examples/plot_03_joint.py``) + - 00:00.687 + - 0.0 + * - :ref:`sphx_glr_auto_examples_plot_01_quickstart.py` (``../examples/plot_01_quickstart.py``) - 00:00.000 - 0.0 * - :ref:`sphx_glr_auto_examples_plot_04_mixture.py` (``../examples/plot_04_mixture.py``) - 00:00.000 - 0.0 + * - :ref:`sphx_glr_auto_examples_plot_05_simulate.py` (``../examples/plot_05_simulate.py``) + - 00:00.000 + - 0.0 diff --git a/examples/plot_01_quickstart.py b/examples/plot_01_quickstart.py index a3f2c9bc7..8d73547ea 100644 --- a/examples/plot_01_quickstart.py +++ b/examples/plot_01_quickstart.py @@ -65,7 +65,7 @@ # This is done using a personalization algorithm, here `scipy_minimize`: individual_parameters = model.personalize( - dataset, "scipy_minimize", seed=0, progress_bar=False + dataset, "scipy_minimize", seed=0, progress_bar=False, use_jacobian=False ) print(individual_parameters.to_dataframe()) diff --git a/examples/plot_02_parkinson_example.py b/examples/plot_02_parkinson_example.py index 8b150446c..94308d830 100644 --- a/examples/plot_02_parkinson_example.py +++ b/examples/plot_02_parkinson_example.py @@ -79,7 +79,7 @@ # %% # Individual parameters are obtained for the test data using the personalization step. -ip = model.personalize(data_test, "scipy_minimize", seed=0, progress_bar=False) +ip = model.personalize(data_test, "scipy_minimize", seed=0, progress_bar=False, use_jacobian=False) # %% # The test data with individually re-parametrized ages is plotted below. diff --git a/examples/plot_03_joint.py b/examples/plot_03_joint.py index 526fdb378..3c6da5c3c 100644 --- a/examples/plot_03_joint.py +++ b/examples/plot_03_joint.py @@ -39,7 +39,7 @@ from leaspy.models import JointModel data = Data.from_dataframe(df, "joint") -model = JointModel(name="test_model", nb_events=1) +model = JointModel(name="test_model", nb_events=1, source_dimension=2) # %% # The parameter `nb_events` should match the number of distinct event types diff --git a/src/leaspy/algo/algo_with_device.py b/src/leaspy/algo/algo_with_device.py index 23a75ce98..91ea89e45 100644 --- a/src/leaspy/algo/algo_with_device.py +++ b/src/leaspy/algo/algo_with_device.py @@ -1,4 +1,5 @@ import contextlib +import warnings import torch @@ -57,10 +58,14 @@ def _device_manager(self, model: McmcSaemCompatibleModel, dataset: Dataset): algorithm_tensor_type = "torch.cuda.FloatTensor" try: - yield torch.set_default_tensor_type(algorithm_tensor_type) + with warnings.catch_warnings(): + warnings.filterwarnings("ignore", message=".*torch.set_default_tensor_type.*") + yield torch.set_default_tensor_type(algorithm_tensor_type) finally: if self.algorithm_device != self._default_algorithm_device.type: model.move_to_device(self._default_algorithm_device) dataset.move_to_device(self._default_algorithm_device) - torch.set_default_tensor_type(self._default_algorithm_tensor_type) + with warnings.catch_warnings(): + warnings.filterwarnings("ignore", message=".*torch.set_default_tensor_type.*") + torch.set_default_tensor_type(self._default_algorithm_tensor_type) diff --git a/src/leaspy/algo/base.py b/src/leaspy/algo/base.py index 12f4a5f14..0c0ece79e 100644 --- a/src/leaspy/algo/base.py +++ b/src/leaspy/algo/base.py @@ -115,7 +115,7 @@ def _initialize_seed(seed: Optional[int]): np.random.seed(seed) torch.manual_seed(seed) # TODO: use logger instead (level=INFO) - print(f" ==> Setting seed to {seed}") + # print(f" ==> Setting seed to sdfsdf {seed}") # Silenced to reduce verbosity def run( self, model: ModelType, dataset: Optional[Dataset] = None, **kwargs @@ -262,7 +262,7 @@ def load_parameters(self, parameters: dict): self.algo_parameters[k] = v @staticmethod - def _duration_to_str(seconds: float, *, seconds_fmt=".0f") -> str: + def _duration_to_str(seconds: float, *, seconds_fmt=".2f") -> str: """ Convert a float representing computation time in seconds to a string giving time in hour, minutes and seconds ``%h %min %s``. From 7d19709e8c3eeee916395a55ad053ded848cc9f6 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 5 Dec 2025 16:02:59 +0100 Subject: [PATCH 09/24] docs: improve examples and add Data/Dataset tutorial - Remove unused Dataset imports across examples - Fix PEP 8 import formatting (remove blank lines within import groups) - Simplify plot_02_parkinson patient_trajectories call - Add new data_summary.ipynb documenting Data and Dataset classes and link in quickstart --- docs/data_summary.ipynb | 251 ++++++++++++++++++++++++++ docs/sg_execution_times.rst | 14 +- examples/plot_01_quickstart.py | 14 +- examples/plot_02_parkinson_example.py | 7 - examples/plot_03_joint.py | 3 - examples/plot_04_mixture.py | 9 +- 6 files changed, 270 insertions(+), 28 deletions(-) create mode 100644 docs/data_summary.ipynb diff --git a/docs/data_summary.ipynb b/docs/data_summary.ipynb new file mode 100644 index 000000000..b24dea8db --- /dev/null +++ b/docs/data_summary.ipynb @@ -0,0 +1,251 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6b089476", + "metadata": {}, + "source": [ + "# Understanding Leaspy's Data Containers: `Data` and `Dataset`\n", + "\n", + "In `leaspy`, transforming raw data (like a CSV) into a model-ready format involves two key classes: `Data` and `Dataset`. Understanding their distinct roles is crucial for having full control of your analysis.\n", + "\n", + "---\n", + "\n", + "## 1. The `Data` Class: The User Interface\n", + "\n", + "The `Data` class is your **primary tool** for loading, organizing, and inspecting data. It acts as a flexible, patient-centric container that bridges the gap between raw spreadsheets and the model.\n", + "\n", + "## Key Features & Methods\n", + "\n", + "### **Loading Data**\n", + "Use the factory method to load from a pandas DataFrame. Notice that there is a slight difference when you work with joint models." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "c6de245e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ID TIME EVENT_TIME EVENT_BOOL Y0 Y1 Y2 Y3\n", + "0 116 78.461 85.5 1 0.44444 0.04 0.0 0.0\n", + "1 116 78.936 85.5 1 0.60000 0.00 0.0 0.2\n", + "2 116 79.482 85.5 1 0.39267 0.04 0.0 0.2\n" + ] + } + ], + "source": [ + "import os\n", + "import pandas as pd\n", + "import leaspy\n", + "from leaspy.io.data import Data\n", + "\n", + "leaspy_root = os.path.dirname(leaspy.__file__)\n", + "data_path = os.path.join(leaspy_root, \"datasets/data/simulated_data_for_joint.csv\")\n", + "df = pd.read_csv(data_path, dtype={\"ID\": str}, sep=\";\")\n", + "\n", + "data = Data.from_dataframe(df) \t\t\t\t\t\t\t# <-\n", + "# For joint models (longitudinal + time-to-event):\n", + "data_joint = Data.from_dataframe(df, data_type='joint')\t# <-\n", + "print(df.head(3))" + ] + }, + { + "cell_type": "markdown", + "id": "73706687", + "metadata": {}, + "source": [ + "### **Inspection**: \n", + "Access data naturally by patient ID or index. This is made thanks to the iterators handdling inside `Data`, it also allows you to iterate using for loops. So you can:\n", + "* select data usint the brackets (`data['116']`)\n", + "* check some attributes (`data.n_individuals`) \n", + "* convert the whole dataset or some individuals back into a dataframe object (`data[['116']].to_dataframe()`)\n", + "* iterate into each individual (`for individual in data:`)\n", + "* generate an iterator (`for i, individual in enumerate(data):`)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "6e92c403", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of patients: 17\n", + "patient data (observations shape): (9, 6)\n", + "patient data (dataframe):\n", + " ID TIME EVENT_TIME EVENT_BOOL Y0 Y1 Y2 Y3\n", + "0 116 78.461 85.5 1.0 0.44444 0.04 0.0 0.0\n", + "1 116 78.936 85.5 1.0 0.60000 0.00 0.0 0.2\n", + "2 116 79.482 85.5 1.0 0.39267 0.04 0.0 0.2\n", + "3 116 79.939 85.5 1.0 0.58511 0.00 0.0 0.0\n", + "4 116 80.491 85.5 1.0 0.57044 0.00 0.0 0.0\n", + "5 116 81.455 85.5 1.0 0.55556 0.20 0.1 0.2\n", + "6 116 82.491 85.5 1.0 0.71844 0.20 0.1 0.6\n", + "7 116 83.463 85.5 1.0 0.71111 0.32 0.2 0.6\n", + "8 116 84.439 85.5 1.0 0.91111 0.52 0.6 1.0\n", + "\n", + "Iterating over first 3 patients:\n", + " - Patient 116: 9 visits\n", + " - Patient 142: 11 visits\n", + " - Patient 169: 7 visits\n", + "Patient ID: 116\n", + "Patient ID: 142\n", + "Patient ID: 169\n" + ] + } + ], + "source": [ + "patient_data = data['116'] # Get a specific individual\n", + "n_patients = data.n_individuals # Get total count\n", + "print(f\"Number of patients: {n_patients}\")\n", + "print(f\"patient data (observations shape): {patient_data.observations.shape}\")\n", + "print(f\"patient data (dataframe):\\n{data[['116']].to_dataframe()}\")\n", + "print(\"\\nIterating over first 3 patients:\")\n", + "for individual in data:\n", + " if len(individual.timepoints) == 10: break\n", + " print(f\" - Patient {individual.idx}: {len(individual.timepoints)} visits\")\n", + "for i, individual in enumerate(data):\n", + " if i >= 3: break # Stop after 3 iterations using the index 'i'\n", + " print(f\"Patient ID: {individual.idx}\")" + ] + }, + { + "cell_type": "markdown", + "id": "12eb4a50", + "metadata": {}, + "source": [ + "### **Managing Cofactors**\n", + "Easily attach patient characteristics (e.g., genetics, demographics). It is used to group populations when using `plotter.plot_distribution`, so plotter can color different cofactors. Lets generate a dataset and its parameters to show how it works." + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "id": "8867dfe4", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA4wAAAH5CAYAAADKurD5AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvc2/+5QAAAAlwSFlzAAAPYQAAD2EBqD+naQAALH1JREFUeJzt3Qu41VWdN/AfcADxAsQdRiC0FLznZZQ0x5TE63ih0jQDJU1HmBQ1pZBEK9J8ssm8jD0m+iRlNqSJpSleSkVFZsjUInEoaORSOoCogMJ+n7Xe95yXowsNOLDP5nw+z/N387/svdc5y33+53vWrVWlUqkEAAAAvEPrdx4AAACARGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgqC5q0Jo1a+Lll1+O7bbbLlq1alXt4gAAANSUSqUSr732WvTp0ydat269ZQXGFBb79u1b7WIAAADUtPnz58f222+/ZQXG1LJY/8V17Nix2sUBAACoKcuWLcuNcPXZaosKjPXdUFNYFBgBAAA2zPsN8TPpDQAAAEUCIwAAAEUCIwAAAFvOGEYAAKD5Wr16dbz11lvVLkaL1rZt22jTps1Gv47ACAAANNnafgsXLowlS5ZUuyhEROfOnaNXr14btXa9wAgAADSJ+rDYo0eP2HrrrTcqqLDhUnB/4403YvHixXm/d+/eG/xaAiMAANAk3VDrw2LXrl2rXZwWr0OHDvkxhcZUJxvaPdWkNwAAwEarH7OYWhZpHurrYmPGkwqMAABAk9ENdcuqC4ERAACAIoERAACAjZ/05oYbbsjbn/70p7y/6667xvjx4+PII4/M+ytWrIgLLrggfvzjH8fKlStj6NChcf3110fPnj0bXmPevHlxzjnnxMMPPxzbbrttDB8+PCZOnBh1debfAQCALdHISTM26/vdPGK/qHUf/OAH47zzzstbzbQwbr/99vHNb34zZs6cGc8880wceuihcdxxx8Xzzz+fz59//vlxzz33xJ133hmPPvpovPzyy3HiiSc2mjnp6KOPjlWrVsUTTzwRt956a0yaNCmHTgAAgGoYMWJEHu/3zm3OnDnR0q1Xs96xxx7baP/rX/96bnF88sknc5i8+eabY/LkyTlIJrfccksMGjQonz/ggAPiV7/6Vbzwwgvx4IMP5lbHvfbaK6644oq4+OKL47LLLot27do17VcHAADwdzjiiCNyfllb9+7do6Xb4DGMqbUwdT19/fXXY/DgwbnVMU3XOmTIkIZrBg4cGP369Yvp06fn/fS4++67N+qimrqtLlu2rKGVsiR1b03XrL0BAAA0lfbt20evXr0abW3atIm777479t5779hqq61ihx12iAkTJsTbb7/d8LzUEvnv//7vccwxx+RlLFKDWco9qXXykEMOiW222SY++tGPxksvvdTwnPTv1FMz5aI0TG+//fbLjWrvJa1x+fnPfz6H2I4dO+ZGut/+9reb9HuyQYHxd7/7Xf6i0jf07LPPjp/97Gexyy67xMKFC3MLYefOnRtdn74J6VySHtcOi/Xn68+tSxrj2KlTp4atb9++61tsAACA9fKb3/wmPve5z8UXv/jF3FMyBcM0pC71tFxb6jWZrps1a1ZuNDvllFPiC1/4QowdOzYP5atUKjFq1KiG65cvXx5HHXVUTJs2Lf7rv/4rt26m3pxpvpd1+dSnPhWLFy+OX/7yl7mxLoXYww47LF599dXmFRh33nnn/I146qmn8uQ1adKa9M3blNI3eunSpQ3b/PnzN+n7AQAALcvUqVNzw1j9lgLahAkT4pJLLsmZJ7UufuITn8jhMAXHtZ1++unx6U9/Onbaaac83C5NEnrqqafm3pSpxTEFzkceeaTh+j333DMHyt122y0+/OEP59fccccd4+c//3mxbI899lg8/fTTea6YfffdNz/n6quvzo11P/3pTzfp92W9pyZNrYgf+tCH8r/32WefmDFjRvzbv/1bnHTSSXkym9RUunYr46JFi3JzbpIe0xe6tnS+/ty6pNbMtAEAAGwKH//4x/P8LPVSV9I99tgjHn/88UYtimloXlod4o033shdUJN03Tt7UKaheGsfS89JQ+tSd9LUwpjmcLn33ntjwYIFuYvrm2++uc4WxtT1ND2na9eujY6n56zd1XVT2Oi1LNasWZPHGKbw2LZt29ysOmzYsHxu9uzZ+YtOYxyT9Ji+2akptUePHvnYAw88kL9pqVsrAABANaSAWN8wVm/58uW5lXHtlR/qpTGN9VIOWntM47qOpeyUXHjhhTkHpVbC9J4dOnSIT37yk7kBriSVo3fv3o1aKeu9c0hgVQNj6hqa1lxME9m89tpreUbUVOj7778/jy0cOXJkjBkzJrp06ZJD4OjRo3NITDOkJocffngOhqeddlpcddVVedziuHHj4txzz9WCCMAWZXOvObal2BLWTgO2HHvvvXduBHtnkNxYqdUyLeVxwgknNATC+rXu11WOlJ3S2vVpfcbNab0CY2oZTIM5U7NpCoip6TWFxdSXN7nmmmuidevWuYUxtTqmPrvXX399w/PTLEOpb3Aa+5iCZErxqT/w5Zdf3vRfGQAAwEYYP358nv00NZilFsCUdVL30Oeeey6+9rWvbfDrpjGIU6ZMyRPdpNbHSy+9tKH1sSStRJHy0/HHH58b3tJYybTmferSmkJnGtfYLAJjWmfxvaRm2euuuy5v69K/f//4xS9+sT5vCwAA1LBa7T0wdOjQ3OCVGriuvPLK3M00zYKalrfYGN/+9rfjjDPOyMttdOvWLU+U815LB6ZQmTLUV77ylTzBzl//+tc8B8zBBx/8rlUomlqrSprjtcakb2Zq4UwzpqaurwDQ3OiS2rJ+qQQiT+oyd+7cGDBgQKPxfTTPOvl7M9V6L6sBAABAyyAwAgAAUCQwAgAAUCQwAgAAUCQwAgAAUCQwAgAAUCQwAgAAUCQwAgAAUCQwAgAANJE//elP0apVq5g1a1ZsCeqqXQAAAGALN/mkzft+p9yxXpePGDEibr311vjCF74QN954Y6Nz5557blx//fUxfPjwmDRpUrQ0WhgBAIAWr2/fvvHjH/843nzzzYZjK1asiMmTJ0e/fv2ipRIYAQCAFm/vvffOoXHKlCkNx6ZMmZLD4kc+8pGGY/fdd18cdNBB0blz5+jatWscc8wx8dJLL73naz/33HNx5JFHxrbbbhs9e/aM0047Lf72t79FLRAYAQAAIuKMM86IW265pWH/Bz/4QZx++umNrnn99ddjzJgx8cwzz8S0adOidevWccIJJ8SaNWuKr7lkyZI49NBDc+hMz0mBc9GiRfHpT386aoExjAAAABHx2c9+NsaOHRt//vOf8/7jjz+eu6k+8sgjDdcMGzas0XNSqOzevXu88MILsdtuu73rNb/3ve/lsPiNb3yj0XNSa+Yf//jH2GmnnaI5ExgBAAAicvA7+uij8+Q2lUol/7tbt26NrnnxxRdj/Pjx8dRTT+VupfUti/PmzSsGxt/+9rfx8MMP5+6o75S6sgqMAAAANdQtddSoUfnf11133bvOH3vssdG/f//4/ve/H3369MmBMQXFVatWFV9v+fLl+TlXXnnlu8717t07mjuBEQAA4P854ogjcvhLaykOHTq00blXXnklZs+encPixz72sXzssccee9/JdP7jP/4jPvjBD0ZdXe3FL5PeAAAA/D9t2rSJ3//+93lMYps2bRqd+8AHPpBnRr3ppptizpw58dBDD+UJcN5LWsfx1Vdfjc985jMxY8aM3A31/vvvz5PprF69Opo7gREAAGAtHTt2zNs7pRlR0yQ4M2fOzN1Qzz///PjWt74V7yV1W02T56RwePjhh8fuu+8e5513Xl6WI71ec9eqkkZz1phly5ZFp06dYunSpcWKBIBqGzlpRrWLUJNuHrFftYsAbKC0yP3cuXNjwIABsdVWW1W7OMR718nfm6maf6QFAACgKgRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAACgyaxZs6baRaAJ66Juo18BAABo8dq1a5fXFXz55Zeje/fueb9Vq1bVLlaLVKlUYtWqVfHXv/4110mqiw0lMAIAABstBZO03t+CBQtyaKT6tt566+jXr1+umw0lMAIAAE0itWSlgPL222/H6tWrq12cFq1NmzZRV1e30a28AiMAANBkUkBp27Zt3qh9Jr0BAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgqK58GABaoMknNdlLjV60JLYU1/b8WrWLAECVaGEEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAABg4wPjxIkTY7/99ovtttsuevToEccff3zMnj270TWHHHJItGrVqtF29tlnN7pm3rx5cfTRR8fWW2+dX+eiiy6Kt99+e32KAgAAwCZWtz4XP/roo3Huuefm0JgC3pe//OU4/PDD44UXXohtttmm4bozzzwzLr/88ob9FAzrrV69OofFXr16xRNPPBELFiyIz33uc9G2bdv4xje+0VRfFwAAAJszMN53332N9idNmpRbCGfOnBkHH3xwo4CYAmHJr371qxwwH3zwwejZs2fstddeccUVV8TFF18cl112WbRr125DvxYAAACayxjGpUuX5scuXbo0On777bdHt27dYrfddouxY8fGG2+80XBu+vTpsfvuu+ewWG/o0KGxbNmyeP7554vvs3Llynx+7Q0AAIBm1MK4tjVr1sR5550XBx54YA6G9U455ZTo379/9OnTJ5599tnccpjGOU6ZMiWfX7hwYaOwmNTvp3PrGjs5YcKEDS0qAAAAmzMwprGMzz33XDz22GONjp911lkN/04tib17947DDjssXnrppdhxxx036L1SK+WYMWMa9lMLY9++fTe06AAAAGyqLqmjRo2KqVOnxsMPPxzbb7/9e167//7758c5c+bkxzS2cdGiRY2uqd9f17jH9u3bR8eOHRttAAAANKPAWKlUclj82c9+Fg899FAMGDDgfZ8za9as/JhaGpPBgwfH7373u1i8eHHDNQ888EAOgbvsssv6fwUAAABUv0tq6oY6efLkuPvuu/NajPVjDjt16hQdOnTI3U7T+aOOOiq6du2axzCef/75eQbVPfbYI1+bluFIwfC0006Lq666Kr/GuHHj8munlkQAAABqsIXxhhtuyDOjHnLIIbnFsH6744478vm0JEZaLiOFwoEDB8YFF1wQw4YNi3vuuafhNdq0aZO7s6bH1Nr42c9+Nq/DuPa6jQAAANRYC2Pqkvpe0kQ0jz766Pu+TppF9Re/+MX6vDUAAAC1tA4jAAAAWy6BEQAAgCKBEQAAgCKBEQAAgCKBEQAAgCKBEQAAgCKBEQAAgCKBEQAAgCKBEQAAgKK68mEA+P9GTpoRLcHoRUuqXQQAaFa0MAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFBUF+th4sSJMWXKlPjDH/4QHTp0iI9+9KNx5ZVXxs4779xwzYoVK+KCCy6IH//4x7Fy5coYOnRoXH/99dGzZ8+Ga+bNmxfnnHNOPPzww7HtttvG8OHD82vX1a1XcQCAzWD0onGb780md46acsod1S4BQPNpYXz00Ufj3HPPjSeffDIeeOCBeOutt+Lwww+P119/veGa888/P+65556488478/Uvv/xynHjiiQ3nV69eHUcffXSsWrUqnnjiibj11ltj0qRJMX78+Kb9ygAAANgorSqVSmVDn/zXv/41evTokYPhwQcfHEuXLo3u3bvH5MmT45Of/GS+JrVGDho0KKZPnx4HHHBA/PKXv4xjjjkmB8n6Vscbb7wxLr744vx67dq1e9/3XbZsWXTq1Cm/X8eOHTe0+AD8nUZOmhEtwWZtSaNor75aGAE2h783U23UGMb04kmXLl3y48yZM3Or45AhQxquGThwYPTr1y8HxiQ97r777o26qKZuq6nAzz//fPF9UtfWdH7tDQAAgE1rgwPjmjVr4rzzzosDDzwwdtttt3xs4cKFuYWwc+fGfx1M4TCdq79m7bBYf77+XEka35jSb/3Wt2/fDS02AAAAmzowprGMzz33XJ7cZlMbO3Zsbs2s3+bPn7/J3xMAAKCl26BpSUeNGhVTp06NX//617H99ts3HO/Vq1eezGbJkiWNWhkXLVqUz9Vf8/TTTzd6vXS+/lxJ+/bt8wYAAEAzbWFM8+OksPizn/0sHnrooRgwYECj8/vss0+0bds2pk2b1nBs9uzZeRmNwYMH5/30+Lvf/S4WL17ccE2acTUNtNxll102/isCAABg87cwpm6oaQbUu+++O7bbbruGMYdpXGFalzE9jhw5MsaMGZMnwkkhcPTo0TkkphlSk7QMRwqGp512Wlx11VX5NcaNG5dfWysiALRss+YviVpybTOYQfjmEftVuwjAFmy9AuMNN9yQHw855JBGx2+55ZYYMWJE/vc111wTrVu3jmHDhuXZTdMMqNdff33DtW3atMndWc8555wcJLfZZpsYPnx4XH755U3zFQEAALD5A+Pfs2TjVlttFdddd13e1qV///7xi1/8Yn3eGgAAgFqY9AaAGjb5pPV+yuhFtdVNEACo8rIaAAAAbNkERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAJomMP7617+OY489Nvr06ROtWrWKu+66q9H5ESNG5ONrb0cccUSja1599dU49dRTo2PHjtG5c+cYOXJkLF++fH2LAgAAQHMKjK+//nrsueeecd11163zmhQQFyxY0LD96Ec/anQ+hcXnn38+HnjggZg6dWoOoWedddaGfQUAAABsEnXr+4Qjjzwyb++lffv20atXr+K53//+93HffffFjBkzYt99983Hrr322jjqqKPi6quvzi2XAAAAbKFjGB955JHo0aNH7LzzznHOOefEK6+80nBu+vTpuRtqfVhMhgwZEq1bt46nnnqq+HorV66MZcuWNdoAAACoscCYuqPedtttMW3atLjyyivj0UcfzS2Sq1evzucXLlyYw+Ta6urqokuXLvlcycSJE6NTp04NW9++fZu62AAAAGxsl9T3c/LJJzf8e/fdd4899tgjdtxxx9zqeNhhh23Qa44dOzbGjBnTsJ9aGIVGAACAGl9WY4cddohu3brFnDlz8n4a27h48eJG17z99tt55tR1jXtMYyLTjKprbwAAANR4YPzLX/6SxzD27t077w8ePDiWLFkSM2fObLjmoYceijVr1sT++++/qYsDAADApuqSmtZLrG8tTObOnRuzZs3KYxDTNmHChBg2bFhuLXzppZfiS1/6UnzoQx+KoUOH5usHDRqUxzmeeeaZceONN8Zbb70Vo0aNyl1ZzZAKAABQwy2MzzzzTHzkIx/JW5LGFqZ/jx8/Ptq0aRPPPvts/PM//3PstNNOMXLkyNhnn33iN7/5Te5WWu/222+PgQMH5jGNaTmNgw46KG666aam/coAAADYvC2MhxxySFQqlXWev//++9/3NVJL5OTJk9f3rQEAANiSxjACAABQmwRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAigRGAAAAiurKhwEAeD+jF42rdhEiJneOZueUO6pdAqCJaGEEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgqK58GGDLNHLSjGjpRi9aUu0iAAA1QgsjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAATRMYf/3rX8exxx4bffr0iVatWsVdd93V6HylUonx48dH7969o0OHDjFkyJB48cUXG13z6quvxqmnnhodO3aMzp07x8iRI2P58uXrWxQAAACaU2B8/fXXY88994zrrruueP6qq66K7373u3HjjTfGU089Fdtss00MHTo0VqxY0XBNCovPP/98PPDAAzF16tQcQs8666yN+0oAAABoUnXr+4QjjzwybyWpdfE73/lOjBs3Lo477rh87LbbbouePXvmlsiTTz45fv/738d9990XM2bMiH333Tdfc+2118ZRRx0VV199dW65BAAAYAsbwzh37txYuHBh7oZar1OnTrH//vvH9OnT8356TN1Q68Nikq5v3bp1bpEsWblyZSxbtqzRBgAAQA0FxhQWk9SiuLa0X38uPfbo0aPR+bq6uujSpUvDNe80ceLEHDzrt759+zZlsQEAAKjVWVLHjh0bS5cubdjmz59f7SIBAABs8Zo0MPbq1Ss/Llq0qNHxtF9/Lj0uXry40fm33347z5xaf807tW/fPs+ouvYGAABADQXGAQMG5NA3bdq0hmNpvGEamzh48OC8nx6XLFkSM2fObLjmoYceijVr1uSxjgAAANToLKlpvcQ5c+Y0muhm1qxZeQxiv3794rzzzouvfe1r8eEPfzgHyEsvvTTPfHr88cfn6wcNGhRHHHFEnHnmmXnpjbfeeitGjRqVZ1A1QyoAAEANB8ZnnnkmPv7xjzfsjxkzJj8OHz48Jk2aFF/60pfyWo1pXcXUknjQQQflZTS22mqrhufcfvvtOSQedthheXbUYcOG5bUbAQAAaD5aVdLiiTUmdXNNs6WmCXCMZwTWx8hJM6KlG71oXLWLADShvfp2jmbnlDuqXQKgiTJVTcySCgAAwOYnMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFAkMAIAAFBUVz4MsAWYfNK7Do1etKQqRQEAqEVaGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACgSGAEAACiyDiMAQA2bNb/5rS977aQZ0dzdPGK/ahcBaoIWRgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIoERgAAAIrqyocBAGDDjF40Lpq9yZ03/3uecsfmf0/YSFoYAQAAKBIYAQAAKBIYAQAAKBIYAQAAKBIYAQAAKBIYAQAAKBIYAQAAKBIYAQAA2DyB8bLLLotWrVo12gYOHNhwfsWKFXHuuedG165dY9ttt41hw4bFokWLmroYAAAANMcWxl133TUWLFjQsD322GMN584///y455574s4774xHH300Xn755TjxxBM3RTEAAADYCHWb5EXr6qJXr17vOr506dK4+eabY/LkyXHooYfmY7fccksMGjQonnzyyTjggAM2RXEAAABoLi2ML774YvTp0yd22GGHOPXUU2PevHn5+MyZM+Ott96KIUOGNFybuqv269cvpk+fvs7XW7lyZSxbtqzRBgAAQI0Fxv333z8mTZoU9913X9xwww0xd+7c+NjHPhavvfZaLFy4MNq1axedO3du9JyePXvmc+syceLE6NSpU8PWt2/fpi42AAAAm7pL6pFHHtnw7z322CMHyP79+8dPfvKT6NChwwa95tixY2PMmDEN+6mFUWgEAACo8WU1UmviTjvtFHPmzMnjGletWhVLlixpdE2aJbU05rFe+/bto2PHjo02AAAAajwwLl++PF566aXo3bt37LPPPtG2bduYNm1aw/nZs2fnMY6DBw/e1EUBAACgml1SL7zwwjj22GNzN9S0ZMZXv/rVaNOmTXzmM5/J4w9HjhyZu5d26dIltxSOHj06h0UzpAIAAGzhgfEvf/lLDoevvPJKdO/ePQ466KC8ZEb6d3LNNddE69atY9iwYXn206FDh8b111/f1MUAAABgI7WqVCqVqDFp0pvUWpnWdTSeEVinySe969Cs+Y3HUAPQMu3Vt/Gs/ZvFKXds/veEjcxUm3wMIwAAALWpybukApvPyEkzql2EZm30Iq2JAAAbQwsjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARXXlw0AtGb1oXLWLAADAFkgLIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEUCIwAAAEV15cMAAECTmnxStUvQfJ1yR7VLwDpoYQQAAKBIYAQAAKBIYAQAAKDIGEYAAFqcWfOXVLsINWevvp2rXQSqQAsjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARQIjAAAARXXlw9AMTT6p2iVodkYvWlLtIgAAsAXTwggAAECRFkYAAOB9zZq/6Xo2XTtpRmypbh6xX9QyLYwAAAAUCYwAAAAUCYwAAAAUGcPYHJkNFAAAaAa0MAIAAFCkhZEtftYtAACgBgPjddddF9/61rdi4cKFseeee8a1114b//iP/xi1buRGTgtsMXYAAKBFd0m94447YsyYMfHVr341/vM//zMHxqFDh8bixYurVSQAAACaQwvjt7/97TjzzDPj9NNPz/s33nhj3HvvvfGDH/wgLrnkkkbXrly5Mm/1li5dmh+XLVsWzdGqN5dv1POXr3i7ycoCAADN3cb+/tycLWummaW+XJVK5T2va1V5vys2gVWrVsXWW28dP/3pT+P4449vOD58+PBYsmRJ3H333Y2uv+yyy2LChAmbu5gAAABbtPnz58f222/fvFoY//a3v8Xq1aujZ8+ejY6n/T/84Q/vun7s2LG5+2q9NWvWxKuvvhpdu3aNVq1aNVnC7tu3b/6GdezYsUlek01HfdUOdVVb1FftUFe1Q13VFvVVO9TVxknthq+99lr06dOn9mdJbd++fd7W1rlz503yXul/Nv/D1Q71VTvUVW1RX7VDXdUOdVVb1FftUFcbrlOnTs1z0ptu3bpFmzZtYtGiRY2Op/1evXpVo0gAAAA0h8DYrl272GeffWLatGmNupmm/cGDB1ejSAAAADSXLqlpTGKa5GbffffNay9+5zvfiddff71h1tTNLXV5TUt8vLPrK82T+qod6qq2qK/aoa5qh7qqLeqrdqirzaMqs6TW+973vhff+ta3YuHChbHXXnvFd7/73dh///2rVRwAAACaS2AEAACg+arKGEYAAACaP4ERAACAIoERAACAIoERAACAohYXGC+77LJo1apVo23gwIEN51esWBHnnntudO3aNbbddtsYNmxYLFq0qKplbqner64OOeSQd50/++yzq1rmlux//ud/4rOf/Wz+7HTo0CF23333eOaZZxrOp/m1xo8fH717987nhwwZEi+++GJVy9ySvV99jRgx4l2fryOOOKKqZW6JPvjBD76rHtKW7lOJe1Zt1Zf7VvOxevXquPTSS2PAgAH5Z+COO+4YV1xxRb5X1XPfqp26cs/aQtdhrKZdd901HnzwwYb9urr//204//zz4957740777wzOnXqFKNGjYoTTzwxHn/88SqVtmV7r7pKzjzzzLj88ssb9rfeeuvNWj7+r//93/+NAw88MD7+8Y/HL3/5y+jevXu+qX7gAx9ouOaqq67KS+fceuut+Yd++uE/dOjQeOGFF2Krrbaqavlbmr+nvpJ0s73lllsa9q1ztfnNmDEj/7JU77nnnotPfOIT8alPfSrvu2fVVn0l7lvNw5VXXhk33HBDviel3zXSH8zSWuDpc/Sv//qv+Rr3rdqpq8Q9a9NpkYExhY5evXq96/jSpUvj5ptvjsmTJ8ehhx6aj6X/8QYNGhRPPvlkHHDAAVUobcu2rrpa+0b7XufZfD/M+/bt2+gHdbq51kt/BfzOd74T48aNi+OOOy4fu+2226Jnz55x1113xcknn1yVcrdU71dfa99sfb6qK4X5tX3zm9/Mf13/p3/6J/esGquveu5bzcMTTzyR70dHH310Q+vwj370o3j66afzvvtW7dRVPfesTafFdUlN0l/S+/TpEzvssEOceuqpMW/evHx85syZ8dZbb+UuB/VSF8h+/frF9OnTq1jilmtddVXv9ttvj27dusVuu+0WY8eOjTfeeKNqZW3Jfv7zn8e+++6b/4reo0eP+MhHPhLf//73G87PnTs3Fi5c2Oizlf4yuP/++/tsNcP6qvfII4/k8zvvvHOcc8458corr1SlvPxfq1atih/+8Idxxhln5O5W7lm1VV/13Leah49+9KMxbdq0+OMf/5j3f/vb38Zjjz0WRx55ZN5336qduqrnnrXptLgWxvRBnzRpUv6facGCBTFhwoT42Mc+lruNpB8M7dq1i86dOzd6TvprUjpH86mr7bbbLk455ZTo379/DpTPPvtsXHzxxTF79uyYMmVKtYve4vz3f/937i4yZsyY+PKXv5y7ZaVuIunzNHz48IbPT/osrc1nq3nWV33XntS1MbU8vvTSS/m6dHNOvyi1adOm2l9Ci5RaNZYsWZLH6iTuWbVVX4n7VvNxySWXxLJly/IfWdLPtNSV+Otf/3r+43TivlU7dZW4Z21aLS4wrv3XiD322COHkvTD+yc/+UkeSEtt1NXIkSPjrLPOajifJuxIg9IPO+yw/IMidQFi81mzZk1usfrGN76R91OLVQr2N954Y0MAobbqa+3uVunzlT6D6XOV/oKbPmdsfqn7afq5mMIGtVlf7lvNR/pdIrX2pi7daVzcrFmz4rzzzsv15b5Ve3XlnrVptcguqWtLf5ndaaedYs6cObnfc+pCkv4iuLY045w+0c2rrkpSoEzWdZ5NJ/3Ss8suuzQ6lsZR1Xchrv/8vHP2Rp+t5llfJalbeOpG5/NVHX/+85/zBGCf//znG465Z9VWfZW4b1XPRRddlFuuUtBIAeO0007Lk0hNnDgxn3ffqp26KnHPalotPjAuX748/2Uv/QK1zz77RNu2bXM/6Xqpq0j6JWrw4MFVLSeN66ok/cUpWdd5Np0042b6rKwtjTVILcJJ6iKSbrBrf7ZS95KnnnrKZ6sZ1lfJX/7ylzwexOerOtJkNmlsTv2kD4l7Vm3VV4n7VvWksaOtWzf+NTh1XUw9MBL3rdqpqxL3rCZWaWEuuOCCyiOPPFKZO3du5fHHH68MGTKk0q1bt8rixYvz+bPPPrvSr1+/ykMPPVR55plnKoMHD84bzauu5syZU7n88stzHaXzd999d2WHHXaoHHzwwdUudov09NNPV+rq6ipf//rXKy+++GLl9ttvr2y99daVH/7whw3XfPOb36x07tw519Wzzz5bOe644yoDBgyovPnmm1Ute0v0fvX12muvVS688MLK9OnT8+frwQcfrOy9996VD3/4w5UVK1ZUu/gtzurVq/N96eKLL37XOfes2qkv963mZfjw4ZV/+Id/qEydOjXXx5QpU/LvGF/60pcarnHfqo26cs/a9FpcYDzppJMqvXv3rrRr1y7/z5f20w/xeumHwL/8y79UPvCBD+RfoE444YTKggULqlrmluq96mrevHn5JtulS5dK+/btKx/60IcqF110UWXp0qXVLnaLdc8991R22223XB8DBw6s3HTTTY3Or1mzpnLppZdWevbsma857LDDKrNnz65aeVu696qvN954o3L44YdXunfvXmnbtm2lf//+lTPPPLOycOHCqpa5pbr//vvT6tTFz4t7Vu3Ul/tW87Js2bLKF7/4xRzut9pqqxzev/KVr1RWrlzZcI37Vm3UlXvWptcq/aepWy0BAACofS1+DCMAAABlAiMAAABFAiMAAABFAiMAAABFAiMAAABFAiMAAABFAiMAAABFAiMAAABFAiMAAABFAiMAAABFAiMAAABR8n8AH/e2vUe9KYgAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import numpy as np\n", + "import torch\n", + "from leaspy.io.logs.visualization import Plotter\n", + "from leaspy.io.outputs import Result\n", + "\n", + "n_individuals = 2000\n", + "patient_ids = [str(i) for i in range(n_individuals)]\n", + "\n", + "df_longitudinal = pd.DataFrame({'ID': np.repeat(patient_ids, 3), 'TIME': np.tile([60, 70, 80], n_individuals), 'Y0': np.random.rand(n_individuals * 3)})\n", + "data = Data.from_dataframe(df_longitudinal)\n", + "\n", + "df_cofactors = pd.DataFrame({'gender': np.random.choice(['Male', 'Female'], size=n_individuals)}, index=patient_ids)\n", + "df_cofactors.index.name = 'ID'\n", + "data.load_cofactors(df_cofactors, cofactors=['gender'])\n", + "\n", + "individual_parameters = {'tau': torch.tensor(np.random.normal(70, 5, (n_individuals, 1))), 'xi': torch.tensor(np.random.normal(0, 0.5, (n_individuals, 1)))}\n", + "result_obj = Result(data, individual_parameters)\n", + "\n", + "Plotter().plot_distribution(result_obj, parameter='tau', cofactor='gender')" + ] + }, + { + "cell_type": "markdown", + "id": "d35263b9", + "metadata": {}, + "source": [ + "It is important to note that attaching external data to the class through `data.load_cofactors` is different from loading cofactors inside the model using `factory_kws`:\n", + "\n", + "| Feature | **Covariates** (via `factory_kws`) | **Cofactors** (via `load_cofactors`) |\n", + "| :--- | :--- | :--- |\n", + "| **Purpose** | Used **inside the model** to modulate parameters (e.g., in `CovariateLogisticModel`). | Used for **analysis/metadata** (e.g., plotting, stratification) but ignored by the model's math. |\n", + "| **Loading** | Loaded **during** `Data` creation. | Loaded **after** `Data` creation. |\n", + "| **Storage** | Stored as a `numpy.ndarray` in `individual.covariates`. | Stored as a `dict` in `individual.cofactors`. |\n", + "| **Constraints** | Must be **integers**, constant per individual, and have no missing values. | Can be any type (strings, floats, etc.). |\n" + ] + }, + { + "cell_type": "markdown", + "id": "689f4849", + "metadata": {}, + "source": [ + "### **Best Practice:**\n", + "Always create a `Data` object first. It validates your input and handles irregularities (missing visits, different timelines) gracefully.\n", + "\n", + "---\n", + "\n", + "## 2. The `Dataset` Class: The Internal Engine\n", + "\n", + "The `Dataset` class is the **high-performance numerical engine**. It converts the flexible `Data` object into rigid PyTorch Tensors optimized for mathematical computation.\n", + "\n", + "### What it does\n", + "* **Tensorization**: Converts all values to PyTorch tensors.\n", + "* **Padding**: Standardizes patient timelines by padding them to the maximum number of visits (creating a rectangular data block).\n", + "* **Masking**: Creates a binary mask to distinguish real data from padding.\n", + "\n", + "### When to use it explicitly?\n", + "You rarely need to instantiate `Dataset` yourself. However, it is useful for **optimization**:\n", + "1. **Memory Efficiency**: For massive datasets, convert `Data` $\\to$ `Dataset` and delete the original `Data`/`DataFrame` to free up RAM.\n", + "2. **Performance**: If you are running multiple models on the same data, creating a `Dataset` once prevents `leaspy` from repeating the conversion process for every `fit()` call.\n", + "\n", + "---\n", + "\n", + "## 3. Workflow & Best Practices\n", + "\n", + "### The Standard Workflow\n", + "The most common and recommended workflow is straightforward:\n", + "\n", + "```\n", + "[CSV / DataFrame] -> Data.from_dataframe() -> [Data Object] -> model.fit(data)\n", + "```\n", + "\n", + "Inside `model.fit(data)`, Leaspy automatically converts your `Data` object into a `Dataset` for computation.\n", + "\n", + "### Guidelines for `model.fit()`\n", + "\n", + "| Input Type | Verdict | Reason |\n", + "| :--- | :--- | :--- |\n", + "| **`Data` Object** | ✅ **Recommended** | **Safe & Standard.** Handles all model types (including Joint models) correctly. Easy to inspect before fitting. |\n", + "| **`Dataset` Object** | ⚡ **Optimization** | **Fast.** Use for heavy datasets or repeated experiments to skip internal conversion steps. |\n", + "| **`pd.DataFrame`** | ❌ **Avoid** | **Risky.** Fails for complex models (e.g., `JointModel`) that require specific loading parameters. Leads to inconsistent code. |" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "leaspy", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.19" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/sg_execution_times.rst b/docs/sg_execution_times.rst index d61d0c74c..ef8b3219e 100644 --- a/docs/sg_execution_times.rst +++ b/docs/sg_execution_times.rst @@ -6,7 +6,7 @@ Computation times ================= -**00:08.804** total execution time for 5 files **from all galleries**: +**00:37.949** total execution time for 5 files **from all galleries**: .. container:: @@ -32,16 +32,16 @@ Computation times * - Example - Time - Mem (MB) - * - :ref:`sphx_glr_auto_examples_plot_02_parkinson_example.py` (``../examples/plot_02_parkinson_example.py``) - - 00:08.118 + * - :ref:`sphx_glr_auto_examples_plot_01_quickstart.py` (``../examples/plot_01_quickstart.py``) + - 00:32.496 - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_03_joint.py` (``../examples/plot_03_joint.py``) - - 00:00.687 + * - :ref:`sphx_glr_auto_examples_plot_04_mixture.py` (``../examples/plot_04_mixture.py``) + - 00:05.454 - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_01_quickstart.py` (``../examples/plot_01_quickstart.py``) + * - :ref:`sphx_glr_auto_examples_plot_02_parkinson_example.py` (``../examples/plot_02_parkinson_example.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_04_mixture.py` (``../examples/plot_04_mixture.py``) + * - :ref:`sphx_glr_auto_examples_plot_03_joint.py` (``../examples/plot_03_joint.py``) - 00:00.000 - 0.0 * - :ref:`sphx_glr_auto_examples_plot_05_simulate.py` (``../examples/plot_05_simulate.py``) diff --git a/examples/plot_01_quickstart.py b/examples/plot_01_quickstart.py index 8d73547ea..0795579f7 100644 --- a/examples/plot_01_quickstart.py +++ b/examples/plot_01_quickstart.py @@ -39,10 +39,16 @@ # - For logistic models, data must be rescaled between 0 and 1. # ``` -from leaspy.io.data import Data, Dataset +from leaspy.io.data import Data data = Data.from_dataframe(alzheimer_df) -dataset = Dataset(data) + +# %% +# ```{seealso} +# For a deeper understanding of the `Data` and `Dataset` classes, including +# iteration, cofactors, and best practices, see the +# [Data Containers Guide](../data_summary.ipynb). +# ``` # %% # The core functionality of Leaspy is to estimate the group-average trajectory @@ -53,7 +59,7 @@ model = LogisticModel(name="test-model", source_dimension=2) model.fit( - dataset, + data, "mcmc_saem", seed=42, n_iter=100, @@ -65,7 +71,7 @@ # This is done using a personalization algorithm, here `scipy_minimize`: individual_parameters = model.personalize( - dataset, "scipy_minimize", seed=0, progress_bar=False, use_jacobian=False + data, "scipy_minimize", seed=0, progress_bar=False, use_jacobian=False ) print(individual_parameters.to_dataframe()) diff --git a/examples/plot_02_parkinson_example.py b/examples/plot_02_parkinson_example.py index 94308d830..7e4282bd4 100644 --- a/examples/plot_02_parkinson_example.py +++ b/examples/plot_02_parkinson_example.py @@ -44,7 +44,6 @@ # %% # Visualization utilities from Leaspy and Matplotlib are imported. import matplotlib.pyplot as plt - from leaspy.io.logs.visualization.plotting import Plotting leaspy_plotting = Plotting(model) @@ -116,13 +115,7 @@ ip, patients_idx=["GS-187"], labels=["MDS1", "MDS2", "MDS3 (off)"], - alpha=1, - linestyle="-", - linewidth=2, - markersize=8, - obs_alpha=0.5, figsize=(16, 6), - factor_past=0.5, factor_future=5, ) ax.set_xlim(45, 120) diff --git a/examples/plot_03_joint.py b/examples/plot_03_joint.py index 3c6da5c3c..a4602e31d 100644 --- a/examples/plot_03_joint.py +++ b/examples/plot_03_joint.py @@ -7,14 +7,11 @@ # %% # The following imports are required libraries for numerical computation and data manipulation. import os - import pandas as pd - import leaspy from leaspy.io.data import Data leaspy_root = os.path.dirname(leaspy.__file__) - data_path = os.path.join(leaspy_root, "datasets/data/simulated_data_for_joint.csv") df = pd.read_csv(data_path, dtype={"ID": str}, sep=";") diff --git a/examples/plot_04_mixture.py b/examples/plot_04_mixture.py index 7cb64a003..d3eae551d 100644 --- a/examples/plot_04_mixture.py +++ b/examples/plot_04_mixture.py @@ -8,21 +8,18 @@ # %% # The following imports are required libraries for numerical computation, data manipulation, and visualization. import os - import matplotlib.pyplot as plt import numpy as np import pandas as pd import torch - import leaspy -from leaspy.io.data import Data, Dataset +from leaspy.io.data import Data # %% # This toy example is part of a simulation study, carried out by Sofia Kaisaridi that will be included in # an article to be submitted in a biostatistics journal. The dataset contains 1000 individuals each with 6 visits and 6 scores. leaspy_root = os.path.dirname(leaspy.__file__) - data_path = os.path.join(leaspy_root, "datasets/data/simulated_data_for_mixture.csv") all_data = pd.read_csv(data_path, sep=";", decimal=",") @@ -34,7 +31,6 @@ from leaspy.models import LogisticMultivariateMixtureModel leaspy_data = Data.from_dataframe(all_data) -leaspy_dataset = Dataset(leaspy_data) # %% # Then we fit a model with 3 clusters and 2 sources. Note that we have an extra argument `n_clusters` than the @@ -48,7 +44,7 @@ obs_models="gaussian-diagonal", ) -model.fit(leaspy_dataset, "mcmc_saem", seed=1312, n_iter=100, progress_bar=False) +model.fit(leaspy_data, "mcmc_saem", seed=1312, n_iter=100, progress_bar=False) # %% # First we take a look in the population parameters. @@ -63,7 +59,6 @@ from torch.distributions import Normal - def get_ip(df_leaspy, model): """ leaspy_data : the dataframe with the correct indexing From acdaa87b33a86f57449755a4ceef805e0ca3db03 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 8 Dec 2025 17:28:51 +0100 Subject: [PATCH 10/24] first try to model.summary(), visible in examples gallery --- examples/plot_01_quickstart.py | 1 + examples/plot_03_joint.py | 1 + examples/plot_04_mixture.py | 1 + src/leaspy/models/base.py | 253 ++++++++++++++++++++++ src/leaspy/models/joint.py | 8 + src/leaspy/models/mcmc_saem_compatible.py | 29 +++ src/leaspy/models/mixture.py | 17 ++ 7 files changed, 310 insertions(+) diff --git a/examples/plot_01_quickstart.py b/examples/plot_01_quickstart.py index 0795579f7..504f23f83 100644 --- a/examples/plot_01_quickstart.py +++ b/examples/plot_01_quickstart.py @@ -65,6 +65,7 @@ n_iter=100, progress_bar=False, ) +model.summary() # %% # Leaspy can also estimate the *individual trajectories* of each participant. diff --git a/examples/plot_03_joint.py b/examples/plot_03_joint.py index a4602e31d..456ea1d1c 100644 --- a/examples/plot_03_joint.py +++ b/examples/plot_03_joint.py @@ -48,6 +48,7 @@ # Once the model is initialized, we can fit it to the data. model.fit(data, "mcmc_saem", seed=1312, n_iter=100, progress_bar=False) +model.summary() # %% diff --git a/examples/plot_04_mixture.py b/examples/plot_04_mixture.py index d3eae551d..8ef5ea3e5 100644 --- a/examples/plot_04_mixture.py +++ b/examples/plot_04_mixture.py @@ -45,6 +45,7 @@ ) model.fit(leaspy_data, "mcmc_saem", seed=1312, n_iter=100, progress_bar=False) +model.summary() # %% # First we take a look in the population parameters. diff --git a/src/leaspy/models/base.py b/src/leaspy/models/base.py index 268b974db..389e991d4 100644 --- a/src/leaspy/models/base.py +++ b/src/leaspy/models/base.py @@ -751,6 +751,259 @@ def fit( ) is None: return algorithm.run(self, dataset) + + def summary(self) -> None: + """Print a formatted summary of the model parameters. + + This method prints a statistical summary of the model. It displays the model's + population parameters (fixed effects), individual parameter + distributions (random effects), and noise estimates. + + Examples + -------- + >>> from leaspy.models import LogisticModel + >>> model = LogisticModel(name="test") + >>> model.fit(data, "mcmc_saem", n_iter=100) + >>> model.summary() + """ + if not self.is_initialized: + print("Model is not initialized. Call fit() first.") + return + + if self.parameters is None or len(self.parameters) == 0: + print("Model has no parameters. Call fit() first.") + return + + lines = [] + sep = "=" * 60 + + # Header + lines.append(sep) + lines.append(f"{'Model Summary':^60}") + lines.append(sep) + lines.append(f"Model Name: {self.name}") + lines.append(f"Model Type: {self.__class__.__name__}") + if self.features is not None: + lines.append(f"Features ({self.dimension}): {', '.join(self.features)}") + if (fm := getattr(self, "fit_metrics", None)) and (nll := fm.get("nll_tot")): + lines.append(f"Neg. Log-Likelihood: {nll:.4f}") + lines.append(sep) + + # Get parameter categories (from model or fallback) + if hasattr(self, "_param_categories"): + cats = self._param_categories + pop_params = cats.get("population", []) + ind_params = cats.get("individual_priors", []) + noise_params = cats.get("noise", []) + else: + # Fallback: all params as population + pop_params = sorted(self.parameters.keys()) + ind_params = [] + noise_params = [] + + # Population Parameters (Fixed Effects) + if pop_params: + lines.append("") + lines.append("Population Parameters") + lines.append("-" * 60) + lines.extend(self._format_parameter_group(pop_params)) + + # Individual Parameters (Random Effects) + if ind_params: + lines.append("") + lines.append("Individual Parameters") + lines.append("-" * 60) + lines.extend(self._format_parameter_group(ind_params)) + + # Noise Model + if noise_params: + lines.append("") + lines.append("Noise Model") + lines.append("-" * 60) + lines.extend(self._format_parameter_group(noise_params)) + + lines.append(sep) + + print("\n".join(lines)) + + def _format_parameter_group(self, param_names: list[str]) -> list[str]: + """Format a group of parameters, consolidating 1D parameters with the same axis. + + This method groups consecutive 1D parameters that share the same axis + to avoid repeating column headers. + + Parameters + ---------- + param_names : :obj:`list` [:obj:`str`] + List of parameter names to format. + + Returns + ------- + :obj:`list` [:obj:`str`] + List of formatted lines. + """ + lines = [] + axes_map = getattr(self, "_param_axes", {}) + + # Group consecutive 1D parameters with the same axis + i = 0 + while i < len(param_names): + name = param_names[i] + value = self.parameters[name] + axes = axes_map.get(name, ()) + + # Check if this is a 1D parameter with axis labels + if value.ndim == 1 and len(axes) >= 1: + axis_name = axes[0] + n = len(value) + + # Collect consecutive 1D params with the same axis and size + group = [(name, value)] + j = i + 1 + while j < len(param_names): + next_name = param_names[j] + next_value = self.parameters[next_name] + next_axes = axes_map.get(next_name, ()) + if (next_value.ndim == 1 and + len(next_axes) >= 1 and + next_axes[0] == axis_name and + len(next_value) == n): + group.append((next_name, next_value)) + j += 1 + else: + break + + # Format the group with a single header + if len(group) > 1: + col_labels = self._get_axis_labels(axis_name, n) + if col_labels: + header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) + lines.append(header) + for gname, gvalue in group: + row = f" {gname:<18}" + " ".join( + f"{v.item():>8.4f}" for v in gvalue + ) + lines.append(row) + i = j + continue + + # Default: format individually + lines.append(self._format_parameter(name, value)) + i += 1 + + return lines + + def _format_parameter(self, name: str, value: torch.Tensor) -> str: + """Format a single parameter for display in the summary. + + Uses axis metadata from `_param_axes` (if defined) to create + properly labeled tables for multi-dimensional parameters. + + Parameters + ---------- + name : :obj:`str` + The name of the parameter. + value : :class:`torch.Tensor` + The tensor value of the parameter. + + Returns + ------- + :obj:`str` + A formatted string representation of the parameter. + """ + # Get axis labels if available + axes = getattr(self, "_param_axes", {}).get(name, ()) + + if value.ndim == 0: + # Scalar + val_str = f"{value.item():.4f}" + return f" {name:<18} {val_str}" + + elif value.ndim == 1: + # 1D tensor - format as table with column headers + n = len(value) + if n > 10: + return f" {name:<18} Tensor of shape ({n},)" + + axis_name = axes[0] if len(axes) >= 1 else None + col_labels = self._get_axis_labels(axis_name, n) + + if col_labels: + # Create table format for 1D with labeled columns + header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) + values = f" {name:<18}" + " ".join( + f"{v.item():>8.4f}" for v in value + ) + return header + "\n" + values + else: + # Simple list format + val_str = "[" + ", ".join(f"{v.item():.4f}" for v in value) + "]" + return f" {name:<18} {val_str}" + + elif value.ndim == 2: + rows, cols = value.shape + if rows > 8 or cols > 8: + return f" {name:<18} Tensor of shape {tuple(value.shape)}" + + row_axis = axes[0] if len(axes) >= 1 else None + col_axis = axes[1] if len(axes) >= 2 else None + + row_labels = self._get_axis_labels(row_axis, rows) + col_labels = self._get_axis_labels(col_axis, cols) + + lines = [f" {name}:"] + + # Column headers + if col_labels: + header = " " * 12 + " ".join(f"{lbl:>8}" for lbl in col_labels) + lines.append(header) + + # Data rows + for i, row in enumerate(value): + row_lbl = row_labels[i] if row_labels else f"[{i}]" + row_str = f" {row_lbl:<8}" + " ".join(f"{v.item():>8.4f}" for v in row) + lines.append(row_str) + + return "\n".join(lines) + + else: + return f" {name:<18} Tensor of shape {tuple(value.shape)}" + + def _get_axis_labels(self, axis_name: Optional[str], size: int) -> Optional[list[str]]: + """Get human-readable labels for an axis dimension. + + Parameters + ---------- + axis_name : :obj:`str` or None + The semantic name of the axis (e.g., 'feature', 'source', 'cluster'). + size : :obj:`int` + The size of the axis. + + Returns + ------- + :obj:`list` [:obj:`str`] or None + A list of labels, or None if no meaningful labels available. + """ + if axis_name is None: + return None + + if axis_name == "feature": + if hasattr(self, "features") and self.features is not None: + # Use actual feature names (truncated), respecting the actual size + feats = self.features[:size] # In case size < len(features) + return [f[:8] if len(f) <= 8 else f[:7] + "." for f in feats] + return [f"f{i}" for i in range(size)] + elif axis_name == "source": + return [f"s{i}" for i in range(size)] + elif axis_name == "cluster": + return [f"c{i}" for i in range(size)] + elif axis_name == "event": + return [f"e{i}" for i in range(size)] + elif axis_name == "basis": + # For basis vectors (e.g., in betas_mean), use generic indices + return [f"b{i}" for i in range(size)] + else: + return [f"{axis_name[:1]}{i}" for i in range(size)] @staticmethod def _get_dataset( diff --git a/src/leaspy/models/joint.py b/src/leaspy/models/joint.py index 0810d74b8..7f080d9fe 100644 --- a/src/leaspy/models/joint.py +++ b/src/leaspy/models/joint.py @@ -49,6 +49,14 @@ class JointModel(LogisticModel): init_tolerance: float = 0.3 + # Extend axis definitions for JointModel-specific parameters + _param_axes = { + **LogisticModel._param_axes, + "n_log_nu_mean": ("event",), + "log_rho_mean": ("event",), + "zeta_mean": ("source", "event"), + } + def __init__(self, name: str, **kwargs): super().__init__(name, **kwargs) self._configure_observation_models() diff --git a/src/leaspy/models/mcmc_saem_compatible.py b/src/leaspy/models/mcmc_saem_compatible.py index ce32dc8c6..3f450eb4b 100644 --- a/src/leaspy/models/mcmc_saem_compatible.py +++ b/src/leaspy/models/mcmc_saem_compatible.py @@ -60,6 +60,35 @@ class McmcSaemCompatibleModel(StatefulModel): Private instance holding all values for model variables and their derived variables. """ + # Base parameter categories for summary display (override in subclasses) + _individual_prior_params: tuple[str, ...] = () + _noise_params: tuple[str, ...] = ("noise_std",) + + # Explicit axis labels for multi-dimensional parameters + # Maps param_name -> tuple of axis names, e.g., ("feature",) or ("feature", "source") + # Subclasses can extend this with: _param_axes = {**ParentClass._param_axes, "new_param": ("axis",)} + _param_axes: dict[str, tuple[str, ...]] = { + "log_g_mean": ("feature",), + "log_g_std": ("feature",), + "log_v0_mean": ("feature",), + "betas_mean": ("basis", "source"), # basis vectors, not features (dim-1) + "mixing_matrix": ("source", "feature"), + "noise_std": ("feature",), + } + + @property + def _param_categories(self) -> dict[str, list[str]]: + """Categorize parameters for summary display.""" + ind_priors = set(self._individual_prior_params) + noise = set(self._noise_params) + all_params = set(self.parameters.keys()) if self.parameters else set() + pop = all_params - ind_priors - noise + return { + "population": sorted(k for k in pop if k in all_params), + "individual_priors": sorted(k for k in ind_priors if k in all_params), + "noise": sorted(k for k in noise if k in all_params), + } + def __init__( self, name: str, diff --git a/src/leaspy/models/mixture.py b/src/leaspy/models/mixture.py index 4ece300f5..87f371d99 100644 --- a/src/leaspy/models/mixture.py +++ b/src/leaspy/models/mixture.py @@ -78,6 +78,23 @@ class TimeReparametrizedMixtureModel(McmcSaemCompatibleModel): _tau_std = 5.0 _noise_std = 0.1 _sources_mean = 0 + + # Override: in mixture models, tau/xi/sources means define cluster centers (population-level) + _individual_prior_params = ("tau_std", "xi_std", "sources_std") + _noise_params = ("noise_std",) + + # Extend base _param_axes with mixture-specific cluster-indexed parameters + _param_axes = { + **McmcSaemCompatibleModel._param_axes, + "tau_mean": ("cluster",), + "tau_std": ("cluster",), + "xi_mean": ("cluster",), + "xi_std": ("cluster",), + "sources_mean": ("source", "cluster"), + "sources_std": ("source", "cluster"), + "probs": ("cluster",), + } + _sources_std = 1.0 @property From 720b0c4b1775c90dfbbfc8c7531aed5e3464dd9e Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 10 Dec 2025 14:58:48 +0100 Subject: [PATCH 11/24] Implement `model.summary()` for formatted model inspection - Added `summary()` method to `BaseModel` to print a structured overview of model parameters. - Displays metadata including features, sources, clusters, and fit metrics (e.g., log-likelihood). - Categorizes parameters into Population, Individual (Random Effects), and Noise groups. - Implemented smart formatting: - Groups consecutive 1D parameters with shared axes. - Aligns columns for 2D parameters. - Sorts tables by column count to optimize layout. - Added support for ANSI bold text and text wrapping for long lists. --- src/leaspy/models/base.py | 63 +++++++++++++++++------ src/leaspy/models/mcmc_saem_compatible.py | 35 +++++++++++-- src/leaspy/models/mixture.py | 4 +- 3 files changed, 81 insertions(+), 21 deletions(-) diff --git a/src/leaspy/models/base.py b/src/leaspy/models/base.py index 389e991d4..6ffccd82c 100644 --- a/src/leaspy/models/base.py +++ b/src/leaspy/models/base.py @@ -775,18 +775,51 @@ def summary(self) -> None: return lines = [] - sep = "=" * 60 + width = 90 + sep = "=" * width + + # ANSI escape codes for bold text + BOLD = "\033[1m" + RESET = "\033[0m" + + def wrap_text(label: str, text: str, indent: int = 0) -> list[str]: + """Wrap text to fit within the table width.""" + import textwrap + prefix = f"{label}: " if label else "" + initial_indent = " " * indent + prefix + subsequent_indent = " " * (indent + len(prefix)) + wrapper = textwrap.TextWrapper( + width=width, + initial_indent=initial_indent, + subsequent_indent=" " * (indent + 4), # Fixed indent for subsequent lines + break_long_words=False, + break_on_hyphens=False + ) + return wrapper.wrap(text) # Header lines.append(sep) - lines.append(f"{'Model Summary':^60}") + lines.append(f"{BOLD}{'Model Summary':^{width}}{RESET}") lines.append(sep) - lines.append(f"Model Name: {self.name}") - lines.append(f"Model Type: {self.__class__.__name__}") + lines.append(f"{BOLD}Model Name:{RESET} {self.name}") + lines.append(f"{BOLD}Model Type:{RESET} {self.__class__.__name__}") + if self.features is not None: - lines.append(f"Features ({self.dimension}): {', '.join(self.features)}") + feat_str = ", ".join(self.features) + lines.extend(wrap_text(f"{BOLD}Features ({self.dimension}){RESET}", feat_str)) + + # Sources + if hasattr(self, "source_dimension") and self.source_dimension is not None: + sources = [f"Source {i} (s{i})" for i in range(self.source_dimension)] + lines.extend(wrap_text(f"{BOLD}Sources ({self.source_dimension}){RESET}", ", ".join(sources))) + + # Clusters (for Mixture models) + if hasattr(self, "n_clusters") and self.n_clusters is not None: + clusters = [f"Cluster {i} (c{i})" for i in range(self.n_clusters)] + lines.extend(wrap_text(f"{BOLD}Clusters ({self.n_clusters}){RESET}", ", ".join(clusters))) + if (fm := getattr(self, "fit_metrics", None)) and (nll := fm.get("nll_tot")): - lines.append(f"Neg. Log-Likelihood: {nll:.4f}") + lines.append(f"{BOLD}Neg. Log-Likelihood:{RESET} {nll:.4f}") lines.append(sep) # Get parameter categories (from model or fallback) @@ -804,22 +837,22 @@ def summary(self) -> None: # Population Parameters (Fixed Effects) if pop_params: lines.append("") - lines.append("Population Parameters") - lines.append("-" * 60) + lines.append(f"{BOLD}Population Parameters{RESET}") + lines.append("-" * width) lines.extend(self._format_parameter_group(pop_params)) # Individual Parameters (Random Effects) if ind_params: lines.append("") - lines.append("Individual Parameters") - lines.append("-" * 60) + lines.append(f"{BOLD}Individual Parameters{RESET}") + lines.append("-" * width) lines.extend(self._format_parameter_group(ind_params)) # Noise Model if noise_params: lines.append("") - lines.append("Noise Model") - lines.append("-" * 60) + lines.append(f"{BOLD}Noise Model{RESET}") + lines.append("-" * width) lines.extend(self._format_parameter_group(noise_params)) lines.append(sep) @@ -955,13 +988,13 @@ def _format_parameter(self, name: str, value: torch.Tensor) -> str: # Column headers if col_labels: - header = " " * 12 + " ".join(f"{lbl:>8}" for lbl in col_labels) + header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) lines.append(header) # Data rows for i, row in enumerate(value): row_lbl = row_labels[i] if row_labels else f"[{i}]" - row_str = f" {row_lbl:<8}" + " ".join(f"{v.item():>8.4f}" for v in row) + row_str = f" {row_lbl:<8}" + " ".join(f"{v.item():>8.4f}" for v in row) lines.append(row_str) return "\n".join(lines) @@ -998,7 +1031,7 @@ def _get_axis_labels(self, axis_name: Optional[str], size: int) -> Optional[list elif axis_name == "cluster": return [f"c{i}" for i in range(size)] elif axis_name == "event": - return [f"e{i}" for i in range(size)] + return None elif axis_name == "basis": # For basis vectors (e.g., in betas_mean), use generic indices return [f"b{i}" for i in range(size)] diff --git a/src/leaspy/models/mcmc_saem_compatible.py b/src/leaspy/models/mcmc_saem_compatible.py index 3f450eb4b..bf0bf9e7d 100644 --- a/src/leaspy/models/mcmc_saem_compatible.py +++ b/src/leaspy/models/mcmc_saem_compatible.py @@ -61,7 +61,17 @@ class McmcSaemCompatibleModel(StatefulModel): """ # Base parameter categories for summary display (override in subclasses) - _individual_prior_params: tuple[str, ...] = () + + _individual_prior_params: tuple[str, ...] = ( + "tau_mean", + "tau_std", + "xi_mean", + "xi_std", + "sources_mean", + "sources_std", + "zeta_mean" + ) + _noise_params: tuple[str, ...] = ("noise_std",) # Explicit axis labels for multi-dimensional parameters @@ -83,10 +93,27 @@ def _param_categories(self) -> dict[str, list[str]]: noise = set(self._noise_params) all_params = set(self.parameters.keys()) if self.parameters else set() pop = all_params - ind_priors - noise + + def sort_key(name: str) -> tuple[int, str, str]: + # Sort by number of columns (ascending), then primary axis, then name + val = self.parameters[name] + axes = self._param_axes.get(name, ()) + primary_axis = axes[0] if axes else "" + + n_cols = 1 + if val.ndim == 1 and axes: + # Check if this axis produces labeled columns + if self._get_axis_labels(primary_axis, len(val)) is not None: + n_cols = len(val) + elif val.ndim == 2: + n_cols = val.shape[1] + + return (n_cols, primary_axis, name) + return { - "population": sorted(k for k in pop if k in all_params), - "individual_priors": sorted(k for k in ind_priors if k in all_params), - "noise": sorted(k for k in noise if k in all_params), + "population": sorted((k for k in pop if k in all_params), key=sort_key), + "individual_priors": sorted((k for k in ind_priors if k in all_params), key=sort_key), + "noise": sorted((k for k in noise if k in all_params), key=sort_key), } def __init__( diff --git a/src/leaspy/models/mixture.py b/src/leaspy/models/mixture.py index 87f371d99..341e74ecb 100644 --- a/src/leaspy/models/mixture.py +++ b/src/leaspy/models/mixture.py @@ -59,7 +59,7 @@ class TimeReparametrizedMixtureModel(McmcSaemCompatibleModel): source_dimension : Optional[:obj:`int`] Number of sources. Dimension of spatial components (default is None). **kwargs: :obj:`dict` - Additional hyperparameters for the model. Must include: + Additional hyperparameters for the model. Must include: - 'n_clusters': int Number of mixture components (must be ≥ 2). - 'dimension' or 'features': int or list @@ -80,7 +80,7 @@ class TimeReparametrizedMixtureModel(McmcSaemCompatibleModel): _sources_mean = 0 # Override: in mixture models, tau/xi/sources means define cluster centers (population-level) - _individual_prior_params = ("tau_std", "xi_std", "sources_std") + _individual_prior_params = ("tau_std", "xi_std", "sources_std", "tau_mean", "xi_mean") _noise_params = ("noise_std",) # Extend base _param_axes with mixture-specific cluster-indexed parameters From b8325c1358268f60dfdbc87879cc277fb9aa9e7f Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 12 Dec 2025 11:46:38 +0100 Subject: [PATCH 12/24] Key changes: - `model.summary()` now returns a feat: Enhance model summary with rich object and programmatic access Refactors `model.summary()` to return a new `Summary` data object instead of printing directly. This provides a richer, more interactive experience. Key changes: - `model.summary()` now returns a object. - The object auto-prints when not assigned to a variable, preserving the old fire-and-forget behavior. - When assigned (), it provides programmatic access to attributes. - A new method allows fetching any model parameter by name. - A method is included to guide users on available attributes (`summary.help()`). - now captures dataset and training metadata. - and now persist and restore this new metadata. - The method was also added to provide a quick overview of model configuration and data statistics. --- src/leaspy/models/base.py | 640 +++++++++++++++++++++++++++++----- src/leaspy/models/settings.py | 5 +- 2 files changed, 556 insertions(+), 89 deletions(-) diff --git a/src/leaspy/models/base.py b/src/leaspy/models/base.py index 6ffccd82c..8bcfe0618 100644 --- a/src/leaspy/models/base.py +++ b/src/leaspy/models/base.py @@ -1,8 +1,10 @@ +import textwrap import warnings from abc import ABC, abstractmethod +from dataclasses import dataclass, field from enum import Enum from pathlib import Path -from typing import Optional, Union +from typing import Any, Optional, Union import numpy as np import pandas as pd @@ -19,9 +21,374 @@ "InitializationMethod", "BaseModel", "ModelInterface", + "Summary", ] +@dataclass +class Summary: + """A structured summary of a Leaspy model. + + Provides programmatic access to model metadata, parameters, and training + statistics. Calling `model.summary()` prints the summary; storing it in a + variable allows access to individual attributes. + + Use `s.help()` to see all available attributes and usage examples. + + Examples + -------- + >>> model.summary() # Prints the formatted summary + >>> s = model.summary() # Store to access attributes + >>> s.algorithm # 'mcmc_saem' + >>> s.seed # 42 + >>> s.n_subjects # 150 + >>> s.get_param('tau_std') # tensor([10.5]) + >>> s.help() # Show all available attributes + """ + + name: str + model_type: str + dimension: Optional[int] = None + features: Optional[list[str]] = None + source_dimension: Optional[int] = None + n_clusters: Optional[int] = None + obs_models: Optional[list[str]] = None + nll: Optional[float] = None + training_info: dict = field(default_factory=dict) + dataset_info: dict = field(default_factory=dict) + parameters: dict[str, dict[str, Any]] = field(default_factory=dict) + leaspy_version: Optional[str] = None + _param_axes: dict = field(default_factory=dict, repr=False) + _feature_names: Optional[list[str]] = field(default=None, repr=False) + _printed: bool = field(default=False, repr=False) + + # Formatting constants + _WIDTH: int = field(default=80, repr=False) + _BOLD: str = field(default="\033[1m", repr=False) + _RESET: str = field(default="\033[0m", repr=False) + + def __post_init__(self): + """Print the summary automatically when created (unless suppressed).""" + pass # Printing is handled in __del__ if not stored + + def __del__(self): + """Print summary if it was never accessed or printed.""" + if not self._printed: + print(str(self)) + + def __repr__(self) -> str: + """Mark as printed and return the formatted string.""" + self._printed = True + return str(self) + + def __getattribute__(self, name: str) -> Any: + """Mark as printed when any public attribute is accessed.""" + # Always use object.__getattribute__ to avoid recursion + value = object.__getattribute__(self, name) + # Mark as printed for public attribute access (not private/dunder) + if not name.startswith("_") and name not in ("help",): + object.__setattr__(self, "_printed", True) + return value + + def __str__(self) -> str: + """Return a formatted string representation of the summary.""" + # Don't mark as printed here - let __repr__ or __del__ handle it + lines = [] + sep = "=" * self._WIDTH + + # Header + lines.append(sep) + lines.append(f"{self._BOLD}{'Model Summary':^{self._WIDTH}}{self._RESET}") + lines.append(sep) + lines.append(f"{self._BOLD}Model Name:{self._RESET} {self.name}") + lines.append(f"{self._BOLD}Model Type:{self._RESET} {self.model_type}") + + if self.features is not None: + feat_str = ", ".join(self.features) + lines.extend(self._wrap_text(f"{self._BOLD}Features ({self.dimension}){self._RESET}", feat_str)) + + if self.source_dimension is not None: + sources = [f"Source {i} (s{i})" for i in range(self.source_dimension)] + lines.extend(self._wrap_text(f"{self._BOLD}Sources ({self.source_dimension}){self._RESET}", ", ".join(sources))) + + if self.n_clusters is not None: + clusters = [f"Cluster {i} (c{i})" for i in range(self.n_clusters)] + lines.extend(self._wrap_text(f"{self._BOLD}Clusters ({self.n_clusters}){self._RESET}", ", ".join(clusters))) + + if self.obs_models: + lines.extend(self._wrap_text(f"{self._BOLD}Observation Models{self._RESET}", ", ".join(self.obs_models))) + + if self.nll is not None: + lines.append(f"{self._BOLD}Neg. Log-Likelihood:{self._RESET} {self.nll:.4f}") + + # Training Metadata + if self.training_info: + lines.append("") + lines.append(f"{self._BOLD}Training Metadata{self._RESET}") + lines.append("-" * self._WIDTH) + ti = self.training_info + lines.append(f"Algorithm: {ti.get('algorithm', 'N/A')}") + if "seed" in ti: + lines.append(f"Seed: {ti['seed']}") + lines.append(f"Iterations: {ti.get('n_iter', 'N/A')}") + if ti.get("converged") is not None: + lines.append(f"Converged: {ti['converged']}") + if "duration" in ti: + lines.append(f"Duration: {ti['duration']}") + + # Data Context + if self.dataset_info: + lines.append("") + lines.append(f"{self._BOLD}Data Context{self._RESET}") + lines.append("-" * self._WIDTH) + di = self.dataset_info + lines.append(f"Subjects: {di.get('n_subjects', 'N/A')}") + lines.append(f"Visits: {di.get('n_visits', 'N/A')}") + lines.append(f"Total Observations: {di.get('n_observations', 'N/A')}") + + # Leaspy Version + if self.leaspy_version: + lines.append("") + lines.append(f"Leaspy Version: {self.leaspy_version}") + + lines.append(sep) + + # Parameters by category + for category, params in self.parameters.items(): + if params: + lines.append("") + lines.append(f"{self._BOLD}{category}{self._RESET}") + lines.append("-" * self._WIDTH) + lines.extend(self._format_parameter_group(params)) + + lines.append(sep) + return "\n".join(lines) + + # ------------------------------------------------------------------------- + # Convenience properties for common attributes + # ------------------------------------------------------------------------- + + @property + def sources(self) -> Optional[list[str]]: + """List of source names (e.g., ['s0', 's1']) or None if not applicable.""" + if self.source_dimension is None: + return None + return [f"s{i}" for i in range(self.source_dimension)] + + @property + def clusters(self) -> Optional[list[str]]: + """List of cluster names (e.g., ['c0', 'c1']) or None if not applicable.""" + if self.n_clusters is None: + return None + return [f"c{i}" for i in range(self.n_clusters)] + + @property + def algorithm(self) -> Optional[str]: + """Name of the algorithm used for training.""" + return self.training_info.get("algorithm") + + @property + def seed(self) -> Optional[int]: + """Random seed used for training.""" + return self.training_info.get("seed") + + @property + def n_iter(self) -> Optional[int]: + """Number of iterations used for training.""" + return self.training_info.get("n_iter") + + @property + def converged(self) -> Optional[bool]: + """Whether the training algorithm converged.""" + return self.training_info.get("converged") + + @property + def n_subjects(self) -> Optional[int]: + """Number of subjects in the training dataset.""" + return self.dataset_info.get("n_subjects") + + @property + def n_visits(self) -> Optional[int]: + """Total number of visits in the training dataset.""" + return self.dataset_info.get("n_visits") + + @property + def n_observations(self) -> Optional[int]: + """Total number of observations in the training dataset.""" + return self.dataset_info.get("n_observations") + + def get_param(self, name: str) -> Optional[Any]: + """Get a parameter value by name, searching across all categories. + + Parameters + ---------- + name : str + The parameter name (e.g., 'betas_mean', 'tau_std', 'noise_std'). + + Returns + ------- + The parameter value (typically a torch.Tensor), or None if not found. + """ + for category_params in self.parameters.values(): + if name in category_params: + return category_params[name] + return None + + def help(self) -> None: + """Print information about available Summary attributes and their meanings.""" + help_text = f""" +{self._BOLD}Summary Help{self._RESET} +{'=' * 60} + +The Summary object provides access to model metadata and parameters. + +{self._BOLD}Usage:{self._RESET} + model.summary() # Print the formatted summary + s = model.summary() # Store to access individual attributes + +{self._BOLD}Available Attributes:{self._RESET} + + {self._BOLD}Model Information:{self._RESET} + name Model name (str) + model_type Model class name, e.g., 'LogisticModel' (str) + dimension Number of features (int) + features List of feature names (list[str]) + sources List of source names, e.g., ['s0', 's1'] (list[str] or None) + clusters List of cluster names, e.g., ['c0', 'c1'] (list[str] or None) + source_dimension Number of sources (int or None) + n_clusters Number of clusters (int or None) + obs_models Observation model names (list[str] or None) + + {self._BOLD}Training:{self._RESET} + algorithm Algorithm name, e.g., 'mcmc_saem' (str) + seed Random seed used (int) + n_iter Number of iterations (int) + converged Whether training converged (bool or None) + nll Negative log-likelihood (float or None) + + {self._BOLD}Dataset:{self._RESET} + n_subjects Number of subjects in training data (int) + n_visits Total number of visits (int) + n_observations Total number of observations (int) + + {self._BOLD}Parameters:{self._RESET} + parameters All parameters grouped by category (dict) + get_param(name) Get a specific parameter by name + + {self._BOLD}Other:{self._RESET} + training_info Full training metadata dict + dataset_info Full dataset statistics dict + leaspy_version Leaspy version used (str) + +{self._BOLD}Note:{self._RESET} + Attributes returning None indicate the model does not support + that feature or the information was not generated. + +{self._BOLD}Examples:{self._RESET} + >>> s = model.summary() + >>> s.algorithm # 'mcmc_saem' + >>> s.seed # 42 + >>> s.n_subjects # 150 + >>> s.get_param('tau_std') # tensor([10.5]) +""" + print(help_text) + self._printed = True + + def _wrap_text(self, label: str, text: str, indent: int = 0) -> list[str]: + """Wrap text to fit within the display width.""" + prefix = f"{label}: " if label else "" + initial_indent = " " * indent + prefix + subsequent_indent = " " * (indent + 4) + wrapper = textwrap.TextWrapper( + width=self._WIDTH, + initial_indent=initial_indent, + subsequent_indent=subsequent_indent, + break_long_words=False, + break_on_hyphens=False + ) + return wrapper.wrap(text) + + def _format_parameter_group(self, params: dict[str, Any]) -> list[str]: + """Format a group of parameters for display.""" + lines = [] + for name, value in params.items(): + if isinstance(value, torch.Tensor): + lines.append(self._format_tensor(name, value)) + else: + lines.append(f" {name:<18} {value}") + return lines + + def _format_tensor(self, name: str, value: torch.Tensor) -> str: + """Format a tensor parameter for display.""" + axes = self._param_axes.get(name, ()) + + if value.ndim == 0: + return f" {name:<18} {value.item():.4f}" + + elif value.ndim == 1: + n = len(value) + if n > 10: + return f" {name:<18} Tensor of shape ({n},)" + + axis_name = axes[0] if len(axes) >= 1 else None + col_labels = self._get_axis_labels(axis_name, n) + + if col_labels: + header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) + values = f" {name:<18}" + " ".join(f"{v.item():>8.4f}" for v in value) + return header + "\n" + values + else: + val_str = "[" + ", ".join(f"{v.item():.4f}" for v in value) + "]" + return f" {name:<18} {val_str}" + + elif value.ndim == 2: + rows, cols = value.shape + if rows > 8 or cols > 8: + return f" {name:<18} Tensor of shape {tuple(value.shape)}" + + row_axis = axes[0] if len(axes) >= 1 else None + col_axis = axes[1] if len(axes) >= 2 else None + + row_labels = self._get_axis_labels(row_axis, rows) + col_labels = self._get_axis_labels(col_axis, cols) + + result = [f" {name}:"] + if col_labels: + header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) + result.append(header) + + for i, row in enumerate(value): + row_lbl = row_labels[i] if row_labels else f"[{i}]" + row_str = f" {row_lbl:<8}" + " ".join(f"{v.item():>8.4f}" for v in row) + result.append(row_str) + + return "\n".join(result) + + else: + return f" {name:<18} Tensor of shape {tuple(value.shape)}" + + def _get_axis_labels(self, axis_name: Optional[str], size: int) -> Optional[list[str]]: + """Get human-readable labels for an axis dimension.""" + if axis_name is None: + return None + + if axis_name == "feature": + if self._feature_names is not None: + feats = self._feature_names[:size] + return [f[:8] if len(f) <= 8 else f[:7] + "." for f in feats] + return [f"f{i}" for i in range(size)] + elif axis_name == "source": + return [f"s{i}" for i in range(size)] + elif axis_name == "cluster": + return [f"c{i}" for i in range(size)] + elif axis_name == "event": + return None + elif axis_name == "basis": + return [f"b{i}" for i in range(size)] + else: + return None + + class InitializationMethod(str, Enum): """Possible initialization methods for Leaspy models. @@ -388,6 +755,35 @@ def simulate( """ raise NotImplementedError + def _compute_dataset_statistics(self, dataset: Dataset) -> dict: + """Compute descriptive statistics of the dataset used for training.""" + stats = { + "n_subjects": dataset.n_individuals, + "n_scores": dataset.dimension, + "n_visits": dataset.n_visits, + "n_observations": int(dataset.mask.sum().item()), + } + + # Per-subject observations + visits_per_ind = np.array(dataset.n_visits_per_individual) + stats["visits_per_subject"] = { + "median": float(np.median(visits_per_ind)), + "min": int(np.min(visits_per_ind)), + "max": int(np.max(visits_per_ind)), + "iqr": float(np.percentile(visits_per_ind, 75) - np.percentile(visits_per_ind, 25)) + } + + # Missing data (Total possible points - observed points) + total_possible = stats["n_visits"] * stats["n_scores"] + stats["n_missing"] = total_possible - stats["n_observations"] + stats["pct_missing"] = (stats["n_missing"] / total_possible) * 100 if total_possible > 0 else 0.0 + + # Joint model specific + if getattr(dataset, "event_bool", None) is not None: + stats["n_events"] = int(dataset.event_bool.sum().item()) + + return stats + class BaseModel(ModelInterface): """Base model class from which all ``Leaspy`` models should inherit. @@ -403,6 +799,8 @@ def __init__(self, name: str, **kwargs): ) self._features: Optional[list[FeatureType]] = user_provided_features self._dimension: Optional[int] = user_provided_dimension + self.dataset_info = {} + self.training_info = {} self.initialization_method: InitializationMethod = InitializationMethod.DEFAULT if "initialization_method" in kwargs: self.initialization_method = InitializationMethod( @@ -664,6 +1062,8 @@ def to_dict(self, **kwargs) -> KwargsType: "parameters": { k: tensor_to_list(v) for k, v in (self.parameters or {}).items() }, + "dataset_info": self.dataset_info, + "training_info": self.training_info, } @classmethod @@ -692,6 +1092,11 @@ def load(cls, path_to_model_settings: Union[str, Path]): reader = ModelSettings(path_to_model_settings) instance = model_factory(reader.name, **reader.hyperparameters) instance.load_parameters(reader.parameters) + + # Load extra info if available + instance.dataset_info = reader.dataset_info + instance.training_info = reader.training_info + instance._is_initialized = True return instance @@ -750,115 +1155,174 @@ def fit( ) ) is None: return + + # Compute and store dataset statistics + self.dataset_info = self._compute_dataset_statistics(dataset) + + # Store training metadata + self.training_info = { + "algorithm": algorithm.name, + "seed": algorithm.seed, + "n_iter": algorithm.algo_parameters.get("n_iter"), + "converged": getattr(algorithm, "converged", None) # If algorithm tracks this + } + algorithm.run(self, dataset) - def summary(self) -> None: - """Print a formatted summary of the model parameters. - - This method prints a statistical summary of the model. It displays the model's - population parameters (fixed effects), individual parameter - distributions (random effects), and noise estimates. - - Examples - -------- - >>> from leaspy.models import LogisticModel - >>> model = LogisticModel(name="test") - >>> model.fit(data, "mcmc_saem", n_iter=100) - >>> model.summary() - """ - if not self.is_initialized: - print("Model is not initialized. Call fit() first.") - return - - if self.parameters is None or len(self.parameters) == 0: - print("Model has no parameters. Call fit() first.") - return - + def info(self) -> None: + """Print detailed information about the model configuration and training dataset.""" lines = [] - width = 90 + width = 80 sep = "=" * width - - # ANSI escape codes for bold text BOLD = "\033[1m" RESET = "\033[0m" - def wrap_text(label: str, text: str, indent: int = 0) -> list[str]: - """Wrap text to fit within the table width.""" - import textwrap - prefix = f"{label}: " if label else "" - initial_indent = " " * indent + prefix - subsequent_indent = " " * (indent + len(prefix)) - wrapper = textwrap.TextWrapper( - width=width, - initial_indent=initial_indent, - subsequent_indent=" " * (indent + 4), # Fixed indent for subsequent lines - break_long_words=False, - break_on_hyphens=False - ) - return wrapper.wrap(text) - - # Header lines.append(sep) - lines.append(f"{BOLD}{'Model Summary':^{width}}{RESET}") + lines.append(f"{BOLD}{'Model Information':^{width}}{RESET}") lines.append(sep) - lines.append(f"{BOLD}Model Name:{RESET} {self.name}") - lines.append(f"{BOLD}Model Type:{RESET} {self.__class__.__name__}") - if self.features is not None: - feat_str = ", ".join(self.features) - lines.extend(wrap_text(f"{BOLD}Features ({self.dimension}){RESET}", feat_str)) + # Statistical Model Info + lines.append(f"{BOLD}Statistical Model{RESET}") + lines.append("-" * width) + lines.append(f"Type: {self.__class__.__name__}") + lines.append(f"Name: {self.name}") + lines.append(f"Dimension: {self.dimension}") + if hasattr(self, "source_dimension"): + lines.append(f"Source Dimension: {self.source_dimension}") + + # Observation Models + if hasattr(self, "obs_models"): + obs_names = [om.to_string() for om in self.obs_models] + lines.append(f"Observation Models: {', '.join(obs_names)}") + + # Parameter count + if self.parameters: + n_params = sum(p.numel() for p in self.parameters.values()) + lines.append(f"Total Parameters: {n_params}") - # Sources - if hasattr(self, "source_dimension") and self.source_dimension is not None: - sources = [f"Source {i} (s{i})" for i in range(self.source_dimension)] - lines.extend(wrap_text(f"{BOLD}Sources ({self.source_dimension}){RESET}", ", ".join(sources))) - - # Clusters (for Mixture models) if hasattr(self, "n_clusters") and self.n_clusters is not None: - clusters = [f"Cluster {i} (c{i})" for i in range(self.n_clusters)] - lines.extend(wrap_text(f"{BOLD}Clusters ({self.n_clusters}){RESET}", ", ".join(clusters))) - - if (fm := getattr(self, "fit_metrics", None)) and (nll := fm.get("nll_tot")): - lines.append(f"{BOLD}Neg. Log-Likelihood:{RESET} {nll:.4f}") - lines.append(sep) - - # Get parameter categories (from model or fallback) - if hasattr(self, "_param_categories"): - cats = self._param_categories - pop_params = cats.get("population", []) - ind_params = cats.get("individual_priors", []) - noise_params = cats.get("noise", []) - else: - # Fallback: all params as population - pop_params = sorted(self.parameters.keys()) - ind_params = [] - noise_params = [] + clusters = self.n_clusters + lines.append(f"Clusters: {clusters}") - # Population Parameters (Fixed Effects) - if pop_params: - lines.append("") - lines.append(f"{BOLD}Population Parameters{RESET}") - lines.append("-" * width) - lines.extend(self._format_parameter_group(pop_params)) - # Individual Parameters (Random Effects) - if ind_params: + # Dataset Info + if self.dataset_info: lines.append("") - lines.append(f"{BOLD}Individual Parameters{RESET}") + lines.append(f"{BOLD}Training Dataset{RESET}") lines.append("-" * width) - lines.extend(self._format_parameter_group(ind_params)) - - # Noise Model - if noise_params: + di = self.dataset_info + lines.append(f"Subjects: {di.get('n_subjects', 'N/A')}") + lines.append(f"Visits: {di.get('n_visits', 'N/A')}") + lines.append(f"Scores (Features): {di.get('n_scores', 'N/A')}") + lines.append(f"Total Observations: {di.get('n_observations', 'N/A')}") + + if "visits_per_subject" in di: + vps = di["visits_per_subject"] + lines.append(f"Visits per Subject: Median {vps['median']:.1f} [Min {vps['min']}, Max {vps['max']}, IQR {vps['iqr']:.1f}]") + + if "n_missing" in di: + lines.append(f"Missing Data: {di['n_missing']} ({di.get('pct_missing', 0):.2f}%)") + + if "n_events" in di: + lines.append(f"Events Observed: {di['n_events']}") + + # Training Info + if self.training_info: lines.append("") - lines.append(f"{BOLD}Noise Model{RESET}") + lines.append(f"{BOLD}Training Details{RESET}") lines.append("-" * width) - lines.extend(self._format_parameter_group(noise_params)) + ti = self.training_info + lines.append(f"Algorithm: {ti.get('algorithm', 'N/A')}") + if "seed" in ti: + lines.append(f"Seed: {ti['seed']}") + lines.append(f"Iterations: {ti.get('n_iter', 'N/A')}") + if ti.get("converged") is not None: + lines.append(f"Converged: {ti['converged']}") lines.append(sep) - print("\n".join(lines)) + def summary(self) -> Summary: + """Generate a structured summary of the model. + + When called directly (e.g., `model.summary()`), prints a formatted summary. + When stored in a variable, provides programmatic access to model attributes. + + Returns + ------- + :class:`Summary` + A structured summary object. + + Raises + ------ + :exc:`.LeaspyModelInputError` + If the model is not initialized or has no parameters. + + Examples + -------- + >>> model.summary() # Prints the summary + >>> s = model.summary() # Store to access attributes + >>> s.nll # Get specific value + >>> s.help() # Show available attributes + """ + if not self.is_initialized: + raise LeaspyModelInputError("Model is not initialized. Call fit() first.") + + if self.parameters is None or len(self.parameters) == 0: + raise LeaspyModelInputError("Model has no parameters. Call fit() first.") + + # Get NLL if available + nll = None + if (fm := getattr(self, "fit_metrics", None)) and (nll_val := fm.get("nll_tot")): + nll = float(nll_val) + + # Get observation model names if available + obs_model_names = None + if hasattr(self, "obs_models"): + obs_model_names = [om.to_string() for om in self.obs_models] + + # Get leaspy version + try: + from leaspy import __version__ as version + except ImportError: + version = None + + # Build parameters dictionary grouped by category + params_by_category = {} + if hasattr(self, "_param_categories"): + cats = self._param_categories + cat_names = { + "population": "Population Parameters", + "individual_priors": "Individual Parameters", + "noise": "Noise Model", + } + for cat_key, display_name in cat_names.items(): + param_names = cats.get(cat_key, []) + if param_names: + params_by_category[display_name] = { + name: self.parameters[name] for name in param_names if name in self.parameters + } + else: + # Fallback: all params under "Parameters" + params_by_category["Parameters"] = dict(self.parameters) + + return Summary( + name=self.name, + model_type=self.__class__.__name__, + dimension=self.dimension, + features=self.features, + source_dimension=getattr(self, "source_dimension", None), + n_clusters=getattr(self, "n_clusters", None), + obs_models=obs_model_names, + nll=nll, + training_info=dict(self.training_info), + dataset_info=dict(self.dataset_info), + parameters=params_by_category, + leaspy_version=version, + _param_axes=getattr(self, "_param_axes", {}), + _feature_names=self.features, + ) + def _format_parameter_group(self, param_names: list[str]) -> list[str]: """Format a group of parameters, consolidating 1D parameters with the same axis. diff --git a/src/leaspy/models/settings.py b/src/leaspy/models/settings.py index 51183e7cb..8d2bd46d4 100644 --- a/src/leaspy/models/settings.py +++ b/src/leaspy/models/settings.py @@ -50,10 +50,13 @@ def __init__(self, path_to_model_settings_or_dict: Union[str, dict]): ModelSettings._check_settings(settings) self.name: str = settings["name"].lower() self.parameters: KwargsType = settings["parameters"] + self.dataset_info: dict = settings.get("dataset_info", {}) + self.training_info: dict = settings.get("training_info", {}) + self.hyperparameters: KwargsType = { k.lower(): v for k, v in settings.items() - if k not in ("name", "parameters", "hyperparameters", "leaspy_version") + if k not in ("name", "parameters", "hyperparameters", "leaspy_version", "dataset_info", "training_info") } @staticmethod From c42e13c90c5c3653ee801a1ef1bafe048fe49515 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 15 Dec 2025 14:15:50 +0100 Subject: [PATCH 13/24] Patching the models tests: as we generate new info to use in summary(), the test failed. For now we will just skip testing the from the new keys in this test, TODO: create a separate test for summary() and info() --- tests/functional_tests/api/test_api_fit.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/functional_tests/api/test_api_fit.py b/tests/functional_tests/api/test_api_fit.py index 054c8842c..ba0df9211 100644 --- a/tests/functional_tests/api/test_api_fit.py +++ b/tests/functional_tests/api/test_api_fit.py @@ -124,6 +124,14 @@ def check_model_consistency( None, ) + # Don't compare training metadata - these are informational and vary by run + # The core model parameters are still fully verified + # TODO (Sebastian): we need to create a separated file to thest model.summary and + # model.info, as this file is centered to the model results. + for key in ["dataset_info", "training_info"]: + model_parameters_new.pop(key, None) + expected_model_parameters.pop(key, None) + self.assertDictAlmostEqual( model_parameters_new, expected_model_parameters, **allclose_kwds ) From f754fe08dc10dd3fecf71ce98a43ccfcbb94bb30 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 5 Jan 2026 11:22:41 +0100 Subject: [PATCH 14/24] fixing favicon error display --- browser/static/favicon.png | Bin 23670 -> 0 bytes docs/_static/favicon.png | Bin 0 -> 18986 bytes docs/conf.py | 3 +++ 3 files changed, 3 insertions(+) delete mode 100644 browser/static/favicon.png create mode 100644 docs/_static/favicon.png diff --git a/browser/static/favicon.png b/browser/static/favicon.png deleted file mode 100644 index 3f24afb0b8836a32565438a74a7a1ef3b547b243..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 23670 zcmeFXWn3javoE@E_hE1bhXDq6cOBf_-QC^Y-F0vn+}+*X-DLrTE#S=a?)U7y@4n}J zy`OG(r>jy`|D;mMuREPiguJXc5J;u(EcXPFbe?Wziq7l z(ti&9zv&;$zo?s=8=Zx%m6MTyy$PM2quF0Mcs}@lVtVr-{)_*s1E?#guKy))_7WOS z008pfKM5>_1{v=!uGm6Z-C14cCzp|(4V{6pouLVxyN&%nC;*Q;*I(Ag#Mywz-NxG1 ziOZdr-6td{cRt;yMaADBOL?%{|V%5 zVftV0{XbCuX#TG-6L*XM3+x}wf583~jQ{YF=Wj&0gdI%`ob4Qy?d+`i{%2qE(Em@1 z|7sx5Kb~;OIa-+f4beY=;A7;W|9{E;oBcm7a0%O4+c_%P8yK1VWBxxy|I=FD!rjDL zL&Un39tQz zy#BDSz&K?0%}t@c>Fpywhq5FJD{-8l;j1}x_7Q*omeW7Nxgz<#jXy%D6*u`QHqsM5dVsU zd0X7Q?3{kN8AVb8XAGy+GHpih*dtqQhqsZJx0zQ$+D+J}v{ye7EIgkd*_hqDh6(uT zaLMCE<5WP`2TaQ$J7x>DrOeE|Y(4D-^!7#6ZiU|!3_4kC%svv{hi^XB4U|h`J#jeSdh?AhefTM&mpO@VDnNfPi z^?l>fhu>f$w9?x|y+#XGxK<=XR3AF1t^;4(<&JwMA?eNWxWloU^B@+S=FF)aLvpu% z=sj&J^kB32HOr*zH=(&5c5eW`BJxOEvJ0h2RyI5Q1w8r~0=GzEJzL77YK^vrjvhbA zv1F27i4h@Fb@Rz0OTMAe9%qCAzs26Ki3oco(JU%}@}s7N^HY00Ajb|%2Nlx9l4Lc(^E%pUjHRG7EWAfE{(N9cd_8$$?jnQ1pEMXk6DXzVi z6HF;4nbZc9rw;kb0g-G`50)yade!(gNB8LZk3=g^5S1|`P&3U|)TCw22cxXtZW>TZ zdP-_zg1O}4dtib0B&2wD5H`7H2Dvk-c=cmImU-)yW!rtDc_Ko%lGhL+jugHRic#M{ zW3zCK@jo&PWvG|5wmSmbe&bGHxGUTOW|0!iNv`;UdLTxD&NG!?UUo0<*e%1`Q!=F# z?aiEXj@e@>OJ@$vCO?C#M$}YFazy%7Wcw9rtb!K5K=I-+GzidH&;+B}pPJQih4(5# z>lumoKg;;&(3vfdHE#4nYfZk5;SsQO|PzeYj{o6Gc6y*y}K1&5a-W1^*YH{$TjZ1E{#~0@_asY((Gj$Iu(w}S zId5^)8e6Zk>V`cV=L;+J){KNcuw}D>j%>F|2ZO|BJ?$80M$}5|5iD?e$TW`tmYkrg zZg7OVYA&QXq7p&{Wt)S4L$V`{8NC1GD&wsd)n0Jo6CCQD6W4*i^GkNcu0}THY58k^ zho#PAM2#YBl|FbUeohQH;sL`7L+)9nAZF~kTDQ%gPBY=Cq5U@J)0Ss-nesyqK!5Q< zi4GGy&*|H+8U~zEF6fx|2ld#at1M>e9B);iYr%Ng?Yi_0&iGQd>^kS>?$z)62`WN*?Xp1r_J?;}H)w9c;}4{Z zU+6tF>D#4aPfrR$9FvWUVyfmuv|6@7zI7h)AT`wahaPYKE578R*QWwFDiSQxlA%!f zt{(EQSFRo;LEm)~&Qa*bA0r|+7g1OnJDEId`iWQ;VWY<>V9mU;{aZ-!*`HlQne^FC zBW23-&wi2{d|)KJ*lRvjHmj^~>|o;HTkisxkx+}OCHd<0$p;KZE*5I~YYe`tU)?qO zlyC|5tV47bYB!UF6Ca$M(Q*!Juf2*##=SH>Q>~M~&-gF2PvYrbb?;T%_=&&9d%hU3 zbyP}G*p?rqK7COd$^xQM|H)sS+#e z1k`r38$lnXoxo*T&G|(G#$)D2^{A3-!XSJzA}bBI@B8q-;IcVtw{pOOdt@5rZ`FTyL^nWfr?~E+oFbyl?RgmRe!wY zFyX6u(;lcF z-D5#IWBd%bh*GI@@a^d7jptn))_+)SFM}sh%vU6-&}dGdS0<}z{G!Fh;J^gu@!x7U;7a@qXB7PA>&Kt1s)o@{Tm-^_LdYIErCkNYjV(NCardt9U*`DAc%{)Y@)4F*~M47QwDfggA9=i)&T*$g!|7~tl6Rg_$cTEVPrMPg{kA-&vNj)aDjpiMg8ojjaGH!48f%5cF2fPQqw)65XKvd(%R{mKm-8BgvFz8d`d`a0$KnTgA-v|+G7 z{!AMiJ&hjOMXib}n&^_m)4?`H+hQ#GaIy6csgvPX{^`Iap>>=caXvi>69Y z*jZC7>L?RPa|9c632&B637r+{RQ}Kbal->rrRb4@yB&6PKKF@Rt{XDm-pwl_SRBTO zv-l^xZ$6gASv8z}zo$_0Gr37JB#Pz#&^XV19g0vYR;DQf?k2-Dx%;rK}7(PB{`yYW}z@M^Zf z_b67g)N^W0k>!L3m(6p4QLLEBO+;k$Ft*O_P{lvO(`Ep%a({cez#7l~4VKo2GhUFG2!7~}YLy=t*&Vsw3%y+!9wSEvfYHzOhQU`^qX|-9Y>|w{ol8*YB-%vH zyOR1#32Umkb)zt~X6%$f@Wz0?bLbXSK2$q5dHr6@G{e=`S`7R!J0H7Z{Ue*@x~x1< zH*+s@Fc3XrgcDtiyjZ)-$inOuA|ov;LziGpP|&5UO4>RtM`(Lr__cq}0f<63P1PST zv<%slL2h)R4(8|kodvWq%CtjU{?dF#OPwCF^pa|rmZqa)sqkY6huIXi-Zn|(&69YY z?FBX@wdWwru1lrFa#IVDy{-2A{7VDot6piHYdHV;pq4@gTe-d1&%I||c zx|p+|q2WvK3o&jeJE2CrvzprNX=A~)&a2kX&=bH%SiH zoK66ZA(Jk={uEO}lS|qt#1@Kkh_*ENjOf8Y2!q?lz@~!UYU%_Tp&Ha6@%7<*;*Kgq z)V=#Bl*AeN!fjr41=H7_wq;A+PY}f0p|VLa>LB(c8A0JtS0AnOdwoBlW(=i-Y*4PvV$A8qeeI406%z!TuY6g1|6ow_^4jsnkj zUc*7f^;*i&6tV3;lg!gEFa*l&MhZ0r<1W5Abyb=R^p-Ef0Wo{msEeu_rD+IsJnpS7 z3(Nb{f3U$IdpeyRM~}k6Mp~Mh5ac^6oKqH3rryiDjHb-SM|*yR8bfq-Ek&!sOxIG# zysmO1jqv24Jz}h;U!aPmdtu6}ugmKMJ1EOOfdOKsfoakSk7#<{$zfnYK?m*Mj|*EX zp!RTUmAx@jAG}ZT{G>~AetkZjGap~1t-PZVlzxbA9O1vKKWURn#pQ8-nhZ_`+8^}~ z_cqn`;fCjYJ*MN6E-%J8c9QOzzWg=+Xq0*m=ZG?3YU*m9=NGTgZhM`17qI6Gqhn^H z){Wh2?>F~iv ziY#X~)?rjgl6V{;1xB9kB0t9xS`GbvtYXKN$7`;tzIWu^5h?8V4oK_@0I471+*SBY z%rVg3uhlo?zG!T2Q&$X(ySGHJWLA{}`Iq2dyX)tT(`C=r8 zt@Vh%1M%4+>$qx4Du4sKU3l^pNmBh9)Bdwv)|6p%BsL7a>(nDHc3YIRhawRk0KKP8 zaZceE$IGXBfph#T-7;s&8Dd6|qQFU_rTjv*NJviO#O zL+MbZ^SP^N+XQW``=NA8o9&O=PlEXIh33l-UD_tDQFZH_P6(sfN32ABLSdH`Syfw{&<0)`ONdD*w2cS)o+$IGca%* ze);6o3a=X#5@7{Q@8e-G;UHj+jVNGi>l(4VFQt#Ku&8L@SHPr}cFN3=Eg`4tC*L(Q;s?;aexhK|cVnlTnIgwn8G^<7tS-7s4Z(AY{?%mw>Y>{MW>}1m@D?0>Je%wPxKxQsQmrmdi1h!MO(SPJLo$C`X%1p?DH$Z z{t1z*ZboxcY{9O0K{fuWbB=)TPAmY)ql2;&SJi~hx6euE zm0Qtbqf3G$V`r`4Vx_M<^}3<4~uuDyL-AmTmE za5W`iJjwWS{d`?d5hT)NRcrHOs?X$@M#fv3wtN494K*C$5z(@+eqMh)jd6zaprK`PaantIxw$!5 zI13{3==Oof7F3)dmmn8j%nozvCc_j?k;v4S>*ZTNtQOLM#y}sk72V%G{LZ9@mD-&k zLeO}VVA58a`Xpn8Go3Lt7VLGR_vvwuanU7&BSeEosczvG2jZ0w5Cc z@py0xP_~WgrBpYZ?zZMI?GYL8@WR)CvMt_K<&{aoMcar%z!%?Ta5@Byv2K3ptL=Xb~vy!0n%eI0GmtCuA3@{Wk)k{W328y;rlQ4;iEG5B=k}?o> zvBZq9E4ni3eOgvR=qqQwg7mK{hBTdBsFH@QEfg=|U5Lx&J^&rxi9}K31nC6DVWNr~ zj;dkg&KyqhE&U=>&oQRhZmT4-)~L@t%uU&Af%z(Q(7iZsT`Zo8FUt5!iW$~*T+6B+ z1ANI`j#pDtlPlfE;|rXU*u;2V09in@Sh{4AEH7eSVr|g?zfeK0cqUjKo~-?f&rkJ~ z(dSl9$N+Uyzb~(Sc3)|qGsL{_?(J-IrPmV98-ck$BQv<4gyxt0ysDeIG`cE}xXiiw zd6TW;5Oi3`VJtP?;#~VhN%jl#W9o|3H5+s5Ki)h0u9wzj2U|b-}0FY!Hcycq1=Dz2liw0L$ z-nLWY&3Y0gCbqqEQBJmkMkH(yK)F1=EepH6KcZx|#y(cq^?W99zP4Xp9wF{phk9Vb zSnN3cY$x&dX3{!e7e=`dMn=R!S&|GeGgA+|h&ze=o@eWwYgU``lIoF5%#alVy72h2 ziyRIs6kOGdD((a@ZfL#fAJeJjk0?LA$oHan=f`>xr2W3k1v=4_TqM|qbr|E9kSC)qHiSPAz+lWFg%>R zOM#{kmIYOxSJ%uQ#C8np25owF3`M`w)rttaJ%(NJ9fQH>#4|Gjy*-OzMf>Te4wnVK zwJIgQy1CB6?sBmkD?tnHl5X(jzKu3@giHF-QH~&0)Y|W5s%gZBc+#0Y!=Ioc2*i~Y zorENBlSFQd4kyeHHKhUsZc-woE)bKl;M4V}!XA>H-yicPS%IOUdy6 ziD1<38er{Z^(iF--I8IF})Tk9KD}l%Hpv@b6zzAu%brrRCKM<|plXWuA+fkyzb~ zy{<|B6pEwV8wXq#Z~+*)@NkmQfT^b8qx+Y-_KNlCBd7cJb}nC<9TDWz*c)+lD_b!L zyQlBp_;DKB;B1cFQNIPFWhaDl;E|1?T>TCvAM_x5`1a60|5)4Oy5n@=XsOeai%O+U z9v$5(MU=)eEwvO&*lp)&{`%!Bo{#?#r`Lwz3sgY{84W!>DFZ~vjG0e*I<2D|K|xps6IZ&r24-t{#Jwh`tVGK^nHxUp!<_KrF) z;@b|liz|Ro*j=s7a0!YTcdttaZyWRIXC`u8p$rkB0VNFGb%eSteSN@CicD_b<7YtL zOA8il>&eHdgPWNMsXGM4vuWs&DW)?%f919W<&M=d1^-XIZ2c^_!P$6|*j#E?S89yD zWXHYJY*9DTO`X#?GE%@qZOE51H*^Or0dEDd1bwqawAa}M*q<+n=21K{_EpI{+`{J( zpqHIZXRtnX+rg~CAE~>bRE%~D9=LZ!yq~+)Z}Ccmi!a1q)~Oj7luI>?edV?~fCQ0n zwT?+|DG7SHec2+GsnoO&JxbzweCO-1zF-`c3d*~wcK`nHkcZ7Te13hq#6s!s zaMTP4p`+5s_NMEpNT)xCx|*7r+CtLlLBIH{DdQLlgF!prFt?GN_4KKu5&C%C34gA( zps?0|{_1_WJbQ1a(|Ed#dFrCSQn(cH>`-QUhxeInI-te&-i)?1mYH<>hcn0X+upu* z?o(G?LnXnRKdDSUf`^K;L*OA%%kg#KBj1<(-_&U;I;cp>f{7_VTHT`dHR*ZRoTH$w z_qiXuEF$cs(7&xQCfOqn2p~=wE1zMl=mp;_Hl5;U7s4>t;~$Y>d_}|AP$&14-S7JK zSzmR6<)D}jZb*S>1wDC;Rk>X`xky0kmsQrjJ}B|k0n(!RIrW#7h_~jZ$|+CL1!>U- z-DqtyF>t~RCImnslSzgICOY{<@)<|{qU$d>K>Ou>h9a%|*6d8*gYMfUX#%~mkfpm4 zh0mq=@KTnBJ$K5IkS7#}L?^QT1$-dYEJl&D>CkR114y^aes6}XIJ6>~1Xd4-foMde z!VGF#V6wH^K;bhuQZgfH>7m5opw^;(4WaETuL#%JZ#Wbx9Sr9!^h;$nMDG7SfqN#s zVHz&2=0HR^rfDl7MLT_HMO=!YNmv`!hn-+!Wly2m34dm&ETV6~{{xZy)oW=Az5o_v9ONb&rZS+%}%uDDTY zJrK8IW!jVz>|Rtqj7!yZ%qoQbuJfD7sr`z1tu%x?Y8LYic=v}Bi1#|4%$W1H%M7dY zjD$KUkrxXvob$5es?5yo6LLrG-U9YbkrATt{g5BW~R1 z@F7nV@!fd}c*pB5q6*bBF)P&^kzD+G1Ybl)BLW#(bZ1OVAqDM&|J_Kj5V69`ZSAld z_!795QsodOW@aUMq)4v9j5vYcctQ`i)atMoiAhtXP$ZVpOKnpfPvj9z4T~6MD#Q zDiST5u3MthWBm@V8BlwdRpO_SVV80zn;E07tzuR#bS<<9zY`Hb^(cd!#l>57LFWP?*dt1{(d(Bf;f-xIn9$D( zjKf=@>g%=(lFU|E28MT{lzCB1J+{$bAVE-Qe>4f7{OaKq-_pg=p{kU0XE)1kKy`E9 zP_OP@GpD&fPj-A7B}s68@i=rNY4I3k5mAA<^EuKm#ogQL4}~f;yAJ`;gdXtQYW_*m z@jas-;J=IglgoPMp<`PV8dL_ml!9M)m)W?iybz|i!=y&r(|9^!_IE{JuS#{S#(>uL z8(!vFgjj{E+CVko*+%VRrS+r40Bcy8VkTy-n4!eFldzl^(XY`-o?jJ;1QjK=SD1Nz z-A9r1C1#ZnDpO?2|h9>8}VGz#1Dx@Z&x9ST?_*w|NsbRMp=e zcwLVcp&l7g8$pNHLf*;DuvG|QwQZ`37<*UK z?5zD*Sy5$S6txyht?YJo24fY#1tEj4dD zL#%#vQbx_?3D;+Kbl!w-xQAEbFL+6CS&5{fbc#a8b&4e${@ECkEN|IiRbah*n985i z!E}2{#{LlX-9gx}0#cT(m6!yt?%g!Ud-(|r!c9+)yM2?WvZCOOy+#WMnn5bq{R=KP zU9VS%XM5ijne>j6j&%Irma<=8C>2vRCQrVRdhc+u{xVB-=5Bt>uKO@t8e2RQi}wp0 zZ&q>u^Lmm$VI)B{_P3>T-74(tKe8Mim6hSi8o|Kjc(xFLl!vCWEpG_FDJUI}r!W8` zf2MJ4%nh%o_iT)-K&a%Bw9*!tst3C!bu~0eU=sM?PUvDrz}kK?)!0lxUKmZEBZ)iq zB>Hq2>F2AhRgHMxz!a<+73#}`P`HUlo2Vsj??%}#nsSGp`$!8m`4oK*`gI!d9SWEB zq<%4!rk#Z3e2!?(rUGYBZK^wAF1)rs?~=81q3(}c&aHkb%D3>4OMvd$)=#M)sK9hE zfs0c_#M*ST)T<&$H|fx`RP11eFiSn&Z2@?6FNn==uH=IXriDViV5AyoQ|TH0N3AUI zg$xc;4Cr2fY9*37Y`fTR{2wSRoDjesjcaD4T0$9lgVH`WCK-k*F`B3PSMb5e0J5qv z6Q|J-b&>cl|-Rfn|s5WP}9^RMeAc4a(M z5wNRD-x0NS9e#uZSs(Y>Z_c^GX&(FlFGm{?B!Ez_t$HrMMJiZtp1B-R48z~MAvzLO zJr~0%2@T#|e_x&{319+;x2E)+GMq17fA|8wKQMM%b#mL_zV&g0g^R8dffLOa=$$V% z8zqRV2hHsD0!=i0(ILgD1+XzJ0@CNG!X)=K6ci7|9-26>a7(T?R}eE1xOpb7hN}-HZ=gBJ z0X#869uEBJ{*eahZz{`;(y&d!D`TL=q&N=;zB@dovU;ewhrFF90@Xv{%l*xqr;|2Y z^>OLnd5pEf$_lE(rxqkRry7Uvulb2@G^24i^DH9MW`wt)H<)(4&@a7%qF8ikp266| z%038Iz*#jr3X9?sPR!&4e~)H(r>9HafOfxdEIBg$&5zqogG4ZHmOfuhE^>Rc!2=ve z`dmYOH#Cs{Tdl|i%g(45eUP3VgDV|^wI3AtTBc&b>Q_%Ti5pM2#oiZzc$`Bq41~4x zh%Z3&4bm5}->Cvx!uG_3CMD52qx@iQ(Y*GNIf(4IP=KOkNI?^1(%U7;^}>z0#X~pW zz4Rwe*;^#+cd#~Z#^8&v;BMyIsgbD>ErrH+`eObk9~))bC|Xd;H_qhbzItv| z6AehxXj&m(y62g0tXCzSD>nlTP$rklWtQf4SmKy?sH4v->Kye8^gRy|c$qS!aRuez z60C1n)%y@@apP(5lUxm;Gts8O%v*r4H`)EGf8hv;M0meHD^%QoFJFwP8y^&4H2V2w zbe1}QsVC%~UTsB|tZt0pr}NGR6il)T*k;xZ)|TXW;_g zrvXvrOPt&1nZ;|&;i{GP`jX|9F5{2<`z$YqqjC0EFXX(oDTM<$3ivdI%24Gi=%Gsp zG@|;fr_>4H03uoXT)pWka7;L&R^Mmn?tLczto(ZX2+m`?8>*&0+zX6(hW`NP&#%gE z&nIT^APSAE5ldQ~=kJdE17)-F%tq2P(IgySiJeyW47X09ZzoZIbMOF%>3t^V^5<m{R6f*hk}YQ{H=p zb}T^3&uZ&tm*r|6&06@;P;xIp z+6V`Z%sBrXy{caGlGqSgv`Tc_q_DKYXg&wI@#mCRR(B=Z_(fj&9H9g68%DC3bmUau z6q*-Jx}dG{CDFRBXZlxJAp$i@x;?%q4$laFDCnFzj#5JY@Cd>+O$`^S^#|7@te|^E zdMbtyTq=V&d^%QSU!hdGkbBywrrz^`R&|NZV7U$B6=>${YRZzol`Wf*UM=;BA5r47~&$`$yi z{sqRo=Dr}w^`Y(%)Gl%gqOH=ms+-xtg5TBzOi$5JkcHpm?$n$*i$FMc30&}ppX`4Z zRh7GYWMl&ww6d0oX@5tGv=pFB%C`!Qre?p(m>ilnmdbszoX%+YDvO2`!;3&o%4j%) z6sGXvg=#0@D?;y%4JCmSO5~@SLTI7V7DZ7`qnlC9$O~YG{vLuqJ(SxIAZ#n19qfn z9Yjz}7Op@iwQ7uG+l3HzWySezgxbzzpwV(*IyaMLig^yUQ@m4+yFT3n?PE?TWC@ag zJPm}24PSF3rQsIc`FJ-i@gp)-{1?+xjr5YxFicr2U8n~bXOK;zkH%_)|Im4@BPd#O ze-9t!7&sPop)5%+9b^!f6=7S?umwn8L8gW&;N8<%q|MKSBw8QzpmH#L}dw?U}l-fC78IFcFPkM^dE%7IYTf%Hi1Z~EgHReNn3Xi zVUvxnJ2hLKoc^#U7Now52W&Z5YiOQ0=5*yl%J|nv6ef?3=IiT|&+j)g%WMI;kMtO8 ziLq>~bnk8|S}u|2j-z90UHd(N=`Ht>55+0$ZV5lVXhXl?Td(K)hbk{@SNw?WC(FSy zVQ1fHZvR|&maReB*l&pst7tm5Sv?R${!$^PBC?PUL{1Htd%n5?aLXB&2*Fg z4k4Wue%cd4ip~z#vOv^G`wxJjK0fj-#~ppS8rH?o(~%onpgGy!XJ>Zj9F zW+~n7ACu>`m_dn%e%#;%xUD*Xd;|G z=`f>{%jiAi0Zp*HEikRvLNNzcux&1;>{a8NALQNAPXo{--MVU|?dOR7jqsyY#Gq&! z14wD_TMtlq)}5FTi@9P@J@hgw!a(N4#=_0`Aw$g@Oo^p#wf z@=un1viTh9V2Oe$u?PPE_moNCj(%}cJv1|tKcKLCYWCF2)~6GjnBP<2=YzFXCT^9K zDym0Qd)u;d$v5TlK|um@FaJ(~Xp}wk-dJjUvmj7U>dl`IUZLZE|?H#Pc*rv`tC=w+%uiDkI_nLnj^S90hU0(MLf}K!B81|{{_gC6C4L` zPQHoCNOr{8$WumUwJK9Z*yrXcOA9v|`dzUhllh2euYFMzsB2`_2zBdSAz4o)ZRN0CREZHsuR0T6tWL!J?0IIQkaDvH{&Pi z7s`LQSfqFK^fkNWQK8w~I6upigun6%k&(*OK2n>bPo}hIwDAahKw`gkuJ5Gy!uZb* zn&-v?jFj7N!|bO*q#Epc@X)R8U~}TlTRUK=z3s8WA9hi&fIIO+qnX-Kdx#1TIgw%h z=XL579tGu`XvTf?V@lFPy`k|S=8L70IN0B?Fc4O+kc6<4vsIL374AEY^yq85mb5Tu z-f3!s?ng}Ubw~n5h%MZ>u^$w7!p-C(X*K#A2UFY>1J!lK@TYERE@sd~7 zUQ!&1C2sglm`Ar9fxVLoG!x%D9yMf)sE+P4?4b8b{90LtWY;=LMl;)^fHJRUxvBY; zgxy@>+L(^pmP@Dwg~qhzKw>98H4vGC5ul2`fh~v%>9wpI!A^A_Llbjo+=b$7vbefV z{dm$9fC|9ajjn>~)x~T+=LBer7be?BpUaW6rL+W&S}nFrn+1A-W$QuGDrZoO9Ai!I zMCN`bp#dipM{p1;ecVb_9Slo7j++_J-Y-IRWBTr+gnG%T;I3k$CU^EQ`|-He6L)Z2 zKeE|=9I&&guyAEn)G+X5NC(?kQ4)+5-(&5P#i9&L9o~xO+-$tZEQS6~hGL7l^VgCQ z=30fVCty=2LX=SWs@LBdL1|cbuQsZ@fpc!Mv2a|bGXlf^y63T1fhim*_mMC2L*$Ph zbi!3F`ZV3!_Xj(j?lhf^BOF%wZ@P=)hByJ=y%dN(co2a6U$8%dgg@&}^%U>w3i`yD zzl?gDEg+qJCNV^V9{@|!rue)hm@?WSjrlcL77Xg3-B8ux@3qY_Nc3@X6o%sV4T=6> zX21B-=>_}0HrZ-#3g8j_lQc+@#($jthQne>QCefki zTPEVUMQ7ND9#FOT=}up!rspeh4679jY6X!rxPhE|62^i*c~#kcvDu+;tOJcx&R(HD zZ#W)w&a+<~8ybnTxAgJEYwo$%tvkk<_@V30H8+o;IEZ#7JYC2JraA;Ye3Qlzc5P2ubp#0Faj*u-OIKCd0gILb$)kARgjz(QG-$C!dhYw!l7{69fpS*?-?x4wfiS$a7hK_Ek#5cPIqa;)qT0pz0CMH{ext!Kik0 z?+~JbDM!*neQ0q!M#6DVLEHZf9=J;}({idI@(XJ(C1fAHVIHf#fYcN4HI)IE67KY& z1An=}oP=`Lntl=dP~p#DV#~O_79s#{lcZ|Hrx3_iEB;+~kf+sFxW9vEj9+X2DhWA#AR-yjr{Lbou%#FxX!dLdd!xjM31 z$wR$d73_GXShQ^S17XoTf*FVtyN8woR=fw$p~V14V>fG@a27y~O!Kix_79Q&ewoUTTixLu(< z<;v$U_}Nm%JbkGbgfkNtPlduTyg+{{x^JA7c|X#cZ+l0_pnhb?#6mE`!t#gVj@z~& z>lO&x#eTKDgoRPM+>Wf`_7XiBKA-T=;jz2sqCnUfFh6;@$c+8$U}Ux>Xw zt17sI&(Fw0Noa|swe3AW>B2YUnd@ON2HHrH>wf*(K4;rRT$`V=*Yxvqy*G_5D}C30 zvGB3*PqB7QdEdRSSBTB8*uMnEZzY`fq~-cm^FM_EP{&WhrWE!(Z4U(w1#(x_4*Zit-9|-ie6O){`7xZ8uVOq}LA@ly|b6 z8ZOeT8$@)v94z-=IZksCGAR+j)Gv7DJj{Js=UE*k$uA6CpXEfI0J!PAy8DXf+H4>n zgP6{%7`dI^k!m9Wfm?SGUjp6sMR9Zy>xuZ#8RnuA;^YarS?8@3xt`vU&D1@i#P?b| zfjTEAIee9)j8F049O0P4h&ToGoklV|3kvnC6v!xa`JuWmt3$cpEh*@db{3)FNCc~$ z_n}Q}Wq8^D$Ocz2@4e!P;FhRXx0}{xW@avg_c?dlpx{IZLk-J4m-W5k2fakl&KS$P z5UBd1y+!H3nqja#P*XOoSbOkC;wQYsk#;YN&iji2_Acvx#I}xpt$7_1!h6vhOn;}B&!8vK9gze zvWLt@&flJnz`Nhg>2AHndShjvWjm-Uo0)z=h&f#I$~`$YY0^|exH58dUyCG5XfMs&@P5P~& z4O!5eY>Vt!cx6E*-YQ-nOJ-XXF0l(MX|P4-iJ^-wn+qY~6wR3EcH`>}aylS2E~79Z zI;6!;qkB&31gQ@l5fyazUTrV@0tFAEp`N}^zeUenrpOfj(-O60<+(~Jmp4FpV}%73 ziGc7V)A5CV=ib3+uK7>vi|lS0FwPD!QV4-vG;fSxsWP;0hrMfWyR z5)5VM-=$@9mBY7TQ$%AxPi)!+`F-CmUr|y4J;Ok}{D6Bx^|*H3YjeA@1rvzSFP%j5 znCzsr@jEzIF8ipxM6T}8QE%i28Req^Hmp>xv-yQQYS zN+nKx8FB4dJDv3CI(?Mh1&`tHoMIf@5j{#(tzo^Bpcw#`-|#e0P#;CYT?5+>@9)Al z)^V1+Cvz4Sb<_9Enyawuji^KKR&jd|gZ3uA45n{!u4N?h8eiMh<_e=xy@GUBU z{iJtTmsYEYlg~i(Nj(dTbXrK+-i;tyj4l;xfJ3fejKW8uYu^QI{M3yOJpA&fR4xUU zXg96h8>>dn*rc^AY*jd(M53UAOESI@;1J>vQJYWKtHmxxfBCtH8l*4gfK@0&E`D26=?K#K z_Zk2I7@A2$K~&*0+EY>9Uq>8$lon+)jQ@S5qj29|PuOe20}w2}llaJsUzay^xr51- zAh=l|)4b*e_KXn3Zw{{i^PV+9y7t}GNfTd~@Kh&hRC~FS>T1u1GNECj$eNTA0*+qv z@7qpbR@El#LcXx9;0HG@t#fZW5`UU9A_)SP8ABg!@8hu`K5H$|=%^A|gW0o{J$b7A z&Xi-GVp`s5RcU`rfj}DV9TGqc`oKcS3JZ)^*t0|1v)JXiDs9*haR-ra9)c9US6h4G zU*xluy2|xn)mO^e)@i^5Fn4Yg8l_Mwu?M_wi_3x}v_W27hYm}!Rc$CEywFp>I$z!s z4lfjg7xT9}3Z-Awp7!c1x=zvP(690~Rrw4elsclpyi$T;VPgRC)mNV0djc!)-cY@{A6WiDH1_{fQ=^7t4&)Z(zeW5#bue%ioi)Wv4N_q z(`CfwKatQ%vmp!^SalY zm)|>MMuv%_s0$kg1)(a8K$wEGXW6pUc*1+0%!qR`{ziuoP225aNe|Nz+>*u8E}ETc z8c0CNFilLXD#bp}MlOpz!bm+#{H;5dEo=G1(8`!ifX&9V#R+F%7hMeQwlXGYLjc!Z#5-(^1Vm(int54lKA z;rbbfv`G_I|7*MByfI(`m?~ieNw`GsOYbI2xKq;e7VgD*0=F%iDxE!}yk~Ev{AugQ zAf1WHl!Fwi3@$NOM#x>sKbIAZ`W^D{Oi({M$RJ4GGtGkAz53TzNBg#SU}y!0k@IN6 z{!U@lK#llji_xD*5r{NsFyW+vQ2427#Aj+0Sh&6uGzhN-F%tTnUD@0NWcbE06Thxu zltJ9NlGr{ljD8`18R>O(`DU+4^76IGiEa>{608nCiYLy#$z+%m6vt^-I6k3Bv`FM| z=DQLcf*@Y5#Lp_S%F*fU>MZ=mwiCCmcq{!6;rIfNi0jW1$F+XdvnMQfwCe#8fEadW zWM=r6p7#Br^!}k7vKkETMhrCH*G7 z(om1jHqc|Zg(x9sNNRoT-)_{05t7aYVi^QGbnjN(rTaOhy& zL4yJ)IwAx9UHF%2!|EKL@Zv11E(KW@E|y%62%FgA!<2)}f&Wm46*x6TzlcJ^uoJS6 zjNug++mUEJ3k2T7g>LRB7|5# z#C(dd0f|{q9~>$V7=rcuhY(<+c*dlVvT^A|0lOT;f1E1*@Z9}oX_)kc1@P&`xqCjV zTno`3afC7(8uT4Rk4U6^<{9OT9GMsocc1RM;nAp5k7seuu411RgqK4IKq@Io5SdGY z4O71)k^XVp$>j(LmouJaJcftVpl1ZNIS#|z3tEipCYLjR$n@gFAe*2g z?xLaeSSS6OrB=wbg!qH0(Q9I(hh2*iSXN(aZ>=i2Q)YQp{7&)IwOuTN_$NyeL>DBN zMe(q0R(R@m3gT$ZlFqcjA4DIFK8PBYOGs!b1F`63%6Ql;xet8pkQX$^k3^k}h#Y+) z6v(PIH}a_?kJOxAf0g@oON+A)fj19Ky8dAd1Mi`Rd)6>_)e~CQB{2|75-zV3?}$Mv zK$CBy@zEm!!JikDipG;z@PD&r)dRyia)#_nAc0_OIFA&WKxA^^ zbCu55rBGRo6LJPs>157igi-`KN;!7>kyYeEWFiui$Rb5BL6ibFOj1OY8JlR5ozWb_ z%y$Hymk%CCMEVu`$UXV>gJ06dA(=ynKhz8(<7YN3O5dR#`a{fHh)NP6ED!YPz+`n; z-b);WLjIuDtJT5miLnnN&TeTojX|ErV5NNS3tv^jQ02B+)JMTQl&zYB*hLtRq@?I)c zg+plRZ}~R=slf)=vYHN!AaJ(>1&QIZVknaRy`-N(NBL9ceR8?UBAz6B|8!u#jLD>R?p@0!6Svd|NBI#_+sYB#S+_wAjrxR16dLqejU^}G4|O`nly&f6rxc9&Z+5oMo35mU7A zA)GQoUd_4X!@>%|sBVPYSY>F0WYB|xel9PpLqxfSZba5$qSgVaL{l!*#&XQJBlmh`>rYA;#{CadLx)(YJxx0} z*a(CDk-GNhTN9A$t06KLl<-a3D%>6|j>KV>b_pR%P;#lW-X5I1x_&s97K;V-GUrDv z$NcSzrTORf+DmmurKUUqkCY)CU#!A!+thCY5Sd?gPWj|VzO_FcaTWV&0rbF6C9535 zqd#u=s~?G=sby!~@q+=~+osR)Zl@sjZMePIctNu~&gKypEF4on)n$$u%667cLMN<>k;1#LWwfblf6|8)4!EA!x> zGE>+f9l4Qp#J90~3=`Sph!Lu`q?|F#Kc~T^_oEt9;TzMKwu}*{N}Pc-vcvVYtPax4 z$RV6wC)z6&CZ9I92=Yt*5Er9XTuwa&%Qq%B=IM*ps3b z#!zqD=4ie@i5&yR1EdLPTlRuZCxGn4l#Pf?bn}An5;dZX=z{JQMAfprj0B>!kwZoT z^0snbN?9*a`+t~DFuQ(8NvodMuODSf^EY4u>*sqr{_f8R&`m5(an%2TUPt8#1cCg| zl06p{Vd2&v&bsJP0V2r1Z8(f{BAtnwv6TPM@*$s8mp%24dX~_R4-4T~!Wj-DvyyE=wfrrI+pZqIT<*vMWiD zT+PJuA8|BJU70c zC_&{Uh|Z-PQbsqz_q?v;jn5GTx{^#mKP>cHrhgv zvGW6WHD%taKhEv7>((u z>E?h_8|t}kQuDw=ae<&cx;pckBLuH#nB*NHrfKt3*zF#%Ud4s*G9cQ*g~dma-Mg$MXJMlm61C}dI87)(iRXv2A-4&PH4!CW=MX>aS{gwUXjQJOhE}nj7)OY z{SSZTr`wD3Z)IDfc2>}6U8^g1wzya(zJ!B}2w?b#;7N4slR#oEn+sxBk|4Jv;r^nz zK~7(bgWOtX-YbFG0>q|QAdLCNVz8X33QJu#zh?PzmBS!~Xx2MXmT-AQOC0eU-#$jF z-cZ;!zj}1pra#aCXRkKBJ6$JrhUe#rq{hZ`>cjza& ztste*+Uk4(#J&(N&`#?+QCN1eB&dTmRI8a9t-v0=1g7x@rok2#<*aqq6jpubC#qct zXmc$TB9nPWIrWm~D>viw;6R`c0*F+Z#~g9lr*Vq;zC^(lbw7k)gZ#gAhRmB$*7o$5 z0Q#GMa9X}9Rp`B7mckQ%{nXWO!uZK2_NRU&U3S0T*a0&O^7cg74D*9^jJx-U z*fZY_*p#|^M`HWfuY=%hgpGLxgJa1nwv~e7mjwAUO6CXsM*fX|ZYR7e zNG(KA;o?9{PfEEjXDzx^&O2fA-WFBfC;^DfFB9MY_s$DvAmbh@@jkWF31ME?Cg{fB z&Hly{g8Ur)<^2D3K#dW6=kC&t5dhoDX8h^XadcDR`EYm_MRtk6M|gS`pSG$Bw@8!c zHqQO85My@k?u%50C0a%xrLT*9fLJ>dI`T{xW7~MO4(9Sy6LgUZd@b8u}xeZ z2HKkV{TKrMgun&_P+vb+i#0eL9*w@b4$TkCJ6I7Fl>YRmzu)u#q7kuWZtu6Yqo4JP zv&RtFE)dv&0EDx{;YZ+Ed5|pjW^udav(AHy`=v&WvFNj1Iwt6KRH2_z;tx0$2chSiAg#1Po#5ZGV@kT0_0VplYtL-0{&$tY`N!(jRI zlUJkj*XeDq`62z!BpRy9v55+c0Z-@I z#PfdNro1gGb4&B}Re?%5edXi%7S(GD%ITG5OX0Vr`Fa(;y?$&|1PYYjfyxu?K=BXm zqw5}bzyY6{`26#k#bP5sO}e8_f&q3TM7q(%IMNZ4$|G3CfL9^v%x3*_qE|Qex99tn zPe{H-*4hp=^ZB*<=G?is1F@)|2YkPhPu|^{?^fO`m&4w_V_vOs*_4`8Z3RJR(KJWr z=g+@ImOJv@o^92(o6U{l1_6&{-2_g2o#hYgp~j7S(Qj_n_2)_D`;tqki4)IES{4g{ zl136|0Yl}(e5vHMFImzg(K^cC((lOiX1={uUIkKxzLKEgwU zgP}wAu~`fI0iL;x0uo?~C9T%szL$8<=#lRT#|?ew(mDUW9Z&d~WRXb0Y?&IT7y>&P z1U4}OWVoLRCrv*69=7T{Rkplm1*Et_6HAhf+=$A=3Z{Ru`!{<-G6#$++1&B?LAQfudG4Lj)PKwe`E5&e;8a<9NXu0ygai5e!EXVg&Hn%Mcqu z=(9E~F&6QtVdTjDpKe}x&r(@GJa1ks4(*iK@HVXU#zdf=V36l}M3^}7q#>qLeLQia z&O$GG6a#{VBRo5qvqH>Hvfoef$N!#p=O@cAcfZ%Ou=qNLz>WriO^g5=RTJYM>Zev{dwitA9m9}IHAgsl#8Z(AOFYC1en<*!L6hmOgfIxo<0K?Zb&DjZH z_8bI&rBR0xmp#FIn_{bFrJlo4;x|%cb8|z?{Ug}Me|G{1^n(C0>{-?9 z?Y8%66Nm_XJfT1&Nmvm44gKc%^Y2+AzCmb!Vgk^hiT~^j5ZGb@sBnKnHgizsF51hM z5ckjkTQY|Kmd4i9jEO~`ouSv`I(9=~iwQuf2K|!Zn=Ve&?DJg4b)1B-0%&_eN5`_h z3~SvVjxS;e>&91h&`` zjJq>U%9v|c-?9`-aD!>udol^e4#rN6hB0O6kbU1+yY}YiW7p`Nr03&mY6xuc2taOR zp2!B^hsL*Ygj>t{0OkO)SEHFwmU;cei64D;v>Z{?rE!WOu;W9ZA0vP?M!Y;5t=2X7 zE*d&?-z3_g2Ic}Fdr)HaSREt5=v{W1@=#05_r)R{i$Xho|G({PxD}i_T5ukC_Vq#N z{RvSBAcnTjE_19PJ0|a^_l%%go+Q8RK^y~MM~1*w5P)uuv3T)ad17XLt85PtgFt{w zgll;I*r>tr0I(x>d|bB(0$WP}n!Se}&Trc5K^BZjgbCRZ%WsK_jz@qP$##4QY%Kxk zmZAUuKv^Bi{*j@l|=QsNXtV8@5R zRuDkcD11O`5&Plt#D|Ci%ylvYAUsN(VhHR!5ZG!0@Wb#`xIY9SMGz;&Fozp9p;B~e ziakPi9vpaE*K{igAaZw}FxLJPGXJw;2Viv=0V1GzfCS7{1S(HEUjc_3aMaxcxgm1hzs1>TZ-4aS~4c4v_y*BE(Ua;o}pe zd}Xq|YMf#S?D!BEsGKhEhm$9td4L~!A4C+&21eizH}S27^NT;(#6}f6K2+iw#t`TS z1O`e({rFUzHHN_8LST@PH)BqpzN~vbF=@`)plRdV6b)|eQ=1cXxOGzvsjI`JJ64 zlkDv5WG2ZblWc^_x3B0ZBq#s?09{TNr1l@}_zx105dOniWy3=M5ul6OS4rT%Vb*~E z7&uD_B?$naJ`VNO82&$=%2ZZO2>|eB001CA0f6WKM36%Oz>O0CI5q+Rgwg>3LdWcO zRgwQT5KI)lf&d@?TlrmON&iWZ9c8s$0030n{{aw?nN9Sc5YbgmNgDAO2#?H8y9kFw z_}?V}Igo^g=kjTnSGxWpnDJTH=7M{*0LnAjU^cv9H9T!L+EBublie8)cPLIGnJ<^0 zVGy>6c_g@ zbDCh&PZ@17lWWPg3fOpqYCwHXvi>rS!)d*IybNYcAzJmIDT&wKy$7Ba>K3Y#_Ix+6Um4RLhqnCT0_p_fz`VM zXm`nP1ti~WkPbV%#=3o+lTN~jScR)V?0l<1V(0^wAkG`k(eq03J$PUAG{HcB1 z5a5W{d&|GluLcHEL6_ZYga{v-I|pH}E4yxm%^r$uah$MvMZij+`Q5<|#NLd0gx>Xu zRXuPk*7R6*L(_+{%U3u62CM+)=GLodYb97~o^MDaA{@wxjSbi}tf_KM0D*CtN}!pL zcz~=%f=bJj=w~nR9SDm_d<=~VmJ?(KK#9QGbD4i9fn|#B_izZaT<7a{Jxhvggkj|a zbkb14IPs-%tzT@|8+ib#pbO!bBG`6tMj$-UZiEcuj_-MV6`bRwK=J`P|35(~Jiv$| zU(fxt0^amoN%wX(<@JPC*J7xGo&xA+IGcDvBpv|oHxu@>nT^tCBp9N8&Q#+i2wHFH zTRlhHn-E0)e4w>Q3vl94q^~dZ6R~a3vK%l3i^x{Mfel8Gz1gdTq65@dT6W!cPK&;k zGsgmm==y{Jmj)?Fxf!;I9v8s6D$}6H7(`EtW-v8qbJaU8R;Jpm+rY-aif<-ClU6P( zW)A1qt{T6f-0GM~Jr+ncoC*ailwb@lK8OlyB$tR3hY!vIhIpiR0>B*{{#(&Vipsjj zz}+AhFy+&6X%9YQEZp7GNOszQB~!pRXHax9`2COUM=uEaY)9k$NZ)zD2k3Cu8|9

Go+}>B_*!nw@$HGvTmbD zd#uW3kA(Zj$AEx^Pf zK=>24+eH0thZoxhIbmm@D??EwbP{5v`L1X>!<}XZ?D4q8hA-*#Kc)7BgqLC&n=-C>nI0mG=g?(|!xdW461RKW zA3kQN!=`a$lQZ*LA8DjL?}aJ~M$*C+042oHD)?S=miA|Rf6jNiaC_su37!Uv( zb`JaVtkW-@7CXz%yoLw2M<7q=dNZLJa_=xd)+q%8BAIjEcWNmTT$hnC@35UYkrI)J1} zEci~%f6bIQ49f`KY5|T!$CY2l04*G>K|5MnQV!n>S9tX&k{{)?Nc_PdmoxNb09J0+ zi&K$E2WMIxB=C34&jF5KYrI&3#)O6w>C#|z%INNOn)V=;(sQf$o>Ig`xso0ezYuAG zE1I6DUls@7lo-g0O?;h;euaM-+0wJ98da?oNTgCSeZZUg13FVla|ed_i|V|OuMZQ8 z!$KK*I}N&A0PtpLfTnP(KF=ss?mCzGBNyc9QW^DL`C>GpUVI`6nx&D~>+T^^;Jq!X zI{50jxPJ9SE#zSW7dxbY{=%FP*A07m`E!!%iB>^*czEjqT*gmCz5h&AY$4!$pvLZN z){8s2?ws{dC}&ffOSx4EN(eX}9$WTjdP+ed$26rhZyE(p>zI~N8I*jZm8~_lT@(86 z3+=JQ2$Wfcnu+>F*VjCui8$>ToLu_0s2Jw^@~rE5(9*m7#Z7KsDjpk9OtTW1JR`><$yb&g-{L^4(|RL9U?hYJ~^oy>S}QL=q|$ zRk+X<%**`x)iRX4*>wK7hPavqI;S}9f8E~A@FAZ4wtZ8Qog#9Im{_W>-hu^f%^DUa zkjHDIy_r-?42q@e+xN}hb@iwjI0t0b-`}t0mR0%(>*{?|cqy7^yhD=8C7Xf;S|m77 z@W-!|+i2zS5U>eRunPsom=cWZ#_-DHY`vOf|*oj`Bjr&+;i+DSAH5c%r{R9dhpaaLu*oX(2-mnhA%yMOMNbzce zt#TU1&SBFCz-@t2CX5JT&Q$7Sa#B$TsdigQ9$Q%@o2}p>XCtK{2DI>DE_Ea-qf)?6 z&b(Pgvq=gb4LJZ4b_8=LvrIVW6!kp&*bZK88p@7@+1A?+*-CK<9y!t&R!=i2%`2Eb zRV-1SSi@34`PSWTz0kfoK$ZrN2mr$y`1uaB20El4?F0oT*Gx6?qn)Ba^p0B@$6fKc z`vni8Keu3oIYtD~AbkxycbIo`)494&_1_)Jpv`+b-B*tbFn!n_4W94jL^1{tB?*Bo zE{u`Uc#8~d5OE7I4AAL=U@{{@2L?j1L#g{XVd}-ff4;YWKSrLsRb&N6?a4-#FtOtm zMey58tiiQL45RXVG;T*pX2IQQ z+P=joqTgp{<%UjXt(gOdC3+l5YhBCZF)uI&%(o293tBjO!J)A=pIXpI)9Ho7=t9y^4q0-cqYM2M4{0_-3ph2wy^i8a{4w+vN0f!S<3MG=iCu9{L8I5zB>Da!qs7 zySB#cnk0VqlE4MprTA>4&RX1NXYpD(+YO$|g&Z|9POzlxwCe4M=+letuO?kuC=Q=t zJ(YaEhErc=NePvd099$Qk|>?L7;nRa@M6HqAYSvrOlq-6^v^ zRCuYb#mF38ba%|&1)FNi4BL&%OQi6jl*p3&f7WNQsJ~4{JP(yNG+k`YV~kM&9Uc!C zFRz5T-H&Ynp4Q;%Om;0dlyDs4nQUE4)m)6X4z^2+4KLI0;Y@W54WYy#lAd1sr^sao zV_94R7w11j9JX%Ta2Y+SN&oT_DPw#617LRjf-VXr7QM zqM77QyBpL3$YUdd5;P`!U$`QbOxvdv>8R?ssG!|T_~}$BcC+oCZ+A@ctvII`5WD6X z@*lIcq2A?IB!oNp)3(`6$$c=~%HD!Xw=&gjpKYV5R|0NNr>JL)&NXpr9 zFO1N#!@rO4f00I{bU4^;gYy1fpxFT9Av4bIq-C-G_G`xRb|OeY67HpT$)UZm3%!XOnv(nEKJ|B1ZdW#@O3 znEMN9vwQ7(w)H6Yink%Lqt?E=Fg1ba+!>SGyz+w=Z)tnqmby~9k{Xqm5s4#1x zhcfxyW?{p2z9gr^1TD+DS@mhItf%d*G0)F={c4BM2Mj-U96sQg_cpG2*FnB|v=joy zS0q>fRUOw`{TtI~(c<{k>H2RqqVeEc#^Stw`dq>E%c_JqU@oEHX^jsKV6!X~y5(Yy za%xtw2xprSj=vDE_A4Z)od0F55>k_ValS#4YL1p3V^|2+9Oc5COv?zqCkx zId}q2wttp7T5YkJU%+6x12f}ef=Tft;}h6a$!^ybqt-vs!t`qOwBP-U3)s%$fKmQM%SkcRJguxDUD*tqDRZ6D1d0nm(XyAhR>_lTWLHZvnQ{Zz{PDj!2vcX9J44p^8KjE zOw^EYk@3v_5k@Y23k$F|2;^_F!d=0?Pv_#9F}(W8jPsewIsXM}Ah15ENpVT5G_1jl!;Bx@@;W;w zdK6eMuQV|mg4}5{TmvBYp3?0WnONOz8RDLYUV2&M3vP{nYagmW<(IC~5B7vtaJY>8#3bd7K}&i-sfENF3;gaVHTuXdTzk|B^k?b) z22dgYfkA-!$I8=e06$84#foP_F-LT3J*%vVNVj6{>-*_sPv={}+n$z|R;3(&f&ln4 z2c|OOMSb>D|XB<`?JfoQv;151n4KFUxrFRNJ4uPTDwFp2#gKv~CkOoK)<9 z$w3W`$?RKI=Py1U96_7eDP{Bf?lOVe37d^r~VL<50oX%N{{+DI{Pd8?FYG`jc zvxSXkkcK@ZteQ8=J`~p)Evs4=^ZeZ*;PK)4b)nx+1=B*{;!k(yDJp!rMogRKRy6H} z&qk@bgU<={$u8c91Ebe!^N2aTHCR|sOoIcz*qNdN&FVNSBRW4dU9t{&C?1H*0z0sq zJdCRjjZ8-Rg7~NgP~X^vXhCEr$i0FlDF3CC(=cF>F8vbU-W4ewC*H67Wl|;mfZ~9B zZ?=~A#P2f`s2}5K{<*@_(kL5d9V>iOsm+Qadd6~Hlp9r~yDwvTk^H}eCzNAxQd**^ zT&?;sH<#kX_e5OpR6841^RR^ADsvY^Lvx__Jgn@0cl2MliDLOGlZlILARc+8K|rH6 zuQ*P_#bYl2^s4N4nS;3gmU|avshGEf3NRRu0-7%E3z?Cwp7}*?HnaCv`=hlYG^NU5 zOxd-SeHeW&@R;vk?mTQ*-ExwM>5~kmD-)%_>Wc>_}|(qdv~h z`f_;u#Ty9Z?hJQEIINVIP~3(OUCP&sl<|KI<3D>G4!Aq)6KpKIZy}6lPHt3}71AW1 zN~N53X(qgLt=>npc0oh*a51~sF+uuix05Fx4KoidH+Sqs8C6lB8ii0pZV0jW{%)*X zA2I`!X;~I!9B8szE67GO2>E9taxif+IPsB)EBR1jJS&U_MZ?-eu7CjV6mAqGSl`0) zNnayf@1qK9U$Mn7^Pdq>RM%Bh@ly4p>ro4Vh6Y56nON6&e&|bW=0=mFU(>gKFZ*BA zeNxKOVNa=Eyp=7`$mZ7!=yA8tosO*aw_8cwcv~vl&lMGJBDh3h>I|qjHA8zj#R~as zEIwQmSF?WKD0Wj5F`71harSFLF=;Xu-D~#q2Ck=7$(vZQT9BlQyI=uG)NYKQ*^feun=nZBgg() zQCw)tiv(L#*w5oJ3_Q+wrjk)Vuu5(x3KCSiWAwMx)$yvqt}R}UN5N)zOz4^U>ua}!virDYL zk<$!lLT-=#D4K>ba<0Jo*6$F}(Vn{UeHsN$t{H`W*_M!xU^jf|y1bO8kgAp{_;mmZ zfyES77JLekB>COf87_*LI68R+ZDNOT|LI5>as%khSzLCb|Hqzw_V6%oljJasJ z)bo1#M)@*o(oRJsz8H%O7{tT_C7Nz~xY&_vT#%Z#F<4dx;)}B;y*-DxzD%CF&c?PG zVep4a3t1soMsm1jJV|&T$7wAU@Zyd~W})9^q1J+f+JF_^~S z(a)ll=Nw$J%w6x;De8IATKgKS_xUOV+d}y|07bIJ}3t)g}V$@s5 zM~A2I(*%hKsOWyI2u74${5HYJAZ^5^C zUDs;D_hTv{YYKoZkM<7;*A5X|l%YkMKM2rui`nNj6Z37>?v5@(=0VtIph+%glbhJ9(pRi0VbIWDL@^+bq=Xb1`4bZVjJJO5#6BdL z?2C(yjUPnB$C_ABi1TMagP|NAYnLElxh(DaH31-=4trz~q;F{O>NP$WGT)K9@w`Of zW2==1`@0^WE47b`j@pM}ls~6n*ku98OvUAe3~P7L{(Amg z)nu`I|4r%dKAQLOM~iQ->Tg_G&VT8RxaZ@R`O24TmJ1dRT|Ni(l?rlEXGZ3s6f!}u z;L776ci8NQ!$$Du5aY%y6(=QSb|d-u#BwO1F}R@*j|wgefV??FRCZRinf#4KK)6`| zo?bYZwFmy^<=%*WSN5f>R$fNY)jYA-8@U4RLpqrWJc=yjZ`QrSv{PAWhGI z(;ln~g!Wa2Q5Qio|8s`MVF!O7P1j%D(-JDEnJAQjy6aRHU~EiAy*UWFv}0g3qxvaw zqwkED&*V>>adwW$$ON}#RYTWtfEq#-ip&r+1_z+WN*g4~uo;ym zNg;@EyR_|jS=i7BPH4nzR#QcX0g5|On|%7V8s~O_@yq9Ugm0<~$}gzDrgio8OJ^nc zNt1s0XEBNzSRxcw>XO0?EA8qWdH5#pJNTE4#n`L^@00^VOhI;E6WR)sQchSOp8PaD z4Qoi>4!(W9lK%TsUf$aM6NktH(k2M($!hmG)J176vqZsy{Pm&dzUU5}H1)xqJzdXA z6$vghTI`Fn(9>b#*R{M0pPv#$r98O1qS$Jf;Hy&!dP<@z0()y$R(;VUvtRBqR%zc1 zBnq^-&bNIlz!Pj`%o+_sJ7%_|yP15}%K{$2l$|u!N0sq8-E7Ga zXG|HDS~Bj$IHMxhxL4%#Gq^Lf&jJLJ zY@bR9X9WNH8B@=H)hL+Tw@Ka1j$zffjB=S_6l-BMP;b#V)?;dASxP~Y0VR4@69dr> zM6++y*#BzL#4m29``?|c^sN%jD9}sqfaYL+QhHy6mc7RrzW#>iw)|$Wy0Eo^DkI&f zp)XZ>mr}H%)6>#c*;IKgn5Fr zJECOici}`|Lbf}AkWF7!z{_*UK`9dZTfbkVQ*3Z5P`f-=&vKh}Xdt4`2OQ`m*B69> zSAc`K?s$ldwGV&{-}=Gid2|$sj|Mu<$oE$@0bA5PNCO-rGIh z%Ww}P(}L}_)W5lfmhV4eLQ+Xb48jG`B!GyQE~#SX6tC|oc!O(0bX+T%O3;eA_ly3c zn;s7)FM&Ny&ZF>$qI$CsdS~|Y2Ha2N&xeIZ4`GC%SrFE)hdaP?OrR)cHRJfLTIErD z(tuPpKXNn4Uhej-ja#w?IPB~3=fR5X9QcT#)KS$vE&nG!VgFayjgAWS+|$lf_vz{V z3(*hIbNzvqbbq&xfULTl-;{yN2p#-qvZiRe>Wg(sf2$|@mxZ>6%UdV5NMT*z{@` zYh?F>c;UyB7rnjFG&@Q-&YE0Re6tkhh?sVhR(%3-pEJD_R996GlV^6A~xQY#k{T( zzG~W9A2de83n3M!6feJ~FuEV+ou1G$K{d(Lkgr`zt&=O5sQE7VuY*R@S}aQ)Iuw!u9IOQ}oAK&Pn0qTfaIM z{DC+lP1M~9p~FYc#{1^3*G*~dkAuea`>hCfpftn%-%#cGfPEXn!rHu*@4>;A_|A1k zIN{E6Qr4lFk9mggice{atNl0EvtJXrja=BMCaXPt&?tp=<9zSQCVY1c>~k;Z6)r3K zScJjmqay|Qs4$6hr8NQvJWA~sXiEBLwqE{(ZsS?8`6u@2Of)UOD}`igFK?zlwB&&D zfa)Me094A$uZ#C=9EUmaOa`=ErKKD9w#VoH9AzW*OAVdXx|*c2)QEKkx$!>h;^oKX zSO?_@EcHxm23h53#m3T#&{eDDRb9M!lBTcl;a><6sf@;e$gIGdutLA-MILTdtKtHS z$PRP9$HGl#38crkt}Mand#0L+Y1% zS)9(Z8kW6i;o@N}g!Tt2Q?8s{T~vMyk)PQckt=74p1=9W9>|ZOdU7hd33Ub6dW;^t9FT zK9ooC_0Ipsx+)yx^upvKNnx64y5lG-(-muP5^(TOpqwbx6Mpit4A7-IdD7_AXA=gB zH|7?jp&pPjuhXJccdW0Hm@d68*S;SP?u{OZzV)q}9xXRV?X(75WGb1$ek=MQz$fB6 z+E?$$qI?}0sO$OSF+fK_Ap?vz*K!;zg|{9Gy9lUxq+F=os;Tq6yMMD5*BU2l9Xmem z&F%6&Z44H;`qONiD4EHmW^9>`{ntdoWd2+Ct~{#pbXB);X1Biur}6ZNO(96jkNj`L zwA(-5Gd(0`n&M+)u84&^QK!{_r`f-|S$Qj1I&ie|`JA_CUrQj0I+@-G4j)&vTfq(+ zOBo#E0P_FL#xS73YujOB8UZ5lqd5n;Fp&2L2_DQZJj|3N!uK^%iMy`G;II{T-}T|x zzXJfY8lGU5JuzL6O4e8O2MwXRm)#x9IP?czo#tXJ!akqWNnhvlpo**-!b{VX*ooch zO7v<^F54N0+$GhI`oH_2gQN=H6SC~@Sa^yvd$hB9dO|vnT}p((7lx0$ZrazCRf1IW zvy4u=wJ%P$7h3fd9%bl(gh?c@D3bM9fRd-Tqo(yF3(XC<-0M_xq7r&9rP%C^p7R2K z?6}pQgstDdZ%Okub|_!w`nHEc1i@GXMAAghOAY9fQM=t?Ez1`l84VdelZo{|CY5T( zDc5I~ZYIaKg@i@6J3XZ!Bo=uHP5{$-CM)unj5gob0|FVFcGi^UwfbEsd{s@+&p}Ny z@{tv;3jkzvNQi3vwom(>cVdT0K>t`4L|uqgYvl6ArS{U;Nx1PXaD2w+@1~T-P@Pqk?6RX?kgO9_}scVHb>Jp4W*WfA=t_|J{&P zRvM{kvubT~_nq>}olRa=?~BK+j;RWAkVXS^Nk_B3dV3)1T~w@%&;3B( z9)IUz$;6u*=b0H$gV#R3Km6~u+8`tyQdGs__^hWaSFGUtkjzZ~t z6)Ai>m;p8THtpP}@KTs`!TA&G?+99-n8n!|rLTjBQ-Q$^2R&M2A>&y?067yi>~u*w zAZW{H;j9>5Y$l)hgwRD`>s_^4$c0srK%@Psg@i*Z+0_=7-bAKLN3Q!WB-ZoUY4mWA%D$S-Ss*)BC1woYRe#|eIwIQOBA>S!bs{EbWgHA9bxA_4WTrIsJ+*T98b7Qi_+(!IPqQYh!{ES-!-8`kLOpXmco7l=9+bQNlkcOk5zMj4W zZ0TKI3NIv}OP0&-?{wdO!J8UVxeZ`LwH$h1AYf1OH{vs$-8Gs{4kv65ma<#(%jSWH zaYd5#fN4TNYR|8*IAXAsQEmbB|C*uuy=q}pmQ8}vNf?e~?`=3wcKEKbXS-tZa!LwodGFmDP0&Nll+~UYP## z)#ck}E~T(FVYdTY2H9?rukR`KneUa}9%M!!!)TFYB3|(tF8~dMkJU>4_Xg(FY?Do= z(%{~wmE2v~uOda{=FZ&7?H31N3P*Z$39pze3KIsFZcUy2+2eg^{n60((*HQOu1?A4 z+AhYxf|3#Nea?J8z@B_^bo?y^K9x}Lcvtl);6O~F6?U9PITkA>v_ZWzfJy$U~B@&*$D6nS0V(m0PuNE*yxU21^r$X zuXi^@&s#4t#~BUu2-Wxb=fOZzGHw+WN+O10+|pcSO3#&o$1cijB@edKj_1sqh2F(2 z!)CTGKpup{B8+mVFuFBa=yO>3wn}qh#%~MFa#}9F6K{q|*mQ*L=0%cd-?iR#uYNvG z!6keHylRVM`rmc>m3rumuK%j_2P1k>#AnWNpvS9X?2o4NXfxZH!HfPW`l zG$~XOs9*3tf%n!i?e}~FOn5`~&RK_9v@{K3Z~}+UeBHH9iYN_!*WlYs7Ax?Wo_l2q z-J~mKB%~j?i0k9BqR=apID;gtu;5a|^M7o|mm26Qh3U{IEQc@Z%)cBDIcEz_=ZL&i zV6W-2ZIM;5|B(JYmXc4bse~;y_ zxtEx460qdU=rtXSnoporxy&vFLZk|@YoTo;H%lQ%M!WEpB*oAZ}qpkd4u#xiKCzxZA!^+e>{o$^gpn!I{JwdVsgo3 z1*f^b1bne&_pRoaD}W^YqAEx}Ur}K3|5Wk=b5}mlW3j4g7hC1W+-xD;=g-vS#Mvgy zX=RsNYgoeqJn#~d#&d~O*1w5r2feWX7ifYGOZ3JpN->Gk`Kq5zru`q&lP%fetfb*O zLx6c!$GRv)mL&7%_OP1p$0ZTL!^<&}`tT2(m?r4xEw@&#ONCk(>Vc7GG2t%dTv zjWJd2h*d?D=v46;L4o7nW0{=9#is$ojgTCa%h1n2hSeG)M8LqGy7Ei6i<0!xPf*&J z>v2H4K@}#?`$H{ZzwuE`10fD4tqrf;$4RMW(F4a?vTDvr)8XCC!R^zAh-qkRl`@X= zm`OGEj^*2>MfU|^nwp5$h?T?NlLRc6QOcSX*PfU0kE^PUSA02l2W^PLf#pv{EtnT} z^!XBMl`|6j(HLNO0aUioL@D@tvnmHY159d-nz-ByoK6S8ofZi-sX|WXmnuiWs_2}~ z(@`YE{COJi#uoRN(qNw78+#G<_Bdm;w2--WT{LM z(IXwr1zQHI@Go9Zit_o)8F0<4IF3rSPLQ|+o!2{~7hmp0X03>6Ns4x(I{`s0QNdG` zNyjeR&5!M5H?!y?N4W;r^#NZOW4bR%C@TT`+u!E>c}w4sRKzn;!eM|g3P$h)jpnd; z`I(*KbLdmmb_5x9JaMiQ3l5Q8jJy-^#Xq8Zy^i>7x0OK^N(J*xwO* zb^PI)Q6~25DssME&^PtJAX28tOG=Sr%_kCx1kn@n(Tt@OJe%f)Ly0FGMoVuM1oME#iXmw2_=FVW0#z?hI9x8N!R+Uk@-kr z;))mGDSt{WlnT}fd!S*)Gw9Z6<1|+D+VT|SsHNjhG(U;M$aC%KGS^90Q!&NoR2YVD zaSC`S*bX@9iju@N@EJ5I6|%ayh6J4RPb@E=gR2?JRClE|x-1B5->U78GkcCBg`7}f zOwJf80G=ab86xKUV-s?Kk;zStB=(-c-~N=sm469;i6ccNC;iv#fgAuGZ= z)wfCo1oTHrt*I=Sb~MXY2!BiB36a+{bG52lIL@bAtf}C3I^lSrK)#Q;onJymA`xmi zg5xH8doP8yRr(|txS)tr;49gH|J_q!u57VkGO)R;G6m+nPm~?8_0<2|Motn+>b4&~ ztPg=QAdKIN2Lx5&V&r4Ffr5lA0|t0Me{mcfawM7 zf7okhHPqn~3+=p}OMwvgbx&SEMB^6Q5Jfo{IOcCla7eb(&~2FMfwuwm1%Tc}lSeu~ z&LRJ4KD0cZdUj2{?mzDb;HaYM*JPfcqc=UpX4kr;yCvVt@^Vs5eO)+3>hbX3a07~d z4cfSS5k4*X%U_C2hc@us;eRXF{XvVFh+H)BvrJc%t0FZ+Lg21G{wEC^^pO^$tnN1M{Bs(YOF+ZIVe3+X%_KQ#!U)7gxu>_&!vZV%7WnxX z{p7#Sn9xynPFrXi6SMO|9`uoi(}sp~S-66G6x%_kZU-eLBAANon~q%E0|jk=^NbCW ziW%YU6l;?IHiV^w56M{dqnmg#?MuV`))$f(mGLNQKWSaSrJ-Vks`}qTldg8<8mT+&;lDh_IuOhKVl!hw6C_h`Oo#H|eF*{h*KSM|P!myUA>`dnLuZAD*o3 z99x@ytJ5a#uz~TeDYa6oypEWZp4*Y<8Zt5~*$wNb(zw?KpN*4~&=RShJdR<#-rImU)%_xQwZfn6fJ zpKC0N%^XQ%Nt;fI#nBtVRx~sKyb71qbBhNZWOij{#ZLPa>RLH*NEGC%U;Rh9U6qME}R6 zB(5zyL0%PEaR7}$0a_s`Wm(l)Qn*aFWu3^nYB$!-ZffB`w&M(Jbt+gOt-dPjX`qVqVj@`i|g)fuMvA%C2WW2Sg&$&IM;DY#(54HFGv!Fy$aA?gF+2^$) zvjL8eCs!GRHTZkZWRP=F7}Jt9*C-)40@s^gFHkx+fGGSs>K8j1PXcjRf$s5w^W245N_J=Psv-D`& zZqT-Fko8}DK+94t;ls7jqZNPA(Z}D0gA36n-Eld*0tGYPPg6up(b28brH5vr5;uS|Um!LPf4OiapySl} zKPET}*1engZlDoyT8`#)$v+kK6#8rHJjVu!W=}W9mrS2I45jfv8LV=EN2U3ecNxJB z9AHXz_TFFX%RRAq|CmS$m`hT{SlQS+l z#2R;tBpCb~wQsUu+`;%JTroN}hmQ$2Ys@GIBE-)A`=@foD`e|t>8RM;JvswPH8K8f z@419&3~IH)cD!E`U0`9yP187nCRF@uX#yjr^zWY~@j} zB#OS7RFE>B0si_YJ*XEK^$_0?);3m-QiU!=0hq+h@v z*>DsFk0nWDn6D^Bg(JomBaT$Rv|{jss$j4%w=J8=2-kRu$I<7cH+IUlJns;N_~T}_9z%|;Ce=co!VXKTv{{sxiX zcD|;K9j*9zou_d<8WQl6&OHPsOP)DgU=LzS$|@O;#YLq(1VddNFMe39|D(B*e0*$T zb;a+S|7zRvH0o`O`@G@&`_w|$tZ;R$a)96S?IMs6wf6L*D;0p6!w`by?O0P!TuxWMw*RpzPXP61-Yp+{KPctr;&V+U-@0S z;^)Ei>b##8H`wuRMrR$fRj0q$bPD z7Kwd~$Id`Y05F50$i-8bCExj(r679XwX&H{_c8>4E$i$9>l(>;yNspi++UVd&in8Z zz{)TE?%%Lf0Pt=&az5e`5*bJ9c3B-+7sNTL9yVWHoS*gU_v1#+#S{=USZL`py8wk~ z^0yrYTT`~n=3_p8tF`kOn%$ty9T$paKso@@$OwgKWY7>^k_dD<$|`G^(~CmAAf6o| zMffGWTjd&8q0Cw|;OP6yU^v#+9&0#hD;EN=x_Qe+%%|1_jSf9*P`TLE=Wj8l<%IpH zzH@`tuw&gXHX0~(|JcuH#$(IM(eX)Q9#fYXkPs;_`aQb#lj(`Rpz5>|Md1QOLN0%P z)GklIwJN}3h50+f(f_8nhdr< zI*@j^XaN=9p9wbX?0xw9_*?}G<+|BT1q%%z8-c4Ubmok zm`i=bVfc;3APYp+a>3)900XeFv^WHkxXluw8DAOTB>4)am5N;~bJ3H(j29;MW991shX`3INlZHIWX+uEN+? z6dG9ieP!6dE)+8dAs)(R;tu|_TVNAnJ{H9G_91z+eo7+3elZ+@g(m4h`XBCOlv%Xw zjx1IaC3U87`CXzsvzu0>W|YrlH^r|Oxi2jAr=1Sv_OA1W|H5l)ukzcgiGZ&woq(qRB^nvWN`lecuH7)2LP(SuJt!4R z8;u5w%6j22;;Wq8k+&Qa;To)222L`(Xyuz@EN!9#`|V^Pp);y^fyQW`rd~}@SCl19 z5hJXo)LqB;?_~#<17%v?)YXo{P2{Dg+w~BT`oqV{?A`vfIe;pgEad41hwK#JoFFF% z;`?OuZvEv8QCvD4ry6r#_HLC*H-bd(L6N64y`b`S-?uln+RjenPY{Tj6+pJtgU{aQ zGJ*d80>24B_VcO?D{OgR@)SU5}n%grym!utz%t~b}7amKB$b{u31QM?rKa|rPGD2D7mPpI;gXP@InwFFLxsc7 zegBs#KT>Hyupt}t6j}c2V|VvmKd<8sX0ca_=x2`hXV*;;spIXOu>>U{oqrUpsoF+F z@O^+VtoZR_@#L&|6yYlsZLDn?0ckug(wZlll?UlIN_F|!y0#3_v?ijaPJmQ5Vj^*R zqmi3eG^Y?nc^8LEPIe+BYuWthnN>S??L2aaKwtn+d)kMGzjW)`Wh;7@i--{6RU2VW z8wYrCp9TP+bw|5rzp=J({AndnUkZb|GOA1fk_`!)15&M)@H$HP9jRopC4<zRApYo4? z{r+N0YeT!RFd|&T|5+#3%HxTQNSqa^{c*S|$!;whBBa%?Z+>UPyE_&IVFjWq$q63* z{o6M!x^eam5*zB|8e9Ii0gV-3Dx!$+m# zh0%H<2?Z3)U(ngNe8s|BnT3@im*;gD|70g3b?jJSXzPc2n%D}2p;3Tr?zwl-Xe@M` zd~ujC3)G!E4(#2rWB>HP24JjECX+aJ!%cH$M3EoKb(zD2A^V|2L&f8Tpg}1J83dY| zvqMwbnxbWb0(-xcQjITly000m(K!5*m%fW+3_qVqd7Be z5CLuMQ|;hzmE)um-+1AJ2>8u!{otKfU)^-ONFanHL?na>MJU|cJEQOZ2Nn-L^2i+v z>+3U(7pgxU9DZwLuU&u)4vrjo@;g7=y=KjaO9U*S2zUt{iUqAmBLYHCPeI0Muw_fil@U0MBeK^LzBF1Xu3Y)X#us0FWBR9i4$mM|fMUV(bjU1Pt0YdF*0k@b z@BK-kr)S2z%VVSA;BXnqern1lpD&KQx%PvtKl#a9$#>WHEo26z5Ljtt2|VxNhi_i@ z_y6$Nou|I%;4m)8em1Op@r}2h`rd!_=JTaSt2{ILf%10Wb{m0<&egCh<3d}MilHSL%=I9w3fiI8G>(vzE>(OQSG zD`>*^%AV&e9vmhJ*=wWrTW@VC8Dl-A$RH?~J-fZXqhoS=G$@>>pu+@^F-nozvu9w> zYp=gIr|P9eA{Lh2HGednPG+pN2Hn|Ihw)DK_}Y{Ic;WTk0|O)NL}CGma=Gc-?_IHY z4nXW!<=`-m$sR>@r4Jk&Jg|1{mX6q3Sp?vgCEWvUZIh-(1!67><1o(29!K?^JNF+v zd?eotz+kP_o~MF2-Pcv^*<5bjVM555h{s`I*;>|du_KERSMO(YDMyEiqS+AuU`kt4 zw!S`{M<7s&3|rCb*Kbz<(P3>zc!zOMb|NHZ;RU_3a=Bc`zWCfVvw>BwZCw1)OY43W zKjXU8VO*0vy0S2e+K)f>pr6eqk1>N*3QZ8O|J|p4JZJOfkGCo{e$J{oII^D=N|Cab z?JYOYUHC^|yKgfBfwioal5l9K)cXA&{H# zAktv1)y$#1^{XulcYWHww{}76;4p5<4iIHseBVnx@x&KKYwqV{6G~#Bf9QDiDc7?O zR~^o~cq`7QCp@hHCBE_;iG(Lj%BEdpcbG7dJ;wjNv8fc@D~b%DXnxPk?VX)d+FWFJ zm=I)-7oGP== z&(l&_eB+!fK;(wyy47LA$e3br)Docp2p}S))5&6eeJ16)(_zAqea4Koy6QFJpcI;s zkvFo{IqAEdu6X%pgK$#vd2VTa#Qz$Z~o=)ZA2ts7R4OE z$`{uxUA_7@zjoc~Fkv)%EK|Px=<=JEE$!Wim>{K;RVo25ytvx+s>4-@3$nk6b$L3S z%zW#wzL;IG;Jr1el#ih?GP$KeTgz5C-$#e53>USSbXIo`*9_SKqQls+uR8z$A(C_R zb(oN3cW{`{3seUOM|KAXM|KAXM|KAXM|KAXM|KAXM|KB?&&K})>U`{!V1JEc00000 LNkvXXu0mjf+>)PN literal 0 HcmV?d00001 diff --git a/docs/conf.py b/docs/conf.py index f6502fe3a..eae3debf3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -156,6 +156,9 @@ def find_var(varname: str, *py_file_paths): ] html_js_files = ["custom.js"] +# Favicon +html_favicon = "_static/favicon.png" + # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. From c1c9ebb577862050174064a2822de92f65f499c1 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 5 Jan 2026 11:45:42 +0100 Subject: [PATCH 15/24] removing sg_execution_times.rst --- docs/sg_execution_times.rst | 49 ------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 docs/sg_execution_times.rst diff --git a/docs/sg_execution_times.rst b/docs/sg_execution_times.rst deleted file mode 100644 index ef8b3219e..000000000 --- a/docs/sg_execution_times.rst +++ /dev/null @@ -1,49 +0,0 @@ - -:orphan: - -.. _sphx_glr_sg_execution_times: - - -Computation times -================= -**00:37.949** total execution time for 5 files **from all galleries**: - -.. container:: - - .. raw:: html - - - - - - - - .. list-table:: - :header-rows: 1 - :class: table table-striped sg-datatable - - * - Example - - Time - - Mem (MB) - * - :ref:`sphx_glr_auto_examples_plot_01_quickstart.py` (``../examples/plot_01_quickstart.py``) - - 00:32.496 - - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_04_mixture.py` (``../examples/plot_04_mixture.py``) - - 00:05.454 - - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_02_parkinson_example.py` (``../examples/plot_02_parkinson_example.py``) - - 00:00.000 - - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_03_joint.py` (``../examples/plot_03_joint.py``) - - 00:00.000 - - 0.0 - * - :ref:`sphx_glr_auto_examples_plot_05_simulate.py` (``../examples/plot_05_simulate.py``) - - 00:00.000 - - 0.0 From c9a42a7efa786206df4bb0075f8316c1e67858eb Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 23 Feb 2026 15:19:08 +0100 Subject: [PATCH 16/24] solving poetry issue --- poetry.lock | 65 +---------------------------------------------------- 1 file changed, 1 insertion(+), 64 deletions(-) diff --git a/poetry.lock b/poetry.lock index 312846b63..9f22a2817 100644 --- a/poetry.lock +++ b/poetry.lock @@ -167,29 +167,6 @@ charset-normalizer = ["charset-normalizer"] html5lib = ["html5lib"] lxml = ["lxml"] -[[package]] -name = "beautifulsoup4" -version = "4.14.2" -description = "Screen-scraping library" -optional = false -python-versions = ">=3.7.0" -groups = ["docs"] -files = [ - {file = "beautifulsoup4-4.14.2-py3-none-any.whl", hash = "sha256:5ef6fa3a8cbece8488d66985560f97ed091e22bbc4e9c2338508a9d5de6d4515"}, - {file = "beautifulsoup4-4.14.2.tar.gz", hash = "sha256:2a98ab9f944a11acee9cc848508ec28d9228abfd522ef0fad6a02a72e0ded69e"}, -] - -[package.dependencies] -soupsieve = ">1.2" -typing-extensions = ">=4.0.0" - -[package.extras] -cchardet = ["cchardet"] -chardet = ["chardet"] -charset-normalizer = ["charset-normalizer"] -html5lib = ["html5lib"] -lxml = ["lxml"] - [[package]] name = "certifi" version = "2025.4.26" @@ -3088,34 +3065,6 @@ doc = ["ablog (>=0.11.8)", "colorama", "graphviz", "ipykernel", "ipyleaflet", "i i18n = ["Babel", "jinja2"] test = ["pytest", "pytest-cov", "pytest-regressions", "sphinx[test]"] -[[package]] -name = "pydata-sphinx-theme" -version = "0.16.1" -description = "Bootstrap-based Sphinx theme from the PyData community" -optional = false -python-versions = ">=3.9" -groups = ["docs"] -files = [ - {file = "pydata_sphinx_theme-0.16.1-py3-none-any.whl", hash = "sha256:225331e8ac4b32682c18fcac5a57a6f717c4e632cea5dd0e247b55155faeccde"}, - {file = "pydata_sphinx_theme-0.16.1.tar.gz", hash = "sha256:a08b7f0b7f70387219dc659bff0893a7554d5eb39b59d3b8ef37b8401b7642d7"}, -] - -[package.dependencies] -accessible-pygments = "*" -Babel = "*" -beautifulsoup4 = "*" -docutils = "!=0.17.0" -pygments = ">=2.7" -sphinx = ">=6.1" -typing-extensions = "*" - -[package.extras] -a11y = ["pytest-playwright"] -dev = ["pandoc", "pre-commit", "pydata-sphinx-theme[doc,test]", "pyyaml", "sphinx-theme-builder[cli]", "tox"] -doc = ["ablog (>=0.11.8)", "colorama", "graphviz", "ipykernel", "ipyleaflet", "ipywidgets", "jupyter_sphinx", "jupyterlite-sphinx", "linkify-it-py", "matplotlib", "myst-parser", "nbsphinx", "numpy", "numpydoc", "pandas", "plotly", "rich", "sphinx-autoapi (>=3.0.0)", "sphinx-copybutton", "sphinx-design", "sphinx-favicon (>=1.0.1)", "sphinx-sitemap", "sphinx-togglebutton", "sphinxcontrib-youtube (>=1.4.1)", "sphinxext-rediraffe", "xarray"] -i18n = ["Babel", "jinja2"] -test = ["pytest", "pytest-cov", "pytest-regressions", "sphinx[test]"] - [[package]] name = "pygments" version = "2.19.1" @@ -3812,18 +3761,6 @@ files = [ {file = "soupsieve-2.8.tar.gz", hash = "sha256:e2dd4a40a628cb5f28f6d4b0db8800b8f581b65bb380b97de22ba5ca8d72572f"}, ] -[[package]] -name = "soupsieve" -version = "2.8" -description = "A modern CSS selector implementation for Beautiful Soup." -optional = false -python-versions = ">=3.9" -groups = ["docs"] -files = [ - {file = "soupsieve-2.8-py3-none-any.whl", hash = "sha256:0cc76456a30e20f5d7f2e14a98a4ae2ee4e5abdc7c5ea0aafe795f344bc7984c"}, - {file = "soupsieve-2.8.tar.gz", hash = "sha256:e2dd4a40a628cb5f28f6d4b0db8800b8f581b65bb380b97de22ba5ca8d72572f"}, -] - [[package]] name = "sphinx" version = "7.4.7" @@ -4684,4 +4621,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" python-versions = ">=3.9,<=3.13" -content-hash = "04344c60e681098d672f73d8795863330ec059e0d794efa5a287bedf095a5d17" +content-hash = "9c44eaa747443634fc49d7da729eeb62e8f7d7296359809ef17965419bf3c2eb" From d6adb025931fd5df85a4d0e95efaa8471a0a7bf7 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 23 Feb 2026 15:47:44 +0100 Subject: [PATCH 17/24] fixing warnings --- docs/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 27d7e4483..30968c7fd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -134,6 +134,7 @@ def find_var(varname: str, *py_file_paths): "auto_examples/*.ipynb", "auto_examples/*.py.md5", "auto_examples/*.codeobj.json", + "data_summary.ipynb", ] show_warning_types = True @@ -179,8 +180,6 @@ def find_var(varname: str, *py_file_paths): # further. For a list of options available for each theme, see the # documentation. html_theme_options = { - "collapse_navigation": True, - "navigation_depth": 4, # Logo and description # 'description': 'LEArning Spatiotemporal Patterns in Python', # 'logo_name': 'false', From 1105eff27d1284a00da3f7c69b9c03f7905857df Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 23 Feb 2026 15:56:45 +0100 Subject: [PATCH 18/24] fixing readthedocs and test problem? --- .readthedocs.yaml | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 77d9965f2..b0409be55 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -10,6 +10,10 @@ build: - poetry config virtualenvs.create false - . "$READTHEDOCS_VIRTUALENV_PATH/bin/activate" && poetry install --with docs - pip freeze + post_install: + # RTD auto-upgrades sphinx (breaks furo/myst-parser <9) and setuptools + # (82+ removes pkg_resources, breaking pybtex). Re-pin to safe versions. + - pip install "sphinx<9" "setuptools<82" sphinx: configuration: docs/conf.py diff --git a/pyproject.toml b/pyproject.toml index 321f4f8ce..3d91dbad7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ maintainers = [ ] readme = "README.md" packages = [{include = "leaspy", from = "src"}] -requires-python = ">=3.9,<=3.13" +requires-python = ">=3.9,<3.14" keywords = [ "leaspy", "longitudinal", From 5685fe297b42e3502671cb97fbf624a4c58902ca Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 23 Feb 2026 16:20:00 +0100 Subject: [PATCH 19/24] forgot to poetry lock --- poetry.lock | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/poetry.lock b/poetry.lock index 9f22a2817..cd55c24d8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -501,7 +501,7 @@ description = "Python library for calculating contours of 2D quadrilateral grids optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "contourpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba38e3f9f330af820c4b27ceb4b9c7feee5fe0493ea53a8720f4792667465934"}, {file = "contourpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc41ba0714aa2968d1f8674ec97504a8f7e334f48eeacebcaa6256213acb0989"}, @@ -793,7 +793,7 @@ description = "A platform independent file lock." optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "filelock-3.20.3-py3-none-any.whl", hash = "sha256:4b0dda527ee31078689fc205ec4f1c1bf7d56cf88b6dc9426c4f230e46c2dce1"}, {file = "filelock-3.20.3.tar.gz", hash = "sha256:18c57ee915c7ec61cff0ecf7f0f869936c7c30191bb0cf406f1341778d0834e1"}, @@ -888,7 +888,7 @@ description = "Tools to manipulate font files" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "fonttools-4.61.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c7db70d57e5e1089a274cbb2b1fd635c9a24de809a231b154965d415d6c6d24"}, {file = "fonttools-4.61.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5fe9fd43882620017add5eabb781ebfbc6998ee49b35bd7f8f79af1f9f99a958"}, @@ -1291,7 +1291,7 @@ description = "IPython: Productive Interactive Computing" optional = false python-versions = ">=3.11" groups = ["docs"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "ipython-9.2.0-py3-none-any.whl", hash = "sha256:fef5e33c4a1ae0759e0bba5917c9db4eb8c53fee917b6a526bd973e1ca5159f6"}, {file = "ipython-9.2.0.tar.gz", hash = "sha256:62a9373dbc12f28f9feaf4700d052195bf89806279fc8ca11f3f54017d04751b"}, @@ -1325,7 +1325,7 @@ description = "Defines a variety of Pygments lexers for highlighting IPython cod optional = false python-versions = ">=3.8" groups = ["docs"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "ipython_pygments_lexers-1.1.1-py3-none-any.whl", hash = "sha256:a9462224a505ade19a605f71f8fa63c2048833ce50abc86768a0d81d876dc81c"}, {file = "ipython_pygments_lexers-1.1.1.tar.gz", hash = "sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81"}, @@ -1626,7 +1626,7 @@ description = "A fast implementation of the Cassowary constraint solver" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "kiwisolver-1.4.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:88c6f252f6816a73b1f8c904f7bbe02fd67c09a69f7cb8a0eecdbf5ce78e63db"}, {file = "kiwisolver-1.4.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c72941acb7b67138f35b879bbe85be0f6c6a70cab78fe3ef6db9c024d9223e5b"}, @@ -1913,7 +1913,7 @@ description = "Python plotting package" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "matplotlib-3.10.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:ff2ae14910be903f4a24afdbb6d7d3a6c44da210fc7d42790b87aeac92238a16"}, {file = "matplotlib-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0721a3fd3d5756ed593220a8b86808a36c5031fce489adb5b31ee6dbb47dd5b2"}, @@ -2094,7 +2094,7 @@ description = "An extended [CommonMark](https://spec.commonmark.org/) compliant optional = false python-versions = ">=3.10" groups = ["docs"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "myst_parser-4.0.1-py3-none-any.whl", hash = "sha256:9134e88959ec3b5780aedf8a99680ea242869d012e8821db3126d427edc9c95d"}, {file = "myst_parser-4.0.1.tar.gz", hash = "sha256:5cfea715e4f3574138aecbf7d54132296bfd72bb614d31168f48c477a830a7c4"}, @@ -2199,7 +2199,7 @@ description = "Python package for creating and manipulating graphs and networks" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f"}, {file = "networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1"}, @@ -2785,7 +2785,7 @@ description = "Python Imaging Library (fork)" optional = false python-versions = ">=3.10" groups = ["main", "docs"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "pillow-12.1.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:fb125d860738a09d363a88daa0f59c4533529a90e564785e20fe875b200b6dbd"}, {file = "pillow-12.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cad302dc10fac357d3467a74a9561c90609768a6f73a1923b0fd851b6486f8b0"}, @@ -3645,7 +3645,7 @@ description = "Fundamental algorithms for scientific computing in Python" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version >= \"3.11\" and python_version < \"3.13\" or python_full_version == \"3.13.0\"" +markers = "python_version >= \"3.11\"" files = [ {file = "scipy-1.15.2-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a2ec871edaa863e8213ea5df811cd600734f6400b4af272e1c011e69401218e9"}, {file = "scipy-1.15.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:6f223753c6ea76983af380787611ae1291e3ceb23917393079dcc746ba60cfb5"}, @@ -3714,7 +3714,7 @@ files = [ {file = "setuptools-80.3.1-py3-none-any.whl", hash = "sha256:ea8e00d7992054c4c592aeb892f6ad51fe1b4d90cc6947cc45c45717c40ec537"}, {file = "setuptools-80.3.1.tar.gz", hash = "sha256:31e2c58dbb67c99c289f51c16d899afedae292b978f8051efaf6262d8212f927"}, ] -markers = {main = "platform_system == \"Linux\" and platform_machine == \"x86_64\" or python_version == \"3.12\" or python_full_version == \"3.13.0\"", docs = "python_version == \"3.12\" or python_full_version == \"3.13.0\""} +markers = {main = "platform_system == \"Linux\" and platform_machine == \"x86_64\" or python_version >= \"3.12\"", docs = "python_version >= \"3.12\""} [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "ruff (>=0.8.0) ; sys_platform != \"cygwin\""] @@ -4620,5 +4620,5 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" -python-versions = ">=3.9,<=3.13" -content-hash = "9c44eaa747443634fc49d7da729eeb62e8f7d7296359809ef17965419bf3c2eb" +python-versions = ">=3.9,<3.14" +content-hash = "99bace1474c942e4a010f7dd77aa1ddeefee6e2609e07804b2534251fe89808e" From f81a1ebe9b07808830dc2d618a207d18a1271133 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 26 Feb 2026 16:58:22 +0100 Subject: [PATCH 20/24] fixing minor but various visual effects, revert theme: we went back to pydata theme, furo aborted --- .readthedocs.yaml | 2 +- docs/_static/custom.css | 222 ++++++++++++++++++++++---------- docs/_templates/navbar-nav.html | 22 ++++ docs/conf.py | 75 +++++------ docs/index.md | 12 +- examples/plot_01_quickstart.py | 39 +++--- poetry.lock | 36 ++---- pyproject.toml | 2 +- 8 files changed, 253 insertions(+), 157 deletions(-) create mode 100644 docs/_templates/navbar-nav.html diff --git a/.readthedocs.yaml b/.readthedocs.yaml index b0409be55..f74581767 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -11,7 +11,7 @@ build: - . "$READTHEDOCS_VIRTUALENV_PATH/bin/activate" && poetry install --with docs - pip freeze post_install: - # RTD auto-upgrades sphinx (breaks furo/myst-parser <9) and setuptools + # RTD auto-upgrades sphinx (breaks myst-parser <9) and setuptools # (82+ removes pkg_resources, breaking pybtex). Re-pin to safe versions. - pip install "sphinx<9" "setuptools<82" diff --git a/docs/_static/custom.css b/docs/_static/custom.css index 703806fae..1c546ec34 100644 --- a/docs/_static/custom.css +++ b/docs/_static/custom.css @@ -1,29 +1,118 @@ -.wy-nav-content { - max-width: 96% !important; +/* ============================================================================= + Leaspy custom styles for PyData Sphinx Theme + CSS variables: https://pydata-sphinx-theme.readthedocs.io/en/stable/user_guide/styling.html + ============================================================================= */ + +/* --- Global: slightly larger base font to match upstream v2 look --- */ +html { + --pst-font-size-base: 1.06rem; +} + +/* --- Sphinx-Gallery: hide download note, timing, and download footer --- */ +.sphx-glr-download-link-note, +.sphx-glr-timing, +.sphx-glr-footer { + display: none !important; } + +/* --- Sphinx-Gallery: gallery card thumbnails --- */ .sphx-glr-thumbcontainer .xref.std.std-ref { display: none; } -/* Hide images in the gallery */ .sphx-glr-thumbcontainer img { -display: none !important; + display: none !important; } -/* Reset container height to fit text only */ .sphx-glr-thumbcontainer { min-height: auto !important; height: auto !important; } -/* Set background as white for the sidebar logo and the Leaspy logo in index */ -.sidebar-logo, img[src*="leaspy_logo.png"] { +/* --- Viewcode / highlighted line (hll): pastel blue instead of orange --- */ +html[data-theme="light"] .highlight .hll { + background-color: rgba(80, 150, 220, 0.18) !important; +} +html[data-theme="dark"] .highlight .hll { + background-color: rgba(80, 150, 220, 0.15) !important; +} + +/* --- Viewcode: source code block target highlight (pastel blue) --- */ +html[data-theme="light"] { + --pst-color-target: rgba(80, 150, 220, 0.18); +} +html[data-theme="dark"] { + --pst-color-target: rgba(80, 150, 220, 0.15); +} + +/* --- Code blocks: green left border (input code only) --- */ +div.highlight-Python, +div.highlight-python3, +div.highlight-python { + border-left: 4px solid var(--pst-color-success); +} + +/* --- Sphinx-Gallery: cell borders (code + output) --- */ +/* Input code blocks: rounded grey/white border */ +div.highlight-Python, +div.highlight-python3, +div.highlight-python { + border: 1px solid; + border-left: 4px solid var(--pst-color-success); + border-radius: 6px; + overflow: hidden; +} +html[data-theme="light"] div.highlight-Python, +html[data-theme="light"] div.highlight-python3, +html[data-theme="light"] div.highlight-python { + border-color: #c0c0c0; + border-left-color: var(--pst-color-success); +} +html[data-theme="dark"] div.highlight-Python, +html[data-theme="dark"] div.highlight-python3, +html[data-theme="dark"] div.highlight-python { + border-color: #555; + border-left-color: var(--pst-color-success); +} + +/* Output blocks: rounded grey/white border */ +.sphx-glr-script-out div.highlight-none { + border: 1px solid; + border-radius: 6px; + overflow: hidden; +} +html[data-theme="light"] .sphx-glr-script-out div.highlight-none { + border-color: #989898; +} +html[data-theme="dark"] .sphx-glr-script-out div.highlight-none { + border-color: #555; +} + +/* --- Sphinx-Gallery: script output blocks --- */ +/* Slightly darker bg in light mode, slightly brighter in dark mode */ +html[data-theme="light"] .sphx-glr-script-out .highlight, +html[data-theme="light"] .sphx-glr-script-out pre { + background: #e1e1e1 !important; +} +html[data-theme="dark"] .sphx-glr-script-out .highlight, +html[data-theme="dark"] .sphx-glr-script-out pre { + background: #272626 !important; +} + +.sphx-glr-script-out pre { + color: var(--pst-color-text-base) !important; + font-size: 0.875em; + line-height: 1.5; +} + +/* --- Logo: white background patch for transparency on dark bg --- */ +img[src*="leaspy_logo.png"] { background-color: white; - padding: 5px; /* Adds some space around the logo */ - border-radius: 4px; /* Rounds the corners of the background */ + padding: 5px; + border-radius: 4px; } -/* Pandas DataFrame styling for Furo */ +/* --- Pandas DataFrame styling --- */ table.dataframe { border: none !important; border-collapse: collapse; @@ -31,15 +120,17 @@ table.dataframe { margin-bottom: 1em; width: auto; overflow-x: auto; - display: block; /* Makes it scrollable if wide */ + display: block; } table.dataframe thead { - border-bottom: 1px solid var(--color-border-primary); + border-bottom: 1px solid var(--pst-color-border); vertical-align: bottom; } -table.dataframe tr, table.dataframe th, table.dataframe td { +table.dataframe tr, +table.dataframe th, +table.dataframe td { text-align: right; vertical-align: middle; padding: 0.5em 0.5em; @@ -47,56 +138,59 @@ table.dataframe tr, table.dataframe th, table.dataframe td { white-space: normal; max-width: none; border: none; - color: var(--color-foreground-primary); /* Fix dark mode text */ + color: var(--pst-color-text-base); } table.dataframe th { font-weight: bold; - background: var(--color-background-secondary); /* Header background */ + background: var(--pst-color-surface); } table.dataframe tbody tr:nth-child(odd) { - background: var(--color-background-secondary); /* Zebra striping */ + background: var(--pst-color-surface); } table.dataframe tbody tr:hover { - background: var(--color-background-hover); /* Hover effect */ + background: var(--pst-color-surface); + opacity: 0.85; } -/* --- API Reference Styling --- */ +/* ============================================================================= + API Reference Styling + ============================================================================= */ -/* 1. Class Separation (Big) */ +/* --- 1. Class block separation --- */ dl.py.class { margin-bottom: 4rem !important; padding-bottom: 2rem; - border-bottom: 2px solid var(--color-border-primary); /* Stronger separator */ + border-bottom: 2px solid var(--pst-color-border); } -/* 2. Method/Function Separation (Small) */ -dl.py.method, dl.py.function { +/* --- 2. Method / Function separation --- */ +dl.py.method, +dl.py.function { margin-bottom: 2rem !important; padding-bottom: 1rem; - border-bottom: 1px solid var(--color-border-secondary); /* Lighter separator */ + border-bottom: 1px solid var(--pst-color-border); } -/* Remove the border from the last method to avoid double borders with the class end */ +/* Remove border on last method to avoid double borders with class end */ dl.py.class > dd > dl.py.method:last-child { - border-bottom: none; margin-bottom: 0 !important; padding-bottom: 0; } -/* 3. Signature Highlighting - Split for differentiation */ +/* --- 3. Signature headers --- */ -/* Class Header (Level 1) */ +/* Class header (Level 1) */ dl.py.class > dt { - background-color: var(--color-background-secondary); + background-color: var(--pst-color-surface); padding: 0.8rem; border-radius: 4px; margin-top: 1.5rem; font-weight: bold; - border-left: 5px solid var(--color-brand-primary); /* Brand Color (Blue) */ + border-left: 5px solid var(--pst-color-primary); display: block; text-indent: 0 !important; margin-left: 0 !important; @@ -104,15 +198,15 @@ dl.py.class > dt { box-sizing: border-box; } -/* Method/Function Header (Level 2) */ +/* Method / Function header (Level 2) */ dl.py.function > dt, dl.py.method > dt { - background-color: var(--color-background-secondary); + background-color: var(--pst-color-surface); padding: 0.6rem; border-radius: 4px; margin-top: 1.0rem; font-weight: bold; - border-left: 3px solid var(--color-foreground-primary); /* Darkest/Thickest (Black/Dark Grey) */ + border-left: 3px solid var(--pst-color-text-base); display: block; text-indent: 0 !important; margin-left: 0 !important; @@ -120,31 +214,30 @@ dl.py.method > dt { box-sizing: border-box; } -/* 4. Indentation and Vertical Lines */ +/* --- 4. Body indentation with vertical lines --- */ -/* Level 1: Class Body (Darkest Line, aligned left) */ +/* Class body */ dl.py.class > dd { - margin-left: 0 !important; /* Move line to the left edge */ - padding-left: 1.5rem; /* Keep content indented */ - border-left: 4px solid var(--color-brand-primary); /* Brand Color (Blue) */ + margin-left: 0 !important; + padding-left: 1.5rem; + border-left: 4px solid var(--pst-color-primary); } -/* Level 2: Method/Function Body (Brand Color Line) */ +/* Method / Function body */ dl.py.method > dd, dl.py.function > dd { - margin-left: 0 !important; /* Move line to the left edge */ + margin-left: 0 !important; padding-left: 1.5rem; - border-left: 2px solid var(--color-foreground-primary); + border-left: 2px solid var(--pst-color-text-base); } -/* 5. Styling for Parameters, Returns, Attributes (Field Lists) */ -/* Removed Level 3 indentation/borders as requested, keeping only tight spacing */ +/* --- 5. Parameters / Returns / Attributes field lists --- */ -/* The Headers (e.g. "Parameters", "Returns") - Simple bold, no box */ +/* Section header (e.g. "Parameters", "Returns") */ dl.field-list > dt { font-weight: bold; font-size: 1.0em; - color: var(--color-foreground-primary); + color: var(--pst-color-text-base); margin-top: 1.0rem; margin-bottom: 0.5rem; padding: 0; @@ -152,44 +245,43 @@ dl.field-list > dt { background: none; } -/* Field Lists Content - No vertical line, just simple indentation */ +/* Field list content — no vertical line, simple indent */ dl.field-list > dd { margin-left: 0 !important; padding-left: 1.0rem; - border-left: none; /* Removed the third level line */ + border-left: none; } -/* The Items (e.g. parameter names like "settings", "name") */ +/* Parameter names (monospace, bold) */ dl.field-list > dd > dl > dt { background-color: transparent !important; padding: 0 !important; - margin-top: 0.0rem !important; /* Zero margin */ - margin-bottom: 0.0rem !important; + margin-top: 0 !important; + margin-bottom: 0 !important; font-weight: bold; border: none !important; - color: var(--color-foreground-primary); - font-family: var(--font-stack-monospace); + color: var(--pst-color-text-base); + font-family: var(--pst-font-family-monospace); line-height: 1.2; } -/* The Descriptions (e.g. "Name of the algorithm.") */ +/* Bullet before each parameter name */ +dl.field-list > dd > dl > dt::before { + content: "•"; + color: var(--pst-color-text-muted); + margin-right: 0.5rem; + font-weight: normal; +} + +/* Parameter descriptions */ dl.field-list > dd > dl > dd { - margin-top: 0.0rem !important; - margin-bottom: 0.1rem !important; /* Extremely tight */ + margin-top: 0 !important; + margin-bottom: 0.1rem !important; margin-left: 1.0rem !important; } -/* Remove default margins from paragraphs inside descriptions to fix spacing */ dl.field-list > dd > dl > dd > p { margin-top: 0 !important; - margin-bottom: 0.0rem !important; /* Zero margin */ + margin-bottom: 0 !important; line-height: 1.3; -} - -/* Add a small bullet or marker to parameter names to make them distinct */ -dl.field-list > dd > dl > dt::before { - content: "•"; - color: var(--color-foreground-muted); - margin-right: 0.5rem; - font-weight: normal; -} +} \ No newline at end of file diff --git a/docs/_templates/navbar-nav.html b/docs/_templates/navbar-nav.html new file mode 100644 index 000000000..ee1de80f7 --- /dev/null +++ b/docs/_templates/navbar-nav.html @@ -0,0 +1,22 @@ +{# Navbar navigation links. + On toctree-rooted pages, generate_header_nav_html produces the links. + On orphan pages (e.g. viewcode _modules/), it returns empty — fall back to + a hardcoded list so navigation is always visible. +#} +

diff --git a/docs/conf.py b/docs/conf.py index 30968c7fd..7e6b980a8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,8 +50,13 @@ def find_var(varname: str, *py_file_paths): "myst_nb", "sphinxcontrib.bibtex", "sphinx.ext.viewcode", + "sphinx_copybutton", ] +# sphinx-copybutton: strip shell prompts from copied text +copybutton_prompt_text = r">>> |\$ " +copybutton_prompt_is_regexp = True + bibtex_bibfiles = ["references.bib"] # -- autoapi configuration --------------------------------------------------- @@ -145,22 +150,17 @@ def find_var(varname: str, *py_file_paths): ] # The name of the Pygments (syntax highlighting) style to use. +# PyData supports separate styles for light and dark mode. highlight_language = "python3" -pygments_style = "sphinx" +pygments_style = "friendly" # light mode +pygments_dark_style = "monokai" # dark mode # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -# ---sphinx-themes----- -# html_theme = 'neo_rtd_theme' -# html_theme_path = [sphinx_theme.get_html_theme_path()] - -# html_theme = 'alabaster' -# html_theme = 'sphinx-theme' -# html_theme = "pydata_sphinx_theme" -html_theme = "furo" +html_theme = "pydata_sphinx_theme" add_function_parentheses = True @@ -176,47 +176,38 @@ def find_var(varname: str, *py_file_paths): # Favicon html_favicon = "_static/favicon.png" -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. +# Theme options html_theme_options = { - # Logo and description - # 'description': 'LEArning Spatiotemporal Patterns in Python', - # 'logo_name': 'false', - # 'logo_text_align': 'center', - # GitHub stuff - # 'github_banner': 'true', - # 'github_repo': 'pyts', - # 'github_type': 'star', - # 'github_user': 'johannfaouzi', - # Page and sidebar widths - # 'page_width': '1300px', - "body_max_width": "1000px", - # 'sidebar_width': '250px', - # Related links - # 'show_related': 'true', - # 'show_relbar_bottom': 'true', - # Font sizes - # 'font_size': '15px', - # 'code_font_size': '13px' + # Navbar + "navbar_align": "left", + "navbar_center": ["navbar-nav"], + "navbar_end": ["theme-switcher", "navbar-icon-links"], + "header_links_before_dropdown": 6, + # Secondary (right) sidebar + "secondary_sidebar_items": ["page-toc"], + "show_toc_level": 2, + # Logo + "logo": { + "image_light": "_static/images/leaspy_logo.png", + "image_dark": "_static/images/leaspy_logo.png", + }, + # GitHub icon in navbar + "icon_links": [ + { + "name": "GitHub", + "url": "https://github.com/aramis-lab/leaspy", + "icon": "fa-brands fa-github", + } + ], } html_context = { - "display_github": True, - "github_url": "https://github.com", "github_user": "aramis-lab", "github_repo": "leaspy", - "github_version": "v2/", - "conf_py_path": "/docs/", + "github_version": "v2", + "doc_path": "docs", } -# Custom CSS files -# html_css_files = [ -# 'custom.css', -# ]# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -html_logo = "_static/images/leaspy_logo.png" - html_title = "Leaspy" # A shorter title for the navigation bar. Default is the same as html_title. html_short_title = "Leaspy documentation" diff --git a/docs/index.md b/docs/index.md index e3d229003..a3007c7c9 100644 --- a/docs/index.md +++ b/docs/index.md @@ -74,10 +74,18 @@ auto_examples/index :maxdepth: 3 user_guide +reference/api/index +changelog +references +``` + +```{toctree} + :hidden: + :caption: More + :maxdepth: 2 + glossary notations -references -changelog to_go_further license ``` diff --git a/examples/plot_01_quickstart.py b/examples/plot_01_quickstart.py index 504f23f83..a7dcd8f6a 100644 --- a/examples/plot_01_quickstart.py +++ b/examples/plot_01_quickstart.py @@ -24,31 +24,31 @@ # %% -# ```{warning} -# You **MUST** include both `ID` and `TIME`, either as indices or as columns. -# The remaining columns should correspond to the observed variables -# (also called features or endpoints). -# Each feature should have its own column, and each visit should occupy one row. -# ``` +# .. warning:: +# +# You **MUST** include both ``ID`` and ``TIME``, either as indices or as columns. +# The remaining columns should correspond to the observed variables +# (also called features or endpoints). +# Each feature should have its own column, and each visit should occupy one row. # %% -# ```{warning} -# - Leaspy supports *linear* and *logistic* models. -# - The features **MUST** be increasing over time. -# - For logistic models, data must be rescaled between 0 and 1. -# ``` +# .. warning:: +# +# - Leaspy supports *linear* and *logistic* models. +# - The features **MUST** be increasing over time. +# - For logistic models, data must be rescaled between 0 and 1. from leaspy.io.data import Data data = Data.from_dataframe(alzheimer_df) # %% -# ```{seealso} -# For a deeper understanding of the `Data` and `Dataset` classes, including -# iteration, cofactors, and best practices, see the -# [Data Containers Guide](../data_summary.ipynb). -# ``` +# .. seealso:: +# +# For a deeper understanding of the ``Data`` and ``Dataset`` classes, including +# iteration, cofactors, and best practices, refer to the Data Containers Guide +# in the documentation. # %% # The core functionality of Leaspy is to estimate the group-average trajectory @@ -79,10 +79,11 @@ # %% # We have seen how to fit a model and personalize it to individuals. # Leaspy also provides various plotting functions to visualize the results. -# Let's go to the next [section](./plot_02_parkinson_example) to see how to plot +# Let's go to the next :doc:`section ` to see how to plot # the group-average trajectory and the individual trajectories using the Parkinson's disease dataset. + # %% # To go further: # -# 1. See the [User Guide](../user_guide.md) and full API documentation. -# 2. Explore additional [examples](./index.rst). +# 1. See the :doc:`User Guide <../user_guide>` and full API documentation. +# 2. Explore additional :doc:`examples <./index>`. diff --git a/poetry.lock b/poetry.lock index cd55c24d8..039825755 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1022,25 +1022,6 @@ test-downstream = ["aiobotocore (>=2.5.4,<3.0.0)", "dask[dataframe,test]", "moto test-full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "cloudpickle", "dask", "distributed", "dropbox", "dropboxdrivefs", "fastparquet", "fusepy", "gcsfs", "jinja2", "kerchunk", "libarchive-c", "lz4", "notebook", "numpy", "ocifs", "pandas", "panel", "paramiko", "pyarrow", "pyarrow (>=1)", "pyftpdlib", "pygit2", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "python-snappy", "requests", "smbprotocol", "tqdm", "urllib3", "zarr", "zstandard"] tqdm = ["tqdm"] -[[package]] -name = "furo" -version = "2025.9.25" -description = "A clean customisable Sphinx documentation theme." -optional = false -python-versions = ">=3.8" -groups = ["docs"] -files = [ - {file = "furo-2025.9.25-py3-none-any.whl", hash = "sha256:2937f68e823b8e37b410c972c371bc2b1d88026709534927158e0cb3fac95afe"}, - {file = "furo-2025.9.25.tar.gz", hash = "sha256:3eac05582768fdbbc2bdfa1cdbcdd5d33cfc8b4bd2051729ff4e026a1d7e0a98"}, -] - -[package.dependencies] -accessible-pygments = ">=0.0.5" -beautifulsoup4 = "*" -pygments = ">=2.7" -sphinx = ">=6.0,<9.0" -sphinx-basic-ng = ">=1.0.0.beta2" - [[package]] name = "greenlet" version = "3.2.1" @@ -3841,22 +3822,23 @@ numpy = ["nptyping (>=2.5)"] testing = ["covdefaults (>=2.3)", "coverage (>=7.4.4)", "defusedxml (>=0.7.1)", "diff-cover (>=9)", "pytest (>=8.1.1)", "pytest-cov (>=5)", "sphobjinv (>=2.3.1)", "typing-extensions (>=4.11)"] [[package]] -name = "sphinx-basic-ng" -version = "1.0.0b2" -description = "A modern skeleton for Sphinx themes." +name = "sphinx-copybutton" +version = "0.5.2" +description = "Add a copy button to each of your code cells." optional = false python-versions = ">=3.7" groups = ["docs"] files = [ - {file = "sphinx_basic_ng-1.0.0b2-py3-none-any.whl", hash = "sha256:eb09aedbabfb650607e9b4b68c9d240b90b1e1be221d6ad71d61c52e29f7932b"}, - {file = "sphinx_basic_ng-1.0.0b2.tar.gz", hash = "sha256:9ec55a47c90c8c002b5960c57492ec3021f5193cb26cebc2dc4ea226848651c9"}, + {file = "sphinx-copybutton-0.5.2.tar.gz", hash = "sha256:4cf17c82fb9646d1bc9ca92ac280813a3b605d8c421225fd9913154103ee1fbd"}, + {file = "sphinx_copybutton-0.5.2-py3-none-any.whl", hash = "sha256:fb543fd386d917746c9a2c50360c7905b605726b9355cd26e9974857afeae06e"}, ] [package.dependencies] -sphinx = ">=4.0" +sphinx = ">=1.8" [package.extras] -docs = ["furo", "ipython", "myst-parser", "sphinx-copybutton", "sphinx-inline-tabs"] +code-style = ["pre-commit (==2.12.1)"] +rtd = ["ipython", "myst-nb", "sphinx", "sphinx-book-theme", "sphinx-examples"] [[package]] name = "sphinx-gallery" @@ -4621,4 +4603,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" python-versions = ">=3.9,<3.14" -content-hash = "99bace1474c942e4a010f7dd77aa1ddeefee6e2609e07804b2534251fe89808e" +content-hash = "b56744a4283022f6f0f7c21fa58284b73750d4233834ff907ffbc63fcbfb522c" diff --git a/pyproject.toml b/pyproject.toml index 3d91dbad7..c1e3fa8aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ sphinx-autoapi = "*" myst-nb = "*" sphinxcontrib-bibtex = "*" pydata-sphinx-theme = "^0.16.1" -furo = "^2025.9.25" +sphinx-copybutton = "*" # Security fixes - prevent downgrades urllib3 = ">=2.6.3" requests = ">=2.32.5" From e830d1692775e90350de23321e9a911b9004d5ca Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 2 Mar 2026 11:51:50 +0100 Subject: [PATCH 21/24] fixing UI --- docs/_static/custom.css | 105 ++++++++++++---------------------------- 1 file changed, 32 insertions(+), 73 deletions(-) diff --git a/docs/_static/custom.css b/docs/_static/custom.css index 1c546ec34..0c52cdcb2 100644 --- a/docs/_static/custom.css +++ b/docs/_static/custom.css @@ -3,57 +3,44 @@ CSS variables: https://pydata-sphinx-theme.readthedocs.io/en/stable/user_guide/styling.html ============================================================================= */ -/* --- Global: slightly larger base font to match upstream v2 look --- */ -html { - --pst-font-size-base: 1.06rem; +/* --- Viewcode: pastel blue highlights (hll lines + target blocks) --- */ +html[data-theme="light"] { + --pst-color-target: rgba(80, 150, 220, 0.18); +} +html[data-theme="dark"] { + --pst-color-target: rgba(80, 150, 220, 0.15); +} +html[data-theme="light"] .highlight .hll { + background-color: rgba(80, 150, 220, 0.18) !important; +} +html[data-theme="dark"] .highlight .hll { + background-color: rgba(80, 150, 220, 0.15) !important; } -/* --- Sphinx-Gallery: hide download note, timing, and download footer --- */ +/* ============================================================================= + Sphinx-Gallery + ============================================================================= */ + +/* Hide download note, timing, and download footer */ .sphx-glr-download-link-note, .sphx-glr-timing, .sphx-glr-footer { display: none !important; } -/* --- Sphinx-Gallery: gallery card thumbnails --- */ +/* Gallery card thumbnails: text only, no images */ .sphx-glr-thumbcontainer .xref.std.std-ref { display: none; } - .sphx-glr-thumbcontainer img { display: none !important; } - .sphx-glr-thumbcontainer { min-height: auto !important; height: auto !important; } -/* --- Viewcode / highlighted line (hll): pastel blue instead of orange --- */ -html[data-theme="light"] .highlight .hll { - background-color: rgba(80, 150, 220, 0.18) !important; -} -html[data-theme="dark"] .highlight .hll { - background-color: rgba(80, 150, 220, 0.15) !important; -} - -/* --- Viewcode: source code block target highlight (pastel blue) --- */ -html[data-theme="light"] { - --pst-color-target: rgba(80, 150, 220, 0.18); -} -html[data-theme="dark"] { - --pst-color-target: rgba(80, 150, 220, 0.15); -} - -/* --- Code blocks: green left border (input code only) --- */ -div.highlight-Python, -div.highlight-python3, -div.highlight-python { - border-left: 4px solid var(--pst-color-success); -} - -/* --- Sphinx-Gallery: cell borders (code + output) --- */ -/* Input code blocks: rounded grey/white border */ +/* Input code blocks: green left border + grey/white outline */ div.highlight-Python, div.highlight-python3, div.highlight-python { @@ -75,7 +62,7 @@ html[data-theme="dark"] div.highlight-python { border-left-color: var(--pst-color-success); } -/* Output blocks: rounded grey/white border */ +/* Output blocks: grey/white outline, no green bar, tinted background */ .sphx-glr-script-out div.highlight-none { border: 1px solid; border-radius: 6px; @@ -87,9 +74,6 @@ html[data-theme="light"] .sphx-glr-script-out div.highlight-none { html[data-theme="dark"] .sphx-glr-script-out div.highlight-none { border-color: #555; } - -/* --- Sphinx-Gallery: script output blocks --- */ -/* Slightly darker bg in light mode, slightly brighter in dark mode */ html[data-theme="light"] .sphx-glr-script-out .highlight, html[data-theme="light"] .sphx-glr-script-out pre { background: #e1e1e1 !important; @@ -98,21 +82,24 @@ html[data-theme="dark"] .sphx-glr-script-out .highlight, html[data-theme="dark"] .sphx-glr-script-out pre { background: #272626 !important; } - .sphx-glr-script-out pre { color: var(--pst-color-text-base) !important; font-size: 0.875em; line-height: 1.5; } -/* --- Logo: white background patch for transparency on dark bg --- */ +/* ============================================================================= + Misc + ============================================================================= */ + +/* Logo: white background patch for transparency on dark bg */ img[src*="leaspy_logo.png"] { background-color: white; padding: 5px; border-radius: 4px; } -/* --- Pandas DataFrame styling --- */ +/* Pandas DataFrame styling */ table.dataframe { border: none !important; border-collapse: collapse; @@ -122,34 +109,29 @@ table.dataframe { overflow-x: auto; display: block; } - table.dataframe thead { border-bottom: 1px solid var(--pst-color-border); vertical-align: bottom; } - table.dataframe tr, table.dataframe th, table.dataframe td { text-align: right; vertical-align: middle; - padding: 0.5em 0.5em; + padding: 0.5em; line-height: normal; white-space: normal; max-width: none; border: none; color: var(--pst-color-text-base); } - table.dataframe th { font-weight: bold; background: var(--pst-color-surface); } - table.dataframe tbody tr:nth-child(odd) { background: var(--pst-color-surface); } - table.dataframe tbody tr:hover { background: var(--pst-color-surface); opacity: 0.85; @@ -159,31 +141,27 @@ table.dataframe tbody tr:hover { API Reference Styling ============================================================================= */ -/* --- 1. Class block separation --- */ +/* 1. Class block separation */ dl.py.class { margin-bottom: 4rem !important; padding-bottom: 2rem; border-bottom: 2px solid var(--pst-color-border); } -/* --- 2. Method / Function separation --- */ +/* 2. Method / Function separation */ dl.py.method, dl.py.function { margin-bottom: 2rem !important; padding-bottom: 1rem; border-bottom: 1px solid var(--pst-color-border); } - -/* Remove border on last method to avoid double borders with class end */ dl.py.class > dd > dl.py.method:last-child { border-bottom: none; margin-bottom: 0 !important; padding-bottom: 0; } -/* --- 3. Signature headers --- */ - -/* Class header (Level 1) */ +/* 3. Signature headers */ dl.py.class > dt { background-color: var(--pst-color-surface); padding: 0.8rem; @@ -197,8 +175,6 @@ dl.py.class > dt { width: 100%; box-sizing: border-box; } - -/* Method / Function header (Level 2) */ dl.py.function > dt, dl.py.method > dt { background-color: var(--pst-color-surface); @@ -214,16 +190,12 @@ dl.py.method > dt { box-sizing: border-box; } -/* --- 4. Body indentation with vertical lines --- */ - -/* Class body */ +/* 4. Body indentation with vertical lines */ dl.py.class > dd { margin-left: 0 !important; padding-left: 1.5rem; border-left: 4px solid var(--pst-color-primary); } - -/* Method / Function body */ dl.py.method > dd, dl.py.function > dd { margin-left: 0 !important; @@ -231,12 +203,9 @@ dl.py.function > dd { border-left: 2px solid var(--pst-color-text-base); } -/* --- 5. Parameters / Returns / Attributes field lists --- */ - -/* Section header (e.g. "Parameters", "Returns") */ +/* 5. Parameters / Returns / Attributes field lists */ dl.field-list > dt { font-weight: bold; - font-size: 1.0em; color: var(--pst-color-text-base); margin-top: 1.0rem; margin-bottom: 0.5rem; @@ -244,15 +213,10 @@ dl.field-list > dt { border: none; background: none; } - -/* Field list content — no vertical line, simple indent */ dl.field-list > dd { margin-left: 0 !important; padding-left: 1.0rem; - border-left: none; } - -/* Parameter names (monospace, bold) */ dl.field-list > dd > dl > dt { background-color: transparent !important; padding: 0 !important; @@ -264,22 +228,17 @@ dl.field-list > dd > dl > dt { font-family: var(--pst-font-family-monospace); line-height: 1.2; } - -/* Bullet before each parameter name */ dl.field-list > dd > dl > dt::before { content: "•"; color: var(--pst-color-text-muted); margin-right: 0.5rem; font-weight: normal; } - -/* Parameter descriptions */ dl.field-list > dd > dl > dd { margin-top: 0 !important; margin-bottom: 0.1rem !important; margin-left: 1.0rem !important; } - dl.field-list > dd > dl > dd > p { margin-top: 0 !important; margin-bottom: 0 !important; From fa8a35435784fbbde598de57e38c9977bf7bec8d Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 2 Mar 2026 14:01:33 +0100 Subject: [PATCH 22/24] refactor(models): extract summary and info logic to dedicated module This commit addresses structural concerns by moving the newly added summary and information features out of the core `base.py` file, keeping the original source code as clean and untouched as possible. Key changes: - Extracted Summary and Info dataclasses into a new summary.py module. - Moved all formatting logic out of BaseModel and into the new module. - Created AutoPrintMixin to standardize the auto-display behavior across both Info and Summary. - Updated BaseModel.fit() to calculate and store training loop duration. - Replaced dictionary annotations with DatasetInfo and TrainingInfo TypedDicts. - Removed unused imports. --- src/leaspy/models/base.py | 683 ++------------------ src/leaspy/models/mcmc_saem_compatible.py | 3 +- src/leaspy/models/settings.py | 6 +- src/leaspy/models/summary.py | 719 ++++++++++++++++++++++ 4 files changed, 785 insertions(+), 626 deletions(-) create mode 100644 src/leaspy/models/summary.py diff --git a/src/leaspy/models/base.py b/src/leaspy/models/base.py index be281b66f..469c219d3 100644 --- a/src/leaspy/models/base.py +++ b/src/leaspy/models/base.py @@ -1,10 +1,9 @@ -import textwrap +import time import warnings from abc import ABC, abstractmethod -from dataclasses import dataclass, field from enum import Enum from pathlib import Path -from typing import Any, Optional, Union +from typing import Optional, Union import numpy as np import pandas as pd @@ -17,378 +16,15 @@ from leaspy.io.outputs.result import Result from leaspy.utils.typing import DictParamsTorch, FeatureType, IDType, KwargsType +from .summary import DatasetInfo, Info, Summary, TrainingInfo + __all__ = [ "InitializationMethod", "BaseModel", "ModelInterface", - "Summary", ] -@dataclass -class Summary: - """A structured summary of a Leaspy model. - - Provides programmatic access to model metadata, parameters, and training - statistics. Calling `model.summary()` prints the summary; storing it in a - variable allows access to individual attributes. - - Use `s.help()` to see all available attributes and usage examples. - - Examples - -------- - >>> model.summary() # Prints the formatted summary - >>> s = model.summary() # Store to access attributes - >>> s.algorithm # 'mcmc_saem' - >>> s.seed # 42 - >>> s.n_subjects # 150 - >>> s.get_param('tau_std') # tensor([10.5]) - >>> s.help() # Show all available attributes - """ - - name: str - model_type: str - dimension: Optional[int] = None - features: Optional[list[str]] = None - source_dimension: Optional[int] = None - n_clusters: Optional[int] = None - obs_models: Optional[list[str]] = None - nll: Optional[float] = None - training_info: dict = field(default_factory=dict) - dataset_info: dict = field(default_factory=dict) - parameters: dict[str, dict[str, Any]] = field(default_factory=dict) - leaspy_version: Optional[str] = None - _param_axes: dict = field(default_factory=dict, repr=False) - _feature_names: Optional[list[str]] = field(default=None, repr=False) - _printed: bool = field(default=False, repr=False) - - # Formatting constants - _WIDTH: int = field(default=80, repr=False) - _BOLD: str = field(default="\033[1m", repr=False) - _RESET: str = field(default="\033[0m", repr=False) - - def __post_init__(self): - """Print the summary automatically when created (unless suppressed).""" - pass # Printing is handled in __del__ if not stored - - def __del__(self): - """Print summary if it was never accessed or printed.""" - if not self._printed: - print(str(self)) - - def __repr__(self) -> str: - """Mark as printed and return the formatted string.""" - self._printed = True - return str(self) - - def __getattribute__(self, name: str) -> Any: - """Mark as printed when any public attribute is accessed.""" - # Always use object.__getattribute__ to avoid recursion - value = object.__getattribute__(self, name) - # Mark as printed for public attribute access (not private/dunder) - if not name.startswith("_") and name not in ("help",): - object.__setattr__(self, "_printed", True) - return value - - def __str__(self) -> str: - """Return a formatted string representation of the summary.""" - # Don't mark as printed here - let __repr__ or __del__ handle it - lines = [] - sep = "=" * self._WIDTH - - # Header - lines.append(sep) - lines.append(f"{self._BOLD}{'Model Summary':^{self._WIDTH}}{self._RESET}") - lines.append(sep) - lines.append(f"{self._BOLD}Model Name:{self._RESET} {self.name}") - lines.append(f"{self._BOLD}Model Type:{self._RESET} {self.model_type}") - - if self.features is not None: - feat_str = ", ".join(self.features) - lines.extend(self._wrap_text(f"{self._BOLD}Features ({self.dimension}){self._RESET}", feat_str)) - - if self.source_dimension is not None: - sources = [f"Source {i} (s{i})" for i in range(self.source_dimension)] - lines.extend(self._wrap_text(f"{self._BOLD}Sources ({self.source_dimension}){self._RESET}", ", ".join(sources))) - - if self.n_clusters is not None: - clusters = [f"Cluster {i} (c{i})" for i in range(self.n_clusters)] - lines.extend(self._wrap_text(f"{self._BOLD}Clusters ({self.n_clusters}){self._RESET}", ", ".join(clusters))) - - if self.obs_models: - lines.extend(self._wrap_text(f"{self._BOLD}Observation Models{self._RESET}", ", ".join(self.obs_models))) - - if self.nll is not None: - lines.append(f"{self._BOLD}Neg. Log-Likelihood:{self._RESET} {self.nll:.4f}") - - # Training Metadata - if self.training_info: - lines.append("") - lines.append(f"{self._BOLD}Training Metadata{self._RESET}") - lines.append("-" * self._WIDTH) - ti = self.training_info - lines.append(f"Algorithm: {ti.get('algorithm', 'N/A')}") - if "seed" in ti: - lines.append(f"Seed: {ti['seed']}") - lines.append(f"Iterations: {ti.get('n_iter', 'N/A')}") - if ti.get("converged") is not None: - lines.append(f"Converged: {ti['converged']}") - if "duration" in ti: - lines.append(f"Duration: {ti['duration']}") - - # Data Context - if self.dataset_info: - lines.append("") - lines.append(f"{self._BOLD}Data Context{self._RESET}") - lines.append("-" * self._WIDTH) - di = self.dataset_info - lines.append(f"Subjects: {di.get('n_subjects', 'N/A')}") - lines.append(f"Visits: {di.get('n_visits', 'N/A')}") - lines.append(f"Total Observations: {di.get('n_observations', 'N/A')}") - - # Leaspy Version - if self.leaspy_version: - lines.append("") - lines.append(f"Leaspy Version: {self.leaspy_version}") - - lines.append(sep) - - # Parameters by category - for category, params in self.parameters.items(): - if params: - lines.append("") - lines.append(f"{self._BOLD}{category}{self._RESET}") - lines.append("-" * self._WIDTH) - lines.extend(self._format_parameter_group(params)) - - lines.append(sep) - return "\n".join(lines) - - # ------------------------------------------------------------------------- - # Convenience properties for common attributes - # ------------------------------------------------------------------------- - - @property - def sources(self) -> Optional[list[str]]: - """List of source names (e.g., ['s0', 's1']) or None if not applicable.""" - if self.source_dimension is None: - return None - return [f"s{i}" for i in range(self.source_dimension)] - - @property - def clusters(self) -> Optional[list[str]]: - """List of cluster names (e.g., ['c0', 'c1']) or None if not applicable.""" - if self.n_clusters is None: - return None - return [f"c{i}" for i in range(self.n_clusters)] - - @property - def algorithm(self) -> Optional[str]: - """Name of the algorithm used for training.""" - return self.training_info.get("algorithm") - - @property - def seed(self) -> Optional[int]: - """Random seed used for training.""" - return self.training_info.get("seed") - - @property - def n_iter(self) -> Optional[int]: - """Number of iterations used for training.""" - return self.training_info.get("n_iter") - - @property - def converged(self) -> Optional[bool]: - """Whether the training algorithm converged.""" - return self.training_info.get("converged") - - @property - def n_subjects(self) -> Optional[int]: - """Number of subjects in the training dataset.""" - return self.dataset_info.get("n_subjects") - - @property - def n_visits(self) -> Optional[int]: - """Total number of visits in the training dataset.""" - return self.dataset_info.get("n_visits") - - @property - def n_observations(self) -> Optional[int]: - """Total number of observations in the training dataset.""" - return self.dataset_info.get("n_observations") - - def get_param(self, name: str) -> Optional[Any]: - """Get a parameter value by name, searching across all categories. - - Parameters - ---------- - name : str - The parameter name (e.g., 'betas_mean', 'tau_std', 'noise_std'). - - Returns - ------- - The parameter value (typically a torch.Tensor), or None if not found. - """ - for category_params in self.parameters.values(): - if name in category_params: - return category_params[name] - return None - - def help(self) -> None: - """Print information about available Summary attributes and their meanings.""" - help_text = f""" -{self._BOLD}Summary Help{self._RESET} -{'=' * 60} - -The Summary object provides access to model metadata and parameters. - -{self._BOLD}Usage:{self._RESET} - model.summary() # Print the formatted summary - s = model.summary() # Store to access individual attributes - -{self._BOLD}Available Attributes:{self._RESET} - - {self._BOLD}Model Information:{self._RESET} - name Model name (str) - model_type Model class name, e.g., 'LogisticModel' (str) - dimension Number of features (int) - features List of feature names (list[str]) - sources List of source names, e.g., ['s0', 's1'] (list[str] or None) - clusters List of cluster names, e.g., ['c0', 'c1'] (list[str] or None) - source_dimension Number of sources (int or None) - n_clusters Number of clusters (int or None) - obs_models Observation model names (list[str] or None) - - {self._BOLD}Training:{self._RESET} - algorithm Algorithm name, e.g., 'mcmc_saem' (str) - seed Random seed used (int) - n_iter Number of iterations (int) - converged Whether training converged (bool or None) - nll Negative log-likelihood (float or None) - - {self._BOLD}Dataset:{self._RESET} - n_subjects Number of subjects in training data (int) - n_visits Total number of visits (int) - n_observations Total number of observations (int) - - {self._BOLD}Parameters:{self._RESET} - parameters All parameters grouped by category (dict) - get_param(name) Get a specific parameter by name - - {self._BOLD}Other:{self._RESET} - training_info Full training metadata dict - dataset_info Full dataset statistics dict - leaspy_version Leaspy version used (str) - -{self._BOLD}Note:{self._RESET} - Attributes returning None indicate the model does not support - that feature or the information was not generated. - -{self._BOLD}Examples:{self._RESET} - >>> s = model.summary() - >>> s.algorithm # 'mcmc_saem' - >>> s.seed # 42 - >>> s.n_subjects # 150 - >>> s.get_param('tau_std') # tensor([10.5]) -""" - print(help_text) - self._printed = True - - def _wrap_text(self, label: str, text: str, indent: int = 0) -> list[str]: - """Wrap text to fit within the display width.""" - prefix = f"{label}: " if label else "" - initial_indent = " " * indent + prefix - subsequent_indent = " " * (indent + 4) - wrapper = textwrap.TextWrapper( - width=self._WIDTH, - initial_indent=initial_indent, - subsequent_indent=subsequent_indent, - break_long_words=False, - break_on_hyphens=False - ) - return wrapper.wrap(text) - - def _format_parameter_group(self, params: dict[str, Any]) -> list[str]: - """Format a group of parameters for display.""" - lines = [] - for name, value in params.items(): - if isinstance(value, torch.Tensor): - lines.append(self._format_tensor(name, value)) - else: - lines.append(f" {name:<18} {value}") - return lines - - def _format_tensor(self, name: str, value: torch.Tensor) -> str: - """Format a tensor parameter for display.""" - axes = self._param_axes.get(name, ()) - - if value.ndim == 0: - return f" {name:<18} {value.item():.4f}" - - elif value.ndim == 1: - n = len(value) - if n > 10: - return f" {name:<18} Tensor of shape ({n},)" - - axis_name = axes[0] if len(axes) >= 1 else None - col_labels = self._get_axis_labels(axis_name, n) - - if col_labels: - header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) - values = f" {name:<18}" + " ".join(f"{v.item():>8.4f}" for v in value) - return header + "\n" + values - else: - val_str = "[" + ", ".join(f"{v.item():.4f}" for v in value) + "]" - return f" {name:<18} {val_str}" - - elif value.ndim == 2: - rows, cols = value.shape - if rows > 8 or cols > 8: - return f" {name:<18} Tensor of shape {tuple(value.shape)}" - - row_axis = axes[0] if len(axes) >= 1 else None - col_axis = axes[1] if len(axes) >= 2 else None - - row_labels = self._get_axis_labels(row_axis, rows) - col_labels = self._get_axis_labels(col_axis, cols) - - result = [f" {name}:"] - if col_labels: - header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) - result.append(header) - - for i, row in enumerate(value): - row_lbl = row_labels[i] if row_labels else f"[{i}]" - row_str = f" {row_lbl:<8}" + " ".join(f"{v.item():>8.4f}" for v in row) - result.append(row_str) - - return "\n".join(result) - - else: - return f" {name:<18} Tensor of shape {tuple(value.shape)}" - - def _get_axis_labels(self, axis_name: Optional[str], size: int) -> Optional[list[str]]: - """Get human-readable labels for an axis dimension.""" - if axis_name is None: - return None - - if axis_name == "feature": - if self._feature_names is not None: - feats = self._feature_names[:size] - return [f[:8] if len(f) <= 8 else f[:7] + "." for f in feats] - return [f"f{i}" for i in range(size)] - elif axis_name == "source": - return [f"s{i}" for i in range(size)] - elif axis_name == "cluster": - return [f"c{i}" for i in range(size)] - elif axis_name == "event": - return None - elif axis_name == "basis": - return [f"b{i}" for i in range(size)] - else: - return None - - class InitializationMethod(str, Enum): """Possible initialization methods for Leaspy models. @@ -754,7 +390,7 @@ def simulate( """ raise NotImplementedError - def _compute_dataset_statistics(self, dataset: Dataset) -> dict: + def _compute_dataset_statistics(self, dataset: Dataset) -> DatasetInfo: """Compute descriptive statistics of the dataset used for training.""" stats = { "n_subjects": dataset.n_individuals, @@ -798,8 +434,8 @@ def __init__(self, name: str, **kwargs): ) self._features: Optional[list[FeatureType]] = user_provided_features self._dimension: Optional[int] = user_provided_dimension - self.dataset_info = {} - self.training_info = {} + self.dataset_info: DatasetInfo = {} + self.training_info: TrainingInfo = {} self.initialization_method: InitializationMethod = InitializationMethod.DEFAULT if "initialization_method" in kwargs: self.initialization_method = InitializationMethod( @@ -1158,89 +794,69 @@ def fit( # Compute and store dataset statistics self.dataset_info = self._compute_dataset_statistics(dataset) - - # Store training metadata + + # Store training metadata (converged captured after run) self.training_info = { "algorithm": algorithm.name, "seed": algorithm.seed, "n_iter": algorithm.algo_parameters.get("n_iter"), - "converged": getattr(algorithm, "converged", None) # If algorithm tracks this } - + + t0 = time.perf_counter() algorithm.run(self, dataset) + elapsed = time.perf_counter() - t0 + + self.training_info["converged"] = getattr(algorithm, "converged", None) + self.training_info["duration"] = f"{elapsed:.1f}s" - def info(self) -> None: - """Print detailed information about the model configuration and training dataset.""" - lines = [] - width = 80 - sep = "=" * width - BOLD = "\033[1m" - RESET = "\033[0m" - - lines.append(sep) - lines.append(f"{BOLD}{'Model Information':^{width}}{RESET}") - lines.append(sep) - - # Statistical Model Info - lines.append(f"{BOLD}Statistical Model{RESET}") - lines.append("-" * width) - lines.append(f"Type: {self.__class__.__name__}") - lines.append(f"Name: {self.name}") - lines.append(f"Dimension: {self.dimension}") - if hasattr(self, "source_dimension"): - lines.append(f"Source Dimension: {self.source_dimension}") - - # Observation Models + def info(self) -> Info: + """Return model configuration and training context. + + When called directly (e.g. ``model.info()``), prints the information. + When stored in a variable, provides programmatic access. + + Returns + ------- + :class:`~leaspy.models.summary.Info` + Model configuration and training context. + + Examples + -------- + >>> model.info() # prints info + >>> i = model.info() # store for programmatic access + >>> i.n_subjects # 150 + >>> i.pct_missing # 2.5 + >>> i.help() # list available attributes + """ + # Observation model names + obs_model_names = None if hasattr(self, "obs_models"): - obs_names = [om.to_string() for om in self.obs_models] - lines.append(f"Observation Models: {', '.join(obs_names)}") - + obs_model_names = [om.to_string() for om in self.obs_models] + # Parameter count + n_total_params = None if self.parameters: - n_params = sum(p.numel() for p in self.parameters.values()) - lines.append(f"Total Parameters: {n_params}") - - if hasattr(self, "n_clusters") and self.n_clusters is not None: - clusters = self.n_clusters - lines.append(f"Clusters: {clusters}") - - - # Dataset Info - if self.dataset_info: - lines.append("") - lines.append(f"{BOLD}Training Dataset{RESET}") - lines.append("-" * width) - di = self.dataset_info - lines.append(f"Subjects: {di.get('n_subjects', 'N/A')}") - lines.append(f"Visits: {di.get('n_visits', 'N/A')}") - lines.append(f"Scores (Features): {di.get('n_scores', 'N/A')}") - lines.append(f"Total Observations: {di.get('n_observations', 'N/A')}") - - if "visits_per_subject" in di: - vps = di["visits_per_subject"] - lines.append(f"Visits per Subject: Median {vps['median']:.1f} [Min {vps['min']}, Max {vps['max']}, IQR {vps['iqr']:.1f}]") - - if "n_missing" in di: - lines.append(f"Missing Data: {di['n_missing']} ({di.get('pct_missing', 0):.2f}%)") - - if "n_events" in di: - lines.append(f"Events Observed: {di['n_events']}") - - # Training Info - if self.training_info: - lines.append("") - lines.append(f"{BOLD}Training Details{RESET}") - lines.append("-" * width) - ti = self.training_info - lines.append(f"Algorithm: {ti.get('algorithm', 'N/A')}") - if "seed" in ti: - lines.append(f"Seed: {ti['seed']}") - lines.append(f"Iterations: {ti.get('n_iter', 'N/A')}") - if ti.get("converged") is not None: - lines.append(f"Converged: {ti['converged']}") - - lines.append(sep) - print("\n".join(lines)) + n_total_params = sum(p.numel() for p in self.parameters.values()) + + # Leaspy version + try: + from leaspy import __version__ as version + except ImportError: + version = None + + return Info( + name=self.name, + model_type=self.__class__.__name__, + dimension=self.dimension, + features=self.features, + source_dimension=getattr(self, "source_dimension", None), + n_clusters=getattr(self, "n_clusters", None), + obs_models=obs_model_names, + n_total_params=n_total_params, + training_info=dict(self.training_info), + dataset_info=dict(self.dataset_info), + leaspy_version=version, + ) def summary(self) -> Summary: """Generate a structured summary of the model. @@ -1323,185 +939,6 @@ def summary(self) -> Summary: _feature_names=self.features, ) - def _format_parameter_group(self, param_names: list[str]) -> list[str]: - """Format a group of parameters, consolidating 1D parameters with the same axis. - - This method groups consecutive 1D parameters that share the same axis - to avoid repeating column headers. - - Parameters - ---------- - param_names : :obj:`list` [:obj:`str`] - List of parameter names to format. - - Returns - ------- - :obj:`list` [:obj:`str`] - List of formatted lines. - """ - lines = [] - axes_map = getattr(self, "_param_axes", {}) - - # Group consecutive 1D parameters with the same axis - i = 0 - while i < len(param_names): - name = param_names[i] - value = self.parameters[name] - axes = axes_map.get(name, ()) - - # Check if this is a 1D parameter with axis labels - if value.ndim == 1 and len(axes) >= 1: - axis_name = axes[0] - n = len(value) - - # Collect consecutive 1D params with the same axis and size - group = [(name, value)] - j = i + 1 - while j < len(param_names): - next_name = param_names[j] - next_value = self.parameters[next_name] - next_axes = axes_map.get(next_name, ()) - if (next_value.ndim == 1 and - len(next_axes) >= 1 and - next_axes[0] == axis_name and - len(next_value) == n): - group.append((next_name, next_value)) - j += 1 - else: - break - - # Format the group with a single header - if len(group) > 1: - col_labels = self._get_axis_labels(axis_name, n) - if col_labels: - header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) - lines.append(header) - for gname, gvalue in group: - row = f" {gname:<18}" + " ".join( - f"{v.item():>8.4f}" for v in gvalue - ) - lines.append(row) - i = j - continue - - # Default: format individually - lines.append(self._format_parameter(name, value)) - i += 1 - - return lines - - def _format_parameter(self, name: str, value: torch.Tensor) -> str: - """Format a single parameter for display in the summary. - - Uses axis metadata from `_param_axes` (if defined) to create - properly labeled tables for multi-dimensional parameters. - - Parameters - ---------- - name : :obj:`str` - The name of the parameter. - value : :class:`torch.Tensor` - The tensor value of the parameter. - - Returns - ------- - :obj:`str` - A formatted string representation of the parameter. - """ - # Get axis labels if available - axes = getattr(self, "_param_axes", {}).get(name, ()) - - if value.ndim == 0: - # Scalar - val_str = f"{value.item():.4f}" - return f" {name:<18} {val_str}" - - elif value.ndim == 1: - # 1D tensor - format as table with column headers - n = len(value) - if n > 10: - return f" {name:<18} Tensor of shape ({n},)" - - axis_name = axes[0] if len(axes) >= 1 else None - col_labels = self._get_axis_labels(axis_name, n) - - if col_labels: - # Create table format for 1D with labeled columns - header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) - values = f" {name:<18}" + " ".join( - f"{v.item():>8.4f}" for v in value - ) - return header + "\n" + values - else: - # Simple list format - val_str = "[" + ", ".join(f"{v.item():.4f}" for v in value) + "]" - return f" {name:<18} {val_str}" - - elif value.ndim == 2: - rows, cols = value.shape - if rows > 8 or cols > 8: - return f" {name:<18} Tensor of shape {tuple(value.shape)}" - - row_axis = axes[0] if len(axes) >= 1 else None - col_axis = axes[1] if len(axes) >= 2 else None - - row_labels = self._get_axis_labels(row_axis, rows) - col_labels = self._get_axis_labels(col_axis, cols) - - lines = [f" {name}:"] - - # Column headers - if col_labels: - header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) - lines.append(header) - - # Data rows - for i, row in enumerate(value): - row_lbl = row_labels[i] if row_labels else f"[{i}]" - row_str = f" {row_lbl:<8}" + " ".join(f"{v.item():>8.4f}" for v in row) - lines.append(row_str) - - return "\n".join(lines) - - else: - return f" {name:<18} Tensor of shape {tuple(value.shape)}" - - def _get_axis_labels(self, axis_name: Optional[str], size: int) -> Optional[list[str]]: - """Get human-readable labels for an axis dimension. - - Parameters - ---------- - axis_name : :obj:`str` or None - The semantic name of the axis (e.g., 'feature', 'source', 'cluster'). - size : :obj:`int` - The size of the axis. - - Returns - ------- - :obj:`list` [:obj:`str`] or None - A list of labels, or None if no meaningful labels available. - """ - if axis_name is None: - return None - - if axis_name == "feature": - if hasattr(self, "features") and self.features is not None: - # Use actual feature names (truncated), respecting the actual size - feats = self.features[:size] # In case size < len(features) - return [f[:8] if len(f) <= 8 else f[:7] + "." for f in feats] - return [f"f{i}" for i in range(size)] - elif axis_name == "source": - return [f"s{i}" for i in range(size)] - elif axis_name == "cluster": - return [f"c{i}" for i in range(size)] - elif axis_name == "event": - return None - elif axis_name == "basis": - # For basis vectors (e.g., in betas_mean), use generic indices - return [f"b{i}" for i in range(size)] - else: - return [f"{axis_name[:1]}{i}" for i in range(size)] - @staticmethod def _get_dataset( data: Optional[Union[pd.DataFrame, Data, Dataset]] = None, diff --git a/src/leaspy/models/mcmc_saem_compatible.py b/src/leaspy/models/mcmc_saem_compatible.py index 90002e766..c4c8a40c7 100644 --- a/src/leaspy/models/mcmc_saem_compatible.py +++ b/src/leaspy/models/mcmc_saem_compatible.py @@ -20,6 +20,7 @@ from .obs_models import ObservationModel from .stateful import StatefulModel +from .summary import get_axis_labels __all__ = ["McmcSaemCompatibleModel"] @@ -103,7 +104,7 @@ def sort_key(name: str) -> tuple[int, str, str]: n_cols = 1 if val.ndim == 1 and axes: # Check if this axis produces labeled columns - if self._get_axis_labels(primary_axis, len(val)) is not None: + if get_axis_labels(primary_axis, len(val), self.features) is not None: n_cols = len(val) elif val.ndim == 2: n_cols = val.shape[1] diff --git a/src/leaspy/models/settings.py b/src/leaspy/models/settings.py index 8d2bd46d4..2b74b2c8f 100644 --- a/src/leaspy/models/settings.py +++ b/src/leaspy/models/settings.py @@ -5,6 +5,8 @@ from leaspy.exceptions import LeaspyModelInputError from leaspy.utils.typing import KwargsType +from .summary import DatasetInfo, TrainingInfo + __all__ = ["ModelSettings"] @@ -50,8 +52,8 @@ def __init__(self, path_to_model_settings_or_dict: Union[str, dict]): ModelSettings._check_settings(settings) self.name: str = settings["name"].lower() self.parameters: KwargsType = settings["parameters"] - self.dataset_info: dict = settings.get("dataset_info", {}) - self.training_info: dict = settings.get("training_info", {}) + self.dataset_info: DatasetInfo = settings.get("dataset_info", {}) + self.training_info: TrainingInfo = settings.get("training_info", {}) self.hyperparameters: KwargsType = { k.lower(): v diff --git a/src/leaspy/models/summary.py b/src/leaspy/models/summary.py new file mode 100644 index 000000000..41ce37141 --- /dev/null +++ b/src/leaspy/models/summary.py @@ -0,0 +1,719 @@ +"""Model inspection objects for programmatic access to model metadata. + +This module provides :class:`Summary` and :class:`Info`, returned by +``model.summary()`` and ``model.info()`` respectively, along with the +:class:`~typing.TypedDict` schemas for training and dataset metadata. + +Both classes auto-print when their return value is discarded (e.g. +``model.summary()``) and stay silent when stored in a variable +(e.g. ``s = model.summary()``). See :class:`AutoPrintMixin` for details. +""" + +import textwrap +from dataclasses import dataclass, field +from typing import Any, Optional, TypedDict + +import torch + +__all__ = [ + "AutoPrintMixin", + "DatasetInfo", + "Info", + "Summary", + "TrainingInfo", + "VisitsPerSubject", + "get_axis_labels", +] + + +# --------------------------------------------------------------------------- +# TypedDict schemas for metadata +# --------------------------------------------------------------------------- + + +class VisitsPerSubject(TypedDict, total=False): + """Per-subject visit distribution statistics.""" + + median: float + min: int + max: int + iqr: float + + +class DatasetInfo(TypedDict, total=False): + """Statistics of the training dataset, computed during ``fit()``.""" + + n_subjects: int + n_scores: int + n_visits: int + n_observations: int + visits_per_subject: VisitsPerSubject + n_missing: int + pct_missing: float + n_events: int + + +class TrainingInfo(TypedDict, total=False): + """Metadata about the training process, captured during ``fit()``.""" + + algorithm: str + seed: int + n_iter: int + converged: bool + duration: str + + +# --------------------------------------------------------------------------- +# Shared utilities +# --------------------------------------------------------------------------- + +# ANSI formatting constants +_WIDTH = 80 +_BOLD = "\033[1m" +_RESET = "\033[0m" + + +def get_axis_labels( + axis_name: Optional[str], + size: int, + feature_names: Optional[list[str]] = None, +) -> Optional[list[str]]: + """Resolve human-readable labels for a parameter axis. + + Parameters + ---------- + axis_name : str or None + Semantic axis name (``"feature"``, ``"source"``, ``"cluster"``, + ``"basis"``). + size : int + Number of elements along the axis. + feature_names : list[str], optional + Feature names used when *axis_name* is ``"feature"``. + + Returns + ------- + list[str] or None + Labels for the axis, or ``None`` if no meaningful labels are available. + """ + if axis_name is None: + return None + + if axis_name == "feature": + if feature_names is not None: + feats = feature_names[:size] + return [f[:8] if len(f) <= 8 else f[:7] + "." for f in feats] + return [f"f{i}" for i in range(size)] + elif axis_name == "source": + return [f"s{i}" for i in range(size)] + elif axis_name == "cluster": + return [f"c{i}" for i in range(size)] + elif axis_name == "event": + return None + elif axis_name == "basis": + return [f"b{i}" for i in range(size)] + else: + return None + + +def _wrap_text(label: str, text: str, indent: int = 0) -> list[str]: + """Wrap *text* with a bold *label* prefix to fit within ``_WIDTH``.""" + prefix = f"{label}: " if label else "" + initial_indent = " " * indent + prefix + subsequent_indent = " " * (indent + 4) + wrapper = textwrap.TextWrapper( + width=_WIDTH, + initial_indent=initial_indent, + subsequent_indent=subsequent_indent, + break_long_words=False, + break_on_hyphens=False, + ) + return wrapper.wrap(text) + + +# --------------------------------------------------------------------------- +# Auto-print mixin +# --------------------------------------------------------------------------- + + +class AutoPrintMixin: + """Mixin that auto-prints when the object is discarded. + + Relies on CPython reference counting: when the return value of e.g. + ``model.summary()`` is not assigned, the object is immediately + garbage-collected, triggering ``__del__`` which prints it. + + When stored (``s = model.summary()``), any public attribute access + sets ``_printed = True``, suppressing the ``__del__`` output. + + Subclasses must define a ``_printed: bool`` field (via dataclass) + and a ``__str__`` method. + """ + + def __del__(self): + if not object.__getattribute__(self, "_printed"): + print(str(self)) + + def __repr__(self) -> str: + object.__setattr__(self, "_printed", True) + return str(self) + + def __getattribute__(self, name: str): + value = object.__getattribute__(self, name) + # Suppress auto-print once any public attribute is accessed + if not name.startswith("_") and name != "help": + object.__setattr__(self, "_printed", True) + return value + + +# --------------------------------------------------------------------------- +# Info +# --------------------------------------------------------------------------- + + +@dataclass(repr=False) +class Info(AutoPrintMixin): + """Model configuration and training context (no parameter values). + + Returned by ``model.info()``. Auto-prints when discarded; provides + programmatic access when stored in a variable. + + Examples + -------- + >>> model.info() # prints info + >>> i = model.info() # store for programmatic access + >>> i.n_subjects # 150 + >>> i.pct_missing # 2.5 + >>> i.help() # list available attributes + """ + + name: str + model_type: str + dimension: Optional[int] = None + features: Optional[list[str]] = None + source_dimension: Optional[int] = None + n_clusters: Optional[int] = None + obs_models: Optional[list[str]] = None + n_total_params: Optional[int] = None + training_info: TrainingInfo = field(default_factory=dict) + dataset_info: DatasetInfo = field(default_factory=dict) + leaspy_version: Optional[str] = None + _printed: bool = field(default=False, repr=False) + + # -- Convenience properties: training ------------------------------------ + + @property + def algorithm(self) -> Optional[str]: + """Algorithm name used for training.""" + return self.training_info.get("algorithm") + + @property + def seed(self) -> Optional[int]: + """Random seed used for training.""" + return self.training_info.get("seed") + + @property + def n_iter(self) -> Optional[int]: + """Number of iterations.""" + return self.training_info.get("n_iter") + + @property + def converged(self) -> Optional[bool]: + """Whether training converged.""" + return self.training_info.get("converged") + + @property + def duration(self) -> Optional[str]: + """Training duration.""" + return self.training_info.get("duration") + + # -- Convenience properties: dataset ------------------------------------- + + @property + def n_subjects(self) -> Optional[int]: + """Number of subjects in the training dataset.""" + return self.dataset_info.get("n_subjects") + + @property + def n_visits(self) -> Optional[int]: + """Total number of visits.""" + return self.dataset_info.get("n_visits") + + @property + def n_scores(self) -> Optional[int]: + """Number of scored features.""" + return self.dataset_info.get("n_scores") + + @property + def n_observations(self) -> Optional[int]: + """Total number of observed data points.""" + return self.dataset_info.get("n_observations") + + @property + def pct_missing(self) -> Optional[float]: + """Percentage of missing observations.""" + return self.dataset_info.get("pct_missing") + + @property + def n_missing(self) -> Optional[int]: + """Number of missing observations.""" + return self.dataset_info.get("n_missing") + + @property + def visits_per_subject(self) -> Optional[VisitsPerSubject]: + """Per-subject visit distribution statistics.""" + return self.dataset_info.get("visits_per_subject") + + @property + def n_events(self) -> Optional[int]: + """Number of observed events (joint models only).""" + return self.dataset_info.get("n_events") + + # -- Display ------------------------------------------------------------- + + def __str__(self) -> str: + lines = [] + sep = "=" * _WIDTH + + lines.append(sep) + lines.append(f"{_BOLD}{'Model Information':^{_WIDTH}}{_RESET}") + lines.append(sep) + + # Statistical Model + lines.append(f"{_BOLD}Statistical Model{_RESET}") + lines.append("-" * _WIDTH) + lines.append(f"Type: {self.model_type}") + lines.append(f"Name: {self.name}") + lines.append(f"Dimension: {self.dimension}") + if self.source_dimension is not None: + lines.append(f"Source Dimension: {self.source_dimension}") + if self.obs_models: + lines.append(f"Observation Models: {', '.join(self.obs_models)}") + if self.n_total_params is not None: + lines.append(f"Total Parameters: {self.n_total_params}") + if self.n_clusters is not None: + lines.append(f"Clusters: {self.n_clusters}") + + # Training Dataset + if self.dataset_info: + lines.append("") + lines.append(f"{_BOLD}Training Dataset{_RESET}") + lines.append("-" * _WIDTH) + di = self.dataset_info + lines.append(f"Subjects: {di.get('n_subjects', 'N/A')}") + lines.append(f"Visits: {di.get('n_visits', 'N/A')}") + lines.append(f"Scores (Features): {di.get('n_scores', 'N/A')}") + lines.append(f"Total Observations: {di.get('n_observations', 'N/A')}") + if "visits_per_subject" in di: + vps = di["visits_per_subject"] + lines.append( + f"Visits per Subject: Median {vps['median']:.1f} " + f"[Min {vps['min']}, Max {vps['max']}, IQR {vps['iqr']:.1f}]" + ) + if "n_missing" in di: + lines.append( + f"Missing Data: {di['n_missing']} " + f"({di.get('pct_missing', 0):.2f}%)" + ) + if "n_events" in di: + lines.append(f"Events Observed: {di['n_events']}") + + # Training Details + if self.training_info: + lines.append("") + lines.append(f"{_BOLD}Training Details{_RESET}") + lines.append("-" * _WIDTH) + ti = self.training_info + lines.append(f"Algorithm: {ti.get('algorithm', 'N/A')}") + if "seed" in ti: + lines.append(f"Seed: {ti['seed']}") + lines.append(f"Iterations: {ti.get('n_iter', 'N/A')}") + if ti.get("converged") is not None: + lines.append(f"Converged: {ti['converged']}") + if "duration" in ti: + lines.append(f"Duration: {ti['duration']}") + + # Leaspy Version + if self.leaspy_version: + lines.append("") + lines.append(f"Leaspy Version: {self.leaspy_version}") + + lines.append(sep) + return "\n".join(lines) + + def help(self) -> None: + """Print available attributes and their meanings.""" + help_text = f""" +{_BOLD}Info Help{_RESET} +{'=' * 60} + +The Info object provides access to model configuration and training context. + +{_BOLD}Usage:{_RESET} + model.info() # Print model information + i = model.info() # Store to access individual attributes + +{_BOLD}Available Attributes:{_RESET} + + {_BOLD}Model:{_RESET} + name Model name (str) + model_type Model class name (str) + dimension Number of features (int) + features Feature names (list[str]) + source_dimension Number of sources (int or None) + n_clusters Number of clusters (int or None) + obs_models Observation model names (list[str] or None) + n_total_params Total number of scalar parameters (int) + + {_BOLD}Training:{_RESET} + algorithm Algorithm name (str) + seed Random seed (int) + n_iter Number of iterations (int) + converged Whether training converged (bool or None) + duration Training duration (str) + + {_BOLD}Dataset:{_RESET} + n_subjects Number of subjects (int) + n_visits Total visits (int) + n_scores Number of scored features (int) + n_observations Total observations (int) + pct_missing Percent missing data (float) + n_missing Count of missing observations (int) + visits_per_subject Visit distribution stats (dict) + n_events Observed events, joint models only (int or None) + + {_BOLD}Other:{_RESET} + training_info Full training metadata (TrainingInfo) + dataset_info Full dataset statistics (DatasetInfo) + leaspy_version Leaspy version (str) + +{_BOLD}Examples:{_RESET} + >>> i = model.info() + >>> i.algorithm # 'mcmc_saem' + >>> i.n_subjects # 150 + >>> i.pct_missing # 2.5 +""" + print(help_text) + object.__setattr__(self, "_printed", True) + + +# --------------------------------------------------------------------------- +# Summary +# --------------------------------------------------------------------------- + + +@dataclass(repr=False) +class Summary(AutoPrintMixin): + """Structured summary of a Leaspy model including parameter values. + + Returned by ``model.summary()``. Auto-prints when discarded; provides + programmatic access when stored in a variable. + + Examples + -------- + >>> model.summary() # prints the formatted summary + >>> s = model.summary() # store for programmatic access + >>> s.algorithm # 'mcmc_saem' + >>> s.get_param('tau_std') # tensor([10.5]) + >>> s.help() # list available attributes + """ + + name: str + model_type: str + dimension: Optional[int] = None + features: Optional[list[str]] = None + source_dimension: Optional[int] = None + n_clusters: Optional[int] = None + obs_models: Optional[list[str]] = None + nll: Optional[float] = None + training_info: TrainingInfo = field(default_factory=dict) + dataset_info: DatasetInfo = field(default_factory=dict) + parameters: dict[str, dict[str, Any]] = field(default_factory=dict) + leaspy_version: Optional[str] = None + _param_axes: dict = field(default_factory=dict, repr=False) + _feature_names: Optional[list[str]] = field(default=None, repr=False) + _printed: bool = field(default=False, repr=False) + + # -- Convenience properties ---------------------------------------------- + + @property + def sources(self) -> Optional[list[str]]: + """Source names (e.g. ``['s0', 's1']``) or ``None``.""" + if self.source_dimension is None: + return None + return [f"s{i}" for i in range(self.source_dimension)] + + @property + def clusters(self) -> Optional[list[str]]: + """Cluster names (e.g. ``['c0', 'c1']``) or ``None``.""" + if self.n_clusters is None: + return None + return [f"c{i}" for i in range(self.n_clusters)] + + @property + def algorithm(self) -> Optional[str]: + """Algorithm name used for training.""" + return self.training_info.get("algorithm") + + @property + def seed(self) -> Optional[int]: + """Random seed used for training.""" + return self.training_info.get("seed") + + @property + def n_iter(self) -> Optional[int]: + """Number of iterations.""" + return self.training_info.get("n_iter") + + @property + def converged(self) -> Optional[bool]: + """Whether training converged.""" + return self.training_info.get("converged") + + @property + def n_subjects(self) -> Optional[int]: + """Number of subjects in the training dataset.""" + return self.dataset_info.get("n_subjects") + + @property + def n_visits(self) -> Optional[int]: + """Total number of visits.""" + return self.dataset_info.get("n_visits") + + @property + def n_observations(self) -> Optional[int]: + """Total number of observations.""" + return self.dataset_info.get("n_observations") + + def get_param(self, name: str) -> Optional[Any]: + """Get a parameter value by name, searching across all categories. + + Parameters + ---------- + name : str + Parameter name (e.g. ``'betas_mean'``, ``'tau_std'``). + + Returns + ------- + value + The parameter value (typically a ``torch.Tensor``), or ``None``. + """ + for category_params in self.parameters.values(): + if name in category_params: + return category_params[name] + return None + + # -- Display ------------------------------------------------------------- + + def __str__(self) -> str: + lines = [] + sep = "=" * _WIDTH + + # Header + lines.append(sep) + lines.append(f"{_BOLD}{'Model Summary':^{_WIDTH}}{_RESET}") + lines.append(sep) + lines.append(f"{_BOLD}Model Name:{_RESET} {self.name}") + lines.append(f"{_BOLD}Model Type:{_RESET} {self.model_type}") + + if self.features is not None: + feat_str = ", ".join(self.features) + lines.extend( + _wrap_text( + f"{_BOLD}Features ({self.dimension}){_RESET}", feat_str + ) + ) + + if self.source_dimension is not None: + sources = [f"Source {i} (s{i})" for i in range(self.source_dimension)] + lines.extend( + _wrap_text( + f"{_BOLD}Sources ({self.source_dimension}){_RESET}", + ", ".join(sources), + ) + ) + + if self.n_clusters is not None: + clusters = [f"Cluster {i} (c{i})" for i in range(self.n_clusters)] + lines.extend( + _wrap_text( + f"{_BOLD}Clusters ({self.n_clusters}){_RESET}", + ", ".join(clusters), + ) + ) + + if self.obs_models: + lines.extend( + _wrap_text( + f"{_BOLD}Observation Models{_RESET}", + ", ".join(self.obs_models), + ) + ) + + if self.nll is not None: + lines.append(f"{_BOLD}Neg. Log-Likelihood:{_RESET} {self.nll:.4f}") + + # Training Metadata + if self.training_info: + lines.append("") + lines.append(f"{_BOLD}Training Metadata{_RESET}") + lines.append("-" * _WIDTH) + ti = self.training_info + lines.append(f"Algorithm: {ti.get('algorithm', 'N/A')}") + if "seed" in ti: + lines.append(f"Seed: {ti['seed']}") + lines.append(f"Iterations: {ti.get('n_iter', 'N/A')}") + if ti.get("converged") is not None: + lines.append(f"Converged: {ti['converged']}") + if "duration" in ti: + lines.append(f"Duration: {ti['duration']}") + + # Data Context + if self.dataset_info: + lines.append("") + lines.append(f"{_BOLD}Data Context{_RESET}") + lines.append("-" * _WIDTH) + di = self.dataset_info + lines.append(f"Subjects: {di.get('n_subjects', 'N/A')}") + lines.append(f"Visits: {di.get('n_visits', 'N/A')}") + lines.append(f"Total Observations: {di.get('n_observations', 'N/A')}") + + # Leaspy Version + if self.leaspy_version: + lines.append("") + lines.append(f"Leaspy Version: {self.leaspy_version}") + + lines.append(sep) + + # Parameters by category + for category, params in self.parameters.items(): + if params: + lines.append("") + lines.append(f"{_BOLD}{category}{_RESET}") + lines.append("-" * _WIDTH) + lines.extend(self._format_parameter_group(params)) + + lines.append(sep) + return "\n".join(lines) + + def help(self) -> None: + """Print available attributes and their meanings.""" + help_text = f""" +{_BOLD}Summary Help{_RESET} +{'=' * 60} + +The Summary object provides access to model metadata and parameters. + +{_BOLD}Usage:{_RESET} + model.summary() # Print the formatted summary + s = model.summary() # Store to access individual attributes + +{_BOLD}Available Attributes:{_RESET} + + {_BOLD}Model Information:{_RESET} + name Model name (str) + model_type Model class name, e.g., 'LogisticModel' (str) + dimension Number of features (int) + features List of feature names (list[str]) + sources Source names, e.g., ['s0', 's1'] (list[str] or None) + clusters Cluster names, e.g., ['c0', 'c1'] (list[str] or None) + source_dimension Number of sources (int or None) + n_clusters Number of clusters (int or None) + obs_models Observation model names (list[str] or None) + + {_BOLD}Training:{_RESET} + algorithm Algorithm name, e.g., 'mcmc_saem' (str) + seed Random seed used (int) + n_iter Number of iterations (int) + converged Whether training converged (bool or None) + nll Negative log-likelihood (float or None) + + {_BOLD}Dataset:{_RESET} + n_subjects Number of subjects in training data (int) + n_visits Total number of visits (int) + n_observations Total number of observations (int) + + {_BOLD}Parameters:{_RESET} + parameters All parameters grouped by category (dict) + get_param(name) Get a specific parameter by name + + {_BOLD}Other:{_RESET} + training_info Full training metadata (TrainingInfo) + dataset_info Full dataset statistics (DatasetInfo) + leaspy_version Leaspy version used (str) + +{_BOLD}Examples:{_RESET} + >>> s = model.summary() + >>> s.algorithm # 'mcmc_saem' + >>> s.seed # 42 + >>> s.n_subjects # 150 + >>> s.get_param('tau_std') # tensor([10.5]) +""" + print(help_text) + object.__setattr__(self, "_printed", True) + + # -- Private formatting helpers ------------------------------------------ + + def _format_parameter_group(self, params: dict[str, Any]) -> list[str]: + """Format a group of parameters for display.""" + lines = [] + for name, value in params.items(): + if isinstance(value, torch.Tensor): + lines.append(self._format_tensor(name, value)) + else: + lines.append(f" {name:<18} {value}") + return lines + + def _format_tensor(self, name: str, value: torch.Tensor) -> str: + """Format a tensor parameter with axis labels.""" + param_axes = object.__getattribute__(self, "_param_axes") + feature_names = object.__getattribute__(self, "_feature_names") + axes = param_axes.get(name, ()) + + if value.ndim == 0: + return f" {name:<18} {value.item():.4f}" + + elif value.ndim == 1: + n = len(value) + if n > 10: + return f" {name:<18} Tensor of shape ({n},)" + + axis_name = axes[0] if len(axes) >= 1 else None + col_labels = get_axis_labels(axis_name, n, feature_names) + + if col_labels: + header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) + values = f" {name:<18}" + " ".join( + f"{v.item():>8.4f}" for v in value + ) + return header + "\n" + values + else: + val_str = "[" + ", ".join(f"{v.item():.4f}" for v in value) + "]" + return f" {name:<18} {val_str}" + + elif value.ndim == 2: + rows, cols = value.shape + if rows > 8 or cols > 8: + return f" {name:<18} Tensor of shape {tuple(value.shape)}" + + row_axis = axes[0] if len(axes) >= 1 else None + col_axis = axes[1] if len(axes) >= 2 else None + row_labels = get_axis_labels(row_axis, rows, feature_names) + col_labels = get_axis_labels(col_axis, cols, feature_names) + + result = [f" {name}:"] + if col_labels: + header = " " * 20 + " ".join(f"{lbl:>8}" for lbl in col_labels) + result.append(header) + + for i, row in enumerate(value): + row_lbl = row_labels[i] if row_labels else f"[{i}]" + row_str = ( + f" {row_lbl:<8}" + + " ".join(f"{v.item():>8.4f}" for v in row) + ) + result.append(row_str) + + return "\n".join(result) + + else: + return f" {name:<18} Tensor of shape {tuple(value.shape)}" From e01a01aac24ee35acb661bb0b5c7b0bf7cbcf229 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 2 Mar 2026 15:01:31 +0100 Subject: [PATCH 23/24] fixing bold titles and duration: removed from summary and we added more decimals in info() --- src/leaspy/models/base.py | 2 +- src/leaspy/models/summary.py | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/leaspy/models/base.py b/src/leaspy/models/base.py index 469c219d3..d1ced52b0 100644 --- a/src/leaspy/models/base.py +++ b/src/leaspy/models/base.py @@ -807,7 +807,7 @@ def fit( elapsed = time.perf_counter() - t0 self.training_info["converged"] = getattr(algorithm, "converged", None) - self.training_info["duration"] = f"{elapsed:.1f}s" + self.training_info["duration"] = f"{elapsed:.3f}s" def info(self) -> Info: """Return model configuration and training context. diff --git a/src/leaspy/models/summary.py b/src/leaspy/models/summary.py index 41ce37141..dd01ff8f5 100644 --- a/src/leaspy/models/summary.py +++ b/src/leaspy/models/summary.py @@ -157,6 +157,13 @@ def __repr__(self) -> str: object.__setattr__(self, "_printed", True) return str(self) + def _repr_html_(self) -> str: + """Rich HTML display for Jupyter notebooks (enables bold rendering).""" + object.__setattr__(self, "_printed", True) + text = str(self) + text = text.replace("\033[1m", "").replace("\033[0m", "") + return f"
{text}
" + def __getattribute__(self, name: str): value = object.__getattribute__(self, name) # Suppress auto-print once any public attribute is accessed @@ -564,8 +571,6 @@ def __str__(self) -> str: lines.append(f"Iterations: {ti.get('n_iter', 'N/A')}") if ti.get("converged") is not None: lines.append(f"Converged: {ti['converged']}") - if "duration" in ti: - lines.append(f"Duration: {ti['duration']}") # Data Context if self.dataset_info: From e1758b4bd940349d6d908c80ffe5e93d85205adc Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 2 Mar 2026 15:03:04 +0100 Subject: [PATCH 24/24] showing properly the new methods in the examples --- examples/plot_01_quickstart.py | 9 +++++++++ examples/plot_03_joint.py | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/examples/plot_01_quickstart.py b/examples/plot_01_quickstart.py index a7dcd8f6a..a24683e23 100644 --- a/examples/plot_01_quickstart.py +++ b/examples/plot_01_quickstart.py @@ -68,6 +68,15 @@ model.summary() # %% +# The ``fit`` method estimates the parameters of the model, which are then accessible +# through the ``summary`` method. The parameters are also stored in the ``parameters`` attribute of the model. + +model.info() + +# %% +# The method ``info`` provides the model configuration and the settings used for the fit, +# as well as the dataset information and the training information. +# # Leaspy can also estimate the *individual trajectories* of each participant. # This is done using a personalization algorithm, here `scipy_minimize`: diff --git a/examples/plot_03_joint.py b/examples/plot_03_joint.py index 456ea1d1c..dedbd37f8 100644 --- a/examples/plot_03_joint.py +++ b/examples/plot_03_joint.py @@ -50,6 +50,10 @@ model.fit(data, "mcmc_saem", seed=1312, n_iter=100, progress_bar=False) model.summary() +# %% +# We can also access the model information and parameters after fitting it to the data. +model.info() + # %% # The Joint Model includes specific parameters such as `log_rho_mean` and `zeta_mean`.